#ifndef CHROME_BROWSER_UI_VIEWS_MAHI_MAHI_MENU_CONSTANTS_H_
#define CHROME_BROWSER_UI_VIEWS_MAHI_MAHI_MENU_CONSTANTS_H_
namespace chromeos::mahi {
enum ViewID {
kSummaryButton = 1,
kOutlineButton,
kSettingsButton,
kTextfield,
kSubmitQuestionButton,
kElucidationButton,
};
enum class MahiMenuButton {
kSummaryButton = 0,
kOutlineButton = 1,
kSubmitQuestionButton = 2,
kCondensedMenuButton = 3,
kSettingsButton = 4,
kElucidationButton = 5,
kSummaryOfSelectionButton = 6,
kMaxValue = kSummaryOfSelectionButton,
};
inline constexpr char kMahiContextMenuButtonClickHistogram[] =
"ChromeOS.Mahi.ContextMenuView.ButtonClicked";
inline constexpr char kMahiContextMenuDistillableHistogram[] =
"ChromeOS.Mahi.ContextMenuView.Distillable";
inline constexpr char kMahiContextMenuElucidationState[] =
"ChromeOS.Mahi.ContextMenuView.ElucidationState";
}
#endif