Index: Source/core/svg/SVGNumberList.h |
diff --git a/Source/core/svg/SVGNumberList.h b/Source/core/svg/SVGNumberList.h |
index 087d164bd8d095bf71157f1142a0261bb9e3c31c..e3bab4c1d35c6bf62da364c483b9d20ae583ee15 100644 |
--- a/Source/core/svg/SVGNumberList.h |
+++ b/Source/core/svg/SVGNumberList.h |
@@ -33,13 +33,13 @@ |
#include "bindings/v8/ScriptWrappable.h" |
#include "core/svg/SVGNumber.h" |
-#include "core/svg/properties/NewSVGListPropertyHelper.h" |
+#include "core/svg/properties/SVGListPropertyHelper.h" |
namespace WebCore { |
class SVGNumberListTearOff; |
-class SVGNumberList FINAL : public NewSVGListPropertyHelper<SVGNumberList, SVGNumber> { |
+class SVGNumberList FINAL : public SVGListPropertyHelper<SVGNumberList, SVGNumber> { |
public: |
typedef SVGNumberListTearOff 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 AnimatedNumberList; } |