Index: Source/core/svg/SVGAnimatedEnumeration.h |
diff --git a/Source/core/svg/SVGAnimatedEnumeration.h b/Source/core/svg/SVGAnimatedEnumeration.h |
index 0031ea6e964217f7c084b027cc154dee717fddf2..c07c564da426f4a069f3b7efdae3240c55f5f31c 100644 |
--- a/Source/core/svg/SVGAnimatedEnumeration.h |
+++ b/Source/core/svg/SVGAnimatedEnumeration.h |
@@ -38,12 +38,12 @@ namespace blink { |
template<typename Enum> |
class SVGAnimatedEnumeration : public SVGAnimatedEnumerationBase { |
public: |
- static PassRefPtrWillBeRawPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, Enum initialValue) |
+ static PassRefPtrWillBeRawPtr<SVGAnimatedEnumeration<Enum>> create(SVGElement* contextElement, const QualifiedName& attributeName, Enum initialValue) |
{ |
return adoptRefWillBeNoop(new SVGAnimatedEnumeration(contextElement, attributeName, SVGEnumeration<Enum>::create(initialValue))); |
} |
- static PassRefPtrWillBeRawPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGEnumeration<Enum> > initialValue) |
+ static PassRefPtrWillBeRawPtr<SVGAnimatedEnumeration<Enum>> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGEnumeration<Enum>> initialValue) |
{ |
return adoptRefWillBeNoop(new SVGAnimatedEnumeration(contextElement, attributeName, initialValue)); |
} |
@@ -64,7 +64,7 @@ public: |
} |
protected: |
- SVGAnimatedEnumeration(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGEnumeration<Enum> > initialValue) |
+ SVGAnimatedEnumeration(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGEnumeration<Enum>> initialValue) |
: SVGAnimatedEnumerationBase(contextElement, attributeName, initialValue) |
{ |
} |