| Index: Source/core/svg/SVGPointList.h
|
| diff --git a/Source/core/svg/SVGPointList.h b/Source/core/svg/SVGPointList.h
|
| index 357f2574a89d9ddfed4b62e3ca5cbee882346c34..c6457261c98ae1b81234c25adc5b2140c83f734c 100644
|
| --- a/Source/core/svg/SVGPointList.h
|
| +++ b/Source/core/svg/SVGPointList.h
|
| @@ -33,13 +33,13 @@
|
|
|
| #include "bindings/v8/ScriptWrappable.h"
|
| #include "core/svg/SVGPoint.h"
|
| -#include "core/svg/properties/NewSVGListPropertyHelper.h"
|
| +#include "core/svg/properties/SVGListPropertyHelper.h"
|
|
|
| namespace WebCore {
|
|
|
| class SVGPointListTearOff;
|
|
|
| -class SVGPointList FINAL : public NewSVGListPropertyHelper<SVGPointList, SVGPoint> {
|
| +class SVGPointList FINAL : public SVGListPropertyHelper<SVGPointList, SVGPoint> {
|
| public:
|
| typedef SVGPointListTearOff TearOffType;
|
|
|
| @@ -54,13 +54,13 @@ public:
|
|
|
| void setValueAsString(const String&, ExceptionState&);
|
|
|
| - // NewSVGPropertyBase:
|
| - virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) const OVERRIDE;
|
| + // SVGPropertyBase:
|
| + virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String&) const OVERRIDE;
|
| virtual String valueAsString() const OVERRIDE;
|
|
|
| - virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE;
|
| - virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> fromValue, PassRefPtr<NewSVGPropertyBase> toValue, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
|
| - virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElement*) OVERRIDE;
|
| + virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
|
| + virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
|
| + virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
|
|
|
| static AnimatedPropertyType classType() { return AnimatedPoints; }
|
|
|
|
|