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

Unified Diff: third_party/WebKit/Source/core/animation/EffectStackTest.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/EffectStackTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/EffectStackTest.cpp b/third_party/WebKit/Source/core/animation/EffectStackTest.cpp
index 8273145cab9b043d0519b00255b692737aac135f..13cea9f0f556abb14a8af9cf7b3d8fcd4fcd551c 100644
--- a/third_party/WebKit/Source/core/animation/EffectStackTest.cpp
+++ b/third_party/WebKit/Source/core/animation/EffectStackTest.cpp
@@ -116,8 +116,8 @@ TEST_F(AnimationEffectStackTest, NewAnimations) {
makeEffectModel(CSSPropertyFontSize, AnimatableDouble::create(3)));
InertEffect* inert2 = makeInertEffect(
makeEffectModel(CSSPropertyZIndex, AnimatableDouble::create(4)));
- newAnimations.append(inert1);
- newAnimations.append(inert2);
+ newAnimations.push_back(inert1);
+ newAnimations.push_back(inert2);
ActiveInterpolationsMap result = EffectStack::activeInterpolations(
&element->elementAnimations()->effectStack(), &newAnimations, 0,
KeyframeEffectReadOnly::DefaultPriority);
« no previous file with comments | « third_party/WebKit/Source/core/animation/EffectStack.cpp ('k') | third_party/WebKit/Source/core/animation/ElementAnimation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698