Index: Source/core/svg/SVGPathSegLinetoHorizontal.h |
diff --git a/Source/core/svg/SVGPathSegLinetoHorizontal.h b/Source/core/svg/SVGPathSegLinetoHorizontal.h |
index 9dc04b0349acb806ddc67edd9ab77c0c6d20eb1a..7b3dde1979e5d8b64f0818e491ab0d93d9cab69a 100644 |
--- a/Source/core/svg/SVGPathSegLinetoHorizontal.h |
+++ b/Source/core/svg/SVGPathSegLinetoHorizontal.h |
@@ -44,42 +44,6 @@ private: |
float m_x; |
}; |
-class SVGPathSegLinetoHorizontalAbs : public SVGPathSegLinetoHorizontal { |
-public: |
- static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x) |
- { |
- return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x)); |
- } |
- |
-private: |
- SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x) |
- : SVGPathSegLinetoHorizontal(element, role, x) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_HORIZONTAL_ABS; } |
- virtual String pathSegTypeAsLetter() const { return "H"; } |
-}; |
- |
-class SVGPathSegLinetoHorizontalRel : public SVGPathSegLinetoHorizontal { |
-public: |
- static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x) |
- { |
- return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x)); |
- } |
- |
-private: |
- SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x) |
- : SVGPathSegLinetoHorizontal(element, role, x) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_HORIZONTAL_REL; } |
- virtual String pathSegTypeAsLetter() const { return "h"; } |
-}; |
- |
} // namespace WebCore |
#endif |