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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl

Issue 2610893005: Migrate WTF::Vector::append() to ::push_back() [part 16 of N] (Closed)
Patch Set: rebase 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 | third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
index 2a631b34d1d62fb4df84878fdb4234df67df8821..7762728502929912e8498dde64eb7fcc67a4363c 100644
--- a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
@@ -21,7 +21,7 @@ KeywordTable createKeywordTable() {
{
Vector<CSSValueID> {{property.lower_camel_name}}Keywords;
{% for keywordValueID in property.keywordIDs %}
- {{property.lower_camel_name}}Keywords.append({{keywordValueID}});
+ {{property.lower_camel_name}}Keywords.push_back({{keywordValueID}});
{% endfor %}
table.set({{property_id}}, {{property.lower_camel_name}}Keywords);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698