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

Unified Diff: Source/core/svg/SVGAnimatedRect.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/SVGAnimatedPreserveAspectRatio.h ('k') | Source/core/svg/SVGAnimatedString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedRect.h
diff --git a/Source/core/svg/SVGAnimatedRect.h b/Source/core/svg/SVGAnimatedRect.h
index c9e954ddbe0984c29236dd68a771f707e42d9563..182f6c1db95db345bbbebd4aeb1d5be3c760a3cb 100644
--- a/Source/core/svg/SVGAnimatedRect.h
+++ b/Source/core/svg/SVGAnimatedRect.h
@@ -32,11 +32,11 @@
#define SVGAnimatedRect_h
#include "core/svg/SVGRectTearOff.h"
-#include "core/svg/properties/NewSVGAnimatedProperty.h"
+#include "core/svg/properties/SVGAnimatedProperty.h"
namespace WebCore {
-class SVGAnimatedRect : public NewSVGAnimatedProperty<SVGRect> {
+class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect> {
public:
static PassRefPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName)
{
@@ -45,7 +45,7 @@ public:
protected:
SVGAnimatedRect(SVGElement* contextElement, const QualifiedName& attributeName)
- : NewSVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
+ : SVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
{
}
};
« no previous file with comments | « Source/core/svg/SVGAnimatedPreserveAspectRatio.h ('k') | Source/core/svg/SVGAnimatedString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698