| 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1729 // An integer pref with the maximum number of bits used by the client in a | 1729 // An integer pref with the maximum number of bits used by the client in a |
| 1730 // previous auto-enrollment request. If the client goes through an auto update | 1730 // previous auto-enrollment request. If the client goes through an auto update |
| 1731 // during OOBE and reboots into a version of the OS with a larger maximum | 1731 // during OOBE and reboots into a version of the OS with a larger maximum |
| 1732 // modulus, then it will retry auto-enrollment using the updated value. | 1732 // modulus, then it will retry auto-enrollment using the updated value. |
| 1733 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; | 1733 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; |
| 1734 | 1734 |
| 1735 // The local state pref that stores device activity times before reporting | 1735 // The local state pref that stores device activity times before reporting |
| 1736 // them to the policy server. | 1736 // them to the policy server. |
| 1737 const char kDeviceActivityTimes[] = "device_status.activity_times"; | 1737 const char kDeviceActivityTimes[] = "device_status.activity_times"; |
| 1738 | 1738 |
| 1739 // A pref holding the last known location when device location reporting is | |
| 1740 // enabled. | |
| 1741 const char kDeviceLocation[] = "device_status.location"; | |
| 1742 | |
| 1743 // A pref holding the value of the policy used to disable mounting of external | 1739 // A pref holding the value of the policy used to disable mounting of external |
| 1744 // storage for the user. | 1740 // storage for the user. |
| 1745 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; | 1741 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; |
| 1746 | 1742 |
| 1747 // A pref holding the value of the policy used to limit mounting of external | 1743 // A pref holding the value of the policy used to limit mounting of external |
| 1748 // storage to read-only mode for the user. | 1744 // storage to read-only mode for the user. |
| 1749 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only"; | 1745 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only"; |
| 1750 | 1746 |
| 1751 // Copy of owner swap mouse buttons option to use on login screen. | 1747 // Copy of owner swap mouse buttons option to use on login screen. |
| 1752 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; | 1748 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2259 | 2255 |
| 2260 // A list of origin trial features to disable by policy. | 2256 // A list of origin trial features to disable by policy. |
| 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2262 | 2258 |
| 2263 // Policy that indicates the state of updates for the binary components. | 2259 // Policy that indicates the state of updates for the binary components. |
| 2264 const char kComponentUpdatesEnabled[] = | 2260 const char kComponentUpdatesEnabled[] = |
| 2265 "component_updates.component_updates_enabled"; | 2261 "component_updates.component_updates_enabled"; |
| 2266 | 2262 |
| 2267 } // namespace prefs | 2263 } // namespace prefs |
| OLD | NEW |