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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2561693002: Move sticky position constraints update to the pre-paint tree walk. (Closed)
Patch Set: none Created 4 years 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/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index de2724a16ae7e58e013cde03ec403efd8a4e5f0e..3c3793b39b691fa24a814ec85e075ca622f584ed 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -2939,12 +2939,6 @@ void FrameView::updatePaintProperties() {
frameView.lifecycle().advanceTo(DocumentLifecycle::InPrePaint);
});
- // TODO(chrishtr): merge this into the actual pre-paint tree walk.
- if (RuntimeEnabledFeatures::slimmingPaintV2Enabled())
- forAllNonThrottledFrameViews([](FrameView& frameView) {
- CompositingInputsUpdater(frameView.layoutView()->layer()).update();
- });
-
if (RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled())
PrePaintTreeWalk().walk(*this);

Powered by Google App Engine
This is Rietveld 408576698