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

Unified Diff: third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp

Issue 2566403003: Migrate WTF::Vector::append() to ::push_back() [part 3 of N] (Closed)
Patch Set: Created 4 years 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/core/css/cssom/FilteredComputedStylePropertyMap.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
index a060aa6eb1e3914c3eaeaaefca2f4539b42486d0..27d5cbfc162700479ecc896dc053fa2dce4654d4 100644
--- a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
@@ -79,11 +79,11 @@ bool FilteredComputedStylePropertyMap::has(const String& propertyName,
Vector<String> FilteredComputedStylePropertyMap::getProperties() {
Vector<String> result;
for (const auto& nativeProperty : m_nativeProperties) {
- result.append(getPropertyNameString(nativeProperty));
+ result.push_back(getPropertyNameString(nativeProperty));
}
for (const auto& customProperty : m_customProperties) {
- result.append(customProperty);
+ result.push_back(customProperty);
}
return result;

Powered by Google App Engine
This is Rietveld 408576698