| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index 846b49e22d935797bada89aaf0d8ec75d9599477..86a4c462521fbcd33d75a7604139ddd22557088d 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -1957,6 +1957,11 @@ void RenderWidgetHostImpl::DidStopFlinging() {
|
| view_->DidStopFlinging();
|
| }
|
|
|
| +void RenderWidgetHostImpl::DidSelectWordAtCoordinates() {
|
| + if (view_)
|
| + view_->ShowDefinitionForSelection();
|
| +}
|
| +
|
| void RenderWidgetHostImpl::OnKeyboardEventAck(
|
| const NativeWebKeyboardEventWithLatencyInfo& event,
|
| InputEventAckState ack_result) {
|
|
|