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

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

Issue 948343003: Move rendering/RenderGrid to layout/LayoutGrid (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/layout/LayoutObject.cpp ('k') | Source/core/paint/GridPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/GridPainter.h
diff --git a/Source/core/paint/GridPainter.h b/Source/core/paint/GridPainter.h
index 07e34ea7bb5b5f25d2dabc2d2d0518d7f8e5f6e5..9c33efb6e4e0e11b6fdeb67d91c81e0cc24e9b0b 100644
--- a/Source/core/paint/GridPainter.h
+++ b/Source/core/paint/GridPainter.h
@@ -10,16 +10,16 @@ namespace blink {
struct PaintInfo;
class LayoutPoint;
class LayoutBox;
-class RenderGrid;
+class LayoutGrid;
class GridPainter {
public:
- GridPainter(RenderGrid& renderGrid) : m_renderGrid(renderGrid) { }
+ GridPainter(LayoutGrid& layoutGrid) : m_layoutGrid(layoutGrid) { }
void paintChildren(const PaintInfo&, const LayoutPoint&);
private:
- RenderGrid& m_renderGrid;
+ LayoutGrid& m_layoutGrid;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutObject.cpp ('k') | Source/core/paint/GridPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698