16 lines
512 B
C++
16 lines
512 B
C++
// Copyright (c) 2023 The Brave Authors. All rights reserved.
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#ifndef BRAVE_BROWSER_UI_TOOLBAR_APP_MENU_ICONS_H_
|
|
#define BRAVE_BROWSER_UI_TOOLBAR_APP_MENU_ICONS_H_
|
|
|
|
namespace ui {
|
|
class SimpleMenuModel;
|
|
}
|
|
|
|
void ApplyLeoIcons(ui::SimpleMenuModel* menu);
|
|
|
|
#endif // BRAVE_BROWSER_UI_TOOLBAR_APP_MENU_ICONS_H_
|