| 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 e1c69d903c2b179cf0f37acffb822f6e60992c14..3aa79116ca00dffa8c295fc6c22c00e7e2379400 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
|
| @@ -40,9 +40,9 @@ namespace blink {
|
| class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect>, public ScriptWrappable {
|
| 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:
|
|
|