Index: Source/core/rendering/RenderBlock.h |
diff --git a/Source/core/rendering/RenderBlock.h b/Source/core/rendering/RenderBlock.h |
index 7e1f3f1dfff18ed80839b33debce4ca38ec1502e..50d498c6f554bc8f3dffa2e427b5a206edee9344 100644 |
--- a/Source/core/rendering/RenderBlock.h |
+++ b/Source/core/rendering/RenderBlock.h |
@@ -167,6 +167,7 @@ public: |
RootInlineBox* firstRootBox() const { return static_cast<RootInlineBox*>(firstLineBox()); } |
RootInlineBox* lastRootBox() const { return static_cast<RootInlineBox*>(lastLineBox()); } |
+ virtual bool shouldPaintSelectionGaps() const OVERRIDE FINAL; |
Ian Vollick
2014/06/13 17:07:49
This change will need approval from someone famili
|
GapRects selectionGapRectsForRepaint(const RenderLayerModelObject* repaintContainer); |
LayoutRect logicalLeftSelectionGap(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, |
RenderObject* selObj, LayoutUnit logicalLeft, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo*); |
@@ -418,7 +419,6 @@ private: |
{ |
return selectionGapRectsForRepaint(paintInvalidationContainer); |
} |
- virtual bool shouldPaintSelectionGaps() const OVERRIDE FINAL; |
bool isSelectionRoot() const; |
GapRects selectionGaps(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, |
LayoutUnit& lastLogicalTop, LayoutUnit& lastLogicalLeft, LayoutUnit& lastLogicalRight, const PaintInfo* = 0); |