| 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.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 11 matching lines...) Expand all Loading... |
| 22 // the page is scaled by a fractional factor. | 22 // the page is scaled by a fractional factor. |
| 23 params.subpixel_positioning = true; | 23 params.subpixel_positioning = true; |
| 24 // Slight hinting renders much better than normal hinting on Android. | 24 // Slight hinting renders much better than normal hinting on Android. |
| 25 params.hinting = FontRenderParams::HINTING_SLIGHT; | 25 params.hinting = FontRenderParams::HINTING_SLIGHT; |
| 26 | 26 |
| 27 return params; | 27 return params; |
| 28 } | 28 } |
| 29 | 29 |
| 30 } // namespace | 30 } // namespace |
| 31 | 31 |
| 32 const FontRenderParams& GetDefaultFontRenderParams() { | 32 FontRenderParams GetFontRenderParams(const FontRenderParamsQuery& query, |
| 33 std::string* family_out) { |
| 34 if (!query.is_empty() || family_out) |
| 35 NOTIMPLEMENTED(); |
| 33 static FontRenderParams default_params = LoadDefaults(); | 36 static FontRenderParams default_params = LoadDefaults(); |
| 34 return default_params; | 37 return default_params; |
| 35 } | 38 } |
| 36 | 39 |
| 37 const FontRenderParams& GetDefaultWebKitFontRenderParams() { | |
| 38 return GetDefaultFontRenderParams(); | |
| 39 } | |
| 40 | |
| 41 FontRenderParams GetCustomFontRenderParams( | |
| 42 bool for_web_contents, | |
| 43 const std::vector<std::string>* family_list, | |
| 44 const int* pixel_size, | |
| 45 const int* point_size, | |
| 46 const int* style, | |
| 47 std::string* family_out) { | |
| 48 NOTIMPLEMENTED(); | |
| 49 return GetDefaultFontRenderParams(); | |
| 50 } | |
| 51 | |
| 52 } // namespace gfx | 40 } // namespace gfx |
| OLD | NEW |