#include "components/enterprise/connectors/core/connectors_prefs.h"
#include <algorithm>
#include <string>
#include <vector>
#include "build/build_config.h"
#include "components/enterprise/buildflags/buildflags.h"
#include "components/enterprise/connectors/core/common.h"
#include "components/enterprise/connectors/core/service_provider_config.h"
#include "components/enterprise/device_trust/prefs.h"
#include "components/prefs/pref_registry_simple.h"
#if BUILDFLAG(ENTERPRISE_CLIENT_CERTIFICATES)
#include "components/enterprise/client_certificates/core/prefs.h"
#endif
namespace enterprise_connectors {
const char kOnFileAttachedPref[] = …;
const char kOnFileDownloadedPref[] = …;
const char kOnBulkDataEntryPref[] = …;
const char kOnPrintPref[] = …;
#if BUILDFLAG(IS_CHROMEOS)
const char kOnFileTransferPref[] = "enterprise_connectors.on_file_transfer";
#endif
const char kOnSecurityEventPref[] = …;
const char kOnFileAttachedScopePref[] = …;
const char kOnFileDownloadedScopePref[] = …;
const char kOnBulkDataEntryScopePref[] = …;
const char kOnPrintScopePref[] = …;
#if BUILDFLAG(IS_CHROMEOS)
const char kOnFileTransferScopePref[] =
"enterprise_connectors.scope.on_file_transfer";
#endif
const char kOnSecurityEventScopePref[] = …;
const char kLatestCrashReportCreationTime[] = …;
void RegisterProfilePrefs(PrefRegistrySimple* registry) { … }
void RegisterLocalStatePrefs(PrefRegistrySimple* registry) { … }
}