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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.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
Index: third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl
index b9fe6ea0afdbad7f79b4aab901b2f464baea397d..cc7ea7882e818228d17b6c5809f0dc1957f295c4 100644
--- a/third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl
@@ -58,7 +58,7 @@ void CSSPropertyMetadata::filterEnabledCSSPropertiesIntoVector(
for (unsigned i = 0; i < propertyCount; i++) {
CSSPropertyID property = properties[i];
if (isEnabledProperty(property))
- outVector.append(property);
+ outVector.push_back(property);
}
}

Powered by Google App Engine
This is Rietveld 408576698