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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, | 98 // Determines whether the device reports hardware status (CPU utilization, |
99 // disk space, etc) in device status reports to the device management server. | 99 // disk space, etc) in device status reports to the device management server. |
100 const char kReportDeviceHardwareStatus[] = | 100 const char kReportDeviceHardwareStatus[] = |
101 "cros.device_status.report_hardware_status"; | 101 "cros.device_status.report_hardware_status"; |
102 | 102 |
| 103 // Determines whether the device reports kiosk session status (app IDs, |
| 104 // versions, etc) in device status reports to the device management server. |
| 105 const char kReportDeviceSessionStatus[] = |
| 106 "cros.device_status.report_session_status"; |
| 107 |
103 // This policy should not appear in the protobuf ever but is used internally to | 108 // This policy should not appear in the protobuf ever but is used internally to |
104 // signal that we are running in a "safe-mode" for policy recovery. | 109 // signal that we are running in a "safe-mode" for policy recovery. |
105 const char kPolicyMissingMitigationMode[] = | 110 const char kPolicyMissingMitigationMode[] = |
106 "cros.internal.policy_mitigation_mode"; | 111 "cros.internal.policy_mitigation_mode"; |
107 | 112 |
108 // A boolean pref that indicates whether users are allowed to redeem offers | 113 // A boolean pref that indicates whether users are allowed to redeem offers |
109 // through Chrome OS Registration. | 114 // through Chrome OS Registration. |
110 const char kAllowRedeemChromeOsRegistrationOffers[] = | 115 const char kAllowRedeemChromeOsRegistrationOffers[] = |
111 "cros.echo.allow_redeem_chrome_os_registration_offers"; | 116 "cros.echo.allow_redeem_chrome_os_registration_offers"; |
112 | 117 |
(...skipping 27 matching lines...) Expand all Loading... |
140 // A string pref containing the message that should be shown to the user when | 145 // A string pref containing the message that should be shown to the user when |
141 // the device is disabled. | 146 // the device is disabled. |
142 const char kDeviceDisabledMessage[] = "cros.disabled_state.message"; | 147 const char kDeviceDisabledMessage[] = "cros.disabled_state.message"; |
143 | 148 |
144 // A boolean pref that indicates whether the device automatically reboots when | 149 // A boolean pref that indicates whether the device automatically reboots when |
145 // the user initiates a shutdown via an UI element. If set to true, all | 150 // the user initiates a shutdown via an UI element. If set to true, all |
146 // shutdown buttons in the UI will be replaced by reboot buttons. | 151 // shutdown buttons in the UI will be replaced by reboot buttons. |
147 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; | 152 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; |
148 | 153 |
149 } // namespace chromeos | 154 } // namespace chromeos |
OLD | NEW |