| Index: third_party/WebKit/Source/core/svg/properties/SVGPropertyHelper.h
|
| diff --git a/third_party/WebKit/Source/core/svg/properties/SVGPropertyHelper.h b/third_party/WebKit/Source/core/svg/properties/SVGPropertyHelper.h
|
| index 866d1e5488b9f102038de9d504eaf5362cd335da..15828f4cee74235c08459b2e82e1f30e500c624b 100644
|
| --- a/third_party/WebKit/Source/core/svg/properties/SVGPropertyHelper.h
|
| +++ b/third_party/WebKit/Source/core/svg/properties/SVGPropertyHelper.h
|
| @@ -17,9 +17,9 @@ public:
|
| {
|
| }
|
|
|
| - virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String& value) const
|
| + virtual RawPtr<SVGPropertyBase> cloneForAnimation(const String& value) const
|
| {
|
| - RefPtrWillBeRawPtr<Derived> property = Derived::create();
|
| + RawPtr<Derived> property = Derived::create();
|
| property->setValueAsString(value);
|
| return property.release();
|
| }
|
|
|