Index: third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
index e5c4ce8dd33c950562239f8acb8071eb095228a5..3c76b9db6c0cc01c6a96077e76c3714d3b62fc65 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
@@ -96,7 +96,7 @@ InterpolationValue CSSOffsetRotationInterpolationType::maybeConvertNeutral( |
OffsetRotationType underlyingRotationType = |
toCSSOffsetRotationNonInterpolableValue(*underlying.nonInterpolableValue) |
.rotationType(); |
- conversionCheckers.append( |
+ conversionCheckers.push_back( |
UnderlyingRotationTypeChecker::create(underlyingRotationType)); |
return convertOffsetRotate(StyleOffsetRotation(0, underlyingRotationType)); |
} |
@@ -112,7 +112,7 @@ InterpolationValue CSSOffsetRotationInterpolationType::maybeConvertInherit( |
ConversionCheckers& conversionCheckers) const { |
OffsetRotationType inheritedRotationType = |
state.parentStyle()->offsetRotation().type; |
- conversionCheckers.append( |
+ conversionCheckers.push_back( |
InheritedRotationTypeChecker::create(inheritedRotationType)); |
return convertOffsetRotate(state.parentStyle()->offsetRotation()); |
} |