Index: Source/core/paint/ListItemPainter.cpp |
diff --git a/Source/core/paint/ListItemPainter.cpp b/Source/core/paint/ListItemPainter.cpp |
index 81e06192ba07523593d943625497a92e62736958..2381754aabb8de3a7f770eefd919aa5e11b3d7f2 100644 |
--- a/Source/core/paint/ListItemPainter.cpp |
+++ b/Source/core/paint/ListItemPainter.cpp |
@@ -5,19 +5,19 @@ |
#include "config.h" |
#include "core/paint/ListItemPainter.h" |
+#include "core/layout/LayoutListItem.h" |
#include "core/layout/PaintInfo.h" |
#include "core/paint/BlockPainter.h" |
-#include "core/rendering/RenderListItem.h" |
#include "platform/geometry/LayoutPoint.h" |
namespace blink { |
void ListItemPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
{ |
- if (!m_renderListItem.logicalHeight() && m_renderListItem.hasOverflowClip()) |
+ if (!m_layoutListItem.logicalHeight() && m_layoutListItem.hasOverflowClip()) |
return; |
- BlockPainter(m_renderListItem).paint(paintInfo, paintOffset); |
+ BlockPainter(m_layoutListItem).paint(paintInfo, paintOffset); |
} |
} // namespace blink |