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

Unified Diff: Source/core/svg/SVGString.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/SVGString.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGString.cpp
diff --git a/Source/core/svg/SVGString.cpp b/Source/core/svg/SVGString.cpp
index 59411b887900aa969f1bef430158ae279376f75f..74eed532b34b75ccb93a01b2690918b9e9a76aa3 100644
--- a/Source/core/svg/SVGString.cpp
+++ b/Source/core/svg/SVGString.cpp
@@ -24,12 +24,12 @@
namespace WebCore {
-void SVGString::add(PassRefPtr<NewSVGPropertyBase>, SVGElement*)
+void SVGString::add(PassRefPtr<SVGPropertyBase>, SVGElement*)
{
ASSERT_NOT_REACHED();
}
-void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGPropertyBase> to, PassRefPtr<NewSVGPropertyBase>, SVGElement*)
+void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase>, SVGElement*)
{
ASSERT(animationElement);
@@ -39,7 +39,7 @@ void SVGString::calculateAnimatedValue(SVGAnimationElement* animationElement, fl
animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
}
-float SVGString::calculateDistance(PassRefPtr<NewSVGPropertyBase>, SVGElement*)
+float SVGString::calculateDistance(PassRefPtr<SVGPropertyBase>, SVGElement*)
{
// No paced animations for strings.
return -1;
« no previous file with comments | « Source/core/svg/SVGString.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698