| Index: Source/core/paint/ObjectPainter.h
|
| diff --git a/Source/core/paint/ObjectPainter.h b/Source/core/paint/ObjectPainter.h
|
| index 70fe73137f449dc76598cef171e3bb20339b4146..6ee09aa91160f15d3446d48db928fc013672d735 100644
|
| --- a/Source/core/paint/ObjectPainter.h
|
| +++ b/Source/core/paint/ObjectPainter.h
|
| @@ -14,12 +14,12 @@ class GraphicsContext;
|
| class LayoutPoint;
|
| class LayoutRect;
|
| struct PaintInfo;
|
| -class RenderObject;
|
| +class LayoutObject;
|
| class RenderStyle;
|
|
|
| class ObjectPainter {
|
| public:
|
| - ObjectPainter(RenderObject& renderObject) : m_renderObject(renderObject) { }
|
| + ObjectPainter(LayoutObject& layoutObject) : m_layoutObject(layoutObject) { }
|
|
|
| void paintOutline(const PaintInfo&, const LayoutRect& paintRect);
|
| void paintFocusRing(const PaintInfo&, const LayoutPoint& paintOffset, const RenderStyle&);
|
| @@ -35,7 +35,7 @@ private:
|
| static void drawSolidBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
|
| BoxSide, Color, int adjacentWidth1, int adjacentWidth2, bool antialias);
|
|
|
| - RenderObject& m_renderObject;
|
| + LayoutObject& m_layoutObject;
|
| };
|
|
|
| } // namespace blink
|
|
|