Index: third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
index 6eb6b0fedd7d900d4b9a5953ef24ec2563c24d96..cae4a48a5623e00ca2eb276cbcc18e5650ebe3e1 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp |
@@ -86,7 +86,7 @@ static inline bool parseSimpleLength(const CharacterType* characters, unsigned l |
// not represent a double. |
bool ok; |
number = charactersToDouble(characters, length, &ok); |
- return ok && CSSPropertyParser::isValidNumericValue(number); |
+ return ok && CSSParserToken::isValidNumericValue(number); |
} |
static CSSValue* parseSimpleLengthValue(CSSPropertyID propertyId, const String& string, CSSParserMode cssParserMode) |