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

Unified Diff: Source/core/layout/LayoutBox.cpp

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added function for comparison Created 5 years, 7 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: Source/core/layout/LayoutBox.cpp
diff --git a/Source/core/layout/LayoutBox.cpp b/Source/core/layout/LayoutBox.cpp
index d3aca75eafc13ea9a620acf49e44a27baefa275f..253382337cece27a87577734572d5dd8db71a177 100644
--- a/Source/core/layout/LayoutBox.cpp
+++ b/Source/core/layout/LayoutBox.cpp
@@ -709,7 +709,7 @@ int LayoutBox::intrinsicScrollbarLogicalWidth() const
return 0;
}
-bool LayoutBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float delta)
+ScrollResultOneDimensional LayoutBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float delta)
{
// Presumably the same issue as in setScrollTop. See crbug.com/343132.
DisableCompositingQueryAsserts disabler;
@@ -718,7 +718,7 @@ bool LayoutBox::scroll(ScrollDirection direction, ScrollGranularity granularity,
ASSERT(!isLogical(direction));
if (!layer() || !layer()->scrollableArea())
- return false;
+ return ScrollResultOneDimensional(false);
return layer()->scrollableArea()->scroll(direction, granularity, delta);
}

Powered by Google App Engine
This is Rietveld 408576698