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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 // Determines whether the device reports network interface types and addresses | 89 // Determines whether the device reports network interface types and addresses |
90 // in device status reports to the device management server. | 90 // in device status reports to the device management server. |
91 const char kReportDeviceNetworkInterfaces[] = | 91 const char kReportDeviceNetworkInterfaces[] = |
92 "cros.device_status.report_network_interfaces"; | 92 "cros.device_status.report_network_interfaces"; |
93 | 93 |
94 // Determines whether the device reports recently logged in users in device | 94 // Determines whether the device reports recently logged in users in device |
95 // status reports to the device management server. | 95 // status reports to the device management server. |
96 const char kReportDeviceUsers[] = "cros.device_status.report_users"; | 96 const char kReportDeviceUsers[] = "cros.device_status.report_users"; |
97 | 97 |
| 98 // Determines whether the device reports hardware status (CPU utilization, |
| 99 // disk space, etc) in device status reports to the device management server. |
| 100 const char kReportDeviceHardwareStatus[] = |
| 101 "cros.device_status.report_hardware_status"; |
| 102 |
98 // A list of dictionaries, each detailing one extension to install as part of | 103 // A list of dictionaries, each detailing one extension to install as part of |
99 // the AppPack and including the following fields: | 104 // the AppPack and including the following fields: |
100 // "extension-id": ID of the extension to install | 105 // "extension-id": ID of the extension to install |
101 // "update-url": URL to check the extension's version and download location | 106 // "update-url": URL to check the extension's version and download location |
102 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. | 107 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. |
103 const char kAppPack[] = "cros.app_pack"; | 108 const char kAppPack[] = "cros.app_pack"; |
104 const char kAppPackKeyExtensionId[] = "extension-id"; | 109 const char kAppPackKeyExtensionId[] = "extension-id"; |
105 const char kAppPackKeyUpdateUrl[] = "update-url"; | 110 const char kAppPackKeyUpdateUrl[] = "update-url"; |
106 | 111 |
107 // Values from the ScreenSaver proto. Defines the extension ID of the screen | 112 // Values from the ScreenSaver proto. Defines the extension ID of the screen |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 // A boolean pref that indicates whether the device has been disabled by its | 159 // A boolean pref that indicates whether the device has been disabled by its |
155 // owner. If so, the device will show a warning screen and will not allow any | 160 // owner. If so, the device will show a warning screen and will not allow any |
156 // sessions to be started. | 161 // sessions to be started. |
157 const char kDeviceDisabled[] = "cros.device_disabled"; | 162 const char kDeviceDisabled[] = "cros.device_disabled"; |
158 | 163 |
159 // A string pref containing the message that should be shown to the user when | 164 // A string pref containing the message that should be shown to the user when |
160 // the device is disabled. | 165 // the device is disabled. |
161 const char kDeviceDisabledMessage[] = "cros.disabled_state.message"; | 166 const char kDeviceDisabledMessage[] = "cros.disabled_state.message"; |
162 | 167 |
163 } // namespace chromeos | 168 } // namespace chromeos |
OLD | NEW |