Index: third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp |
index 823474baef5309b35dcd8938246c3bd866092689..445a4936d7db3536dc57791478bb030a4e90638b 100644 |
--- a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp |
@@ -17,7 +17,8 @@ InterpolationValue SVGPointListInterpolationType::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; |