Index: Source/core/frame/FrameView.cpp |
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp |
index d38ff287c04e620fc7f04af8cb4c50c9e15eb72f..58693f6ec5fa2048f83e7d6a13823b32758ec24b 100644 |
--- a/Source/core/frame/FrameView.cpp |
+++ b/Source/core/frame/FrameView.cpp |
@@ -2967,10 +2967,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); |
} |