| 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 8ad9eed96fd9ff9ef88adc439dd0f1abf79621b1..4d027829516d5463e657c002fbb54459b04ce1ba 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -492,6 +492,18 @@ int RenderViewHostImpl::GetPendingRequestId() {
|
| return pending_request_id_;
|
| }
|
|
|
| +#if defined(OS_ANDROID)
|
| +void RenderViewHostImpl::ActivateNearestFindResult(int request_id,
|
| + float x,
|
| + float y) {
|
| + Send(new ViewMsg_ActivateNearestFindResult(GetRoutingID(), request_id, x, y));
|
| +}
|
| +
|
| +void RenderViewHostImpl::RequestFindMatchRects(int current_version) {
|
| + Send(new ViewMsg_FindMatchRects(GetRoutingID(), current_version));
|
| +}
|
| +#endif
|
| +
|
| void RenderViewHostImpl::DragTargetDragEnter(
|
| const WebDropData& drop_data,
|
| const gfx::Point& client_pt,
|
|
|