summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSegList.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathSegList.h')
-rw-r--r--WebCore/svg/SVGPathSegList.h27
1 files changed, 10 insertions, 17 deletions
diff --git a/WebCore/svg/SVGPathSegList.h b/WebCore/svg/SVGPathSegList.h
index 7e7134f..f27c653 100644
--- a/WebCore/svg/SVGPathSegList.h
+++ b/WebCore/svg/SVGPathSegList.h
@@ -26,23 +26,16 @@
namespace WebCore {
- class Path;
- class SVGElement;
-
- class SVGPathSegList : public SVGList<RefPtr<SVGPathSeg> > {
- public:
- static PassRefPtr<SVGPathSegList> create(const QualifiedName& attributeName) { return adoptRef(new SVGPathSegList(attributeName)); }
- virtual ~SVGPathSegList();
-
- unsigned getPathSegAtLength(double, ExceptionCode&);
-
- static PassRefPtr<SVGPathSegList> createAnimated(const SVGPathSegList* fromList, const SVGPathSegList* toList, float progress);
-
- private:
- SVGPathSegList(const QualifiedName&);
- };
-
- float adjustAnimatedValue(float from, float to, float progress);
+class SVGElement;
+
+class SVGPathSegList : public SVGList<RefPtr<SVGPathSeg> > {
+public:
+ static PassRefPtr<SVGPathSegList> create(const QualifiedName& attributeName) { return adoptRef(new SVGPathSegList(attributeName)); }
+ virtual ~SVGPathSegList();
+
+private:
+ SVGPathSegList(const QualifiedName&);
+};
} // namespace WebCore