| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ | 5 #ifndef UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ |
| 6 #define UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ | 6 #define UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 #include "ui/aura/client/capture_client_observer.h" | 11 #include "ui/aura/client/capture_client_observer.h" |
| 12 #include "ui/aura/mus/window_tree_client_observer.h" | 12 #include "ui/aura/mus/window_tree_client_observer.h" |
| 13 #include "ui/views/mus/mus_export.h" | 13 #include "ui/views/mus/mus_export.h" |
| 14 | 14 |
| 15 namespace aura { | 15 namespace aura { |
| 16 class WindowTreeClient; | 16 class WindowTreeClient; |
| 17 namespace client { | |
| 18 class CaptureClient; | |
| 19 } | |
| 20 } | 17 } |
| 21 | 18 |
| 22 namespace ui { | 19 namespace ui { |
| 23 class PointerEvent; | 20 class PointerEvent; |
| 24 } | 21 } |
| 25 | 22 |
| 26 namespace views { | 23 namespace views { |
| 27 | 24 |
| 28 class PointerWatcher; | 25 class PointerWatcher; |
| 29 class PointerWatcherEventRouter2Test; | 26 class PointerWatcherEventRouter2Test; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 base::ObserverList<views::PointerWatcher, true> move_watchers_; | 79 base::ObserverList<views::PointerWatcher, true> move_watchers_; |
| 83 | 80 |
| 84 EventTypes event_types_ = EventTypes::NONE; | 81 EventTypes event_types_ = EventTypes::NONE; |
| 85 | 82 |
| 86 DISALLOW_COPY_AND_ASSIGN(PointerWatcherEventRouter2); | 83 DISALLOW_COPY_AND_ASSIGN(PointerWatcherEventRouter2); |
| 87 }; | 84 }; |
| 88 | 85 |
| 89 } // namespace views | 86 } // namespace views |
| 90 | 87 |
| 91 #endif // UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ | 88 #endif // UI_VIEWS_MUS_POINTER_WATCHER_EVENT_ROUTER2_H_ |
| OLD | NEW |