| Index: sky/engine/core/rendering/RenderObject.h
|
| diff --git a/sky/engine/core/rendering/RenderObject.h b/sky/engine/core/rendering/RenderObject.h
|
| index bd77d53004579f52e490fcd398606b4333f619cf..9e7688db04476b2b672abb45f47ff61b10cc03b1 100644
|
| --- a/sky/engine/core/rendering/RenderObject.h
|
| +++ b/sky/engine/core/rendering/RenderObject.h
|
| @@ -576,10 +576,6 @@ public:
|
| const RenderLayerModelObject* containerForPaintInvalidation() const;
|
| const RenderLayerModelObject* adjustCompositedContainerForSpecialAncestors(const RenderLayerModelObject* paintInvalidationContainer) const;
|
|
|
| - // Given a rect in the object's coordinate space, compute a rect suitable for invalidating paints of
|
| - // that rect in the coordinate space of paintInvalidationContainer.
|
| - virtual void mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect&, const PaintInvalidationState*) const;
|
| -
|
| virtual unsigned length() const { return 1; }
|
|
|
| // FIXME(sky): Remove
|
| @@ -603,10 +599,6 @@ public:
|
| inline void setSelectionStateIfNeeded(SelectionState);
|
| bool canUpdateSelectionOnRootLineBoxes();
|
|
|
| - // A single rectangle that encompasses all of the selected objects within this object. Used to determine the tightest
|
| - // possible bounding box for the selection. The rect returned is in the coordinate space of the paint invalidation container's backing.
|
| - virtual LayoutRect selectionRectForPaintInvalidation(const RenderLayerModelObject* /*paintInvalidationContainer*/, bool /*clipToVisibleContent*/ = true) { return LayoutRect(); }
|
| -
|
| virtual bool canBeSelectionLeaf() const { return false; }
|
| bool hasSelectedChildren() const { return selectionState() != SelectionNone; }
|
|
|
|
|