OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ | 5 #ifndef MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ |
6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ | 6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
| 12 #include "mojo/services/public/interfaces/input_events/input_events.mojom.h" |
| 13 |
12 namespace mojo { | 14 namespace mojo { |
13 namespace view_manager { | 15 namespace view_manager { |
14 | 16 |
15 class View; | 17 class View; |
16 | 18 |
17 class ViewObserver { | 19 class ViewObserver { |
18 public: | 20 public: |
19 enum DispositionChangePhase { | 21 enum DispositionChangePhase { |
20 DISPOSITION_CHANGING, | 22 DISPOSITION_CHANGING, |
21 DISPOSITION_CHANGED | 23 DISPOSITION_CHANGED |
22 }; | 24 }; |
23 | 25 |
24 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {} | 26 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {} |
25 | 27 |
| 28 virtual void OnViewInputEvent(View* view, EventPtr event) {} |
| 29 |
26 protected: | 30 protected: |
27 virtual ~ViewObserver() {} | 31 virtual ~ViewObserver() {} |
28 }; | 32 }; |
29 | 33 |
30 } // namespace view_manager | 34 } // namespace view_manager |
31 } // namespace mojo | 35 } // namespace mojo |
32 | 36 |
33 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ | 37 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_ |
OLD | NEW |