| 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_EXTENDED_MOUSE_WARP_CONTROLLER_H | 5 #ifndef ASH_DISPLAY_EXTENDED_MOUSE_WARP_CONTROLLER_H |
| 6 #define ASH_DISPLAY_EXTENDED_MOUSE_WARP_CONTROLLER_H | 6 #define ASH_DISPLAY_EXTENDED_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 <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/display/display_layout.h" | |
| 13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 14 #include "base/macros.h" | 13 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 16 #include "ui/gfx/geometry/rect.h" | 15 #include "ui/gfx/geometry/rect.h" |
| 17 | 16 |
| 18 namespace aura { | 17 namespace aura { |
| 19 class Window; | 18 class Window; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace gfx { | 21 namespace gfx { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 bool enabled_; | 121 bool enabled_; |
| 123 | 122 |
| 124 bool allow_non_native_event_; | 123 bool allow_non_native_event_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(ExtendedMouseWarpController); | 125 DISALLOW_COPY_AND_ASSIGN(ExtendedMouseWarpController); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace ash | 128 } // namespace ash |
| 130 | 129 |
| 131 #endif // ASH_DISPLAY_EXTENDED_MOUSE_WARP_CONTROLLER_H | 130 #endif // ASH_DISPLAY_EXTENDED_MOUSE_WARP_CONTROLLER_H |
| OLD | NEW |