| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GFX_WIN_DISPLAY_INFO_H_ | |
| 6 #define UI_GFX_WIN_DISPLAY_INFO_H_ | |
| 7 | |
| 8 #include <windows.h> | |
| 9 #include <stdint.h> | |
| 10 | |
| 11 #include "ui/gfx/display.h" | |
| 12 #include "ui/gfx/gfx_export.h" | |
| 13 | |
| 14 namespace gfx { | |
| 15 namespace win { | |
| 16 | |
| 17 // Gathers the parameters necessary to create a gfx::win::ScreenWinDisplay. | |
| 18 struct GFX_EXPORT DisplayInfo final { | |
| 19 DisplayInfo(const MONITORINFOEX& monitor_info, float device_scale_factor); | |
| 20 DisplayInfo(const MONITORINFOEX& monitor_info, | |
| 21 float device_scale_factor, | |
| 22 gfx::Display::Rotation rotation); | |
| 23 | |
| 24 static int64_t DeviceIdFromDeviceName(const wchar_t* device_name); | |
| 25 | |
| 26 int64_t id; | |
| 27 gfx::Display::Rotation rotation; | |
| 28 gfx::Rect screen_rect; | |
| 29 gfx::Rect screen_work_rect; | |
| 30 float device_scale_factor; | |
| 31 }; | |
| 32 | |
| 33 } // namespace win | |
| 34 } // namespace gfx | |
| 35 | |
| 36 #endif // UI_GFX_WIN_DISPLAY_INFO_H_ | |
| OLD | NEW |