blob: 69d73a15fa6e2854328ea40026a82fd183ac5276 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_ANDROID_VIEW_ANDROID_OBSERVER_H_
#define UI_ANDROID_VIEW_ANDROID_OBSERVER_H_
#include "ui/android/ui_android_export.h"
namespace ui {
class UI_ANDROID_EXPORT ViewAndroidObserver {
public:
// Notifies that view gets attached to window. Note that the notification
// is not sent if view is already in attached state.
virtual void OnAttachedToWindow() {}
// Notifies that view gets detached from window. Note that the notification
// is not sent if view is already in detached state.
virtual void OnDetachedFromWindow() {}
// Notifies the view has been destroyed.
virtual void OnViewAndroidDestroyed() {}
// Notifies that the delegate has been set.
virtual void OnDelegateSet() {}
protected:
virtual ~ViewAndroidObserver() {}
};
} // namespace ui
#endif // UI_ANDROID_VIEW_ANDROID_OBSERVER_H_