| Index: content/browser/renderer_host/render_view_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
|
| index c943bbbadb0f9aae828c4c016cc29b7b191fc288..3938f1bd96483a6d753bd2d39c43f0b1e7bec016 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -36,6 +36,7 @@
|
| #include "content/common/inter_process_time_ticks_converter.h"
|
| #include "content/common/speech_recognition_messages.h"
|
| #include "content/common/swapped_out_messages.h"
|
| +#include "content/common/view_input_messages.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/port/browser/render_view_host_delegate_view.h"
|
| #include "content/port/browser/render_widget_host_view_port.h"
|
| @@ -561,7 +562,8 @@ int RenderViewHostImpl::GetPendingRequestId() {
|
| void RenderViewHostImpl::ActivateNearestFindResult(int request_id,
|
| float x,
|
| float y) {
|
| - Send(new ViewMsg_ActivateNearestFindResult(GetRoutingID(), request_id, x, y));
|
| + Send(new ViewInputMsg_ActivateNearestFindResult(GetRoutingID(),
|
| + request_id, x, y));
|
| }
|
|
|
| void RenderViewHostImpl::RequestFindMatchRects(int current_version) {
|
|
|