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

Unified Diff: third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp

Issue 2562773002: Migrate WTF::Vector::append() to ::push_back() [part 2 of N] (Closed)
Patch Set: rebase 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/animation/SizeListPropertyFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp
index c1346cb9a1cec561722c02b33369c8f783f6c778..950ea6a22f9710a51419d7c9f1da0856db1864db 100644
--- a/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/SizeListPropertyFunctions.cpp
@@ -43,7 +43,7 @@ SizeList SizeListPropertyFunctions::getSizeList(CSSPropertyID property,
SizeList result;
for (const FillLayer* fillLayer = getFillLayer(property, style);
fillLayer && fillLayer->isSizeSet(); fillLayer = fillLayer->next())
- result.append(fillLayer->size());
+ result.push_back(fillLayer->size());
return result;
}

Powered by Google App Engine
This is Rietveld 408576698