Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: components/guest_view/browser/guest_view_base.cc

Issue 2723253002: Fix beep when navigating/closing a page with find bar open
Patch Set: android Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/guest_view/browser/guest_view_base.cc
diff --git a/components/guest_view/browser/guest_view_base.cc b/components/guest_view/browser/guest_view_base.cc
index 606a47060b430eb6e808386349dd97f21c3fe211..d60721c13a026c8a5a0edef024691ed545ea2ab8 100644
--- a/components/guest_view/browser/guest_view_base.cc
+++ b/components/guest_view/browser/guest_view_base.cc
@@ -728,15 +728,13 @@ void GuestViewBase::FindReply(WebContents* source,
int number_of_matches,
const gfx::Rect& selection_rect,
int active_match_ordinal,
- bool final_update) {
+ bool final_update,
+ bool was_frame_removal) {
if (ShouldHandleFindRequestsForEmbedder() &&
attached() && embedder_web_contents()->GetDelegate()) {
- embedder_web_contents()->GetDelegate()->FindReply(embedder_web_contents(),
- request_id,
- number_of_matches,
- selection_rect,
- active_match_ordinal,
- final_update);
+ embedder_web_contents()->GetDelegate()->FindReply(
+ embedder_web_contents(), request_id, number_of_matches, selection_rect,
+ active_match_ordinal, final_update, was_frame_removal);
}
}
« no previous file with comments | « components/guest_view/browser/guest_view_base.h ('k') | content/browser/download/mhtml_generation_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698