| Index: chrome/browser/ui/find_bar/find_tab_helper.cc
|
| diff --git a/chrome/browser/ui/find_bar/find_tab_helper.cc b/chrome/browser/ui/find_bar/find_tab_helper.cc
|
| index 4f089762b2bd65707484cf40bdfe44f32019080d..7f3bd499bd6447670a7f3b5246f2089d40ef607c 100644
|
| --- a/chrome/browser/ui/find_bar/find_tab_helper.cc
|
| +++ b/chrome/browser/ui/find_bar/find_tab_helper.cc
|
| @@ -158,7 +158,8 @@ void FindTabHelper::HandleFindReply(int request_id,
|
| int number_of_matches,
|
| const gfx::Rect& selection_rect,
|
| int active_match_ordinal,
|
| - bool final_update) {
|
| + bool final_update,
|
| + bool was_frame_removal) {
|
| // Ignore responses for requests that have been aborted.
|
| // Ignore responses for requests from previous sessions. That way we won't act
|
| // on stale results when the user has already typed in another query.
|
| @@ -178,7 +179,7 @@ void FindTabHelper::HandleFindReply(int request_id,
|
| // found.
|
| last_search_result_ = FindNotificationDetails(
|
| request_id, number_of_matches, selection, active_match_ordinal,
|
| - final_update);
|
| + final_update, was_frame_removal);
|
| content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_FIND_RESULT_AVAILABLE,
|
| content::Source<WebContents>(web_contents()),
|
|
|