Salvador Guerrero | 265d682 | 2024-07-17 17:07:29 | [diff] [blame] | 1 | // Copyright 2024 The Chromium Authors |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROME_BROWSER_UI_ANDROID_TOOLBAR_ADAPTIVE_TOOLBAR_BRIDGE_H_ |
| 6 | #define CHROME_BROWSER_UI_ANDROID_TOOLBAR_ADAPTIVE_TOOLBAR_BRIDGE_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | #include "chrome/browser/profiles/profile.h" |
| 11 | #include "chrome/browser/ui/android/toolbar/adaptive_toolbar_enums.h" |
| 12 | |
| 13 | namespace adaptive_toolbar { |
| 14 | |
| 15 | void GetRankedSessionVariantButtons( |
| 16 | Profile* profile, |
| 17 | bool use_raw_results, |
| 18 | base::OnceCallback<void(bool, std::vector<int>)> callback); |
| 19 | |
| 20 | } // namespace adaptive_toolbar |
| 21 | |
| 22 | #endif // CHROME_BROWSER_UI_ANDROID_TOOLBAR_ADAPTIVE_TOOLBAR_BRIDGE_H_ |