| Index: Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
|
| diff --git a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
|
| index a13f56306b535bf63c17b52b3ac174957cbf1ada..025ec8029a438c3245a2daf712e2ed7607c21df5 100644
|
| --- a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
|
| +++ b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
|
| @@ -34,6 +34,11 @@ public:
|
| return adoptRefWillBeNoop(new SVGPathSegLinetoHorizontalAbs(element, x));
|
| }
|
|
|
| + virtual PassRefPtrWillBeRawPtr<SVGPathSeg> clone()
|
| + {
|
| + return adoptRefWillBeNoop(new SVGPathSegLinetoHorizontalAbs(0, x()));
|
| + }
|
| +
|
| private:
|
| SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, float x)
|
| : SVGPathSegLinetoHorizontal(element, x) { }
|
|
|