[cr147] ShowTabSearchBubble signature changed.

Chromium change:
https://source.chromium.org/chromium/chromium/src/+/c1333a58b4fd7a87e6a7459313f4736a1eb15cef

commit c1333a58b4fd7a87e6a7459313f4736a1eb15cef
Author: Emily Shack <emshack@chromium.org>
Date:   Tue Mar 3 12:45:36 2026 -0800

    [Declutter] Remove declutter pref and IDS files

    Part 3 of declutter cleanup, removing obsolete string resources and
    deprecating a no longer relevant pref.

    Bug: 488464976
This commit is contained in:
Max Karolinskiy
2026-03-26 19:55:36 -04:00
parent 087ac812dc
commit 4db1f53f57
2 changed files with 3 additions and 6 deletions
@@ -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;
}
@@ -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<views::BubbleBorder::Arrow> arrow_;