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

Side by Side Diff: ui/gfx/font_render_params_android.cc

Issue 10544103: Chromium change of sharing some WebKit API between Android/Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 8 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_linux.cc ('k') | ui/gfx/font_render_params_linux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/gfx/font_render_params_linux.h"
6
7 namespace gfx {
8
9 namespace {
10
11 // Initializes |params| with the system's default settings.
12 void LoadDefaults(FontRenderParams* params) {
13 params->antialiasing = true;
14 params->autohinter = true;
15 params->use_bitmaps = true;
16 params->subpixel_rendering = FontRenderParams::SUBPIXEL_RENDERING_NONE;
17
18 // Use subpixel text positioning to keep consistent character spacing when
19 // the page is scaled by a fractional factor.
20 params->subpixel_positioning = true;
21 // Slight hinting renders much better than normal hinting on Android.
22 params->hinting = FontRenderParams::HINTING_SLIGHT;
23 }
24
25 } // namespace
26
27 const FontRenderParams& GetDefaultFontRenderParams() {
28 static bool loaded_defaults = false;
29 static FontRenderParams default_params;
30 if (!loaded_defaults)
31 LoadDefaults(&default_params);
32 return default_params;
33 }
34
35 } // namespace gfx
OLDNEW
« no previous file with comments | « content/renderer/render_view_linux.cc ('k') | ui/gfx/font_render_params_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698