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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 // Determines whether the device reports recently logged in users in device | 110 // Determines whether the device reports recently logged in users in device |
111 // status reports to the device management server. | 111 // status reports to the device management server. |
112 const char kReportDeviceUsers[] = "cros.device_status.report_users"; | 112 const char kReportDeviceUsers[] = "cros.device_status.report_users"; |
113 | 113 |
114 // Determines whether the device reports hardware status (CPU utilization, | 114 // Determines whether the device reports hardware status (CPU utilization, |
115 // disk space, etc) in device status reports to the device management server. | 115 // disk space, etc) in device status reports to the device management server. |
116 const char kReportDeviceHardwareStatus[] = | 116 const char kReportDeviceHardwareStatus[] = |
117 "cros.device_status.report_hardware_status"; | 117 "cros.device_status.report_hardware_status"; |
118 | 118 |
| 119 // Determines whether the device reports output sound volume level in device |
| 120 // status reports to the device management server. |
| 121 const char kReportSoundVolume[] = "cros.device_status.report_sound_volume"; |
| 122 |
119 // Determines whether the device reports kiosk session status (app IDs, | 123 // Determines whether the device reports kiosk session status (app IDs, |
120 // versions, etc) in device status reports to the device management server. | 124 // versions, etc) in device status reports to the device management server. |
121 const char kReportDeviceSessionStatus[] = | 125 const char kReportDeviceSessionStatus[] = |
122 "cros.device_status.report_session_status"; | 126 "cros.device_status.report_session_status"; |
123 | 127 |
124 // Determines whether the device reports os update status (update status, | 128 // Determines whether the device reports os update status (update status, |
125 // new platform version and new required platform version of the auto | 129 // new platform version and new required platform version of the auto |
126 // launched kiosk app). | 130 // launched kiosk app). |
127 const char kReportOsUpdateStatus[] = | 131 const char kReportOsUpdateStatus[] = |
128 "cros.device_status.report_os_update_status"; | 132 "cros.device_status.report_os_update_status"; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 // A list pref specifying the locales allowed on the login screen. Currently | 243 // A list pref specifying the locales allowed on the login screen. Currently |
240 // only the first value is used, as the single locale allowed on the login | 244 // only the first value is used, as the single locale allowed on the login |
241 // screen. | 245 // screen. |
242 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales"; | 246 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales"; |
243 | 247 |
244 // A list pref containing the input method IDs allowed on the login screen. | 248 // A list pref containing the input method IDs allowed on the login screen. |
245 const char kDeviceLoginScreenInputMethods[] = | 249 const char kDeviceLoginScreenInputMethods[] = |
246 "cros.device_login_screen_input_methods"; | 250 "cros.device_login_screen_input_methods"; |
247 | 251 |
248 } // namespace chromeos | 252 } // namespace chromeos |
OLD | NEW |