forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_android_observer.h
31 lines (22 loc) · 903 Bytes
/
view_android_observer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 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() = 0;
// Notifies that view gets detached from window. Note that the notification
// is not sent if view is already in detached state.
virtual void OnDetachedFromWindow() = 0;
// Notifies the view has been destroyed.
virtual void OnViewAndroidDestroyed() {}
protected:
virtual ~ViewAndroidObserver() {}
};
} // namespace ui
#endif // UI_ANDROID_VIEW_ANDROID_OBSERVER_H_