Index: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
index 6cef1a663334b3429696715eed2aceec5fe15e6c..354133138d7460c0216e3a09adfc3f5889b90191 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
@@ -41,7 +41,7 @@ class UnderlyingImageListChecker : public InterpolationType::ConversionChecker { |
InterpolationValue CSSImageListInterpolationType::maybeConvertNeutral( |
const InterpolationValue& underlying, |
ConversionCheckers& conversionCheckers) const { |
- conversionCheckers.append(UnderlyingImageListChecker::create(underlying)); |
+ conversionCheckers.push_back(UnderlyingImageListChecker::create(underlying)); |
return underlying.clone(); |
} |
@@ -103,7 +103,7 @@ InterpolationValue CSSImageListInterpolationType::maybeConvertInherit( |
StyleImageList inheritedImageList; |
ImageListPropertyFunctions::getImageList(cssProperty(), *state.parentStyle(), |
inheritedImageList); |
- conversionCheckers.append( |
+ conversionCheckers.push_back( |
InheritedImageListChecker::create(cssProperty(), inheritedImageList)); |
return maybeConvertStyleImageList(inheritedImageList); |
} |