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

Unified Diff: ui/display/win/display_info.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/native_display_observer.h ('k') | ui/display/win/dpi.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/win/display_info.h
diff --git a/ui/display/win/display_info.h b/ui/display/win/display_info.h
index ae1dacfb876ea6c31b56df82b836b6d02a22089e..3cc6046b205eb64214813ffdd9b96c2d0dfedbf9 100644
--- a/ui/display/win/display_info.h
+++ b/ui/display/win/display_info.h
@@ -14,25 +14,25 @@
namespace display {
namespace win {
-// Gathers the parameters necessary to create a display::win::ScreenWinDisplay.
+// Gathers the parameters necessary to create a win::ScreenWinDisplay.
class DISPLAY_EXPORT DisplayInfo final {
public:
DisplayInfo(const MONITORINFOEX& monitor_info, float device_scale_factor);
DisplayInfo(const MONITORINFOEX& monitor_info,
float device_scale_factor,
- display::Display::Rotation rotation);
+ Display::Rotation rotation);
static int64_t DeviceIdFromDeviceName(const wchar_t* device_name);
int64_t id() const { return id_; }
- display::Display::Rotation rotation() const { return rotation_; }
+ Display::Rotation rotation() const { return rotation_; }
const gfx::Rect& screen_rect() const { return screen_rect_; }
const gfx::Rect& screen_work_rect() const { return screen_work_rect_; }
float device_scale_factor() const { return device_scale_factor_; }
private:
int64_t id_;
- display::Display::Rotation rotation_;
+ Display::Rotation rotation_;
gfx::Rect screen_rect_;
gfx::Rect screen_work_rect_;
float device_scale_factor_;
« no previous file with comments | « ui/display/types/native_display_observer.h ('k') | ui/display/win/dpi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698