| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 // Determines whether the device reports hardware status (CPU utilization, | 103 // Determines whether the device reports hardware status (CPU utilization, |
| 104 // disk space, etc) in device status reports to the device management server. | 104 // disk space, etc) in device status reports to the device management server. |
| 105 const char kReportDeviceHardwareStatus[] = | 105 const char kReportDeviceHardwareStatus[] = |
| 106 "cros.device_status.report_hardware_status"; | 106 "cros.device_status.report_hardware_status"; |
| 107 | 107 |
| 108 // Determines whether the device reports kiosk session status (app IDs, | 108 // Determines whether the device reports kiosk session status (app IDs, |
| 109 // versions, etc) in device status reports to the device management server. | 109 // versions, etc) in device status reports to the device management server. |
| 110 const char kReportDeviceSessionStatus[] = | 110 const char kReportDeviceSessionStatus[] = |
| 111 "cros.device_status.report_session_status"; | 111 "cros.device_status.report_session_status"; |
| 112 | 112 |
| 113 // Determines whether the device reports os update status (update status, |
| 114 // new platform version and new required platform version of the auto |
| 115 // launched kiosk app). |
| 116 const char kReportOsUpdateStatus[] = |
| 117 "cros.device_status.report_os_update_status"; |
| 118 |
| 119 // Determines whether the device reports the current running kiosk app ( |
| 120 // its app ID, version and required platform version). |
| 121 const char kReportRunningKioskApp[] = |
| 122 "cros.device_status.report_running_kiosk_app"; |
| 123 |
| 113 // How frequently device status reports are uploaded, in milliseconds. | 124 // How frequently device status reports are uploaded, in milliseconds. |
| 114 const char kReportUploadFrequency[] = | 125 const char kReportUploadFrequency[] = |
| 115 "cros.device_status.report_upload_frequency"; | 126 "cros.device_status.report_upload_frequency"; |
| 116 | 127 |
| 117 // Determines whether heartbeats should be sent to the policy service via | 128 // Determines whether heartbeats should be sent to the policy service via |
| 118 // the GCM channel. | 129 // the GCM channel. |
| 119 const char kHeartbeatEnabled[] = "cros.device_status.heartbeat_enabled"; | 130 const char kHeartbeatEnabled[] = "cros.device_status.heartbeat_enabled"; |
| 120 | 131 |
| 121 // How frequently heartbeats are sent up, in milliseconds. | 132 // How frequently heartbeats are sent up, in milliseconds. |
| 122 const char kHeartbeatFrequency[] = "cros.device_status.heartbeat_frequency"; | 133 const char kHeartbeatFrequency[] = "cros.device_status.heartbeat_frequency"; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 | 212 |
| 202 // A list pref storing the security origins allowed to access the webcam | 213 // A list pref storing the security origins allowed to access the webcam |
| 203 // during SAML logins. | 214 // during SAML logins. |
| 204 const char kLoginVideoCaptureAllowedUrls[] = | 215 const char kLoginVideoCaptureAllowedUrls[] = |
| 205 "cros.device.login_video_capture_allowed_urls"; | 216 "cros.device.login_video_capture_allowed_urls"; |
| 206 | 217 |
| 207 // A list pref storing the apps to install on the login page. | 218 // A list pref storing the apps to install on the login page. |
| 208 const char kLoginApps[] = "cros.device.login_apps"; | 219 const char kLoginApps[] = "cros.device.login_apps"; |
| 209 | 220 |
| 210 } // namespace chromeos | 221 } // namespace chromeos |
| OLD | NEW |