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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp

Issue 2531603003: Only scroll on main if the targeted frames need to scroll on main (Closed)
Patch Set: Update sub-frame using loops instead of recursion & integrate a patch to fix spv2 problem 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/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index a6adbe381105a5087e2a60c4f45c7312390da0fa..9eb3f998872e2df7e47f41c27a65056cc40ff1ec 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1726,7 +1726,7 @@ bool PaintLayerScrollableArea::shouldScrollOnMainThread() const {
if (LocalFrame* frame = box().frame()) {
if (Page* page = frame->page()) {
if (page->scrollingCoordinator()
- ->shouldUpdateScrollLayerPositionOnMainThread())
+ ->shouldUpdateScrollLayerPositionOnMainThread(frame))
return true;
}
}

Powered by Google App Engine
This is Rietveld 408576698