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

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

Issue 2151413002: Add a UMA histogram for a user's device scale at startup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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 #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 17 matching lines...) Expand all
28 base::win::ScopedGetDC screen_dc(NULL); 28 base::win::ScopedGetDC screen_dc(NULL);
29 // This value is safe to cache for the life time of the app since the 29 // This value is safe to cache for the life time of the app since the
30 // user must logout to change the DPI setting. This value also applies 30 // user must logout to change the DPI setting. This value also applies
31 // to all screens. 31 // to all screens.
32 dpi_x = GetDeviceCaps(screen_dc, LOGPIXELSX); 32 dpi_x = GetDeviceCaps(screen_dc, LOGPIXELSX);
33 dpi_y = GetDeviceCaps(screen_dc, LOGPIXELSY); 33 dpi_y = GetDeviceCaps(screen_dc, LOGPIXELSY);
34 } 34 }
35 return gfx::Size(dpi_x, dpi_y); 35 return gfx::Size(dpi_x, dpi_y);
36 } 36 }
37 37
38 float GetUnforcedDeviceScaleFactor() {
39 return g_device_scale_factor
40 ? g_device_scale_factor
41 : GetScalingFactorFromDPI(GetDPI().width());
42 }
43
44 } // namespace 38 } // namespace
45 39
46 void SetDefaultDeviceScaleFactor(float scale) { 40 void SetDefaultDeviceScaleFactor(float scale) {
47 DCHECK_NE(0.f, scale); 41 DCHECK_NE(0.f, scale);
48 g_device_scale_factor = scale; 42 g_device_scale_factor = scale;
49 } 43 }
50 44
45 float GetUnforcedDeviceScaleFactor() {
46 return g_device_scale_factor ? g_device_scale_factor
47 : GetScalingFactorFromDPI(GetDPI().width());
48 }
49
51 float GetDPIScale() { 50 float GetDPIScale() {
52 if (display::Display::HasForceDeviceScaleFactor()) 51 if (display::Display::HasForceDeviceScaleFactor())
53 return display::Display::GetForcedDeviceScaleFactor(); 52 return display::Display::GetForcedDeviceScaleFactor();
54 float dpi_scale = GetUnforcedDeviceScaleFactor(); 53 float dpi_scale = GetUnforcedDeviceScaleFactor();
55 return (dpi_scale <= 1.25f) ? 1.f : dpi_scale; 54 return (dpi_scale <= 1.25f) ? 1.f : dpi_scale;
56 } 55 }
57 56
58 int GetDPIFromScalingFactor(float device_scaling_factor) { 57 int GetDPIFromScalingFactor(float device_scaling_factor) {
59 return kDefaultDPI * device_scaling_factor; 58 return kDefaultDPI * device_scaling_factor;
60 } 59 }
61 60
62 float GetScalingFactorFromDPI(int dpi) { 61 float GetScalingFactorFromDPI(int dpi) {
63 return static_cast<float>(dpi) / kDefaultDPI; 62 return static_cast<float>(dpi) / kDefaultDPI;
64 } 63 }
65 64
66 int GetSystemMetricsInDIP(int metric) { 65 int GetSystemMetricsInDIP(int metric) {
67 // The system metrics always reflect the system DPI, not whatever scale we've 66 // The system metrics always reflect the system DPI, not whatever scale we've
68 // forced or decided to use. 67 // forced or decided to use.
69 return static_cast<int>( 68 return static_cast<int>(
70 std::round(GetSystemMetrics(metric) / GetUnforcedDeviceScaleFactor())); 69 std::round(GetSystemMetrics(metric) / GetUnforcedDeviceScaleFactor()));
71 } 70 }
72 71
73 } // namespace win 72 } // namespace win
74 } // namespace display 73 } // namespace display
OLDNEW
« chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc ('K') | « ui/display/win/dpi.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698