| 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 #ifndef CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 5 #ifndef CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| 6 #define CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 6 #define CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| 7 | 7 |
| 8 #include "chromeos/chromeos_export.h" | 8 #include "chromeos/chromeos_export.h" |
| 9 | 9 |
| 10 namespace chromeos { | 10 namespace chromeos { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 CHROMEOS_EXPORT extern const char | 26 CHROMEOS_EXPORT extern const char |
| 27 kAccountsPrefDeviceLocalAccountAutoLoginId[]; | 27 kAccountsPrefDeviceLocalAccountAutoLoginId[]; |
| 28 CHROMEOS_EXPORT extern const char | 28 CHROMEOS_EXPORT extern const char |
| 29 kAccountsPrefDeviceLocalAccountAutoLoginDelay[]; | 29 kAccountsPrefDeviceLocalAccountAutoLoginDelay[]; |
| 30 CHROMEOS_EXPORT extern const char | 30 CHROMEOS_EXPORT extern const char |
| 31 kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[]; | 31 kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[]; |
| 32 CHROMEOS_EXPORT extern const char | 32 CHROMEOS_EXPORT extern const char |
| 33 kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[]; | 33 kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[]; |
| 34 CHROMEOS_EXPORT extern const char kAccountsPrefSupervisedUsersEnabled[]; | 34 CHROMEOS_EXPORT extern const char kAccountsPrefSupervisedUsersEnabled[]; |
| 35 CHROMEOS_EXPORT extern const char kAccountsPrefTransferSAMLCookies[]; | 35 CHROMEOS_EXPORT extern const char kAccountsPrefTransferSAMLCookies[]; |
| 36 CHROMEOS_EXPORT extern const char |
| 37 kAccountsPrefDeviceLoginScreenDomainAutoComplete[]; |
| 36 | 38 |
| 37 CHROMEOS_EXPORT extern const char kSignedDataRoamingEnabled[]; | 39 CHROMEOS_EXPORT extern const char kSignedDataRoamingEnabled[]; |
| 38 | 40 |
| 39 CHROMEOS_EXPORT extern const char kUpdateDisabled[]; | 41 CHROMEOS_EXPORT extern const char kUpdateDisabled[]; |
| 40 CHROMEOS_EXPORT extern const char kAllowedConnectionTypesForUpdate[]; | 42 CHROMEOS_EXPORT extern const char kAllowedConnectionTypesForUpdate[]; |
| 41 | 43 |
| 42 CHROMEOS_EXPORT extern const char kSystemTimezonePolicy[]; | 44 CHROMEOS_EXPORT extern const char kSystemTimezonePolicy[]; |
| 43 CHROMEOS_EXPORT extern const char kSystemTimezone[]; | 45 CHROMEOS_EXPORT extern const char kSystemTimezone[]; |
| 44 CHROMEOS_EXPORT extern const char kSystemUse24HourClock[]; | 46 CHROMEOS_EXPORT extern const char kSystemUse24HourClock[]; |
| 45 | 47 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 CHROMEOS_EXPORT extern const char kAttestationForContentProtectionEnabled[]; | 83 CHROMEOS_EXPORT extern const char kAttestationForContentProtectionEnabled[]; |
| 82 | 84 |
| 83 CHROMEOS_EXPORT extern const char kServiceAccountIdentity[]; | 85 CHROMEOS_EXPORT extern const char kServiceAccountIdentity[]; |
| 84 | 86 |
| 85 CHROMEOS_EXPORT extern const char kDeviceDisabled[]; | 87 CHROMEOS_EXPORT extern const char kDeviceDisabled[]; |
| 86 CHROMEOS_EXPORT extern const char kDeviceDisabledMessage[]; | 88 CHROMEOS_EXPORT extern const char kDeviceDisabledMessage[]; |
| 87 | 89 |
| 88 CHROMEOS_EXPORT extern const char kRebootOnShutdown[]; | 90 CHROMEOS_EXPORT extern const char kRebootOnShutdown[]; |
| 89 | 91 |
| 90 CHROMEOS_EXPORT extern const char kExtensionCacheSize[]; | 92 CHROMEOS_EXPORT extern const char kExtensionCacheSize[]; |
| 93 |
| 91 } // namespace chromeos | 94 } // namespace chromeos |
| 92 | 95 |
| 93 #endif // CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 96 #endif // CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| OLD | NEW |