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

Side by Side Diff: ui/base/l10n/l10n_util_win.cc

Issue 23769011: Move a bunch of windows stuff from ui/base/win to ui/gfx/win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar bustage. Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/ime/input_method_win.cc ('k') | ui/base/l10n/l10n_util_win_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ui/base/ime/input_method_win.cc ('k') | ui/base/l10n/l10n_util_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698