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

Unified Diff: third_party/WebKit/Source/core/xml/XPathGrammar.y

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: rebased Created 4 years, 1 month 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 | « third_party/WebKit/Source/core/win/Precompile-core.cpp ('k') | third_party/WebKit/Source/modules/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/xml/XPathGrammar.y
diff --git a/third_party/WebKit/Source/core/xml/XPathGrammar.y b/third_party/WebKit/Source/core/xml/XPathGrammar.y
index bd3b1c15f2f6f7f0957285d4325abc2e8f0f833b..83836325e68cb485ab376ca4e295f72b74c725a7 100644
--- a/third_party/WebKit/Source/core/xml/XPathGrammar.y
+++ b/third_party/WebKit/Source/core/xml/XPathGrammar.y
@@ -394,14 +394,14 @@ PathExpr:
FilterExpr '/' RelativeLocationPath
{
$3->setAbsolute(true);
- $$ = new Path($1, $3);
+ $$ = new blink::XPath::Path($1, $3);
}
|
FilterExpr DescendantOrSelf RelativeLocationPath
{
$3->insertFirstStep($2);
$3->setAbsolute(true);
- $$ = new Path($1, $3);
+ $$ = new blink::XPath::Path($1, $3);
}
;
@@ -410,7 +410,7 @@ FilterExpr:
|
PrimaryExpr PredicateList
{
- $$ = new Filter($1, *$2);
+ $$ = new blink::XPath::Filter($1, *$2);
}
;
« no previous file with comments | « third_party/WebKit/Source/core/win/Precompile-core.cpp ('k') | third_party/WebKit/Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698