Index: content/browser/renderer_host/input/input_router_impl.cc |
diff --git a/content/browser/renderer_host/input/input_router_impl.cc b/content/browser/renderer_host/input/input_router_impl.cc |
index 8b481ea6347164164e087b049916229c1a51b8ff..649c7b99c23174f6d650af61c6fae2a4241bbc32 100644 |
--- a/content/browser/renderer_host/input/input_router_impl.cc |
+++ b/content/browser/renderer_host/input/input_router_impl.cc |
@@ -52,6 +52,8 @@ const char* GetEventAckName(InputEventAckState ack_result) { |
case INPUT_EVENT_ACK_STATE_NOT_CONSUMED: return "NOT_CONSUMED"; |
case INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS: return "NO_CONSUMER_EXISTS"; |
case INPUT_EVENT_ACK_STATE_IGNORED: return "IGNORED"; |
+ case INPUT_EVENT_ACK_STATE_SET_NON_BLOCKING: |
+ return "SET_NON_BLOCKING"; |
} |
DLOG(WARNING) << "Unhandled InputEventAckState in GetEventAckName."; |
return ""; |
@@ -410,7 +412,7 @@ bool InputRouterImpl::OfferToRenderer(const WebInputEvent& input_event, |
event_in_viewport ? event_in_viewport.get() : &input_event; |
if (Send(new InputMsg_HandleInputEvent(routing_id(), event_to_send, |
- latency_info))) { |
+ latency_info, false))) { |
// Ack messages for ignored ack event types should never be sent by the |
// renderer. Consequently, such event types should not affect event time |
// or in-flight event count metrics. |