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

Unified Diff: Source/core/svg/SVGAnimatedIntegerOptionalInteger.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/SVGAnimatedIntegerOptionalInteger.h ('k') | Source/core/svg/SVGAnimatedLength.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp
diff --git a/Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp b/Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp
index bf4fc443b73ab0ee4616ee132cf923d8a6408a15..11bb52756df8315db6d716b143b3c17c6f93b180 100644
--- a/Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp
+++ b/Source/core/svg/SVGAnimatedIntegerOptionalInteger.cpp
@@ -35,7 +35,7 @@
namespace WebCore {
SVGAnimatedIntegerOptionalInteger::SVGAnimatedIntegerOptionalInteger(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue, float initialSecondValue)
- : NewSVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>(contextElement, attributeName,
+ : SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>(contextElement, attributeName,
SVGIntegerOptionalInteger::create(SVGInteger::create(initialFirstValue), SVGInteger::create(initialSecondValue)))
, m_firstInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->firstInteger()))
, m_secondInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->secondInteger()))
@@ -46,21 +46,21 @@ SVGAnimatedIntegerOptionalInteger::SVGAnimatedIntegerOptionalInteger(SVGElement*
void SVGAnimatedIntegerOptionalInteger::animationStarted()
{
- NewSVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::animationStarted();
+ SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::animationStarted();
m_firstInteger->animationStarted();
m_secondInteger->animationStarted();
}
-void SVGAnimatedIntegerOptionalInteger::setAnimatedValue(PassRefPtr<NewSVGPropertyBase> value)
+void SVGAnimatedIntegerOptionalInteger::setAnimatedValue(PassRefPtr<SVGPropertyBase> value)
{
- NewSVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::setAnimatedValue(value);
+ SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::setAnimatedValue(value);
m_firstInteger->setAnimatedValue(currentValue()->firstInteger());
m_secondInteger->setAnimatedValue(currentValue()->secondInteger());
}
void SVGAnimatedIntegerOptionalInteger::animationEnded()
{
- NewSVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::animationEnded();
+ SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::animationEnded();
m_firstInteger->animationEnded();
m_secondInteger->animationEnded();
}
« no previous file with comments | « Source/core/svg/SVGAnimatedIntegerOptionalInteger.h ('k') | Source/core/svg/SVGAnimatedLength.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698