Index: Source/core/paint/BoxClipper.h |
diff --git a/Source/core/paint/BoxClipper.h b/Source/core/paint/BoxClipper.h |
index 8ffc4a707395e391c20e9464c0ba87297b785cbe..c48c40508d60ad345ac4f7479dec3776953edd53 100644 |
--- a/Source/core/paint/BoxClipper.h |
+++ b/Source/core/paint/BoxClipper.h |
@@ -11,14 +11,14 @@ |
namespace blink { |
-class RenderBox; |
+class LayoutBox; |
struct PaintInfo; |
enum ContentsClipBehavior { ForceContentsClip, SkipContentsClipIfPossible }; |
class BoxClipper { |
public: |
- BoxClipper(RenderBox&, const PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior); |
+ BoxClipper(LayoutBox&, const PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior); |
~BoxClipper(); |
bool pushedClip() { return m_pushedClip; } |
@@ -26,7 +26,7 @@ private: |
bool m_pushedClip; |
LayoutPoint m_accumulatedOffset; |
const PaintInfo& m_paintInfo; |
- RenderBox& m_box; |
+ LayoutBox& m_box; |
DisplayItem::Type m_clipType; |
}; |