OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromeos/settings/cros_settings_names.h" | 5 #include "chromeos/settings/cros_settings_names.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 | 8 |
9 const char kCrosSettingsPrefix[] = "cros."; | 9 const char kCrosSettingsPrefix[] = "cros."; |
10 | 10 |
11 // All cros.accounts.* settings are stored in SignedSettings. | 11 // All cros.accounts.* settings are stored in SignedSettings. |
12 const char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI"; | 12 const char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI"; |
13 const char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest"; | 13 const char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest"; |
14 const char kAccountsPrefShowUserNamesOnSignIn[] | 14 const char kAccountsPrefShowUserNamesOnSignIn[] |
15 = "cros.accounts.showUserNamesOnSignIn"; | 15 = "cros.accounts.showUserNamesOnSignIn"; |
16 const char kAccountsPrefUsers[] = "cros.accounts.users"; | 16 const char kAccountsPrefUsers[] = "cros.accounts.users"; |
17 const char kAccountsPrefEphemeralUsersEnabled[] = | 17 const char kAccountsPrefEphemeralUsersEnabled[] = |
18 "cros.accounts.ephemeralUsersEnabled"; | 18 "cros.accounts.ephemeralUsersEnabled"; |
19 const char kAccountsPrefDeviceLocalAccounts[] = | 19 const char kAccountsPrefDeviceLocalAccounts[] = |
20 "cros.accounts.deviceLocalAccounts"; | 20 "cros.accounts.deviceLocalAccounts"; |
21 const char kAccountsPrefDeviceLocalAccountsKeyId[] = | 21 const char kAccountsPrefDeviceLocalAccountsKeyId[] = |
22 "id"; | 22 "id"; |
23 const char kAccountsPrefDeviceLocalAccountsKeyType[] = | 23 const char kAccountsPrefDeviceLocalAccountsKeyType[] = |
24 "type"; | 24 "type"; |
25 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[] = | 25 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[] = |
26 "kiosk_app_id"; | 26 "kiosk_app_id"; |
| 27 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[] = |
| 28 "kiosk_app_update_url"; |
27 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = | 29 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = |
28 "cros.accounts.deviceLocalAccountAutoLoginId"; | 30 "cros.accounts.deviceLocalAccountAutoLoginId"; |
29 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = | 31 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = |
30 "cros.accounts.deviceLocalAccountAutoLoginDelay"; | 32 "cros.accounts.deviceLocalAccountAutoLoginDelay"; |
31 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = | 33 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = |
32 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; | 34 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; |
33 const char kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] = | 35 const char kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] = |
34 "cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline"; | 36 "cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline"; |
35 const char kAccountsPrefSupervisedUsersEnabled[] = | 37 const char kAccountsPrefSupervisedUsersEnabled[] = |
36 "cros.accounts.supervisedUsersEnabled"; | 38 "cros.accounts.supervisedUsersEnabled"; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 // A boolean pref that indicates whether attestation for content protection is | 145 // A boolean pref that indicates whether attestation for content protection is |
144 // enabled for the device. | 146 // enabled for the device. |
145 const char kAttestationForContentProtectionEnabled[] = | 147 const char kAttestationForContentProtectionEnabled[] = |
146 "cros.device.attestation_for_content_protection_enabled"; | 148 "cros.device.attestation_for_content_protection_enabled"; |
147 | 149 |
148 // The service account identity for device-level service accounts on | 150 // The service account identity for device-level service accounts on |
149 // enterprise-enrolled devices. | 151 // enterprise-enrolled devices. |
150 const char kServiceAccountIdentity[] = "cros.service_account_identity"; | 152 const char kServiceAccountIdentity[] = "cros.service_account_identity"; |
151 | 153 |
152 } // namespace chromeos | 154 } // namespace chromeos |
OLD | NEW |