| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 SERVICES_UI_WS_EVENT_DISPATCHER_H_ | 5 #ifndef SERVICES_UI_WS_EVENT_DISPATCHER_H_ |
| 6 #define SERVICES_UI_WS_EVENT_DISPATCHER_H_ | 6 #define SERVICES_UI_WS_EVENT_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <utility> | 12 #include <utility> |
| 13 | 13 |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "services/ui/common/types.h" | 15 #include "services/ui/common/types.h" |
| 16 #include "services/ui/public/interfaces/cursor.mojom.h" | 16 #include "services/ui/public/interfaces/cursor.mojom.h" |
| 17 #include "services/ui/public/interfaces/window_manager.mojom.h" | 17 #include "services/ui/public/interfaces/window_manager.mojom.h" |
| 18 #include "services/ui/ws/drag_cursor_updater.h" | 18 #include "services/ui/ws/drag_cursor_updater.h" |
| 19 #include "services/ui/ws/modal_window_controller.h" | 19 #include "services/ui/ws/modal_window_controller.h" |
| 20 #include "services/ui/ws/server_window_observer.h" | 20 #include "services/ui/ws/server_window_observer.h" |
| 21 #include "ui/gfx/geometry/rect_f.h" | 21 #include "ui/gfx/geometry/rect_f.h" |
| 22 | 22 |
| 23 namespace ui { | 23 namespace ui { |
| 24 class Event; | 24 class Event; |
| 25 class KeyEvent; | 25 class KeyEvent; |
| 26 class LocatedEvent; | 26 class LocatedEvent; |
| 27 class PointerEvent; |
| 27 | 28 |
| 28 namespace ws { | 29 namespace ws { |
| 29 | 30 |
| 30 class Accelerator; | 31 class Accelerator; |
| 31 struct DeepestWindow; | 32 struct DeepestWindow; |
| 32 class DragController; | 33 class DragController; |
| 33 class DragSource; | 34 class DragSource; |
| 34 class DragTargetConnection; | 35 class DragTargetConnection; |
| 35 class EventDispatcherDelegate; | 36 class EventDispatcherDelegate; |
| 36 class ServerWindow; | 37 class ServerWindow; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 AcceleratorMatchPhase::ANY; | 280 AcceleratorMatchPhase::ANY; |
| 280 #endif | 281 #endif |
| 281 | 282 |
| 282 DISALLOW_COPY_AND_ASSIGN(EventDispatcher); | 283 DISALLOW_COPY_AND_ASSIGN(EventDispatcher); |
| 283 }; | 284 }; |
| 284 | 285 |
| 285 } // namespace ws | 286 } // namespace ws |
| 286 } // namespace ui | 287 } // namespace ui |
| 287 | 288 |
| 288 #endif // SERVICES_UI_WS_EVENT_DISPATCHER_H_ | 289 #endif // SERVICES_UI_WS_EVENT_DISPATCHER_H_ |
| OLD | NEW |