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