Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(983)

Unified Diff: Source/core/html/canvas/CanvasStyle.cpp

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/canvas/CanvasStyle.cpp
diff --git a/Source/core/html/canvas/CanvasStyle.cpp b/Source/core/html/canvas/CanvasStyle.cpp
index d7229866347b074b2821dd5af7fbe248cd5c9d33..2ff49c9af30dd51a9b53b48caafbc1e643dacb8f 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/parser/BisonCSSParser.h"
+#include "core/css/parser/CSSParser.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 (BisonCSSParser::parseColor(parsedColor, colorString))
+ if (CSSParser::parseColor(parsedColor, colorString))
return ParsedRGBA;
- if (BisonCSSParser::parseSystemColor(parsedColor, colorString, document))
+ if (CSSParser::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;
- BisonCSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor));
+ CSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor));
ojan 2014/02/19 19:52:31 Should this also have a FIXME about ignoring the r
return rgba;
}

Powered by Google App Engine
This is Rietveld 408576698