Index: third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp |
index a0d75c1d859ff367a654e7f7db6fccaadcb8f34c..e15d0981cfc82e652349dbde6655229265da7b35 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp |
@@ -222,12 +222,12 @@ InterpolationValue CSSClipInterpolationType::maybeConvertValue( |
CSSClipNonInterpolableValue::create(autos)); |
} |
-InterpolationValue CSSClipInterpolationType::maybeConvertUnderlyingValue( |
- const InterpolationEnvironment& environment) const { |
- if (environment.state().style()->hasAutoClip()) |
+InterpolationValue |
+CSSClipInterpolationType::maybeConvertStandardPropertyUnderlyingValue( |
+ const StyleResolverState& state) const { |
+ if (state.style()->hasAutoClip()) |
return nullptr; |
- return createClipValue(environment.state().style()->clip(), |
- environment.state().style()->effectiveZoom()); |
+ return createClipValue(state.style()->clip(), state.style()->effectiveZoom()); |
} |
PairwiseInterpolationValue CSSClipInterpolationType::maybeMergeSingles( |