Index: Source/core/svg/SVGPathSegMovetoRel.h |
diff --git a/Source/core/svg/SVGPathSegMovetoRel.h b/Source/core/svg/SVGPathSegMovetoRel.h |
index 9883cc9f7ce298ba06086ac86cc5395ad4128c77..8c626511aa6572a1d380c76b58c602f4ee2ecc04 100644 |
--- a/Source/core/svg/SVGPathSegMovetoRel.h |
+++ b/Source/core/svg/SVGPathSegMovetoRel.h |
@@ -29,9 +29,9 @@ namespace blink { |
class SVGPathSegMovetoRel final : public SVGPathSegSingleCoordinate { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
- static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, float x, float y) |
+ static PassRefPtrWillBeRawPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, float x, float y) |
{ |
- return adoptRef(new SVGPathSegMovetoRel(element, x, y)); |
+ return adoptRefWillBeNoop(new SVGPathSegMovetoRel(element, x, y)); |
} |
private: |