| 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 2ea9c6e5ddc727035e789991ebdf0c514fd9dae8..c0d265f6861304f51e431cad2337e536f454cf29 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| @@ -224,10 +224,10 @@ InterpolationValue CSSClipInterpolationType::maybeConvertValue(
|
|
|
| InterpolationValue
|
| CSSClipInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
|
| - const StyleResolverState& state) const {
|
| - if (state.style()->hasAutoClip())
|
| + const ComputedStyle& style) const {
|
| + if (style.hasAutoClip())
|
| return nullptr;
|
| - return createClipValue(state.style()->clip(), state.style()->effectiveZoom());
|
| + return createClipValue(style.clip(), style.effectiveZoom());
|
| }
|
|
|
| PairwiseInterpolationValue CSSClipInterpolationType::maybeMergeSingles(
|
|
|