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