Index: chrome/browser/ui/find_bar/find_tab_helper.h |
=================================================================== |
--- chrome/browser/ui/find_bar/find_tab_helper.h (revision 99261) |
+++ chrome/browser/ui/find_bar/find_tab_helper.h (working copy) |
@@ -58,16 +58,13 @@ |
return last_search_result_; |
} |
- // TabContentsObserver overrides. |
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
+ void HandleFindReply(int request_id, |
+ int number_of_matches, |
+ const gfx::Rect& selection_rect, |
+ int active_match_ordinal, |
+ bool final_update); |
private: |
- void OnFindReply(int request_id, |
- int number_of_matches, |
- const gfx::Rect& selection_rect, |
- int active_match_ordinal, |
- bool final_update); |
- |
// Each time a search request comes in we assign it an id before passing it |
// over the IPC so that when the results come in we can evaluate whether we |
// still care about the results of the search (in some cases we don't because |