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

Unified Diff: third_party/WebKit/Source/core/animation/EffectStack.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/EffectStack.cpp
diff --git a/third_party/WebKit/Source/core/animation/EffectStack.cpp b/third_party/WebKit/Source/core/animation/EffectStack.cpp
index 90465dcba24aeb13dfc1ea5c4a4fe75525f6bed8..fe94d846c968050353e0f46636fcd63b99ad81f1 100644
--- a/third_party/WebKit/Source/core/animation/EffectStack.cpp
+++ b/third_party/WebKit/Source/core/animation/EffectStack.cpp
@@ -58,7 +58,7 @@ void copyToActiveInterpolationsMap(
interpolation->isInvalidatableInterpolation() &&
toInvalidatableInterpolation(*interpolation)
.dependsOnUnderlyingValue()) {
- activeInterpolations.append(interpolation.get());
+ activeInterpolations.push_back(interpolation.get());
} else {
activeInterpolations.at(0) = interpolation.get();
}
« no previous file with comments | « third_party/WebKit/Source/core/animation/EffectStack.h ('k') | third_party/WebKit/Source/core/animation/EffectStackTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698