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

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

Issue 2314813002: Refactored DeviceStatusCollector to enable truely asynchronous status queries (Closed)
Patch Set: Initialize *status_ in the C++11'y way Created 4 years, 2 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/policy/proto/device_management_backend.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1718 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/policy/proto/device_management_backend.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698