Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: ui/events/ozone/chromeos/cursor_controller.h

Issue 1922783002: Move gfx::Display/Screen to display::Display/Screen in aura/events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698