| Index: third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| index 664ead256051a6ea1fdec0e8738a5fcb4b2a823a..3a3ea9defe1c76df91a29ff5f20801e9a50c05fa 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| @@ -162,7 +162,7 @@ InterpolationValue CSSClipInterpolationType::maybeConvertNeutral(
|
| ConversionCheckers& conversionCheckers) const {
|
| ClipAutos underlyingAutos =
|
| UnderlyingAutosChecker::getUnderlyingAutos(underlying);
|
| - conversionCheckers.append(UnderlyingAutosChecker::create(underlyingAutos));
|
| + conversionCheckers.push_back(UnderlyingAutosChecker::create(underlyingAutos));
|
| if (underlyingAutos.isAuto)
|
| return nullptr;
|
| LengthBox neutralBox(
|
| @@ -183,7 +183,7 @@ InterpolationValue CSSClipInterpolationType::maybeConvertInherit(
|
| const StyleResolverState& state,
|
| ConversionCheckers& conversionCheckers) const {
|
| ClipAutos inheritedAutos = getClipAutos(*state.parentStyle());
|
| - conversionCheckers.append(InheritedAutosChecker::create(inheritedAutos));
|
| + conversionCheckers.push_back(InheritedAutosChecker::create(inheritedAutos));
|
| if (inheritedAutos.isAuto)
|
| return nullptr;
|
| return createClipValue(state.parentStyle()->clip(),
|
|
|