Index: third_party/WebKit/Source/platform/text/TextRun.h |
diff --git a/third_party/WebKit/Source/platform/text/TextRun.h b/third_party/WebKit/Source/platform/text/TextRun.h |
index 6a82cd4262fb85a2b1c8f4e2dc79130ff02e38e6..798df98acd09ce4f57c868d7a95a171e72f2dc47 100644 |
--- a/third_party/WebKit/Source/platform/text/TextRun.h |
+++ b/third_party/WebKit/Source/platform/text/TextRun.h |
@@ -194,7 +194,7 @@ public: |
void setHorizontalGlyphStretch(float scale) { m_horizontalGlyphStretch = scale; } |
bool allowTabs() const { return m_allowTabs; } |
- TabSize tabSize() const { return m_tabSize; } |
+ TabSize getTabSize() const { return m_tabSize; } |
void setTabSize(bool, TabSize); |
float xPos() const { return m_xpos; } |
@@ -213,7 +213,7 @@ public: |
void setDirectionalOverride(bool override) { m_directionalOverride = override; } |
void setTextJustify(TextJustify textJustify) { m_textJustify = static_cast<unsigned>(textJustify); } |
- TextJustify textJustify() const { return static_cast<TextJustify>(m_textJustify); } |
+ TextJustify getTextJustify() const { return static_cast<TextJustify>(m_textJustify); } |
private: |
union { |