Index: third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp |
index b845a5fe919181399510dfbf4e4697a40989b3a3..7e27ec5cfd3854804b91aa88ba31fa9761b85282 100644 |
--- a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp |
@@ -17,7 +17,8 @@ InterpolationValue SVGLengthListInterpolationType::maybeConvertNeutral( |
ConversionCheckers& conversionCheckers) const { |
size_t underlyingLength = |
UnderlyingLengthChecker::getUnderlyingLength(underlying); |
- conversionCheckers.append(UnderlyingLengthChecker::create(underlyingLength)); |
+ conversionCheckers.push_back( |
+ UnderlyingLengthChecker::create(underlyingLength)); |
if (underlyingLength == 0) |
return nullptr; |