summaryrefslogtreecommitdiff
path: root/chromium/ui/android/view_android_observer.h
blob: cb8cbe51de1e811b56e47b759cc2efea95974a09 (plain)
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
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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;

 protected:
  virtual ~ViewAndroidObserver() {}
};

}  // namespace ui

#endif  // UI_ANDROID_VIEW_ANDROID_OBSERVER_H_