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

Unified Diff: third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.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/ComputedStylePropertyMap.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
index 10119b93c457f564d4f171a0ca185c30e8d66811..8a5ada9646c962d9cbf01eec95d5af61b2557f4a 100644
--- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
@@ -32,7 +32,7 @@ CSSStyleValueVector ComputedStylePropertyMap::getAllInternal(
Vector<String> ComputedStylePropertyMap::getProperties() {
Vector<String> result;
for (unsigned i = 0; i < m_computedStyleDeclaration->length(); i++) {
- result.append(m_computedStyleDeclaration->item(i));
+ result.push_back(m_computedStyleDeclaration->item(i));
}
return result;
}

Powered by Google App Engine
This is Rietveld 408576698