| Index: third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h b/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| index 99233711714f5739041b5f312dcfe5a6d14ef892..34e12279ec067fdc789dc7f9ce54146b1ffc4829 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| @@ -39,9 +39,9 @@ namespace blink {
|
| class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect> {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| + static RawPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedRect(contextElement, attributeName));
|
| + return (new SVGAnimatedRect(contextElement, attributeName));
|
| }
|
|
|
| protected:
|
|
|