Index: chrome/browser/ui/browser.h |
=================================================================== |
--- chrome/browser/ui/browser.h (revision 99051) |
+++ chrome/browser/ui/browser.h (working copy) |
@@ -675,6 +675,14 @@ |
const string16& data, |
int intent_id); |
+ // Helper function to handle find results. |
+ static void FindReplyHelper(TabContents* tab, |
+ int request_id, |
+ int number_of_matches, |
+ const gfx::Rect& selection_rect, |
+ int active_match_ordinal, |
+ bool final_update); |
+ |
// Calls ExecuteCommandWithDisposition with the given disposition. |
void ExecuteCommandWithDisposition(int id, WindowOpenDisposition); |
@@ -951,6 +959,13 @@ |
const string16& data, |
int intent_id) OVERRIDE; |
+ virtual void FindReply(TabContents* tab, |
+ int request_id, |
+ int number_of_matches, |
+ const gfx::Rect& selection_rect, |
+ int active_match_ordinal, |
+ bool final_update) OVERRIDE; |
+ |
// Overridden from TabContentsWrapperDelegate: |
virtual void OnDidGetApplicationInfo(TabContentsWrapper* source, |
int32 page_id) OVERRIDE; |