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

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

Issue 2627023004: Migrate WTF::Vector::append() to ::push_back() in XPathGrammar (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | 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 83836325e68cb485ab376ca4e295f72b74c725a7..28d326b48ac429c571d9a185009677e0af1c0427 100644
--- a/third_party/WebKit/Source/core/xml/XPathGrammar.y
+++ b/third_party/WebKit/Source/core/xml/XPathGrammar.y
@@ -275,12 +275,12 @@ PredicateList:
Predicate
{
$$ = new blink::HeapVector<blink::Member<Predicate>>;
- $$->append(new Predicate($1));
+ $$->push_back(new Predicate($1));
}
|
PredicateList Predicate
{
- $$->append(new Predicate($2));
+ $$->push_back(new Predicate($2));
}
;
@@ -359,12 +359,12 @@ ArgumentList:
Argument
{
$$ = new blink::HeapVector<blink::Member<Expression>>;
- $$->append($1);
+ $$->push_back($1);
}
|
ArgumentList ',' Argument
{
- $$->append($3);
+ $$->push_back($3);
}
;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698