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

Unified Diff: third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h

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/ImageListPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
index 7150033f8a6410b19749c1b1c6c7e578d4852d56..cbea878f1d4542107f97ea2afa6cb9a58c51ec51 100644
--- a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
+++ b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
@@ -37,7 +37,7 @@ class ImageListPropertyFunctions {
result.clear();
while (fillLayer && fillLayer->image()) {
- result.append(fillLayer->image());
+ result.push_back(fillLayer->image());
fillLayer = fillLayer->next();
}
}

Powered by Google App Engine
This is Rietveld 408576698