Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1375)

Unified Diff: Source/core/svg/SVGAnimatedAngle.cpp

Issue 208133002: [SVG] Remove "New" prefix from properties implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGAnimatedAngle.h ('k') | Source/core/svg/SVGAnimatedBoolean.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « Source/core/svg/SVGAnimatedAngle.h ('k') | Source/core/svg/SVGAnimatedBoolean.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698