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

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

Issue 2651793012: [RootLayerScrolls] Annotate non-fast-scroll regions to correct layer (Closed)
Patch Set: Created 3 years, 11 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/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index cbef21c1da6b811035f544fc47e7df85278d4d2b..632f22baaa07665d9f41519e789b558eac7727ce 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1659,6 +1659,10 @@ LayoutRect PaintLayerScrollableArea::scrollIntoView(
return intersect;
}
+ClientRectList* PaintLayerScrollableArea::nonFastScrollableRects() const {
+ return layer()->nonFastScrollableRects();
+}
+
void PaintLayerScrollableArea::updateScrollableAreaSet(bool hasOverflow) {
LocalFrame* frame = box().frame();
if (!frame)

Powered by Google App Engine
This is Rietveld 408576698