Index: Source/core/svg/SVGAnimatedAngle.cpp |
diff --git a/Source/core/svg/SVGAnimatedAngle.cpp b/Source/core/svg/SVGAnimatedAngle.cpp |
index ad426287bca4b16b8be004720f0c24e89385b187..0e881c8815b5b702bf81e85314e16601d12f2147 100644 |
--- a/Source/core/svg/SVGAnimatedAngle.cpp |
+++ b/Source/core/svg/SVGAnimatedAngle.cpp |
@@ -38,7 +38,7 @@ |
namespace WebCore { |
SVGAnimatedAngle::SVGAnimatedAngle(SVGMarkerElement* contextElement) |
- : NewSVGAnimatedProperty<SVGAngle>(contextElement, SVGNames::orientAttr, SVGAngle::create()) |
+ : SVGAnimatedProperty<SVGAngle>(contextElement, SVGNames::orientAttr, SVGAngle::create()) |
, m_orientType(SVGAnimatedEnumeration<SVGMarkerOrientType>::create(contextElement, SVGNames::orientAttr, baseValue()->orientType())) |
{ |
} |
@@ -62,19 +62,19 @@ void SVGAnimatedAngle::synchronizeAttribute() |
void SVGAnimatedAngle::animationStarted() |
{ |
- NewSVGAnimatedProperty<SVGAngle>::animationStarted(); |
+ SVGAnimatedProperty<SVGAngle>::animationStarted(); |
m_orientType->animationStarted(); |
} |
-void SVGAnimatedAngle::setAnimatedValue(PassRefPtr<NewSVGPropertyBase> value) |
+void SVGAnimatedAngle::setAnimatedValue(PassRefPtr<SVGPropertyBase> value) |
{ |
- NewSVGAnimatedProperty<SVGAngle>::setAnimatedValue(value); |
+ SVGAnimatedProperty<SVGAngle>::setAnimatedValue(value); |
m_orientType->setAnimatedValue(currentValue()->orientType()); |
} |
void SVGAnimatedAngle::animationEnded() |
{ |
- NewSVGAnimatedProperty<SVGAngle>::animationEnded(); |
+ SVGAnimatedProperty<SVGAngle>::animationEnded(); |
m_orientType->animationEnded(); |
} |