OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/base/l10n/l10n_util_win.h" | 5 #include "ui/base/l10n/l10n_util_win.h" |
6 | 6 |
7 #include <windowsx.h> | 7 #include <windowsx.h> |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <iterator> | 9 #include <iterator> |
10 | 10 |
11 #include "base/i18n/rtl.h" | 11 #include "base/i18n/rtl.h" |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
14 #include "base/win/i18n.h" | 14 #include "base/win/i18n.h" |
15 #include "base/win/windows_version.h" | 15 #include "base/win/windows_version.h" |
16 #include "grit/app_locale_settings.h" | 16 #include "grit/app_locale_settings.h" |
17 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
18 #include "ui/gfx/dpi_win.h" | 18 #include "ui/gfx/win/dpi.h" |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 void AdjustLogFont(const string16& font_family, | 22 void AdjustLogFont(const string16& font_family, |
23 double font_size_scaler, | 23 double font_size_scaler, |
24 double dpi_scale, | 24 double dpi_scale, |
25 LOGFONT* logfont) { | 25 LOGFONT* logfont) { |
26 DCHECK(font_size_scaler > 0); | 26 DCHECK(font_size_scaler > 0); |
27 font_size_scaler = std::max(std::min(font_size_scaler, 2.0), 0.7); | 27 font_size_scaler = std::max(std::min(font_size_scaler, 2.0), 0.7); |
28 // Font metrics are computed in pixels and scale in high-DPI mode. | 28 // Font metrics are computed in pixels and scale in high-DPI mode. |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 } else { | 189 } else { |
190 NOTREACHED() << "Failed to determine the UI language for locale override."; | 190 NOTREACHED() << "Failed to determine the UI language for locale override."; |
191 } | 191 } |
192 } | 192 } |
193 | 193 |
194 const std::vector<std::string>& GetLocaleOverrides() { | 194 const std::vector<std::string>& GetLocaleOverrides() { |
195 return override_locale_holder.Get().value(); | 195 return override_locale_holder.Get().value(); |
196 } | 196 } |
197 | 197 |
198 } // namespace l10n_util | 198 } // namespace l10n_util |
OLD | NEW |