Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2201023002: Change access mode of disk devices when mounting based on config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 const char kDeviceActivityTimes[] = "device_status.activity_times"; 1727 const char kDeviceActivityTimes[] = "device_status.activity_times";
1728 1728
1729 // A pref holding the last known location when device location reporting is 1729 // A pref holding the last known location when device location reporting is
1730 // enabled. 1730 // enabled.
1731 const char kDeviceLocation[] = "device_status.location"; 1731 const char kDeviceLocation[] = "device_status.location";
1732 1732
1733 // A pref holding the value of the policy used to disable mounting of external 1733 // A pref holding the value of the policy used to disable mounting of external
1734 // storage for the user. 1734 // storage for the user.
1735 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; 1735 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled";
1736 1736
1737 // A pref holding the value of the policy used to limit mounting of external
1738 // storage to read-only mode for the user.
1739 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only";
1740
1737 // Copy of owner swap mouse buttons option to use on login screen. 1741 // Copy of owner swap mouse buttons option to use on login screen.
1738 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; 1742 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right";
1739 1743
1740 // Copy of owner tap-to-click option to use on login screen. 1744 // Copy of owner tap-to-click option to use on login screen.
1741 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; 1745 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click";
1742 1746
1743 // The length of device uptime after which an automatic reboot is scheduled, 1747 // The length of device uptime after which an automatic reboot is scheduled,
1744 // expressed in seconds. 1748 // expressed in seconds.
1745 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; 1749 const char kUptimeLimit[] = "automatic_reboot.uptime_limit";
1746 1750
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 #endif 2243 #endif
2240 2244
2241 // The base64-encoded representation of the public key to use to validate origin 2245 // The base64-encoded representation of the public key to use to validate origin
2242 // trial token signatures. 2246 // trial token signatures.
2243 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2247 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2244 2248
2245 // A list of origin trial features to disable by policy. 2249 // A list of origin trial features to disable by policy.
2246 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2250 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2247 2251
2248 } // namespace prefs 2252 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698