#ifndef COMPONENTS_PERMISSIONS_PREF_NAMES_H_
#define COMPONENTS_PERMISSIONS_PREF_NAMES_H_
#include "build/build_config.h"
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace permissions {
namespace prefs {
extern const char kPermissionActions[];
#if BUILDFLAG(IS_ANDROID)
extern const char kLocationSettingsBackoffLevelDSE[];
extern const char kLocationSettingsBackoffLevelDefault[];
extern const char kLocationSettingsNextShowDSE[];
extern const char kLocationSettingsNextShowDefault[];
#endif
extern const char kOneTimePermissionPromptsDecidedCount[];
}
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
}
#endif