Index: Source/core/paint/BoxPainter.h |
diff --git a/Source/core/paint/BoxPainter.h b/Source/core/paint/BoxPainter.h |
index 2f04dc2b3f5cbc19c86561125d237e66e121176a..666d566408117a4779ff755dc2098404e2d809a5 100644 |
--- a/Source/core/paint/BoxPainter.h |
+++ b/Source/core/paint/BoxPainter.h |
@@ -14,12 +14,12 @@ class BackgroundImageGeometry; |
class FloatRoundedRect; |
class LayoutPoint; |
struct PaintInfo; |
-class RenderBox; |
+class LayoutBox; |
class LayoutObject; |
class BoxPainter { |
public: |
- BoxPainter(RenderBox& renderBox) : m_renderBox(renderBox) { } |
+ BoxPainter(LayoutBox& layoutBox) : m_layoutBox(layoutBox) { } |
void paint(const PaintInfo&, const LayoutPoint&); |
void paintBoxDecorationBackground(const PaintInfo&, const LayoutPoint&); |
@@ -68,7 +68,7 @@ private: |
LayoutRect scrolledBackgroundRect(); |
// FIXME: this should be const. |
- RenderBox& m_renderBox; |
+ LayoutBox& m_layoutBox; |
}; |
} // namespace blink |