Index: third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp |
index c4d80dfb39147967c7c97ccf80e470395f75d711..625a971876fe81622d229181a329d0dbbc492f70 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp |
@@ -168,7 +168,7 @@ InterpolationValue CSSTransformInterpolationType::maybeConvertInherit( |
ConversionCheckers& conversionCheckers) const { |
const TransformOperations& inheritedTransform = |
state.parentStyle()->transform(); |
- conversionCheckers.append( |
+ conversionCheckers.push_back( |
InheritedTransformChecker::create(inheritedTransform)); |
return convertTransform(inheritedTransform); |
} |
@@ -198,7 +198,7 @@ InterpolationValue CSSTransformInterpolationType::maybeConvertValue( |
LengthUnitsChecker::maybeCreate(std::move(lengthArray), state); |
if (lengthUnitsChecker) |
- conversionCheckers.append(std::move(lengthUnitsChecker)); |
+ conversionCheckers.push_back(std::move(lengthUnitsChecker)); |
} |
TransformOperations transform = TransformBuilder::createTransformOperations( |