| 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[] = | 25 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[] = |
| 26 "kiosk_app_id"; | 26 "kiosk_app_id"; |
| 27 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[] = | 27 const char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[] = |
| 28 "kiosk_app_id_update_url"; | 28 "kiosk_app_id_update_url"; |
| 29 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = | 29 const char kAccountsPrefDeviceLocalAccountAutoLoginId[] = |
| 30 "cros.accounts.deviceLocalAccountAutoLoginId"; | 30 "cros.accounts.deviceLocalAccountAutoLoginId"; |
| 31 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = | 31 const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] = |
| 32 "cros.accounts.deviceLocalAccountAutoLoginDelay"; | 32 "cros.accounts.deviceLocalAccountAutoLoginDelay"; |
| 33 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = | 33 const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] = |
| 34 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; | 34 "cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled"; |
| 35 const char kAccountsPrefSupervisedUsersEnabled[] = |
| 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 |
| 43 // update. | 45 // update. |
| 44 const char kAllowedConnectionTypesForUpdate[] = | 46 const char kAllowedConnectionTypesForUpdate[] = |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 118 |
| 117 // A string pref for the restrict parameter to be appended to the Variations URL | 119 // A string pref for the restrict parameter to be appended to the Variations URL |
| 118 // when pinging the Variations server. | 120 // when pinging the Variations server. |
| 119 const char kVariationsRestrictParameter[] = | 121 const char kVariationsRestrictParameter[] = |
| 120 "cros.variations_restrict_parameter"; | 122 "cros.variations_restrict_parameter"; |
| 121 | 123 |
| 122 // A boolean pref that indicates whether attestation is enabled for the device. | 124 // A boolean pref that indicates whether attestation is enabled for the device. |
| 123 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; | 125 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; |
| 124 | 126 |
| 125 } // namespace chromeos | 127 } // namespace chromeos |
| OLD | NEW |