blob: 7cbd029450a86395f96e7216963ae28ec8aa351a [file] [log] [blame]
Salvador Guerrero265d6822024-07-17 17:07:291// 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
13namespace adaptive_toolbar {
14
15void 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_