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

Unified Diff: chrome/browser/ui/window_sizer_common_unittest.h

Issue 10540123: Rename gfx::Screen::GetMonitorXXXX to gfx::Screen::GetDisplayXXX. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « chrome/browser/ui/window_sizer_ash.cc ('k') | chrome/browser/ui/window_sizer_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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];
}
« no previous file with comments | « chrome/browser/ui/window_sizer_ash.cc ('k') | chrome/browser/ui/window_sizer_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698