Index: Source/core/html/canvas/CanvasStyle.cpp |
diff --git a/Source/core/html/canvas/CanvasStyle.cpp b/Source/core/html/canvas/CanvasStyle.cpp |
index b68421af1f6dfcf59b18828e25a84f0ea0f9351a..d7229866347b074b2821dd5af7fbe248cd5c9d33 100644 |
--- a/Source/core/html/canvas/CanvasStyle.cpp |
+++ b/Source/core/html/canvas/CanvasStyle.cpp |
@@ -30,7 +30,7 @@ |
#include "core/html/canvas/CanvasStyle.h" |
#include "CSSPropertyNames.h" |
-#include "core/css/CSSParser.h" |
+#include "core/css/parser/BisonCSSParser.h" |
#include "core/css/StylePropertySet.h" |
#include "core/html/HTMLCanvasElement.h" |
#include "core/html/canvas/CanvasGradient.h" |
@@ -46,9 +46,9 @@ static ColorParseResult parseColor(RGBA32& parsedColor, const String& colorStrin |
{ |
if (equalIgnoringCase(colorString, "currentcolor")) |
return ParsedCurrentColor; |
- if (CSSParser::parseColor(parsedColor, colorString)) |
+ if (BisonCSSParser::parseColor(parsedColor, colorString)) |
return ParsedRGBA; |
- if (CSSParser::parseSystemColor(parsedColor, colorString, document)) |
+ if (BisonCSSParser::parseSystemColor(parsedColor, colorString, document)) |
return ParsedSystemColor; |
return ParseFailed; |
} |
@@ -58,7 +58,7 @@ RGBA32 currentColor(HTMLCanvasElement* canvas) |
if (!canvas || !canvas->inDocument() || !canvas->inlineStyle()) |
return Color::black; |
RGBA32 rgba = Color::black; |
- CSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor)); |
+ BisonCSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor)); |
return rgba; |
} |