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