| 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 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1741 const char kDeviceActivityTimes[] = "device_status.activity_times"; | 1741 const char kDeviceActivityTimes[] = "device_status.activity_times"; |
| 1742 | 1742 |
| 1743 // A pref holding the last known location when device location reporting is | 1743 // A pref holding the last known location when device location reporting is |
| 1744 // enabled. | 1744 // enabled. |
| 1745 const char kDeviceLocation[] = "device_status.location"; | 1745 const char kDeviceLocation[] = "device_status.location"; |
| 1746 | 1746 |
| 1747 // A pref holding the value of the policy used to disable mounting of external | 1747 // A pref holding the value of the policy used to disable mounting of external |
| 1748 // storage for the user. | 1748 // storage for the user. |
| 1749 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; | 1749 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; |
| 1750 | 1750 |
| 1751 // A pref holding the value of the policy used to limit mounting of external |
| 1752 // storage to read-only mode for the user. |
| 1753 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only"; |
| 1754 |
| 1751 // Copy of owner swap mouse buttons option to use on login screen. | 1755 // Copy of owner swap mouse buttons option to use on login screen. |
| 1752 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; | 1756 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; |
| 1753 | 1757 |
| 1754 // Copy of owner tap-to-click option to use on login screen. | 1758 // Copy of owner tap-to-click option to use on login screen. |
| 1755 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; | 1759 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; |
| 1756 | 1760 |
| 1757 // The length of device uptime after which an automatic reboot is scheduled, | 1761 // The length of device uptime after which an automatic reboot is scheduled, |
| 1758 // expressed in seconds. | 1762 // expressed in seconds. |
| 1759 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; | 1763 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; |
| 1760 | 1764 |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2253 #endif | 2257 #endif |
| 2254 | 2258 |
| 2255 // The base64-encoded representation of the public key to use to validate origin | 2259 // The base64-encoded representation of the public key to use to validate origin |
| 2256 // trial token signatures. | 2260 // trial token signatures. |
| 2257 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2258 | 2262 |
| 2259 // A list of origin trial features to disable by policy. | 2263 // A list of origin trial features to disable by policy. |
| 2260 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2261 | 2265 |
| 2262 } // namespace prefs | 2266 } // namespace prefs |
| OLD | NEW |