Index: Source/core/svg/SVGAnimatedPreserveAspectRatio.h |
diff --git a/Source/core/svg/SVGAnimatedPreserveAspectRatio.h b/Source/core/svg/SVGAnimatedPreserveAspectRatio.h |
index 1711570bd422eaeb6fbce3cae7c7c795bb10cff4..fd458b741a16848edaf3c107fad3338cf750802a 100644 |
--- a/Source/core/svg/SVGAnimatedPreserveAspectRatio.h |
+++ b/Source/core/svg/SVGAnimatedPreserveAspectRatio.h |
@@ -32,11 +32,11 @@ |
#define SVGAnimatedPreserveAspectRatio_h |
#include "core/svg/SVGPreserveAspectRatioTearOff.h" |
-#include "core/svg/properties/NewSVGAnimatedProperty.h" |
+#include "core/svg/properties/SVGAnimatedProperty.h" |
namespace WebCore { |
-class SVGAnimatedPreserveAspectRatio : public NewSVGAnimatedProperty<SVGPreserveAspectRatio> { |
+class SVGAnimatedPreserveAspectRatio : public SVGAnimatedProperty<SVGPreserveAspectRatio> { |
public: |
static PassRefPtr<SVGAnimatedPreserveAspectRatio> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue) |
{ |
@@ -45,7 +45,7 @@ public: |
protected: |
SVGAnimatedPreserveAspectRatio(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue) |
- : NewSVGAnimatedProperty<SVGPreserveAspectRatio>(contextElement, attributeName, initialValue) |
+ : SVGAnimatedProperty<SVGPreserveAspectRatio>(contextElement, attributeName, initialValue) |
{ |
} |
}; |