| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 CHROMEOS_EXPORT extern const char kReportDeviceLocation[]; | 57 CHROMEOS_EXPORT extern const char kReportDeviceLocation[]; |
| 58 CHROMEOS_EXPORT extern const char kReportDeviceNetworkInterfaces[]; | 58 CHROMEOS_EXPORT extern const char kReportDeviceNetworkInterfaces[]; |
| 59 CHROMEOS_EXPORT extern const char kReportDeviceUsers[]; | 59 CHROMEOS_EXPORT extern const char kReportDeviceUsers[]; |
| 60 CHROMEOS_EXPORT extern const char kReportDeviceHardwareStatus[]; | 60 CHROMEOS_EXPORT extern const char kReportDeviceHardwareStatus[]; |
| 61 CHROMEOS_EXPORT extern const char kReportDeviceSessionStatus[]; | 61 CHROMEOS_EXPORT extern const char kReportDeviceSessionStatus[]; |
| 62 CHROMEOS_EXPORT extern const char kReportUploadFrequency[]; | 62 CHROMEOS_EXPORT extern const char kReportUploadFrequency[]; |
| 63 | 63 |
| 64 CHROMEOS_EXPORT extern const char kHeartbeatEnabled[]; | 64 CHROMEOS_EXPORT extern const char kHeartbeatEnabled[]; |
| 65 CHROMEOS_EXPORT extern const char kHeartbeatFrequency[]; | 65 CHROMEOS_EXPORT extern const char kHeartbeatFrequency[]; |
| 66 | 66 |
| 67 CHROMEOS_EXPORT extern const char kLogUploadEnabled[]; |
| 68 |
| 67 CHROMEOS_EXPORT extern const char kPolicyMissingMitigationMode[]; | 69 CHROMEOS_EXPORT extern const char kPolicyMissingMitigationMode[]; |
| 68 | 70 |
| 69 CHROMEOS_EXPORT extern const char kAllowRedeemChromeOsRegistrationOffers[]; | 71 CHROMEOS_EXPORT extern const char kAllowRedeemChromeOsRegistrationOffers[]; |
| 70 | 72 |
| 71 CHROMEOS_EXPORT extern const char kStartUpFlags[]; | 73 CHROMEOS_EXPORT extern const char kStartUpFlags[]; |
| 72 | 74 |
| 73 CHROMEOS_EXPORT extern const char kKioskAppSettingsPrefix[]; | 75 CHROMEOS_EXPORT extern const char kKioskAppSettingsPrefix[]; |
| 74 CHROMEOS_EXPORT extern const int kKioskAppSettingsPrefixLength; | 76 CHROMEOS_EXPORT extern const int kKioskAppSettingsPrefixLength; |
| 75 CHROMEOS_EXPORT extern const char kKioskApps[]; | 77 CHROMEOS_EXPORT extern const char kKioskApps[]; |
| 76 CHROMEOS_EXPORT extern const char kKioskAutoLaunch[]; | 78 CHROMEOS_EXPORT extern const char kKioskAutoLaunch[]; |
| 77 CHROMEOS_EXPORT extern const char kKioskDisableBailoutShortcut[]; | 79 CHROMEOS_EXPORT extern const char kKioskDisableBailoutShortcut[]; |
| 78 | 80 |
| 79 CHROMEOS_EXPORT extern const char kVariationsRestrictParameter[]; | 81 CHROMEOS_EXPORT extern const char kVariationsRestrictParameter[]; |
| 80 | 82 |
| 81 CHROMEOS_EXPORT extern const char kDeviceAttestationEnabled[]; | 83 CHROMEOS_EXPORT extern const char kDeviceAttestationEnabled[]; |
| 82 CHROMEOS_EXPORT extern const char kAttestationForContentProtectionEnabled[]; | 84 CHROMEOS_EXPORT extern const char kAttestationForContentProtectionEnabled[]; |
| 83 | 85 |
| 84 CHROMEOS_EXPORT extern const char kServiceAccountIdentity[]; | 86 CHROMEOS_EXPORT extern const char kServiceAccountIdentity[]; |
| 85 | 87 |
| 86 CHROMEOS_EXPORT extern const char kDeviceDisabled[]; | 88 CHROMEOS_EXPORT extern const char kDeviceDisabled[]; |
| 87 CHROMEOS_EXPORT extern const char kDeviceDisabledMessage[]; | 89 CHROMEOS_EXPORT extern const char kDeviceDisabledMessage[]; |
| 88 | 90 |
| 89 CHROMEOS_EXPORT extern const char kRebootOnShutdown[]; | 91 CHROMEOS_EXPORT extern const char kRebootOnShutdown[]; |
| 90 | 92 |
| 91 CHROMEOS_EXPORT extern const char kExtensionCacheSize[]; | 93 CHROMEOS_EXPORT extern const char kExtensionCacheSize[]; |
| 92 | 94 |
| 93 } // namespace chromeos | 95 } // namespace chromeos |
| 94 | 96 |
| 95 #endif // CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 97 #endif // CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| OLD | NEW |