| 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 #include "ui/display/win/screen_win_display.h" | |
| 6 | |
| 7 #include "ui/display/win/display_info.h" | |
| 8 #include "ui/gfx/win/dpi.h" | |
| 9 | |
| 10 namespace display { | |
| 11 namespace win { | |
| 12 | |
| 13 namespace { | |
| 14 | |
| 15 gfx::Display CreateDisplayFromDisplayInfo(const DisplayInfo& display_info) { | |
| 16 gfx::Display display(display_info.id()); | |
| 17 gfx::Rect dip_screen_bounds( | |
| 18 gfx::win::ScreenToDIPRect(display_info.screen_rect())); | |
| 19 display.set_bounds(dip_screen_bounds); | |
| 20 display.set_work_area( | |
| 21 gfx::win::ScreenToDIPRect(display_info.screen_work_rect())); | |
| 22 display.SetScaleAndBounds(display_info.device_scale_factor(), | |
| 23 display_info.screen_rect()); | |
| 24 display.set_rotation(display_info.rotation()); | |
| 25 return display; | |
| 26 } | |
| 27 | |
| 28 } // namespace | |
| 29 | |
| 30 ScreenWinDisplay::ScreenWinDisplay() = default; | |
| 31 | |
| 32 ScreenWinDisplay::ScreenWinDisplay(const DisplayInfo& display_info) | |
| 33 : display_(CreateDisplayFromDisplayInfo(display_info)), | |
| 34 pixel_bounds_(display_info.screen_rect()) {} | |
| 35 | |
| 36 } // namespace win | |
| 37 } // namespace display | |
| OLD | NEW |