Index: third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp |
index 41e475b3ba55df440169566420608a2d4e35f66f..ada30fac18cb18889753c0359a7cc3d8664288ef 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp |
@@ -158,7 +158,7 @@ class UnderlyingImageChecker : public InterpolationType::ConversionChecker { |
InterpolationValue CSSImageInterpolationType::maybeConvertNeutral( |
const InterpolationValue& underlying, |
ConversionCheckers& conversionCheckers) const { |
- conversionCheckers.append(UnderlyingImageChecker::create(underlying)); |
+ conversionCheckers.push_back(UnderlyingImageChecker::create(underlying)); |
return InterpolationValue(underlying.clone()); |
} |
@@ -207,7 +207,7 @@ InterpolationValue CSSImageInterpolationType::maybeConvertInherit( |
const StyleImage* inheritedImage = ImagePropertyFunctions::getStyleImage( |
cssProperty(), *state.parentStyle()); |
StyleImage* refableImage = const_cast<StyleImage*>(inheritedImage); |
- conversionCheckers.append( |
+ conversionCheckers.push_back( |
InheritedImageChecker::create(cssProperty(), refableImage)); |
return maybeConvertStyleImage(inheritedImage, true); |
} |