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

Unified Diff: Source/core/svg/SVGStringList.h

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.cpp ('k') | Source/core/svg/SVGStringList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStringList.h
diff --git a/Source/core/svg/SVGStringList.h b/Source/core/svg/SVGStringList.h
index 0e531b964da0d6e217c12c46129b9b42eb19bd44..19cf310665f3380828aeaff7697453c78d85d21f 100644
--- a/Source/core/svg/SVGStringList.h
+++ b/Source/core/svg/SVGStringList.h
@@ -33,7 +33,7 @@
#include "bindings/v8/ScriptWrappable.h"
#include "core/svg/SVGString.h"
-#include "core/svg/properties/NewSVGListPropertyHelper.h"
+#include "core/svg/properties/SVGListPropertyHelper.h"
namespace WebCore {
@@ -50,7 +50,7 @@ class SVGStringListTearOff;
// SVGStringList items are exposed to Javascript as DOMString (not SVGString) as in the spec.
// SVGString is used only for boxing values for non-list string property SVGAnimatedString,
// and not used for SVGStringList.
-class SVGStringList FINAL : public NewSVGPropertyBase {
+class SVGStringList FINAL : public SVGPropertyBase {
public:
typedef SVGStringListTearOff TearOffType;
@@ -73,15 +73,15 @@ public:
void appendItem(const String&);
void replaceItem(const String&, size_t, ExceptionState&);
- // NewSVGPropertyBase:
+ // SVGPropertyBase:
PassRefPtr<SVGStringList> clone();
void setValueAsString(const String&, ExceptionState&);
- virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) const OVERRIDE;
+ virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String&) const OVERRIDE;
virtual String valueAsString() const OVERRIDE;
- virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE;
- virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> fromValue, PassRefPtr<NewSVGPropertyBase> toValue, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
- virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElement*) OVERRIDE;
+ virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
+ virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
+ virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
static AnimatedPropertyType classType() { return AnimatedStringList; }
« no previous file with comments | « Source/core/svg/SVGString.cpp ('k') | Source/core/svg/SVGStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698