| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index f0de4ccf8e70bfad7a9370942331cb8b5f1ca343..905cfc907d9955ac170b050cfb761690db8ffd98 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2341,6 +2341,17 @@ void RenderFrameHostImpl::DidCancelPopupMenu() {
|
|
|
| #elif defined(OS_ANDROID)
|
|
|
| +void RenderFrameHostImpl::ActivateNearestFindResult(int request_id,
|
| + float x,
|
| + float y) {
|
| + Send(
|
| + new InputMsg_ActivateNearestFindResult(GetRoutingID(), request_id, x, y));
|
| +}
|
| +
|
| +void RenderFrameHostImpl::RequestFindMatchRects(int current_version) {
|
| + Send(new FrameMsg_FindMatchRects(GetRoutingID(), current_version));
|
| +}
|
| +
|
| void RenderFrameHostImpl::DidSelectPopupMenuItems(
|
| const std::vector<int>& selected_indices) {
|
| Send(new FrameMsg_SelectPopupMenuItems(routing_id_, false, selected_indices));
|
|
|