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

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

Issue 968293002: Fix template angle bracket syntax in xml (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/xml/XPathFunctions.cpp ('k') | Source/core/xml/XPathNodeSet.h » ('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 ba93b6c89a80ffeaf69421abf6793986d86cb76d..982791be52efb622f2d33f1a74c4f04e56ee6e16 100644
--- a/Source/core/xml/XPathGrammar.y
+++ b/Source/core/xml/XPathGrammar.y
@@ -62,8 +62,8 @@ using namespace XPath;
blink::XPath::EqTestOp::Opcode eqop;
String* str;
blink::XPath::Expression* expr;
- WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Predicate> >* predList;
- WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Expression> >* argList;
+ WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Predicate>>* predList;
+ WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Expression>>* argList;
blink::XPath::Step* step;
blink::XPath::LocationPath* locationPath;
}
@@ -291,7 +291,7 @@ OptionalPredicateList:
PredicateList:
Predicate
{
- $$ = new WillBeHeapVector<OwnPtrWillBeMember<Predicate> >;
+ $$ = new WillBeHeapVector<OwnPtrWillBeMember<Predicate>>;
$$->append(adoptPtrWillBeNoop(new Predicate(adoptPtrWillBeNoop($1))));
parser->unregisterParseNode($1);
parser->registerPredicateVector($$);
@@ -387,7 +387,7 @@ FunctionCall:
ArgumentList:
Argument
{
- $$ = new WillBeHeapVector<OwnPtrWillBeMember<Expression> >;
+ $$ = new WillBeHeapVector<OwnPtrWillBeMember<Expression>>;
$$->append(adoptPtrWillBeNoop($1));
parser->unregisterParseNode($1);
parser->registerExpressionVector($$);
« no previous file with comments | « Source/core/xml/XPathFunctions.cpp ('k') | Source/core/xml/XPathNodeSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698