| 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 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 kAccountsPrefDeviceLocalAccountAutoLoginId[] = | 27 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = |
| 28 "cros.accounts.deviceLocalAccountAutoLoginId"; | 28 "cros.accounts.deviceLocalAccountAutoLoginId"; |
| 29 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = | 29 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = |
| 30 "cros.accounts.deviceLocalAccountAutoLoginDelay"; | 30 "cros.accounts.deviceLocalAccountAutoLoginDelay"; |
| 31 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = | 31 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = |
| 32 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; | 32 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; |
| 33 const char kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] = |
| 34 "cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline"; |
| 33 const char kAccountsPrefSupervisedUsersEnabled[] = | 35 const char kAccountsPrefSupervisedUsersEnabled[] = |
| 34 "cros.accounts.supervisedUsersEnabled"; | 36 "cros.accounts.supervisedUsersEnabled"; |
| 35 | 37 |
| 36 // All cros.signed.* settings are stored in SignedSettings. | 38 // All cros.signed.* settings are stored in SignedSettings. |
| 37 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; | 39 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; |
| 38 | 40 |
| 39 // True if auto-update was disabled by the system administrator. | 41 // True if auto-update was disabled by the system administrator. |
| 40 const char kUpdateDisabled[] = "cros.system.updateDisabled"; | 42 const char kUpdateDisabled[] = "cros.system.updateDisabled"; |
| 41 | 43 |
| 42 // A list of strings which specifies allowed connection types for | 44 // A list of strings which specifies allowed connection types for |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 // A boolean pref that indicates whether enterprise attestation is enabled for | 137 // A boolean pref that indicates whether enterprise attestation is enabled for |
| 136 // the device. | 138 // the device. |
| 137 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; | 139 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; |
| 138 | 140 |
| 139 // A boolean pref that indicates whether attestation for content protection is | 141 // A boolean pref that indicates whether attestation for content protection is |
| 140 // enabled for the device. | 142 // enabled for the device. |
| 141 const char kAttestationForContentProtectionEnabled[] = | 143 const char kAttestationForContentProtectionEnabled[] = |
| 142 "cros.device.attestation_for_content_protection_enabled"; | 144 "cros.device.attestation_for_content_protection_enabled"; |
| 143 | 145 |
| 144 } // namespace chromeos | 146 } // namespace chromeos |
| OLD | NEW |