| 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_;
|
|
|