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

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

Powered by Google App Engine
This is Rietveld 408576698