| 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..cea45b77aa75e92f802e17db38bbc79ef8b7a836 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -33,6 +33,7 @@
|
| #include "content/common/browser_plugin/browser_plugin_messages.h"
|
| #include "content/common/desktop_notification_messages.h"
|
| #include "content/common/drag_messages.h"
|
| +#include "content/common/input_messages.h"
|
| #include "content/common/inter_process_time_ticks_converter.h"
|
| #include "content/common/speech_recognition_messages.h"
|
| #include "content/common/swapped_out_messages.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 InputMsg_ActivateNearestFindResult(GetRoutingID(),
|
| + request_id, x, y));
|
| }
|
|
|
| void RenderViewHostImpl::RequestFindMatchRects(int current_version) {
|
|
|