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

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

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressed review comments 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/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 3d86061aaa69653fbd0367a20f059cba60000999..0b9a5505f3d314ba863559ee99d16240f60fea27 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -2969,10 +2969,10 @@ void FrameView::removeChild(Widget* child)
ScrollResult FrameView::wheelEvent(const PlatformWheelEvent& wheelEvent)
{
if (!isScrollable())
- return ScrollResult(false);
+ return ScrollResult();
if (m_frame->settings()->rootLayerScrolls())
- return ScrollResult(false);
+ return ScrollResult();
return ScrollableArea::handleWheel(wheelEvent);
}

Powered by Google App Engine
This is Rietveld 408576698