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

Unified Diff: content/common/cursors/webcursor_ozone.cc

Issue 1927463002: Rename gfx::Display/Screen to display::Display/Screen in content/ (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
« no previous file with comments | « content/common/cursors/webcursor_aura.cc ('k') | content/common/cursors/webcursor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/cursors/webcursor_ozone.cc
diff --git a/content/common/cursors/webcursor_ozone.cc b/content/common/cursors/webcursor_ozone.cc
index e668460e7b56583994e1a134d840a9c8b5cb079e..6095da9fca188b1ce01be04379c6528d4292a9d3 100644
--- a/content/common/cursors/webcursor_ozone.cc
+++ b/content/common/cursors/webcursor_ozone.cc
@@ -40,7 +40,7 @@ ui::PlatformCursor WebCursor::GetPlatformCursor() {
return platform_cursor_;
}
-void WebCursor::SetDisplayInfo(const gfx::Display& display) {
+void WebCursor::SetDisplayInfo(const display::Display& display) {
if (rotation_ == display.rotation() &&
device_scale_factor_ == display.device_scale_factor() &&
maximum_cursor_size_ == display.maximum_cursor_size())
@@ -64,7 +64,7 @@ void WebCursor::SetDisplayInfo(const gfx::Display& display) {
void WebCursor::InitPlatformData() {
platform_cursor_ = NULL;
device_scale_factor_ = 1.f;
- rotation_ = gfx::Display::ROTATE_0;
+ rotation_ = display::Display::ROTATE_0;
maximum_cursor_size_ =
gfx::Size(kDefaultMaxCursorWidth, kDefaultMaxCursorHeight);
}
« no previous file with comments | « content/common/cursors/webcursor_aura.cc ('k') | content/common/cursors/webcursor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698