Index: Source/core/paint/ListMarkerPainter.h |
diff --git a/Source/core/paint/ListMarkerPainter.h b/Source/core/paint/ListMarkerPainter.h |
index 3494e7d1b36ac03856fc348defde66be44a54266..bba7cc5cf2d12f65ca5500959823ccfea684c721 100644 |
--- a/Source/core/paint/ListMarkerPainter.h |
+++ b/Source/core/paint/ListMarkerPainter.h |
@@ -9,12 +9,12 @@ namespace blink { |
struct PaintInfo; |
class Path; |
+class LayoutListMarker; |
class LayoutPoint; |
-class RenderListMarker; |
class ListMarkerPainter { |
public: |
- ListMarkerPainter(RenderListMarker& renderListMarker) : m_renderListMarker(renderListMarker) { } |
+ ListMarkerPainter(LayoutListMarker& layoutListMarker) : m_layoutListMarker(layoutListMarker) { } |
void paint(const PaintInfo&, const LayoutPoint& paintOffset); |
@@ -22,7 +22,7 @@ private: |
Path getCanonicalPath() const; |
Path getPath(const LayoutPoint& origin) const; |
- RenderListMarker& m_renderListMarker; |
+ LayoutListMarker& m_layoutListMarker; |
}; |
} // namespace blink |