| Index: Source/core/animation/animatable/AnimatableImage.cpp
|
| diff --git a/Source/core/animation/animatable/AnimatableImage.cpp b/Source/core/animation/animatable/AnimatableImage.cpp
|
| index 0f38302aaaa94d0971417e3f69e0f0a8a84aec10..0ba1a634634df43b3673c219cd3b111ac6b69311 100644
|
| --- a/Source/core/animation/animatable/AnimatableImage.cpp
|
| +++ b/Source/core/animation/animatable/AnimatableImage.cpp
|
| @@ -55,7 +55,7 @@ PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableImage::interpolateTo(const Ani
|
| CSSValue* fromValue = toCSSValue();
|
| CSSValue* toValue = toAnimatableImage(value)->toCSSValue();
|
|
|
| - RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
|
| + RefPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
|
| crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimitiveValue::UnitType::Number));
|
| return create(crossfadeValue);
|
| }
|
|
|