| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index e27fd842fcc187a1bfefb787e1928bebd2449f75..1f30d943ffa8acfbe84068d458648a420266f705 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1867,16 +1867,15 @@ void Browser::FindReply(WebContents* web_contents,
|
| int number_of_matches,
|
| const gfx::Rect& selection_rect,
|
| int active_match_ordinal,
|
| - bool final_update) {
|
| + bool final_update,
|
| + bool was_frame_removal) {
|
| FindTabHelper* find_tab_helper = FindTabHelper::FromWebContents(web_contents);
|
| if (!find_tab_helper)
|
| return;
|
|
|
| - find_tab_helper->HandleFindReply(request_id,
|
| - number_of_matches,
|
| - selection_rect,
|
| - active_match_ordinal,
|
| - final_update);
|
| + find_tab_helper->HandleFindReply(request_id, number_of_matches,
|
| + selection_rect, active_match_ordinal,
|
| + final_update, was_frame_removal);
|
| }
|
|
|
| void Browser::RequestToLockMouse(WebContents* web_contents,
|
|
|