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

Unified Diff: ui/display/display.h

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 | « services/ui/surfaces/display_output_surface_ozone.cc ('k') | ui/display/display_list_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/display.h
diff --git a/ui/display/display.h b/ui/display/display.h
index 9980057e066c3dd2a1a31000480ec33d5b6c5bd9..44e2b5e5a7f66402f6923cc876766a457b49dfb4 100644
--- a/ui/display/display.h
+++ b/ui/display/display.h
@@ -91,11 +91,11 @@ class DISPLAY_EXPORT Display final {
int64_t id() const { return id_; }
void set_id(int64_t id) { id_ = id; }
- // Gets/Sets the display's bounds in display::Screen's coordinates.
+ // Gets/Sets the display's bounds in Screen's coordinates.
const gfx::Rect& bounds() const { return bounds_; }
void set_bounds(const gfx::Rect& bounds) { bounds_ = bounds; }
- // Gets/Sets the display's work area in display::Screen's coordinates.
+ // Gets/Sets the display's work area in Screen's coordinates.
const gfx::Rect& work_area() const { return work_area_; }
void set_work_area(const gfx::Rect& work_area) { work_area_ = work_area; }
@@ -204,8 +204,7 @@ class DISPLAY_EXPORT Display final {
bool is_monochrome_ = false;
#if !defined(OS_IOS)
- friend struct mojo::StructTraits<display::mojom::DisplayDataView,
- display::Display>;
+ friend struct mojo::StructTraits<mojom::DisplayDataView, Display>;
#endif
};
« no previous file with comments | « services/ui/surfaces/display_output_surface_ozone.cc ('k') | ui/display/display_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698