| Index: chrome/browser/ui/browser.h
|
| ===================================================================
|
| --- chrome/browser/ui/browser.h (revision 99261)
|
| +++ chrome/browser/ui/browser.h (working copy)
|
| @@ -684,6 +684,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);
|
|
|
| @@ -960,6 +968,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;
|
|
|