Index: Source/core/frame/FrameView.cpp |
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp |
index 14e5e026725681da324979d3a91dbc1854e4998e..de40a6bb976ce42fb36e29078b9c84476795178c 100644 |
--- a/Source/core/frame/FrameView.cpp |
+++ b/Source/core/frame/FrameView.cpp |
@@ -2931,10 +2931,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); |
} |