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

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

Issue 382273002: ui/gfx: Allow for font-specific rendering settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address more comments Created 6 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
OLDNEW
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.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
(...skipping 15 matching lines...) Expand all
26 26
27 const FontRenderParams& GetDefaultFontRenderParams() { 27 const FontRenderParams& GetDefaultFontRenderParams() {
28 static bool loaded_defaults = false; 28 static bool loaded_defaults = false;
29 static FontRenderParams default_params; 29 static FontRenderParams default_params;
30 if (!loaded_defaults) 30 if (!loaded_defaults)
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 FontRenderParams GetCustomFontRenderParams(
37 bool for_web_contents,
38 const std::vector<std::string>* family_list,
39 const int* pixel_size,
40 const int* point_size,
41 std::string* family_out) {
42 NOTIMPLEMENTED();
43 return GetDefaultFontRenderParams();
44 }
45
36 const FontRenderParams& GetDefaultWebKitFontRenderParams() { 46 const FontRenderParams& GetDefaultWebKitFontRenderParams() {
37 return GetDefaultFontRenderParams(); 47 return GetDefaultFontRenderParams();
38 } 48 }
39 49
40 } // namespace gfx 50 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698