| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/display/win/dpi.h" | 5 #include "ui/display/win/dpi.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/win/scoped_hdc.h" | 9 #include "base/win/scoped_hdc.h" |
| 10 #include "ui/display/display.h" | 10 #include "ui/display/display.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 | 43 |
| 44 } // namespace | 44 } // namespace |
| 45 | 45 |
| 46 void SetDefaultDeviceScaleFactor(float scale) { | 46 void SetDefaultDeviceScaleFactor(float scale) { |
| 47 DCHECK_NE(0.f, scale); | 47 DCHECK_NE(0.f, scale); |
| 48 g_device_scale_factor = scale; | 48 g_device_scale_factor = scale; |
| 49 } | 49 } |
| 50 | 50 |
| 51 float GetDPIScale() { | 51 float GetDPIScale() { |
| 52 if (display::Display::HasForceDeviceScaleFactor()) | 52 if (Display::HasForceDeviceScaleFactor()) |
| 53 return display::Display::GetForcedDeviceScaleFactor(); | 53 return Display::GetForcedDeviceScaleFactor(); |
| 54 return GetUnforcedDeviceScaleFactor(); | 54 return GetUnforcedDeviceScaleFactor(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 int GetDPIFromScalingFactor(float device_scaling_factor) { | 57 int GetDPIFromScalingFactor(float device_scaling_factor) { |
| 58 return kDefaultDPI * device_scaling_factor; | 58 return kDefaultDPI * device_scaling_factor; |
| 59 } | 59 } |
| 60 | 60 |
| 61 float GetScalingFactorFromDPI(int dpi) { | 61 float GetScalingFactorFromDPI(int dpi) { |
| 62 return static_cast<float>(dpi) / kDefaultDPI; | 62 return static_cast<float>(dpi) / kDefaultDPI; |
| 63 } | 63 } |
| 64 | 64 |
| 65 } // namespace win | 65 } // namespace win |
| 66 } // namespace display | 66 } // namespace display |
| OLD | NEW |