Index: third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp |
index 828423d9d1b9aea1a1fb788c11cde06e59b91070..731a7369448da406c64e9d3e016d0793596b8e8c 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp |
@@ -128,7 +128,7 @@ InterpolationValue CSSTextIndentInterpolationType::maybeConvertNeutral( |
IndentMode mode = |
toCSSTextIndentNonInterpolableValue(*underlying.nonInterpolableValue) |
.mode(); |
- conversionCheckers.append(UnderlyingIndentModeChecker::create(mode)); |
+ conversionCheckers.push_back(UnderlyingIndentModeChecker::create(mode)); |
return createValue(Length(0, Fixed), mode, 1); |
} |
@@ -145,7 +145,7 @@ InterpolationValue CSSTextIndentInterpolationType::maybeConvertInherit( |
ConversionCheckers& conversionCheckers) const { |
const ComputedStyle& parentStyle = *state.parentStyle(); |
IndentMode mode(parentStyle); |
- conversionCheckers.append(InheritedIndentModeChecker::create(mode)); |
+ conversionCheckers.push_back(InheritedIndentModeChecker::create(mode)); |
return createValue(parentStyle.textIndent(), mode, |
parentStyle.effectiveZoom()); |
} |