Index: ui/gfx/platform_font.h |
diff --git a/ui/gfx/platform_font.h b/ui/gfx/platform_font.h |
index d576bcdf06b3b0e8a4bf8405ab1059eadbeee293..62d23d31d9dfb13df1c8716b7a6149d2b8f8c98f 100644 |
--- a/ui/gfx/platform_font.h |
+++ b/ui/gfx/platform_font.h |
@@ -60,9 +60,12 @@ class GFX_EXPORT PlatformFont : public base::RefCounted<PlatformFont> { |
// Returns the style of the font. |
virtual int GetStyle() const = 0; |
- // Returns the font name in UTF-8. |
+ // Returns the specified font name in UTF-8. |
virtual std::string GetFontName() const = 0; |
+ // Returns the actually used font name in UTF-8. |
+ virtual std::string GetActualFontNameForTest() const = 0; |
Alexei Svitkine (slow)
2013/12/10 16:30:30
Nit: I think the convention for the suffix is "For
Yuki
2013/12/11 05:05:58
Done.
|
+ |
// Returns the font size in pixels. |
virtual int GetFontSize() const = 0; |