#ifndef COMPONENTS_SAVED_TAB_GROUPS_PREF_NAMES_H_
#define COMPONENTS_SAVED_TAB_GROUPS_PREF_NAMES_H_
#include "build/build_config.h"
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace tab_groups::prefs {
inline constexpr char kSyncableTabGroups[] = …;
#if BUILDFLAG(IS_ANDROID)
inline constexpr char kAutoOpenSyncedTabGroups[] =
"auto_open_synced_tab_groups";
inline constexpr char kStopShowingTabGroupConfirmationOnClose[] =
"stop_showing_tab_group_confirmation_on_close";
inline constexpr char kStopShowingTabGroupConfirmationOnUngroup[] =
"stop_showing_tab_group_confirmation_on_ungroup";
inline constexpr char kStopShowingTabGroupConfirmationOnTabRemove[] =
"stop_showing_tab_group_confirmation_on_tab_remove";
inline constexpr char kStopShowingTabGroupConfirmationOnTabClose[] =
"stop_showing_tab_group_confirmation_on_tab_close";
#endif
inline constexpr char kAutoPinNewTabGroups[] = …;
inline constexpr char kSavedTabGroupSpecificsToDataMigration[] = …;
inline constexpr char kDeletedTabGroupIds[] = …;
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
}
#endif