Index: third_party/WebKit/Source/core/style/ComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h |
index a9ebb4ae05069cb05ccd325dc34ffd4667bc15fc..75406228619594c82b794fadf12232bf3e6e0e0c 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
@@ -594,8 +594,8 @@ public: |
bool isFixedTableLayout() const { return tableLayout() == TableLayoutFixed && !logicalWidth().isAuto(); } |
const Font& font() const; |
- const FontMetrics& fontMetrics() const; |
- const FontDescription& fontDescription() const; |
+ const FontMetrics& getFontMetrics() const; |
+ const FontDescription& getFontDescription() const; |
float specifiedFontSize() const; |
float computedFontSize() const; |
int fontSize() const; |
@@ -865,7 +865,7 @@ public: |
LineBreak getLineBreak() const { return static_cast<LineBreak>(rareInheritedData->lineBreak); } |
const AtomicString& highlight() const { return rareInheritedData->highlight; } |
const AtomicString& hyphenationString() const { return rareInheritedData->hyphenationString; } |
- const AtomicString& locale() const { return fontDescription().locale(false); } |
+ const AtomicString& locale() const { return getFontDescription().locale(false); } |
EResize resize() const { return static_cast<EResize>(rareNonInheritedData->m_resize); } |
bool hasInlinePaginationAxis() const |
{ |