Index: third_party/WebKit/Source/core/paint/ReplacedPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/ReplacedPainter.cpp b/third_party/WebKit/Source/core/paint/ReplacedPainter.cpp |
index fd4878c626a4a99c4ad0e22ca4d85cd6d60913d0..0d0a0303db9e28e034acfb5d0058443288eaa676 100644 |
--- a/third_party/WebKit/Source/core/paint/ReplacedPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/ReplacedPainter.cpp |
@@ -50,7 +50,7 @@ void ReplacedPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint |
return; |
if (paintInfo.phase == PaintPhaseSelection) |
- if (m_layoutReplaced.selectionState() == SelectionNone) |
+ if (m_layoutReplaced.getSelectionState() == SelectionNone) |
return; |
{ |
@@ -84,7 +84,7 @@ void ReplacedPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint |
// The selection tint never gets clipped by border-radius rounding, since we want it to run right up to the edges of |
// surrounding content. |
- bool drawSelectionTint = paintInfo.phase == PaintPhaseForeground && m_layoutReplaced.selectionState() != SelectionNone && !paintInfo.isPrinting(); |
+ bool drawSelectionTint = paintInfo.phase == PaintPhaseForeground && m_layoutReplaced.getSelectionState() != SelectionNone && !paintInfo.isPrinting(); |
if (drawSelectionTint && !LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutReplaced, DisplayItem::SelectionTint, adjustedPaintOffset)) { |
LayoutRect selectionPaintingRect = m_layoutReplaced.localSelectionRect(); |
selectionPaintingRect.moveBy(adjustedPaintOffset); |