Index: Source/core/svg/SVGLengthList.h |
diff --git a/Source/core/svg/SVGLengthList.h b/Source/core/svg/SVGLengthList.h |
index 0b65bad3a1c9d11dca61942520f3df35980122c4..e97cc70e7a237566b2ff2e83acd799d51bc6282a 100644 |
--- a/Source/core/svg/SVGLengthList.h |
+++ b/Source/core/svg/SVGLengthList.h |
@@ -33,13 +33,13 @@ |
#include "bindings/v8/ScriptWrappable.h" |
#include "core/svg/SVGLength.h" |
-#include "core/svg/properties/NewSVGListPropertyHelper.h" |
+#include "core/svg/properties/SVGListPropertyHelper.h" |
namespace WebCore { |
class SVGLengthListTearOff; |
-class SVGLengthList FINAL : public NewSVGListPropertyHelper<SVGLengthList, SVGLength> { |
+class SVGLengthList FINAL : public SVGListPropertyHelper<SVGLengthList, SVGLength> { |
public: |
typedef SVGLengthListTearOff 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 AnimatedLengthList; } |