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

Side by Side Diff: ui/display/win/dpi.h

Issue 2182333005: Audit and Deprecate DPI Functions in display::win (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More Deprecation Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef UI_DISPLAY_WIN_DPI_H_ 5 #ifndef UI_DISPLAY_WIN_DPI_H_
6 #define UI_DISPLAY_WIN_DPI_H_ 6 #define UI_DISPLAY_WIN_DPI_H_
7 7
8 #include "ui/display/display_export.h" 8 #include "ui/display/display_export.h"
9 #include "ui/gfx/geometry/size.h" 9 #include "ui/gfx/geometry/size.h"
10 10
11 namespace display { 11 namespace display {
12 namespace win { 12 namespace win {
13 13
14 // Deprecated. Use --force-device-scale-factor instead.
15 //
14 // Sets the device scale factor that will be used unless overridden on the 16 // Sets the device scale factor that will be used unless overridden on the
15 // command line by --force-device-scale-factor. If this is not called, and that 17 // command line by --force-device-scale-factor.
16 // flag is not used, the scale factor used by the DIP conversion functions below
17 // will be that returned by GetDPIScale().
18 DISPLAY_EXPORT void SetDefaultDeviceScaleFactor(float scale); 18 DISPLAY_EXPORT void SetDefaultDeviceScaleFactor(float scale);
19 19
20 // Gets the scale factor of the display. For example, if the display DPI is 20 // Deprecated. Use display::win::ScreenWin::GetScaleFactorForHWND instead.
21 // 96 then the scale factor is 1.0. 21 //
22 // Gets the system's scale factor. For example, if the system DPI is 96 then the
23 // scale factor is 1.0. This does not handle per-monitor DPI.
22 DISPLAY_EXPORT float GetDPIScale(); 24 DISPLAY_EXPORT float GetDPIScale();
23 25
24 // Returns the equivalent DPI for |device_scaling_factor|. 26 // Returns the equivalent DPI for |device_scaling_factor|.
25 DISPLAY_EXPORT int GetDPIFromScalingFactor(float device_scaling_factor); 27 DISPLAY_EXPORT int GetDPIFromScalingFactor(float device_scaling_factor);
26 28
27 // Returns the equivalent scaling factor for |dpi|. 29 // Returns the equivalent scaling factor for |dpi|.
28 DISPLAY_EXPORT float GetScalingFactorFromDPI(int dpi); 30 DISPLAY_EXPORT float GetScalingFactorFromDPI(int dpi);
29 31
32 // Deprecated. Use display::win::ScreenWin::GetSystemMetricsForHwnd instead.
33 //
30 // Win32's GetSystemMetrics uses pixel measures. This function calls 34 // Win32's GetSystemMetrics uses pixel measures. This function calls
31 // GetSystemMetrics for the given |metric|, then converts the result to DIP. 35 // GetSystemMetrics for the given |metric|, then converts the result using the
36 // system's DPI to DIP. This does not handle per-monitor DPI.
32 DISPLAY_EXPORT int GetSystemMetricsInDIP(int metric); 37 DISPLAY_EXPORT int GetSystemMetricsInDIP(int metric);
33 38
34 } // namespace win 39 } // namespace win
35 } // namespace display 40 } // namespace display
36 41
37 #endif // UI_DISPLAY_WIN_DPI_H_ 42 #endif // UI_DISPLAY_WIN_DPI_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698