| Index: third_party/WebKit/Source/core/svg/SVGAnimatedNumber.h
 | 
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedNumber.h b/third_party/WebKit/Source/core/svg/SVGAnimatedNumber.h
 | 
| index d0dd9846ca7abb282fb06fa68854b9fb700d4cc0..1161b09f4e23356335cc9a808ded47a6322204d8 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedNumber.h
 | 
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedNumber.h
 | 
| @@ -44,9 +44,9 @@ class SVGAnimatedNumberOptionalNumber;
 | 
|  class SVGAnimatedNumber : public SVGAnimatedProperty<SVGNumber>, public ScriptWrappable {
 | 
|      DEFINE_WRAPPERTYPEINFO();
 | 
|  public:
 | 
| -    static PassRefPtrWillBeRawPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGNumber> initialValue)
 | 
| +    static RawPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGNumber> initialValue)
 | 
|      {
 | 
| -        return adoptRefWillBeNoop(new SVGAnimatedNumber(contextElement, attributeName, initialValue));
 | 
| +        return new SVGAnimatedNumber(contextElement, attributeName, initialValue);
 | 
|      }
 | 
|  
 | 
|      void synchronizeAttribute() override;
 | 
| @@ -59,13 +59,13 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  protected:
 | 
| -    SVGAnimatedNumber(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGNumber> initialValue)
 | 
| +    SVGAnimatedNumber(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGNumber> initialValue)
 | 
|          : SVGAnimatedProperty<SVGNumber>(contextElement, attributeName, initialValue)
 | 
|          , m_parentNumberOptionalNumber(nullptr)
 | 
|      {
 | 
|      }
 | 
|  
 | 
| -    RawPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_parentNumberOptionalNumber;
 | 
| +    Member<SVGAnimatedNumberOptionalNumber> m_parentNumberOptionalNumber;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |