chromium/components/enterprise/connectors/core/connectors_prefs.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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  // BUILDFLAG(ENTERPRISE_CLIENT_CERTIFICATES)

namespace enterprise_connectors {

// Profile Prefs
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[] =;

// Local State Prefs
const char kLatestCrashReportCreationTime[] =;

void RegisterProfilePrefs(PrefRegistrySimple* registry) {}

void RegisterLocalStatePrefs(PrefRegistrySimple* registry) {}

}  // namespace enterprise_connectors