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

Unified Diff: Source/core/svg/SVGPathSegList.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/SVGPathSegList.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegList.cpp
diff --git a/Source/core/svg/SVGPathSegList.cpp b/Source/core/svg/SVGPathSegList.cpp
index defed36c115ead5648bad96f2cc6f355e33e16ba..ae4615aaf9fa92105b576ef4e1aa1b89b7d94b62 100644
--- a/Source/core/svg/SVGPathSegList.cpp
+++ b/Source/core/svg/SVGPathSegList.cpp
@@ -65,7 +65,7 @@ PassRefPtr<SVGPathSegList> SVGPathSegList::clone()
return svgPathSegList.release();
}
-PassRefPtr<NewSVGPropertyBase> SVGPathSegList::cloneForAnimation(const String& value) const
+PassRefPtr<SVGPropertyBase> SVGPathSegList::cloneForAnimation(const String& value) const
{
RefPtr<SVGPathSegList> svgPathSegList = SVGPathSegList::create(m_contextElement);
svgPathSegList->setValueAsString(value, IGNORE_EXCEPTION);
@@ -159,7 +159,7 @@ void SVGPathSegList::setValueAsString(const String& string, ExceptionState& exce
exceptionState.throwDOMException(SyntaxError, "Problem parsing path \"" + string + "\"");
}
-void SVGPathSegList::add(PassRefPtr<NewSVGPropertyBase> other, SVGElement*)
+void SVGPathSegList::add(PassRefPtr<SVGPropertyBase> other, SVGElement*)
{
RefPtr<SVGPathSegList> otherList = toSVGPathSegList(other);
if (length() != otherList->length())
@@ -170,7 +170,7 @@ void SVGPathSegList::add(PassRefPtr<NewSVGPropertyBase> other, SVGElement*)
invalidateList();
}
-void SVGPathSegList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> fromValue, PassRefPtr<NewSVGPropertyBase> toValue, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
+void SVGPathSegList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
{
invalidateList();
@@ -230,7 +230,7 @@ void SVGPathSegList::calculateAnimatedValue(SVGAnimationElement* animationElemen
}
}
-float SVGPathSegList::calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElement*)
+float SVGPathSegList::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*)
{
// FIXME: Support paced animations.
return -1;
« no previous file with comments | « Source/core/svg/SVGPathSegList.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698