| Index: third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
|
| index 6ed147b9fe127faaa2192b9ad0ba4092274347ba..ee6082f6dc17958652e162ef7a53d73e806866a5 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
|
| @@ -161,7 +161,7 @@ InterpolationValue CSSImageSliceInterpolationType::maybeConvertNeutral(
|
| ConversionCheckers& conversionCheckers) const {
|
| SliceTypes underlyingTypes =
|
| UnderlyingSliceTypesChecker::getUnderlyingSliceTypes(underlying);
|
| - conversionCheckers.append(
|
| + conversionCheckers.push_back(
|
| UnderlyingSliceTypesChecker::create(underlyingTypes));
|
| LengthBox zeroBox(
|
| Length(0, underlyingTypes.isNumber[SideTop] ? Fixed : Percent),
|
| @@ -184,7 +184,7 @@ InterpolationValue CSSImageSliceInterpolationType::maybeConvertInherit(
|
| const ImageSlice& inheritedImageSlice =
|
| ImageSlicePropertyFunctions::getImageSlice(cssProperty(),
|
| *state.parentStyle());
|
| - conversionCheckers.append(InheritedSliceTypesChecker::create(
|
| + conversionCheckers.push_back(InheritedSliceTypesChecker::create(
|
| cssProperty(), SliceTypes(inheritedImageSlice)));
|
| return convertImageSlice(inheritedImageSlice,
|
| state.parentStyle()->effectiveZoom());
|
|
|