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

Unified Diff: Source/web/WebSelector.cpp

Issue 566483002: Split out CSSParser public API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: \ Created 6 years, 3 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
« no previous file with comments | « Source/core/svg/SVGElement.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSelector.cpp
diff --git a/Source/web/WebSelector.cpp b/Source/web/WebSelector.cpp
index 783df6b4f71af4ddc4416ff3c512218037c25b10..dddeaa34960d9b72310d380bd164e5ac6bce1b01 100644
--- a/Source/web/WebSelector.cpp
+++ b/Source/web/WebSelector.cpp
@@ -32,14 +32,14 @@
#include "public/web/WebSelector.h"
#include "core/css/CSSSelectorList.h"
-#include "core/css/parser/BisonCSSParser.h"
+#include "core/css/parser/CSSParser.h"
#include "public/platform/WebString.h"
namespace blink {
WebString canonicalizeSelector(WebString webSelector, WebSelectorType restriction)
{
- BisonCSSParser parser(strictCSSParserContext());
+ CSSParser parser(strictCSSParserContext());
CSSSelectorList selectorList;
parser.parseSelector(webSelector, selectorList);
« no previous file with comments | « Source/core/svg/SVGElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698