Index: third_party/WebKit/Source/core/animation/InterpolationEffect.cpp |
diff --git a/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp b/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp |
index 2f50610fb4c94cf3bcd562417c2427cb6cc800f4..55a5739560996e3a7344e2e96d69a24ff526a359 100644 |
--- a/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp |
+++ b/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp |
@@ -28,7 +28,7 @@ void InterpolationEffect::getActiveInterpolations( |
if (resultIndex < existingSize) |
result[resultIndex++] = interpolation; |
else |
- result.append(interpolation); |
+ result.push_back(interpolation); |
} |
} |
if (resultIndex < existingSize) |