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