| 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 dcae7142ff791c9211c532efc3b35e54d31d0fee..1c6b8e06a18a259d8b927801c3a67b59584baf80 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl.cc
|
| @@ -279,6 +279,7 @@ bool InputRouterImpl::OnMessageReceived(const IPC::Message& message) {
|
| IPC_MESSAGE_HANDLER(InputHostMsg_SetTouchAction,
|
| OnSetTouchAction)
|
| IPC_MESSAGE_HANDLER(InputHostMsg_DidStopFlinging, OnDidStopFlinging)
|
| + IPC_MESSAGE_HANDLER(InputHostMsg_DidSelectWordAt, OnDidSelectWordAt)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP()
|
|
|
| @@ -513,6 +514,10 @@ void InputRouterImpl::OnDidStopFlinging() {
|
| client_->DidStopFlinging();
|
| }
|
|
|
| +void InputRouterImpl::OnDidSelectWordAt() {
|
| + client_->DidSelectWordAt();
|
| +}
|
| +
|
| void InputRouterImpl::ProcessInputEventAck(WebInputEvent::Type event_type,
|
| InputEventAckState ack_result,
|
| const ui::LatencyInfo& latency_info,
|
|
|