| Index: third_party/WebKit/Source/core/layout/LayoutView.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.h b/third_party/WebKit/Source/core/layout/LayoutView.h
|
| index 6a123a24aabae8cfcae288b23a3e79b2a32f70f3..18e9d5395bf65d1c02067eecc4b423a20b1f76b9 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.h
|
| @@ -130,9 +130,6 @@ public:
|
| LayoutRect viewRect() const override;
|
| LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override;
|
|
|
| - bool shouldDoFullPaintInvalidationForNextLayout() const;
|
| - bool doingFullPaintInvalidation() const;
|
| -
|
| LayoutState* layoutState() const { return m_layoutState; }
|
|
|
| void updateHitTestResult(HitTestResult&, const LayoutPoint&) override;
|
| @@ -182,7 +179,6 @@ public:
|
|
|
| void pushLayoutState(LayoutState& layoutState) { m_layoutState = &layoutState; }
|
| void popLayoutState() { ASSERT(m_layoutState); m_layoutState = m_layoutState->next(); }
|
| - void invalidateTreeIfNeeded(const PaintInvalidationState&) final;
|
|
|
| LayoutRect visualOverflowRect() const override;
|
| LayoutRect localOverflowRectForPaintInvalidation() const override;
|
| @@ -221,6 +217,8 @@ private:
|
| void checkLayoutState();
|
| #endif
|
|
|
| + void setShouldDoFullPaintInvalidationOnResizeIfNeeded();
|
| +
|
| void updateFromStyle() override;
|
| bool allowsOverflowClip() const override;
|
|
|
|
|