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

Unified Diff: Source/core/svg/SVGStringList.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/SVGStringList.h ('k') | Source/core/svg/SVGStringListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStringList.cpp
diff --git a/Source/core/svg/SVGStringList.cpp b/Source/core/svg/SVGStringList.cpp
index 7cb411effa56f55861fbb2be6318bd13515e602e..ebdd0a622ea6df95505dc1a94217410b24629abf 100644
--- a/Source/core/svg/SVGStringList.cpp
+++ b/Source/core/svg/SVGStringList.cpp
@@ -28,7 +28,7 @@
namespace WebCore {
SVGStringList::SVGStringList()
- : NewSVGPropertyBase(classType())
+ : SVGPropertyBase(classType())
{
}
@@ -125,7 +125,7 @@ void SVGStringList::setValueAsString(const String& data, ExceptionState&)
}
}
-PassRefPtr<NewSVGPropertyBase> SVGStringList::cloneForAnimation(const String& string) const
+PassRefPtr<SVGPropertyBase> SVGStringList::cloneForAnimation(const String& string) const
{
RefPtr<SVGStringList> svgStringList = create();
svgStringList->setValueAsString(string, IGNORE_EXCEPTION);
@@ -161,19 +161,19 @@ bool SVGStringList::checkIndexBound(size_t index, ExceptionState& exceptionState
return true;
}
-void SVGStringList::add(PassRefPtr<NewSVGPropertyBase> other, SVGElement* contextElement)
+void SVGStringList::add(PassRefPtr<SVGPropertyBase> other, SVGElement* contextElement)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
}
-void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtr<NewSVGPropertyBase>, PassRefPtr<NewSVGPropertyBase>, PassRefPtr<NewSVGPropertyBase>, SVGElement*)
+void SVGStringList::calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, SVGElement*)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
}
-float SVGStringList::calculateDistance(PassRefPtr<NewSVGPropertyBase>, SVGElement*)
+float SVGStringList::calculateDistance(PassRefPtr<SVGPropertyBase>, SVGElement*)
{
// SVGStringList is never animated.
ASSERT_NOT_REACHED();
« no previous file with comments | « Source/core/svg/SVGStringList.h ('k') | Source/core/svg/SVGStringListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698