| Index: third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
|
| index 3337712639b225a8c90d9fcf763c148b86f9d616..e3076e8445a6628cdfd2cdf2a7b3a5c49027fc1f 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
|
| @@ -14,7 +14,7 @@ class CSSValueNonInterpolableValue : public NonInterpolableValue {
|
| public:
|
| ~CSSValueNonInterpolableValue() final { }
|
|
|
| - static PassRefPtr<CSSValueNonInterpolableValue> create(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
|
| + static PassRefPtr<CSSValueNonInterpolableValue> create(RawPtr<CSSValue> cssValue)
|
| {
|
| return adoptRef(new CSSValueNonInterpolableValue(cssValue));
|
| }
|
| @@ -24,13 +24,13 @@ public:
|
| DECLARE_NON_INTERPOLABLE_VALUE_TYPE();
|
|
|
| private:
|
| - CSSValueNonInterpolableValue(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
|
| + CSSValueNonInterpolableValue(RawPtr<CSSValue> cssValue)
|
| : m_cssValue(cssValue)
|
| {
|
| ASSERT(m_cssValue);
|
| }
|
|
|
| - RefPtrWillBePersistent<CSSValue> m_cssValue;
|
| + Persistent<CSSValue> m_cssValue;
|
| };
|
|
|
| DEFINE_NON_INTERPOLABLE_VALUE_TYPE(CSSValueNonInterpolableValue);
|
|
|