| Index: third_party/WebKit/Source/core/svg/SVGPointListTearOff.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPointListTearOff.h b/third_party/WebKit/Source/core/svg/SVGPointListTearOff.h
|
| index b1cef04d1e5d18658c400b4e01ccb2db580ce3f1..7d5b3f9d9b6c66176e8b5588371b31f05ff12261 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPointListTearOff.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPointListTearOff.h
|
| @@ -41,13 +41,13 @@ class SVGPointListTearOff final
|
| , public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGPointListTearOff> create(PassRefPtrWillBeRawPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| + static RawPtr<SVGPointListTearOff> create(RawPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| {
|
| - return adoptRefWillBeNoop(new SVGPointListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
|
| + return new SVGPointListTearOff(target, contextElement, propertyIsAnimVal, attributeName);
|
| }
|
|
|
| private:
|
| - SVGPointListTearOff(PassRefPtrWillBeRawPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| + SVGPointListTearOff(RawPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| : SVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName) { }
|
| };
|
|
|
|
|