| Index: third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
|
| index 6c5b73fa5abc9b619c1219a5f5d8ea7ddec0c220..5413c83e3a840d904e4e016bb38b50d77befd7ef 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
|
| @@ -11,9 +11,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<SVGAnimatedHref> SVGAnimatedHref::create(SVGElement* contextElement)
|
| +RawPtr<SVGAnimatedHref> SVGAnimatedHref::create(SVGElement* contextElement)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedHref(contextElement));
|
| + return new SVGAnimatedHref(contextElement);
|
| }
|
|
|
| DEFINE_TRACE(SVGAnimatedHref)
|
|
|