Chromium Code Reviews| Index: ui/gfx/font_render_params.h |
| diff --git a/ui/gfx/font_render_params.h b/ui/gfx/font_render_params.h |
| index 0bf10d468382232709bb5442894d217e57484b44..d00f3a136d55523fa5221b8c9790a3258f90a373 100644 |
| --- a/ui/gfx/font_render_params.h |
| +++ b/ui/gfx/font_render_params.h |
| @@ -67,18 +67,13 @@ struct GFX_EXPORT FontRenderParams { |
| // A query used to determine the appropriate FontRenderParams. |
| struct GFX_EXPORT FontRenderParamsQuery { |
| - explicit FontRenderParamsQuery(bool for_web_contents); |
| + explicit FontRenderParamsQuery(); |
|
Daniel Erat
2015/04/06 12:23:29
nit: remove 'explicit'
stapelberg
2015/04/06 13:14:48
Done.
|
| ~FontRenderParamsQuery(); |
| bool is_empty() const { |
| return families.empty() && pixel_size <= 0 && point_size <= 0 && style < 0; |
| } |
| - // True if rendering text for the web. |
| - // TODO(derat): Remove this once FontRenderParams::subpixel_positioning is |
| - // gone: http://crbug.com/396659 |
| - bool for_web_contents; |
| - |
| // Requested font families, or empty if unset. |
| std::vector<std::string> families; |