| 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 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| 7 | 7 |
| 8 namespace chromeos { | 8 namespace chromeos { |
| 9 | 9 |
| 10 extern const char kCrosSettingsPrefix[]; | 10 extern const char kCrosSettingsPrefix[]; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 extern const char kStatsReportingPref[]; | 37 extern const char kStatsReportingPref[]; |
| 38 | 38 |
| 39 extern const char kReleaseChannel[]; | 39 extern const char kReleaseChannel[]; |
| 40 extern const char kReleaseChannelDelegated[]; | 40 extern const char kReleaseChannelDelegated[]; |
| 41 | 41 |
| 42 extern const char kReportDeviceVersionInfo[]; | 42 extern const char kReportDeviceVersionInfo[]; |
| 43 extern const char kReportDeviceActivityTimes[]; | 43 extern const char kReportDeviceActivityTimes[]; |
| 44 extern const char kReportDeviceBootMode[]; | 44 extern const char kReportDeviceBootMode[]; |
| 45 extern const char kReportDeviceLocation[]; | 45 extern const char kReportDeviceLocation[]; |
| 46 extern const char kReportDeviceNetworkInterfaces[]; |
| 46 | 47 |
| 47 extern const char kAppPack[]; | 48 extern const char kAppPack[]; |
| 48 extern const char kAppPackKeyExtensionId[]; | 49 extern const char kAppPackKeyExtensionId[]; |
| 49 extern const char kAppPackKeyUpdateUrl[]; | 50 extern const char kAppPackKeyUpdateUrl[]; |
| 50 | 51 |
| 51 extern const char kScreenSaverExtensionId[]; | 52 extern const char kScreenSaverExtensionId[]; |
| 52 extern const char kScreenSaverTimeout[]; | 53 extern const char kScreenSaverTimeout[]; |
| 53 | 54 |
| 54 extern const char kIdleLogoutTimeout[]; | 55 extern const char kIdleLogoutTimeout[]; |
| 55 extern const char kIdleLogoutWarningDuration[]; | 56 extern const char kIdleLogoutWarningDuration[]; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 67 extern const char kKioskApps[]; | 68 extern const char kKioskApps[]; |
| 68 extern const char kKioskAutoLaunch[]; | 69 extern const char kKioskAutoLaunch[]; |
| 69 extern const char kKioskDisableBailoutShortcut[]; | 70 extern const char kKioskDisableBailoutShortcut[]; |
| 70 | 71 |
| 71 extern const char kVariationsRestrictParameter[]; | 72 extern const char kVariationsRestrictParameter[]; |
| 72 | 73 |
| 73 extern const char kDeviceAttestationEnabled[]; | 74 extern const char kDeviceAttestationEnabled[]; |
| 74 } // namespace chromeos | 75 } // namespace chromeos |
| 75 | 76 |
| 76 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ | 77 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ |
| OLD | NEW |