Index: Source/core/svg/SVGPathSegLinetoVertical.h |
diff --git a/Source/core/svg/SVGPathSegLinetoVertical.h b/Source/core/svg/SVGPathSegLinetoVertical.h |
index 9fb4d8c3ec09e084f3f06e4b970fdf8d626a07e0..961a95829fe9ae71a3be38ad9d1e2391d9b1e421 100644 |
--- a/Source/core/svg/SVGPathSegLinetoVertical.h |
+++ b/Source/core/svg/SVGPathSegLinetoVertical.h |
@@ -44,42 +44,6 @@ private: |
float m_y; |
}; |
-class SVGPathSegLinetoVerticalAbs : public SVGPathSegLinetoVertical { |
-public: |
- static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y) |
- { |
- return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y)); |
- } |
- |
-private: |
- SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y) |
- : SVGPathSegLinetoVertical(element, role, y) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_ABS; } |
- virtual String pathSegTypeAsLetter() const { return "V"; } |
-}; |
- |
-class SVGPathSegLinetoVerticalRel : public SVGPathSegLinetoVertical { |
-public: |
- static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y) |
- { |
- return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y)); |
- } |
- |
-private: |
- SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y) |
- : SVGPathSegLinetoVertical(element, role, y) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_REL; } |
- virtual String pathSegTypeAsLetter() const { return "v"; } |
-}; |
- |
} // namespace WebCore |
#endif |