| Index: content/renderer/input/render_widget_input_handler.cc
|
| diff --git a/content/renderer/input/render_widget_input_handler.cc b/content/renderer/input/render_widget_input_handler.cc
|
| index c316cb93262a1caebd415ced69dd23ab6b1ab183..3d793bb66e161b15a01cc1f6732cdcf50c3fe820 100644
|
| --- a/content/renderer/input/render_widget_input_handler.cc
|
| +++ b/content/renderer/input/render_widget_input_handler.cc
|
| @@ -328,14 +328,10 @@ void RenderWidgetInputHandler::HandleInputEvent(
|
| processed, static_cast<const WebTouchEvent&>(input_event).dispatchType,
|
| input_event.timeStampSeconds, latency_info);
|
| } else if (input_event.type == WebInputEvent::MouseWheel) {
|
| - bool non_blocking =
|
| - dispatch_type ==
|
| - InputEventDispatchType::DISPATCH_TYPE_NON_BLOCKING_NOTIFY_MAIN ||
|
| - dispatch_type == InputEventDispatchType::DISPATCH_TYPE_NON_BLOCKING;
|
| - LogPassiveEventListenersUma(processed,
|
| - non_blocking ? WebInputEvent::EventNonBlocking
|
| - : WebInputEvent::Blocking,
|
| - input_event.timeStampSeconds, latency_info);
|
| + LogPassiveEventListenersUma(
|
| + processed,
|
| + static_cast<const WebMouseWheelEvent&>(input_event).dispatchType,
|
| + input_event.timeStampSeconds, latency_info);
|
| }
|
|
|
| // If this RawKeyDown event corresponds to a browser keyboard shortcut and
|
|
|