| Index: third_party/WebKit/Source/core/paint/FramePainter.h | 
| diff --git a/third_party/WebKit/Source/core/paint/FramePainter.h b/third_party/WebKit/Source/core/paint/FramePainter.h | 
| index 6dac65ab50676c8a14b068db8a32638cf6190722..d1500757e414789b59ea7cb5ddc6476a045a5c8f 100644 | 
| --- a/third_party/WebKit/Source/core/paint/FramePainter.h | 
| +++ b/third_party/WebKit/Source/core/paint/FramePainter.h | 
| @@ -22,13 +22,13 @@ class FramePainter { | 
| public: | 
| explicit FramePainter(const FrameView& frameView) : m_frameView(&frameView) { } | 
|  | 
| -    void paint(GraphicsContext*, const GlobalPaintFlags, const CullRect&); | 
| -    void paintScrollbars(GraphicsContext*, const IntRect&); | 
| -    void paintContents(GraphicsContext*, const GlobalPaintFlags, const IntRect&); | 
| -    void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect); | 
| +    void paint(GraphicsContext&, const GlobalPaintFlags, const CullRect&); | 
| +    void paintScrollbars(GraphicsContext&, const IntRect&); | 
| +    void paintContents(GraphicsContext&, const GlobalPaintFlags, const IntRect&); | 
| +    void paintScrollCorner(GraphicsContext&, const IntRect& cornerRect); | 
|  | 
| private: | 
| -    void paintScrollbar(GraphicsContext*, Scrollbar*, const IntRect&); | 
| +    void paintScrollbar(GraphicsContext&, Scrollbar&, const IntRect&); | 
|  | 
| const FrameView& frameView(); | 
|  | 
|  |