| 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 f1b91f825f817d36f1c2de2f51ba98eb764f061f..6dac65ab50676c8a14b068db8a32638cf6190722 100644
|
| --- a/third_party/WebKit/Source/core/paint/FramePainter.h
|
| +++ b/third_party/WebKit/Source/core/paint/FramePainter.h
|
| @@ -10,6 +10,7 @@
|
|
|
| namespace blink {
|
|
|
| +class CullRect;
|
| class FrameView;
|
| class GraphicsContext;
|
| class IntRect;
|
| @@ -21,9 +22,9 @@ class FramePainter {
|
| public:
|
| explicit FramePainter(const FrameView& frameView) : m_frameView(&frameView) { }
|
|
|
| - void paint(GraphicsContext*, const GlobalPaintFlags, const IntRect&);
|
| + void paint(GraphicsContext*, const GlobalPaintFlags, const CullRect&);
|
| void paintScrollbars(GraphicsContext*, const IntRect&);
|
| - void paintContents(GraphicsContext*, const GlobalPaintFlags, const IntRect& damageRect);
|
| + void paintContents(GraphicsContext*, const GlobalPaintFlags, const IntRect&);
|
| void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
|
|
|
| private:
|
|
|