diff --git a/browser/ui/views/brave_tab_search_bubble_host.cc b/browser/ui/views/brave_tab_search_bubble_host.cc index 41834713622..79100721076 100644 --- a/browser/ui/views/brave_tab_search_bubble_host.cc +++ b/browser/ui/views/brave_tab_search_bubble_host.cc @@ -19,10 +19,9 @@ void BraveTabSearchBubbleHost::SetBubbleArrow( bool BraveTabSearchBubbleHost::ShowTabSearchBubble( bool triggered_by_keyboard_shortcut, - tab_search::mojom::TabSearchSection section, - tab_search::mojom::TabOrganizationFeature organization_feature) { + tab_search::mojom::TabSearchSection section) { bool result = TabSearchBubbleHost::ShowTabSearchBubble( - triggered_by_keyboard_shortcut, section, organization_feature); + triggered_by_keyboard_shortcut, section); if (!arrow_ || !result) { return result; } diff --git a/browser/ui/views/brave_tab_search_bubble_host.h b/browser/ui/views/brave_tab_search_bubble_host.h index 6dbf2e1e218..ff229015d55 100644 --- a/browser/ui/views/brave_tab_search_bubble_host.h +++ b/browser/ui/views/brave_tab_search_bubble_host.h @@ -21,9 +21,7 @@ class BraveTabSearchBubbleHost : public TabSearchBubbleHost { bool ShowTabSearchBubble( bool triggered_by_keyboard_shortcut = false, tab_search::mojom::TabSearchSection section = - tab_search::mojom::TabSearchSection::kNone, - tab_search::mojom::TabOrganizationFeature organization_feature = - tab_search::mojom::TabOrganizationFeature::kNone) override; + tab_search::mojom::TabSearchSection::kNone) override; private: std::optional arrow_;