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 19 matching lines...) Expand all Loading... | |
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 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"; |
Mattias Nissler (ping if slow)
2015/04/07 12:29:45
nit: blank line before comment.
peletskyi
2015/04/07 13:48:12
Done.
| |
41 // A string pref that specifies a domain name for the autocomplete option during | |
42 // user sign-in flow. | |
43 const char kAccountsPrefDeviceLoginScreenDomainAutoComplete[] = | |
Daniel Erat
2015/04/07 13:46:47
i'm trying to parse the names of all of these cons
| |
44 "cros.accounts.login_screen_domain_auto_complete"; | |
41 | 45 |
42 // All cros.signed.* settings are stored in SignedSettings. | 46 // All cros.signed.* settings are stored in SignedSettings. |
43 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; | 47 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; |
44 | 48 |
45 // True if auto-update was disabled by the system administrator. | 49 // True if auto-update was disabled by the system administrator. |
46 const char kUpdateDisabled[] = "cros.system.updateDisabled"; | 50 const char kUpdateDisabled[] = "cros.system.updateDisabled"; |
47 | 51 |
48 // A list of strings which specifies allowed connection types for | 52 // A list of strings which specifies allowed connection types for |
49 // update. | 53 // update. |
50 const char kAllowedConnectionTypesForUpdate[] = | 54 const char kAllowedConnectionTypesForUpdate[] = |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 // A boolean pref that indicates whether the device automatically reboots when | 164 // 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 | 165 // 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. | 166 // shutdown buttons in the UI will be replaced by reboot buttons. |
163 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; | 167 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; |
164 | 168 |
165 // An integer pref that specifies the limit of the device's extension cache | 169 // An integer pref that specifies the limit of the device's extension cache |
166 // size in bytes. | 170 // size in bytes. |
167 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; | 171 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; |
168 | 172 |
169 } // namespace chromeos | 173 } // namespace chromeos |
OLD | NEW |