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 88d00dc7f257ee8f4b7a751997331e4774366a46..811db8560a21f1240262eb2c19e2972caf328920 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserToken.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserToken.h |
@@ -128,7 +128,8 @@ public: |
ret.initRaw(m_valueDataCharRaw, m_valueLength, m_valueIs8Bit); |
return ret; |
} |
- bool valueEqualsIgnoringCase(const char* str) const { return value().equalIgnoringCase(str); } |
+ template<unsigned matchLength> |
+ bool valueEqualsIgnoringASCIICase(const char (&match)[matchLength]) const { return value().equalIgnoringASCIICase<matchLength>(match); } |
UChar delimiter() const; |
NumericSign numericSign() const; |