Index: third_party/WebKit/Source/core/layout/LayoutObject.h |
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h |
index 709f3bba05d33abb9efaceb114c0ba7a0e2ce02f..083365e51a9984b7327185b09b1c89ee8e240b9c 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h |
@@ -1237,9 +1237,7 @@ |
// this object). |
LayoutRect previousPaintInvalidationRectIncludingCompositedScrolling(const LayoutBoxModelObject& paintInvalidationContainer) const; |
LayoutSize previousPaintInvalidationRectSize() const { return previousPaintInvalidationRect().size(); } |
- |
- // Called when the previous paint invalidation rect(s) is no longer valid. |
- virtual void clearPreviousPaintInvalidationRects(); |
+ void setPreviousPaintInvalidationRect(const LayoutRect& rect) { m_previousPaintInvalidationRect = rect; } |
// Only adjusts if the paint invalidation container is not a composited scroller. |
void adjustPreviousPaintInvalidationForScrollIfNeeded(const DoubleSize& scrollDelta); |
@@ -1434,8 +1432,6 @@ |
// Add hit-test rects for this layoutObject only to the provided list. layerOffset is the offset |
// of this layoutObject within the current layer that should be used for each result. |
virtual void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOffset) const { } |
- |
- void setPreviousPaintInvalidationRect(const LayoutRect& rect) { m_previousPaintInvalidationRect = rect; } |
virtual PaintInvalidationReason paintInvalidationReason(const LayoutBoxModelObject& paintInvalidationContainer, |
const LayoutRect& oldPaintInvalidationRect, const LayoutPoint& oldPositionFromPaintInvalidationBacking, |