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

Unified Diff: Source/web/WebSelector.cpp

Issue 100453011: Rename css/CSSParser to css/parser/BisonCSSParser. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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 f606726407e750029bead811234ce67379572394..90efbdb3a4f689608f8bc18bb91aa8d687d8e364 100644
--- a/Source/web/WebSelector.cpp
+++ b/Source/web/WebSelector.cpp
@@ -32,7 +32,7 @@
#include "WebSelector.h"
#include "../platform/WebString.h"
-#include "core/css/CSSParser.h"
+#include "core/css/parser/BisonCSSParser.h"
#include "core/css/CSSSelectorList.h"
using namespace WebCore;
@@ -42,7 +42,7 @@ namespace blink {
WebString canonicalizeSelector(WebString webSelector, WebSelectorType restriction)
{
CSSParserContext context(HTMLStandardMode);
- CSSParser parser(context);
+ BisonCSSParser parser(context);
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