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

Unified Diff: Source/core/svg/SVGStaticStringList.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/SVGStaticStringList.h ('k') | Source/core/svg/SVGString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStaticStringList.cpp
diff --git a/Source/core/svg/SVGStaticStringList.cpp b/Source/core/svg/SVGStaticStringList.cpp
index 73077d73b3f951059ae5e882ee82e43cd2c083d4..be190d6ba020d0e1bf90edd5e5d61a31423b1c27 100644
--- a/Source/core/svg/SVGStaticStringList.cpp
+++ b/Source/core/svg/SVGStaticStringList.cpp
@@ -34,7 +34,7 @@
namespace WebCore {
SVGStaticStringList::SVGStaticStringList(SVGElement* contextElement, const QualifiedName& attributeName)
- : NewSVGAnimatedPropertyBase(AnimatedStringList, contextElement, attributeName)
+ : SVGAnimatedPropertyBase(AnimatedStringList, contextElement, attributeName)
, m_value(SVGStringList::create())
{
ASSERT(contextElement);
@@ -44,7 +44,7 @@ SVGStaticStringList::~SVGStaticStringList()
{
}
-NewSVGPropertyBase* SVGStaticStringList::currentValueBase()
+SVGPropertyBase* SVGStaticStringList::currentValueBase()
{
return m_value.get();
}
@@ -54,13 +54,13 @@ void SVGStaticStringList::animationStarted()
ASSERT_NOT_REACHED();
}
-PassRefPtr<NewSVGPropertyBase> SVGStaticStringList::createAnimatedValue()
+PassRefPtr<SVGPropertyBase> SVGStaticStringList::createAnimatedValue()
{
ASSERT_NOT_REACHED();
return nullptr;
}
-void SVGStaticStringList::setAnimatedValue(PassRefPtr<NewSVGPropertyBase>)
+void SVGStaticStringList::setAnimatedValue(PassRefPtr<SVGPropertyBase>)
{
ASSERT_NOT_REACHED();
}
« no previous file with comments | « Source/core/svg/SVGStaticStringList.h ('k') | Source/core/svg/SVGString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698