Index: ui/events/ozone/chromeos/cursor_controller.h |
diff --git a/ui/events/ozone/chromeos/cursor_controller.h b/ui/events/ozone/chromeos/cursor_controller.h |
index 68c07b9e6e73d0a199b24c26ac1c3657981fd3e9..554ca6fd7f968f0e5555b3576efb9d41f50905ae 100644 |
--- a/ui/events/ozone/chromeos/cursor_controller.h |
+++ b/ui/events/ozone/chromeos/cursor_controller.h |
@@ -11,8 +11,8 @@ |
#include "base/macros.h" |
#include "base/memory/singleton.h" |
#include "base/synchronization/lock.h" |
+#include "ui/display/display.h" |
#include "ui/events/ozone/events_ozone_export.h" |
-#include "ui/gfx/display.h" |
#include "ui/gfx/geometry/vector2d_f.h" |
#include "ui/gfx/native_widget_types.h" |
@@ -40,7 +40,7 @@ class EVENTS_OZONE_EXPORT CursorController { |
// Changes the rotation & scale applied for a window. |
void SetCursorConfigForWindow(gfx::AcceleratedWidget widget, |
- gfx::Display::Rotation rotation, |
+ display::Display::Rotation rotation, |
float scale); |
// Cleans up all state associated with a window. |
@@ -65,7 +65,7 @@ class EVENTS_OZONE_EXPORT CursorController { |
friend struct base::DefaultSingletonTraits<CursorController>; |
struct PerWindowCursorConfiguration { |
- gfx::Display::Rotation rotation; |
+ display::Display::Rotation rotation; |
float scale; |
}; |