| Index: content/browser/tab_contents/tab_contents.cc
|
| ===================================================================
|
| --- content/browser/tab_contents/tab_contents.cc (revision 99261)
|
| +++ content/browser/tab_contents/tab_contents.cc (working copy)
|
| @@ -301,6 +301,7 @@
|
| OnRegisterIntentHandler)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_WebIntentDispatch,
|
| OnWebIntentDispatch)
|
| + IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnFindReply)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP_EX()
|
|
|
| @@ -1134,6 +1135,15 @@
|
| data, intent_id);
|
| }
|
|
|
| +void TabContents::OnFindReply(int request_id,
|
| + int number_of_matches,
|
| + const gfx::Rect& selection_rect,
|
| + int active_match_ordinal,
|
| + bool final_update) {
|
| + delegate()->FindReply(this, request_id, number_of_matches, selection_rect,
|
| + active_match_ordinal, final_update);
|
| +}
|
| +
|
| // Notifies the RenderWidgetHost instance about the fact that the page is
|
| // loading, or done loading and calls the base implementation.
|
| void TabContents::SetIsLoading(bool is_loading,
|
|
|