| Index: third_party/WebKit/Source/core/svg/SVGInteger.h
 | 
| diff --git a/third_party/WebKit/Source/core/svg/SVGInteger.h b/third_party/WebKit/Source/core/svg/SVGInteger.h
 | 
| index 98a2bd8cfa526a5135d2ed04edcb8e4933fa5d75..923138612520c24b1cbdd67be98f812935531de0 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/SVGInteger.h
 | 
| +++ b/third_party/WebKit/Source/core/svg/SVGInteger.h
 | 
| @@ -41,12 +41,12 @@ public:
 | 
|      typedef void TearOffType;
 | 
|      typedef int PrimitiveType;
 | 
|  
 | 
| -    static PassRefPtrWillBeRawPtr<SVGInteger> create(int value = 0)
 | 
| +    static RawPtr<SVGInteger> create(int value = 0)
 | 
|      {
 | 
| -        return adoptRefWillBeNoop(new SVGInteger(value));
 | 
| +        return new SVGInteger(value);
 | 
|      }
 | 
|  
 | 
| -    virtual PassRefPtrWillBeRawPtr<SVGInteger> clone() const;
 | 
| +    virtual RawPtr<SVGInteger> clone() const;
 | 
|  
 | 
|      int value() const { return m_value; }
 | 
|      void setValue(int value) { m_value = value; }
 | 
| @@ -54,9 +54,9 @@ public:
 | 
|      String valueAsString() const override;
 | 
|      SVGParsingError setValueAsString(const String&);
 | 
|  
 | 
| -    void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
 | 
| -    void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) override;
 | 
| -    float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement) override;
 | 
| +    void add(RawPtr<SVGPropertyBase>, SVGElement*) override;
 | 
| +    void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> from, RawPtr<SVGPropertyBase> to, RawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) override;
 | 
| +    float calculateDistance(RawPtr<SVGPropertyBase> to, SVGElement* contextElement) override;
 | 
|  
 | 
|      static AnimatedPropertyType classType() { return AnimatedInteger; }
 | 
|  
 | 
| 
 |