| 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 793bdc12ff434d103693fd94f2b0e1965412032e..330fbc684c80570296a890581044830efd4e9f18 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h
|
| @@ -42,9 +42,9 @@ class SVGAnimatedPath : public SVGAnimatedProperty<SVGPath> {
|
| public:
|
| ~SVGAnimatedPath() override;
|
|
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName)
|
| + static RawPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedPath(contextElement, attributeName));
|
| + return (new SVGAnimatedPath(contextElement, attributeName));
|
| }
|
|
|
| protected:
|
|
|