Index: Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h |
diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h |
index cd1caad104c1c15abbd66dc45efe18878ab41d06..545b0beb4c2995df353fd6e968173b323c723b1b 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h |
+++ b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h |
@@ -34,6 +34,11 @@ public: |
return adoptRefWillBeNoop(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1)); |
} |
+ PassRefPtrWillBeRawPtr<SVGPathSeg> clone() override |
+ { |
+ return adoptRefWillBeNoop(new SVGPathSegCurvetoQuadraticAbs(nullptr, x(), y(), x1(), y1())); |
+ } |
+ |
private: |
SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, float x, float y, float x1, float y1) |
: SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { } |