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

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

Issue 1259563002: Revert of Precompile more in Blink in Windows for faster compilations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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/win/precompile-core.gypi ('k') | Source/modules/modules.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathGrammar.y
diff --git a/Source/core/xml/XPathGrammar.y b/Source/core/xml/XPathGrammar.y
index 35468d5288bcf50098774d84abef31e59c91ea9c..6774e5d043b15a813a7ac5fd577e2107587a7889 100644
--- a/Source/core/xml/XPathGrammar.y
+++ b/Source/core/xml/XPathGrammar.y
@@ -391,14 +391,14 @@
FilterExpr '/' RelativeLocationPath
{
$3->setAbsolute(true);
- $$ = new blink::XPath::Path($1, $3);
+ $$ = new Path($1, $3);
}
|
FilterExpr DescendantOrSelf RelativeLocationPath
{
$3->insertFirstStep($2);
$3->setAbsolute(true);
- $$ = new blink::XPath::Path($1, $3);
+ $$ = new Path($1, $3);
}
;
@@ -407,7 +407,7 @@
|
PrimaryExpr PredicateList
{
- $$ = new blink::XPath::Filter($1, *$2);
+ $$ = new Filter($1, *$2);
}
;
« no previous file with comments | « Source/core/win/precompile-core.gypi ('k') | Source/modules/modules.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698