| Index: third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| index dcddb954e672cfb072611bd9e00c1eff7f95f846..8ec02075ba587ebda68188e08a874acc22b8499a 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| @@ -16,7 +16,8 @@ InterpolationValue SVGNumberListInterpolationType::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;
|
|
|