| Index: Source/core/paint/ListItemPainter.h
|
| diff --git a/Source/core/paint/ListItemPainter.h b/Source/core/paint/ListItemPainter.h
|
| index de59f1acba94b66aae14d4690352e9262ff737b2..d28787b24f2af29c81bf8236c9f8f84140c97dee 100644
|
| --- a/Source/core/paint/ListItemPainter.h
|
| +++ b/Source/core/paint/ListItemPainter.h
|
| @@ -9,12 +9,12 @@ namespace blink {
|
|
|
| struct PaintInfo;
|
| class Path;
|
| +class LayoutListItem;
|
| class LayoutPoint;
|
| -class RenderListItem;
|
|
|
| class ListItemPainter {
|
| public:
|
| - ListItemPainter(RenderListItem& renderListItem) : m_renderListItem(renderListItem) { }
|
| + ListItemPainter(LayoutListItem& layoutListItem) : m_layoutListItem(layoutListItem) { }
|
|
|
| void paint(const PaintInfo&, const LayoutPoint& paintOffset);
|
|
|
| @@ -22,7 +22,7 @@ private:
|
| Path getCanonicalPath() const;
|
| Path getPath(const LayoutPoint& origin) const;
|
|
|
| - RenderListItem& m_renderListItem;
|
| + LayoutListItem& m_layoutListItem;
|
| };
|
|
|
| } // namespace blink
|
|
|