blob: 0c3d4a7239f0bd7d6c2c351a7f0a850e6e382818 [file] [log] [blame]
// Copyright 2022 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/device_trust/prefs.h"
namespace enterprise_connectors {
const char kUserContextAwareAccessSignalsAllowlistPref[] =
"enterprise_connectors.device_trust_user.origins";
const char kBrowserContextAwareAccessSignalsAllowlistPref[] =
"enterprise_connectors.device_trust_browser.origins";
void RegisterDeviceTrustConnectorProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterListPref(kUserContextAwareAccessSignalsAllowlistPref);
registry->RegisterListPref(kBrowserContextAwareAccessSignalsAllowlistPref);
}
} // namespace enterprise_connectors