| Index: Source/core/paint/ReplacedPainter.cpp
|
| diff --git a/Source/core/paint/ReplacedPainter.cpp b/Source/core/paint/ReplacedPainter.cpp
|
| index 16663cd96f435e17e580648e89d2012a481aed25..242bd85ed2aab85236f929c19dc2d74467eafa69 100644
|
| --- a/Source/core/paint/ReplacedPainter.cpp
|
| +++ b/Source/core/paint/ReplacedPainter.cpp
|
| @@ -47,9 +47,9 @@ void ReplacedPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint
|
| if (!paintInfo.shouldPaintWithinRoot(&m_renderReplaced))
|
| return;
|
|
|
| - bool drawSelectionTint = m_renderReplaced.selectionState() != RenderObject::SelectionNone && !m_renderReplaced.document().printing();
|
| + bool drawSelectionTint = m_renderReplaced.selectionState() != LayoutObject::SelectionNone && !m_renderReplaced.document().printing();
|
| if (paintInfo.phase == PaintPhaseSelection) {
|
| - if (m_renderReplaced.selectionState() == RenderObject::SelectionNone)
|
| + if (m_renderReplaced.selectionState() == LayoutObject::SelectionNone)
|
| return;
|
| drawSelectionTint = false;
|
| }
|
|
|