| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/chromeos/settings/cros_settings_names.h" | 5 #include "chrome/browser/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_id_update_url"; | |
| 29 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = | 27 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = |
| 30 "cros.accounts.deviceLocalAccountAutoLoginId"; | 28 "cros.accounts.deviceLocalAccountAutoLoginId"; |
| 31 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = | 29 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = |
| 32 "cros.accounts.deviceLocalAccountAutoLoginDelay"; | 30 "cros.accounts.deviceLocalAccountAutoLoginDelay"; |
| 33 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = | 31 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = |
| 34 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; | 32 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; |
| 35 const char kAccountsPrefSupervisedUsersEnabled[] = | 33 const char kAccountsPrefSupervisedUsersEnabled[] = |
| 36 "cros.accounts.supervisedUsersEnabled"; | 34 "cros.accounts.supervisedUsersEnabled"; |
| 37 | 35 |
| 38 // All cros.signed.* settings are stored in SignedSettings. | 36 // All cros.signed.* settings are stored in SignedSettings. |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 // A boolean pref that indicates whether enterprise attestation is enabled for | 131 // A boolean pref that indicates whether enterprise attestation is enabled for |
| 134 // the device. | 132 // the device. |
| 135 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; | 133 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; |
| 136 | 134 |
| 137 // A boolean pref that indicates whether attestation for content protection is | 135 // A boolean pref that indicates whether attestation for content protection is |
| 138 // enabled for the device. | 136 // enabled for the device. |
| 139 const char kAttestationForContentProtectionEnabled[] = | 137 const char kAttestationForContentProtectionEnabled[] = |
| 140 "cros.device.attestation_for_content_protection_enabled"; | 138 "cros.device.attestation_for_content_protection_enabled"; |
| 141 | 139 |
| 142 } // namespace chromeos | 140 } // namespace chromeos |
| OLD | NEW |