| Index: Source/core/svg/SVGPathSegClosePath.h
|
| diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
|
| index 12b1eb7afb462e2378e67f37884527575946a854..6b844f0fd00101a9d94781f27abef9e3cf64b392 100644
|
| --- a/Source/core/svg/SVGPathSegClosePath.h
|
| +++ b/Source/core/svg/SVGPathSegClosePath.h
|
| @@ -21,11 +21,11 @@
|
| #ifndef SVGPathSegClosePath_h
|
| #define SVGPathSegClosePath_h
|
|
|
| -#include "core/svg/SVGPathSegWithContext.h"
|
| +#include "core/svg/SVGPathSeg.h"
|
|
|
| namespace blink {
|
|
|
| -class SVGPathSegClosePath final : public SVGPathSegWithContext {
|
| +class SVGPathSegClosePath final : public SVGPathSeg {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtrWillBeRawPtr<SVGPathSegClosePath> create(SVGPathElement* element)
|
| @@ -35,7 +35,7 @@ public:
|
|
|
| private:
|
| SVGPathSegClosePath(SVGPathElement* element)
|
| - : SVGPathSegWithContext(element) { }
|
| + : SVGPathSeg(element) { }
|
|
|
| virtual unsigned short pathSegType() const override { return PATHSEG_CLOSEPATH; }
|
| virtual String pathSegTypeAsLetter() const override { return "Z"; }
|
|
|