Chromium Code Reviews| Index: ui/gfx/linux_font_delegate.h |
| diff --git a/ui/gfx/linux_font_delegate.h b/ui/gfx/linux_font_delegate.h |
| index 3a8d7bb86dcb74376d80b16e7ee0d77f31118960..2f14941fb2c492384a5196f35d8b2731952458b2 100644 |
| --- a/ui/gfx/linux_font_delegate.h |
| +++ b/ui/gfx/linux_font_delegate.h |
| @@ -33,12 +33,13 @@ class GFX_EXPORT LinuxFontDelegate { |
| // Returns the default font rendering settings. |
| virtual FontRenderParams GetDefaultFontRenderParams() const = 0; |
| - // Returns details about the default UI font. |style_out| holds a bitfield of |
| - // gfx::Font::Style values. |
| + // Returns details about the default UI font. |italic| should be true if the |
|
msw
2016/03/25 01:33:10
nit: |italic_out|, but you can probably just remov
Mikus
2016/03/25 11:49:00
Done.
|
| + // italic styling is desired. |
| virtual void GetDefaultFontDescription( |
| std::string* family_out, |
| int* size_pixels_out, |
| - int* style_out, |
| + bool* italic_out, |
| + Font::Weight* weight_out, |
| FontRenderParams* params_out) const = 0; |
| }; |