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

Unified Diff: ui/display/screen.cc

Issue 2613493002: Fix namespace for src/ui/display/. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 | « ui/display/screen.h ('k') | ui/display/screen_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/screen.cc
diff --git a/ui/display/screen.cc b/ui/display/screen.cc
index 9f0f1dce5beb08516291ad379ec94fd7d37057fa..f77133ace84ee5ddf29a8fa9be27130dbfabc3d0 100644
--- a/ui/display/screen.cc
+++ b/ui/display/screen.cc
@@ -47,8 +47,8 @@ gfx::Rect Screen::DIPToScreenRectInWindow(gfx::NativeView view,
}
bool Screen::GetDisplayWithDisplayId(int64_t display_id,
- display::Display* display) const {
- for (const display::Display& display_in_list : GetAllDisplays()) {
+ Display* display) const {
+ for (const Display& display_in_list : GetAllDisplays()) {
if (display_in_list.id() == display_id) {
*display = display_in_list;
return true;
« no previous file with comments | « ui/display/screen.h ('k') | ui/display/screen_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698