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

Unified Diff: Source/core/paint/RenderDrawingRecorder.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/ObjectPainter.cpp ('k') | Source/core/paint/RenderDrawingRecorder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
};
« no previous file with comments | « Source/core/paint/ObjectPainter.cpp ('k') | Source/core/paint/RenderDrawingRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698