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

Unified Diff: ui/display/types/display_snapshot.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 | « ui/display/types/display_mode.cc ('k') | ui/display/types/display_snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/types/display_snapshot.h
diff --git a/ui/display/types/display_snapshot.h b/ui/display/types/display_snapshot.h
index 2197f70c3d8fe1c5f120fb913e4c677dfcc812a9..3bf0c838857de2720ef68b2229fb1c7a029c0749 100644
--- a/ui/display/types/display_snapshot.h
+++ b/ui/display/types/display_snapshot.h
@@ -17,7 +17,7 @@
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/size.h"
-namespace ui {
+namespace display {
// This class represents the state of a display at one point in time. Platforms
// will extend this class in order to add platform specific configuration and
@@ -43,7 +43,7 @@ class DISPLAY_TYPES_EXPORT DisplaySnapshot {
const gfx::Point& origin() const { return origin_; }
const gfx::Size& physical_size() const { return physical_size_; }
- ui::DisplayConnectionType type() const { return type_; }
+ DisplayConnectionType type() const { return type_; }
bool is_aspect_preserving_scaling() const {
return is_aspect_preserving_scaling_;
}
@@ -124,6 +124,6 @@ class DISPLAY_TYPES_EXPORT DisplaySnapshot {
DISALLOW_COPY_AND_ASSIGN(DisplaySnapshot);
};
-} // namespace ui
+} // namespace display
#endif // UI_DISPLAY_TYPES_DISPLAY_SNAPSHOT_H_
« no previous file with comments | « ui/display/types/display_mode.cc ('k') | ui/display/types/display_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698