| 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 #include "chrome/browser/chromeos/cros_settings_names.h" | 5 #include "chrome/browser/chromeos/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 12 matching lines...) Expand all Loading... |
| 23 // All cros.signed.* settings are stored in SignedSettings. | 23 // All cros.signed.* settings are stored in SignedSettings. |
| 24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; | 24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; |
| 25 | 25 |
| 26 const char kSystemTimezone[] = "cros.system.timezone"; | 26 const char kSystemTimezone[] = "cros.system.timezone"; |
| 27 | 27 |
| 28 const char kDeviceOwner[] = "cros.device.owner"; | 28 const char kDeviceOwner[] = "cros.device.owner"; |
| 29 | 29 |
| 30 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; | 30 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; |
| 31 | 31 |
| 32 const char kReleaseChannel[] = "cros.system.releaseChannel"; | 32 const char kReleaseChannel[] = "cros.system.releaseChannel"; |
| 33 const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated"; |
| 33 | 34 |
| 34 // A boolean pref that indicates whether OS & firmware version info should be | 35 // A boolean pref that indicates whether OS & firmware version info should be |
| 35 // reported along with device policy requests. | 36 // reported along with device policy requests. |
| 36 const char kReportDeviceVersionInfo[] = | 37 const char kReportDeviceVersionInfo[] = |
| 37 "cros.device_status.report_version_info"; | 38 "cros.device_status.report_version_info"; |
| 38 | 39 |
| 39 // A boolean pref that indicates whether device activity times should be | 40 // A boolean pref that indicates whether device activity times should be |
| 40 // recorded and reported along with device policy requests. | 41 // recorded and reported along with device policy requests. |
| 41 const char kReportDeviceActivityTimes[] = | 42 const char kReportDeviceActivityTimes[] = |
| 42 "cros.device_status.report_activity_times"; | 43 "cros.device_status.report_activity_times"; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 57 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; | 58 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; |
| 58 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; | 59 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; |
| 59 | 60 |
| 60 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a | 61 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a |
| 61 // user is logged out after some period of inactivity as well as the duration of | 62 // user is logged out after some period of inactivity as well as the duration of |
| 62 // a warning message informing the user about the pending logout. | 63 // a warning message informing the user about the pending logout. |
| 63 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; | 64 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; |
| 64 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; | 65 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; |
| 65 | 66 |
| 66 } // namespace chromeos | 67 } // namespace chromeos |
| OLD | NEW |