| 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 21 matching lines...) Expand all Loading... |
| 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 kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] = | 35 const char kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] = |
| 36 "cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline"; | 36 "cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline"; |
| 37 const char kAccountsPrefSupervisedUsersEnabled[] = | 37 const char kAccountsPrefSupervisedUsersEnabled[] = |
| 38 "cros.accounts.supervisedUsersEnabled"; | 38 "cros.accounts.supervisedUsersEnabled"; |
| 39 const char kAccountsPrefTransferSAMLCookies[] = | 39 const char kAccountsPrefTransferSAMLCookies[] = |
| 40 "cros.accounts.transferSAMLCookies"; | 40 "cros.accounts.transferSAMLCookies"; |
| 41 | 41 |
| 42 // A string pref that specifies a domain name for the autocomplete option during |
| 43 // user sign-in flow. |
| 44 const char kAccountsPrefLoginScreenDomainAutoComplete[] = |
| 45 "cros.accounts.login_screen_domain_auto_complete"; |
| 46 |
| 42 // All cros.signed.* settings are stored in SignedSettings. | 47 // All cros.signed.* settings are stored in SignedSettings. |
| 43 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; | 48 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; |
| 44 | 49 |
| 45 // True if auto-update was disabled by the system administrator. | 50 // True if auto-update was disabled by the system administrator. |
| 46 const char kUpdateDisabled[] = "cros.system.updateDisabled"; | 51 const char kUpdateDisabled[] = "cros.system.updateDisabled"; |
| 47 | 52 |
| 48 // A list of strings which specifies allowed connection types for | 53 // A list of strings which specifies allowed connection types for |
| 49 // update. | 54 // update. |
| 50 const char kAllowedConnectionTypesForUpdate[] = | 55 const char kAllowedConnectionTypesForUpdate[] = |
| 51 "cros.system.allowedConnectionTypesForUpdate"; | 56 "cros.system.allowedConnectionTypesForUpdate"; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 // A boolean pref that indicates whether the device automatically reboots when | 165 // A boolean pref that indicates whether the device automatically reboots when |
| 161 // the user initiates a shutdown via an UI element. If set to true, all | 166 // the user initiates a shutdown via an UI element. If set to true, all |
| 162 // shutdown buttons in the UI will be replaced by reboot buttons. | 167 // shutdown buttons in the UI will be replaced by reboot buttons. |
| 163 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; | 168 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; |
| 164 | 169 |
| 165 // An integer pref that specifies the limit of the device's extension cache | 170 // An integer pref that specifies the limit of the device's extension cache |
| 166 // size in bytes. | 171 // size in bytes. |
| 167 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; | 172 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; |
| 168 | 173 |
| 169 } // namespace chromeos | 174 } // namespace chromeos |
| OLD | NEW |