| Index: third_party/WebKit/Source/core/style/FillLayer.h
 | 
| diff --git a/third_party/WebKit/Source/core/style/FillLayer.h b/third_party/WebKit/Source/core/style/FillLayer.h
 | 
| index 9948137db215a5636d76011c77b38841770a8e63..f58bd119547ff009da7a5d6fc40543f099501572 100644
 | 
| --- a/third_party/WebKit/Source/core/style/FillLayer.h
 | 
| +++ b/third_party/WebKit/Source/core/style/FillLayer.h
 | 
| @@ -110,7 +110,7 @@ public:
 | 
|      bool isSizeSet() const { return m_sizeType != SizeNone; }
 | 
|      bool isMaskSourceTypeSet() const { return m_maskSourceTypeSet; }
 | 
|  
 | 
| -    void setImage(PassRefPtrWillBeRawPtr<StyleImage> i) { m_image = i; m_imageSet = true; }
 | 
| +    void setImage(RawPtr<StyleImage> i) { m_image = i; m_imageSet = true; }
 | 
|      void setXPosition(const Length& position) { m_xPosition = position; m_xPosSet = true; m_backgroundXOriginSet = false; m_backgroundXOrigin = LeftEdge; }
 | 
|      void setYPosition(const Length& position) { m_yPosition = position; m_yPosSet = true; m_backgroundYOriginSet = false; m_backgroundYOrigin = TopEdge; }
 | 
|      void setBackgroundXOrigin(BackgroundEdgeOrigin origin) { m_backgroundXOrigin = origin; m_backgroundXOriginSet = true; }
 | 
| @@ -216,7 +216,7 @@ private:
 | 
|  
 | 
|      FillLayer* m_next;
 | 
|  
 | 
| -    RefPtrWillBePersistent<StyleImage> m_image;
 | 
| +    Persistent<StyleImage> m_image;
 | 
|  
 | 
|      Length m_xPosition;
 | 
|      Length m_yPosition;
 | 
| 
 |