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

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

Issue 403923002: Make GetCustomFontRenderParams() pass font style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove an extra assignment 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 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace gfx { 9 namespace gfx {
10 10
(...skipping 22 matching lines...) Expand all
33 LoadDefaults(&default_params); 33 LoadDefaults(&default_params);
34 loaded_defaults = true; 34 loaded_defaults = true;
35 return default_params; 35 return default_params;
36 } 36 }
37 37
38 FontRenderParams GetCustomFontRenderParams( 38 FontRenderParams GetCustomFontRenderParams(
39 bool for_web_contents, 39 bool for_web_contents,
40 const std::vector<std::string>* family_list, 40 const std::vector<std::string>* family_list,
41 const int* pixel_size, 41 const int* pixel_size,
42 const int* point_size, 42 const int* point_size,
43 const int* style,
43 std::string* family_out) { 44 std::string* family_out) {
44 NOTIMPLEMENTED(); 45 NOTIMPLEMENTED();
45 return GetDefaultFontRenderParams(); 46 return GetDefaultFontRenderParams();
46 } 47 }
47 48
48 const FontRenderParams& GetDefaultWebKitFontRenderParams() { 49 const FontRenderParams& GetDefaultWebKitFontRenderParams() {
49 return GetDefaultFontRenderParams(); 50 return GetDefaultFontRenderParams();
50 } 51 }
51 52
52 } // namespace gfx 53 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698