Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutView.h

Issue 2084723002: Remove LayoutView::doingFullPaintInvalidation() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More NeedsRebaselines Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutObject.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698