Index: Source/core/svg/SVGPathSegArc.h |
diff --git a/Source/core/svg/SVGPathSegArc.h b/Source/core/svg/SVGPathSegArc.h |
index b787a37baae83911a062f198d7780fdccd75e19a..eaf984924933832f2eb5969d512abb15992a6f41 100644 |
--- a/Source/core/svg/SVGPathSegArc.h |
+++ b/Source/core/svg/SVGPathSegArc.h |
@@ -99,42 +99,6 @@ private: |
bool m_sweepFlag : 1; |
}; |
-class SVGPathSegArcAbs : public SVGPathSegArc { |
-public: |
- static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
- { |
- return adoptRef(new SVGPathSegArcAbs(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)); |
- } |
- |
-private: |
- SVGPathSegArcAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
- : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_ARC_ABS; } |
- virtual String pathSegTypeAsLetter() const { return "A"; } |
-}; |
- |
-class SVGPathSegArcRel : public SVGPathSegArc { |
-public: |
- static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
- { |
- return adoptRef(new SVGPathSegArcRel(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)); |
- } |
- |
-private: |
- SVGPathSegArcRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
- : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_ARC_REL; } |
- virtual String pathSegTypeAsLetter() const { return "a"; } |
-}; |
- |
} // namespace WebCore |
#endif |