| Index: blimp/client/feature/compositor/blimp_input_handler_wrapper.cc
|
| diff --git a/blimp/client/feature/compositor/blimp_input_handler_wrapper.cc b/blimp/client/feature/compositor/blimp_input_handler_wrapper.cc
|
| index 9f24ec8590cdd32d1d1ee371dd46f6bff30ffbe3..93abc7bce5bd7fcc87311d4a09d443ac413792b1 100644
|
| --- a/blimp/client/feature/compositor/blimp_input_handler_wrapper.cc
|
| +++ b/blimp/client/feature/compositor/blimp_input_handler_wrapper.cc
|
| @@ -89,6 +89,16 @@ blink::WebGestureCurve* BlimpInputHandlerWrapper::CreateFlingAnimationCurve(
|
| false /* on_main_thread */).release();
|
| }
|
|
|
| +void BlimpInputHandlerWrapper::DispatchNonBlockingEventToMainThread(
|
| + ui::ScopedWebInputEvent event,
|
| + const ui::LatencyInfo& latency_info) {
|
| + DCHECK(compositor_thread_checker_.CalledOnValidThread());
|
| + DCHECK_EQ(event->type, blink::WebInputEvent::MouseWheel);
|
| +
|
| + NOTIMPLEMENTED()
|
| + << "Dispatching Non Blocking Events to the engine is not supported";
|
| +}
|
| +
|
| void BlimpInputHandlerWrapper::DidOverscroll(
|
| const gfx::Vector2dF& accumulated_overscroll,
|
| const gfx::Vector2dF& latest_overscroll_delta,
|
|
|