#ifndef COMPONENTS_ENTERPRISE_CONNECTORS_CORE_CONNECTORS_PREFS_H_
#define COMPONENTS_ENTERPRISE_CONNECTORS_CORE_CONNECTORS_PREFS_H_
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
class PrefRegistrySimple;
namespace enterprise_connectors {
extern const char kOnFileAttachedPref[];
extern const char kOnFileDownloadedPref[];
extern const char kOnBulkDataEntryPref[];
extern const char kOnPrintPref[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kOnFileTransferPref[];
#endif
extern const char kOnSecurityEventPref[];
inline constexpr char kEnterpriseRealTimeUrlCheckMode[] = …;
extern const char kOnFileAttachedScopePref[];
extern const char kOnFileDownloadedScopePref[];
extern const char kOnBulkDataEntryScopePref[];
extern const char kOnPrintScopePref[];
#if BUILDFLAG(IS_CHROMEOS)
extern const char kOnFileTransferScopePref[];
#endif
extern const char kOnSecurityEventScopePref[];
inline constexpr char kEnterpriseRealTimeUrlCheckScope[] = …;
extern const char kLatestCrashReportCreationTime[];
void RegisterProfilePrefs(PrefRegistrySimple* registry);
void RegisterLocalStatePrefs(PrefRegistrySimple* registry);
}
#endif