| Index: Source/core/paint/ListMarkerPainter.cpp
|
| diff --git a/Source/core/paint/ListMarkerPainter.cpp b/Source/core/paint/ListMarkerPainter.cpp
|
| index 751530a4a6a534b7a3debcaaaa2671d186b1b3a2..23180b4dd52d6ccd06e5273b09c1af2e7d9f0da3 100644
|
| --- a/Source/core/paint/ListMarkerPainter.cpp
|
| +++ b/Source/core/paint/ListMarkerPainter.cpp
|
| @@ -49,7 +49,7 @@ void ListMarkerPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& pai
|
|
|
| if (m_renderListMarker.isImage()) {
|
| context->drawImage(m_renderListMarker.image()->image(&m_renderListMarker, marker.size()).get(), marker);
|
| - if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
|
| + if (m_renderListMarker.selectionState() != LayoutObject::SelectionNone) {
|
| LayoutRect selRect = m_renderListMarker.localSelectionRect();
|
| selRect.moveBy(boxOrigin);
|
| context->fillRect(pixelSnappedIntRect(selRect), m_renderListMarker.selectionBackgroundColor());
|
| @@ -57,7 +57,7 @@ void ListMarkerPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& pai
|
| return;
|
| }
|
|
|
| - if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
|
| + if (m_renderListMarker.selectionState() != LayoutObject::SelectionNone) {
|
| LayoutRect selRect = m_renderListMarker.localSelectionRect();
|
| selRect.moveBy(boxOrigin);
|
| context->fillRect(pixelSnappedIntRect(selRect), m_renderListMarker.selectionBackgroundColor());
|
|
|