| Index: third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| index 72929ef062b8eaf70f1e4d5f6eb1c0362169bee7..31537db7b9b0fb7c949a81cd92dca0713384a676 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| @@ -40,9 +40,9 @@ class SVGAnimatedPath : public SVGAnimatedProperty<SVGPath> {
|
| public:
|
| ~SVGAnimatedPath() override;
|
|
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedPath> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| + static RawPtr<SVGAnimatedPath> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedPath(contextElement, attributeName));
|
| + return new SVGAnimatedPath(contextElement, attributeName);
|
| }
|
|
|
| protected:
|
|
|