Index: ui/aura/desktop/desktop_screen_x11.cc |
diff --git a/ui/aura/desktop/desktop_screen_x11.cc b/ui/aura/desktop/desktop_screen_x11.cc |
index e37dd38cb585212bbe2cb68d0705dcb0a1513fac..4d828efc7b686ea732e6b3f3d801ec7a7872da64 100644 |
--- a/ui/aura/desktop/desktop_screen_x11.cc |
+++ b/ui/aura/desktop/desktop_screen_x11.cc |
@@ -47,6 +47,8 @@ class DesktopScreenX11 : public gfx::Screen { |
virtual gfx::Display GetDisplayMatching( |
const gfx::Rect& match_rect) const OVERRIDE; |
virtual gfx::Display GetPrimaryDisplay() const OVERRIDE; |
+ virtual void AddObserver(gfx::DisplayObserver* observer) OVERRIDE; |
+ virtual void RemoveObserver(gfx::DisplayObserver* observer) OVERRIDE; |
private: |
DISALLOW_COPY_AND_ASSIGN(DesktopScreenX11); |
@@ -122,6 +124,15 @@ gfx::Display DesktopScreenX11::GetPrimaryDisplay() const { |
return gfx::Display(0, gfx::Rect(GetPrimaryDisplaySize())); |
} |
+void DesktopScreenX11::AddObserver(gfx::DisplayObserver* observer) { |
+ // TODO(erg|oshima): Do the right thing once we know what that is. |
+ // crbug.com/122863 |
+} |
+void DesktopScreenX11::RemoveObserver(gfx::DisplayObserver* observer) { |
+ // TODO(erg|oshima): Do the right thing once we know what that is. |
+ // crbug.com/122863 |
+} |
+ |
} // namespace |
//////////////////////////////////////////////////////////////////////////////// |