| Index: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index b2c4c89e7ee496fb0ff36ae9652a4edbb3484127..a499eefaeeb344298565fe321bfe063a12344fa0 100644
|
| --- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -177,7 +177,7 @@ inline static PassRefPtr<AnimatableValue> createFromLengthSize(const LengthSize&
|
| inline static PassRefPtr<AnimatableValue> createFromStyleImage(StyleImage* image)
|
| {
|
| if (image) {
|
| - if (RefPtrWillBeRawPtr<CSSValue> cssValue = image->cssValue())
|
| + if (RawPtr<CSSValue> cssValue = image->cssValue())
|
| return AnimatableImage::create(cssValue.release());
|
| }
|
| return AnimatableUnknown::create(CSSValueNone);
|
|
|