| Index: Source/core/svg/SVGAnimatedRect.h
|
| diff --git a/Source/core/svg/SVGAnimatedRect.h b/Source/core/svg/SVGAnimatedRect.h
|
| index c9e954ddbe0984c29236dd68a771f707e42d9563..182f6c1db95db345bbbebd4aeb1d5be3c760a3cb 100644
|
| --- a/Source/core/svg/SVGAnimatedRect.h
|
| +++ b/Source/core/svg/SVGAnimatedRect.h
|
| @@ -32,11 +32,11 @@
|
| #define SVGAnimatedRect_h
|
|
|
| #include "core/svg/SVGRectTearOff.h"
|
| -#include "core/svg/properties/NewSVGAnimatedProperty.h"
|
| +#include "core/svg/properties/SVGAnimatedProperty.h"
|
|
|
| namespace WebCore {
|
|
|
| -class SVGAnimatedRect : public NewSVGAnimatedProperty<SVGRect> {
|
| +class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect> {
|
| public:
|
| static PassRefPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| {
|
| @@ -45,7 +45,7 @@ public:
|
|
|
| protected:
|
| SVGAnimatedRect(SVGElement* contextElement, const QualifiedName& attributeName)
|
| - : NewSVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
|
| + : SVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
|
| {
|
| }
|
| };
|
|
|