| 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 ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ | 5 #ifndef ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ |
| 6 #define ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ | 6 #define ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "ash/display/mouse_warp_controller.h" | 8 #include "ash/display/mouse_warp_controller.h" |
| 9 | 9 |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "ui/gfx/geometry/rect.h" | 13 #include "ui/gfx/geometry/rect.h" |
| 14 | 14 |
| 15 namespace aura { | |
| 16 class Window; | |
| 17 } | |
| 18 | |
| 19 namespace gfx { | 15 namespace gfx { |
| 20 class Point; | 16 class Point; |
| 21 } | 17 } |
| 22 | 18 |
| 23 namespace ash { | 19 namespace ash { |
| 24 namespace test { | 20 namespace test { |
| 25 class AshTestBase; | 21 class AshTestBase; |
| 26 class DisplayManagerTestApi; | 22 class DisplayManagerTestApi; |
| 27 } | 23 } |
| 28 | 24 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 int64_t current_cursor_display_id_; | 56 int64_t current_cursor_display_id_; |
| 61 | 57 |
| 62 bool update_location_for_test_; | 58 bool update_location_for_test_; |
| 63 | 59 |
| 64 DISALLOW_COPY_AND_ASSIGN(UnifiedMouseWarpController); | 60 DISALLOW_COPY_AND_ASSIGN(UnifiedMouseWarpController); |
| 65 }; | 61 }; |
| 66 | 62 |
| 67 } // namespace ash | 63 } // namespace ash |
| 68 | 64 |
| 69 #endif // ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ | 65 #endif // ASH_DISPLAY_UNIFIED_MOUSE_WARP_CONTROLLER_H_ |
| OLD | NEW |