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

Unified Diff: Source/core/svg/SVGStaticStringList.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/SVGRectTearOff.cpp ('k') | Source/core/svg/SVGStaticStringList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStaticStringList.h
diff --git a/Source/core/svg/SVGStaticStringList.h b/Source/core/svg/SVGStaticStringList.h
index 5518fe611c8f84950fd3c39885aa1e2a162865d0..5af1d1db513ca3abb83eb767e95a34324ab50a31 100644
--- a/Source/core/svg/SVGStaticStringList.h
+++ b/Source/core/svg/SVGStaticStringList.h
@@ -32,7 +32,7 @@
#define SVGStaticStringList_h
#include "core/svg/SVGStringListTearOff.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
namespace WebCore {
@@ -40,7 +40,7 @@ class SVGElement;
// SVGStringList property implementations for SVGTests properties.
// Inherits SVGAnimatedPropertyBase to enable XML attribute synchronization, but this is never animated.
-class SVGStaticStringList FINAL : public NewSVGAnimatedPropertyBase {
+class SVGStaticStringList FINAL : public SVGAnimatedPropertyBase {
public:
static PassRefPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
{
@@ -49,11 +49,11 @@ public:
virtual ~SVGStaticStringList();
- // NewSVGAnimatedPropertyBase:
- virtual NewSVGPropertyBase* currentValueBase() OVERRIDE;
+ // SVGAnimatedPropertyBase:
+ virtual SVGPropertyBase* currentValueBase() OVERRIDE;
virtual void animationStarted() OVERRIDE;
- virtual PassRefPtr<NewSVGPropertyBase> createAnimatedValue() OVERRIDE;
- virtual void setAnimatedValue(PassRefPtr<NewSVGPropertyBase>) OVERRIDE;
+ virtual PassRefPtr<SVGPropertyBase> createAnimatedValue() OVERRIDE;
+ virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) OVERRIDE;
virtual void animationEnded() OVERRIDE;
virtual bool needsSynchronizeAttribute() OVERRIDE;
« no previous file with comments | « Source/core/svg/SVGRectTearOff.cpp ('k') | Source/core/svg/SVGStaticStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698