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(); |
} |