blob: 4810e76731f2f8e396214e72af7c8a5abde7274d [file] [log] [blame]
// Copyright 2024 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/client_certificates/core/prefs.h"
#include "components/prefs/pref_registry_simple.h"
namespace client_certificates {
namespace prefs {
const char kProvisionManagedClientCertificateForUserPrefs[] =
"client_certificates.provision_for_user.value";
} // namespace prefs
void RegisterProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterIntegerPref(
prefs::kProvisionManagedClientCertificateForUserPrefs,
/*default_value=*/0);
}
} // namespace client_certificates