From 1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Wed, 17 Dec 2008 18:05:15 -0800 Subject: Code drop from //branches/cupcake/...@124589 --- WebCore/svg/SVGPathSegList.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'WebCore/svg/SVGPathSegList.h') diff --git a/WebCore/svg/SVGPathSegList.h b/WebCore/svg/SVGPathSegList.h index 47e0079..d9325ce 100644 --- a/WebCore/svg/SVGPathSegList.h +++ b/WebCore/svg/SVGPathSegList.h @@ -33,11 +33,16 @@ namespace WebCore { class SVGPathSegList : public SVGList > { public: - SVGPathSegList(const QualifiedName&); + static PassRefPtr create(const QualifiedName& attributeName) { return adoptRef(new SVGPathSegList(attributeName)); } virtual ~SVGPathSegList(); unsigned getPathSegAtLength(double); Path toPathData(); + + static PassRefPtr createAnimated(const SVGPathSegList* fromList, const SVGPathSegList* toList, float progress); + + private: + SVGPathSegList(const QualifiedName&); }; } // namespace WebCore -- cgit v1.1