| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef GridPainter_h | 5 #ifndef GridPainter_h |
| 6 #define GridPainter_h | 6 #define GridPainter_h |
| 7 | 7 |
| 8 namespace blink { | 8 namespace blink { |
| 9 | 9 |
| 10 struct PaintInfo; | 10 struct PaintInfo; |
| 11 class LayoutPoint; | 11 class LayoutPoint; |
| 12 class LayoutBox; | 12 class LayoutBox; |
| 13 class RenderGrid; | 13 class LayoutGrid; |
| 14 | 14 |
| 15 class GridPainter { | 15 class GridPainter { |
| 16 public: | 16 public: |
| 17 GridPainter(RenderGrid& renderGrid) : m_renderGrid(renderGrid) { } | 17 GridPainter(LayoutGrid& layoutGrid) : m_layoutGrid(layoutGrid) { } |
| 18 | 18 |
| 19 void paintChildren(const PaintInfo&, const LayoutPoint&); | 19 void paintChildren(const PaintInfo&, const LayoutPoint&); |
| 20 | 20 |
| 21 private: | 21 private: |
| 22 RenderGrid& m_renderGrid; | 22 LayoutGrid& m_layoutGrid; |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 } // namespace blink | 25 } // namespace blink |
| 26 | 26 |
| 27 #endif // GridPainter_h | 27 #endif // GridPainter_h |
| OLD | NEW |