Index: chrome/browser/ui/window_sizer_common_unittest.h |
diff --git a/chrome/browser/ui/window_sizer_common_unittest.h b/chrome/browser/ui/window_sizer_common_unittest.h |
index 38323d181b7f7a323883eb2eea0187143425025c..2345d296b1049b1e28a4e7c3bb93ef2eb5a60ae3 100644 |
--- a/chrome/browser/ui/window_sizer_common_unittest.h |
+++ b/chrome/browser/ui/window_sizer_common_unittest.h |
@@ -47,9 +47,9 @@ class TestMonitorInfoProvider : public MonitorInfoProvider { |
void AddMonitor(const gfx::Rect& bounds, const gfx::Rect& work_area); |
// Overridden from WindowSizer::MonitorInfoProvider: |
- virtual gfx::Rect GetPrimaryMonitorWorkArea() const OVERRIDE; |
+ virtual gfx::Rect GetPrimaryDisplayWorkArea() const OVERRIDE; |
- virtual gfx::Rect GetPrimaryMonitorBounds() const OVERRIDE; |
+ virtual gfx::Rect GetPrimaryDisplayBounds() const OVERRIDE; |
virtual gfx::Rect GetMonitorWorkAreaMatching( |
const gfx::Rect& match_rect) const OVERRIDE; |
@@ -74,11 +74,11 @@ void TestMonitorInfoProvider::AddMonitor(const gfx::Rect& bounds, |
} |
// Overridden from WindowSizer::MonitorInfoProvider: |
-gfx::Rect TestMonitorInfoProvider::GetPrimaryMonitorWorkArea() const { |
+gfx::Rect TestMonitorInfoProvider::GetPrimaryDisplayWorkArea() const { |
return work_areas_[0]; |
} |
-gfx::Rect TestMonitorInfoProvider::GetPrimaryMonitorBounds() const { |
+gfx::Rect TestMonitorInfoProvider::GetPrimaryDisplayBounds() const { |
return monitor_bounds_[0]; |
} |