Index: third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
index 1bb49226f9231f5d0dab314cd64f8b3767d150b5..7631a8d5073dad02242cfa191bd61153e713fc1d 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
@@ -85,7 +85,7 @@ InterpolationValue CSSShadowListInterpolationType::maybeConvertInherit( |
const ShadowList* inheritedShadowList = |
ShadowListPropertyFunctions::getShadowList(cssProperty(), |
*state.parentStyle()); |
- conversionCheckers.append(InheritedShadowListChecker::create( |
+ conversionCheckers.push_back(InheritedShadowListChecker::create( |
cssProperty(), |
const_cast<ShadowList*>(inheritedShadowList))); // Take ref. |
return convertShadowList(inheritedShadowList, |
@@ -152,7 +152,7 @@ static PassRefPtr<ShadowList> createShadowList( |
toNonInterpolableList(*nonInterpolableValue); |
ShadowDataVector shadows; |
for (size_t i = 0; i < length; i++) |
- shadows.append(ShadowInterpolationFunctions::createShadowData( |
+ shadows.push_back(ShadowInterpolationFunctions::createShadowData( |
*interpolableList.get(i), nonInterpolableList.get(i), state)); |
return ShadowList::adopt(shadows); |
} |