Index: Source/core/layout/LayerReflectionInfo.h |
diff --git a/Source/core/layout/LayerReflectionInfo.h b/Source/core/layout/LayerReflectionInfo.h |
index a745a1f01adcea367ca20e31f6e6baa3b3f8e30f..2bfaab958982e33c7007169e19bddf894902128a 100644 |
--- a/Source/core/layout/LayerReflectionInfo.h |
+++ b/Source/core/layout/LayerReflectionInfo.h |
@@ -57,7 +57,7 @@ class LayoutReplica; |
class LayerReflectionInfo { |
WTF_MAKE_NONCOPYABLE(LayerReflectionInfo); |
public: |
- explicit LayerReflectionInfo(RenderBox&); |
+ explicit LayerReflectionInfo(LayoutBox&); |
void destroy(); |
LayoutReplica* reflection() const { return m_reflection; } |
@@ -70,10 +70,10 @@ public: |
void paint(GraphicsContext*, const LayerPaintingInfo&, PaintLayerFlags); |
private: |
- RenderBox& box() { return *m_box; } |
- const RenderBox& box() const { return *m_box; } |
+ LayoutBox& box() { return *m_box; } |
+ const LayoutBox& box() const { return *m_box; } |
- RenderBox* m_box; |
+ LayoutBox* m_box; |
LayoutReplica* m_reflection; |
// A state bit tracking if we are painting inside a replica. |