Index: Source/core/svg/SVGAnimatedInteger.h |
diff --git a/Source/core/svg/SVGAnimatedInteger.h b/Source/core/svg/SVGAnimatedInteger.h |
index 84b78c3ca3b11367e0f61ada3fc971f6bd4a38ef..6a16d4b9772cc26c244fed52834ad2a9ced81211 100644 |
--- a/Source/core/svg/SVGAnimatedInteger.h |
+++ b/Source/core/svg/SVGAnimatedInteger.h |
@@ -32,14 +32,14 @@ |
#define SVGAnimatedInteger_h |
#include "core/svg/SVGInteger.h" |
-#include "core/svg/properties/NewSVGAnimatedProperty.h" |
+#include "core/svg/properties/SVGAnimatedProperty.h" |
namespace WebCore { |
class SVGAnimatedIntegerOptionalInteger; |
// SVG Spec: http://www.w3.org/TR/SVG11/types.html#InterfaceSVGAnimatedInteger |
-class SVGAnimatedInteger : public NewSVGAnimatedProperty<SVGInteger> { |
+class SVGAnimatedInteger : public SVGAnimatedProperty<SVGInteger> { |
public: |
static PassRefPtr<SVGAnimatedInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue) |
{ |
@@ -55,7 +55,7 @@ public: |
protected: |
SVGAnimatedInteger(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue) |
- : NewSVGAnimatedProperty<SVGInteger>(contextElement, attributeName, initialValue) |
+ : SVGAnimatedProperty<SVGInteger>(contextElement, attributeName, initialValue) |
, m_parentIntegerOptionalInteger(0) |
{ |
} |