#ifndef CHROME_BROWSER_UI_TABS_SAVED_TAB_GROUPS_SAVED_TAB_GROUP_PREF_NAMES_H_
#define CHROME_BROWSER_UI_TABS_SAVED_TAB_GROUPS_SAVED_TAB_GROUP_PREF_NAMES_H_
#include "build/build_config.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace tab_groups::saved_tab_groups::prefs {
inline constexpr char kTabGroupSavesUIUpdateMigrated[] = …;
inline constexpr char kTabGroupsDeletionSkipDialogOnDelete[] = …;
inline constexpr char kTabGroupsDeletionSkipDialogOnUngroup[] = …;
inline constexpr char kTabGroupsDeletionSkipDialogOnRemoveTab[] = …;
inline constexpr char kTabGroupsDeletionSkipDialogOnCloseTab[] = …;
inline constexpr char kTabGroupLearnMoreFooterShownCount[] = …;
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
bool IsTabGroupSavesUIUpdateMigrated(PrefService* pref_service);
void SetTabGroupSavesUIUpdateMigrated(PrefService* pref_service);
int GetLearnMoreFooterShownCount(PrefService* pref_service);
void IncrementLearnMoreFooterShownCountPref(PrefService* pref_service);
}
#endif