Commit 62176a0b authored by william.xie's avatar william.xie Committed by Commit bot

Fix build issue in Debug mode

Build error:
input_handler_proxy.cc:610:1: error: control reaches end of non-void
function [-Werror=return-type]

BUG=

Review URL: https://codereview.chromium.org/1631563002

Cr-Commit-Position: refs/heads/master@{#371523}
parent 57c2ecb9
......@@ -601,12 +601,11 @@ InputHandlerProxy::HandleGestureScrollUpdate(
default:
return DID_NOT_HANDLE;
}
} else {
cc::InputHandlerScrollResult scroll_result =
input_handler_->ScrollBy(&scroll_state);
HandleOverscroll(scroll_point, scroll_result);
return scroll_result.did_scroll ? DID_HANDLE : DROP_EVENT;
}
cc::InputHandlerScrollResult scroll_result =
input_handler_->ScrollBy(&scroll_state);
HandleOverscroll(scroll_point, scroll_result);
return scroll_result.did_scroll ? DID_HANDLE : DROP_EVENT;
}
InputHandlerProxy::EventDisposition InputHandlerProxy::HandleGestureScrollEnd(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment