Index: third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
index a3f8765fdf0715acef253e6403a8f8a0fb4b8d84..a8061e5bdd66fe2c2145b7f4dc87d757fa5b7d4a 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp |
@@ -159,7 +159,7 @@ bool CSSParser::parseColor(Color& color, const String& string, bool strict) |
bool CSSParser::parseSystemColor(Color& color, const String& colorString) |
{ |
CSSValueID id = cssValueKeywordID(colorString); |
- if (!CSSPropertyParser::isSystemColor(id)) |
+ if (!StyleColor::isSystemColor(id)) |
return false; |
color = LayoutTheme::theme().systemColor(id); |