Index: third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
index c39cd1746b37eeb89413ad3446df08547d62d161..a98f1f6004dbe108f6979f85d90fd3659a25c4de 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
@@ -214,12 +214,12 @@ void CSSScaleInterpolationType::composite( |
} |
} |
-void CSSScaleInterpolationType::apply( |
+void CSSScaleInterpolationType::applyStandardPropertyValue( |
const InterpolableValue& interpolableValue, |
const NonInterpolableValue*, |
- InterpolationEnvironment& environment) const { |
+ StyleResolverState& state) const { |
Scale scale(interpolableValue); |
- environment.state().style()->setScale(ScaleTransformOperation::create( |
+ state.style()->setScale(ScaleTransformOperation::create( |
scale.array[0], scale.array[1], scale.array[2], |
TransformOperation::Scale3D)); |
} |