| Index: Source/core/paint/RenderDrawingRecorder.h
|
| diff --git a/Source/core/paint/RenderDrawingRecorder.h b/Source/core/paint/RenderDrawingRecorder.h
|
| index 6117a68ab3beb83296457992f3a13e2138bc503f..32b482dade034ebb4129fb6b34f29645dd45289b 100644
|
| --- a/Source/core/paint/RenderDrawingRecorder.h
|
| +++ b/Source/core/paint/RenderDrawingRecorder.h
|
| @@ -13,12 +13,12 @@
|
| namespace blink {
|
|
|
| class GraphicsContext;
|
| -class RenderObject;
|
| +class LayoutObject;
|
|
|
| class RenderDrawingRecorder {
|
| public:
|
| - RenderDrawingRecorder(GraphicsContext*, const RenderObject&, PaintPhase, const FloatRect&);
|
| - RenderDrawingRecorder(GraphicsContext*, const RenderObject&, DisplayItem::Type, const FloatRect&);
|
| + RenderDrawingRecorder(GraphicsContext*, const LayoutObject&, PaintPhase, const FloatRect&);
|
| + RenderDrawingRecorder(GraphicsContext*, const LayoutObject&, DisplayItem::Type, const FloatRect&);
|
|
|
| ~RenderDrawingRecorder();
|
|
|
| @@ -27,7 +27,7 @@ public:
|
| private:
|
| DrawingRecorder m_drawingRecorder;
|
| #ifndef NDEBUG
|
| - const RenderObject& m_renderer;
|
| + const LayoutObject& m_renderer;
|
| #endif
|
| };
|
|
|
|
|