Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(849)

Unified Diff: Source/core/paint/ObjectPainter.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/ListMarkerPainter.cpp ('k') | Source/core/paint/ObjectPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/paint/ListMarkerPainter.cpp ('k') | Source/core/paint/ObjectPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698