Index: ui/aura/desktop/desktop_screen_win.cc |
diff --git a/ui/aura/desktop/desktop_screen_win.cc b/ui/aura/desktop/desktop_screen_win.cc |
index 6956a82ae386faf412c3fa928ead5fc7b079acc9..13bd2483b284e0c910873d26f684d0999dbf1cd5 100644 |
--- a/ui/aura/desktop/desktop_screen_win.cc |
+++ b/ui/aura/desktop/desktop_screen_win.cc |
@@ -40,7 +40,11 @@ DesktopScreenWin::~DesktopScreenWin() { |
} |
//////////////////////////////////////////////////////////////////////////////// |
-// DesktopScreenWin, gfx::ScreenImpl implementation: |
+// DesktopScreenWin, gfx::Screen implementation: |
+ |
+bool DesktopScreenWin::IsDIPEnabled() { |
+ return true; |
+} |
gfx::Point DesktopScreenWin::GetCursorScreenPoint() { |
POINT pt; |
@@ -101,7 +105,7 @@ gfx::Display DesktopScreenWin::GetPrimaryDisplay() const { |
//////////////////////////////////////////////////////////////////////////////// |
-gfx::ScreenImpl* CreateDesktopScreen() { |
+gfx::Screen* CreateDesktopScreen() { |
return new DesktopScreenWin; |
} |