| Index: third_party/WebKit/Source/core/css/parser/CSSParserToken.h
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserToken.h b/third_party/WebKit/Source/core/css/parser/CSSParserToken.h
|
| index 811db8560a21f1240262eb2c19e2972caf328920..9ee58f45386c234e5727537a24c5b512c4bb3d3b 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParserToken.h
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParserToken.h
|
| @@ -135,8 +135,8 @@ public:
|
| NumericSign numericSign() const;
|
| NumericValueType numericValueType() const;
|
| double numericValue() const;
|
| - HashTokenType hashTokenType() const { ASSERT(m_type == HashToken); return m_hashTokenType; }
|
| - BlockType blockType() const { return static_cast<BlockType>(m_blockType); }
|
| + HashTokenType getHashTokenType() const { ASSERT(m_type == HashToken); return m_hashTokenType; }
|
| + BlockType getBlockType() const { return static_cast<BlockType>(m_blockType); }
|
| CSSPrimitiveValue::UnitType unitType() const { return static_cast<CSSPrimitiveValue::UnitType>(m_unit); }
|
| UChar32 unicodeRangeStart() const { ASSERT(m_type == UnicodeRangeToken); return m_unicodeRange.start; }
|
| UChar32 unicodeRangeEnd() const { ASSERT(m_type == UnicodeRangeToken); return m_unicodeRange.end; }
|
|
|