OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/gfx/font_render_params_linux.h" | 5 #include "ui/gfx/font_render_params.h" |
6 | 6 |
7 namespace gfx { | 7 namespace gfx { |
8 | 8 |
9 namespace { | 9 namespace { |
10 | 10 |
11 // Initializes |params| with the system's default settings. | 11 // Initializes |params| with the system's default settings. |
12 void LoadDefaults(FontRenderParams* params) { | 12 void LoadDefaults(FontRenderParams* params) { |
13 params->antialiasing = true; | 13 params->antialiasing = true; |
14 params->autohinter = true; | 14 params->autohinter = true; |
15 params->use_bitmaps = true; | 15 params->use_bitmaps = true; |
(...skipping 15 matching lines...) Expand all Loading... |
31 LoadDefaults(&default_params); | 31 LoadDefaults(&default_params); |
32 loaded_defaults = true; | 32 loaded_defaults = true; |
33 return default_params; | 33 return default_params; |
34 } | 34 } |
35 | 35 |
36 const FontRenderParams& GetDefaultWebKitFontRenderParams() { | 36 const FontRenderParams& GetDefaultWebKitFontRenderParams() { |
37 return GetDefaultFontRenderParams(); | 37 return GetDefaultFontRenderParams(); |
38 } | 38 } |
39 | 39 |
40 } // namespace gfx | 40 } // namespace gfx |
OLD | NEW |