#ifndef CHROME_BROWSER_UI_SAFETY_HUB_SAFETY_HUB_PREFS_H_
#define CHROME_BROWSER_UI_SAFETY_HUB_SAFETY_HUB_PREFS_H_
#include "build/build_config.h"
class PrefRegistrySimple;
namespace safety_hub_prefs {
#if !BUILDFLAG(IS_ANDROID)
inline constexpr char kBackgroundPasswordCheckTimeAndInterval[] = …;
inline constexpr char kNextPasswordCheckTimeKey[] = …;
inline constexpr char kPasswordCheckIntervalKey[] = …;
inline constexpr char kPasswordCheckMonWeight[] = …;
inline constexpr char kPasswordCheckTueWeight[] = …;
inline constexpr char kPasswordCheckWedWeight[] = …;
inline constexpr char kPasswordCheckThuWeight[] = …;
inline constexpr char kPasswordCheckFriWeight[] = …;
inline constexpr char kPasswordCheckSatWeight[] = …;
inline constexpr char kPasswordCheckSunWeight[] = …;
#endif
inline const char kMenuNotificationsPrefsKey[] = …;
inline const char kUnusedSitePermissionsRevocationEnabled[] = …;
inline const char kUnusedSitePermissionsRevocationMigrationCompleted[] = …;
}
void RegisterSafetyHubProfilePrefs(PrefRegistrySimple* registry);
#endif