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

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

Issue 2890843002: Policy implementation for encryptfs to ext4 migration strategy (Closed)
Patch Set: Fixed review comments Created 3 years, 6 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/features.h" 9 #include "chrome/common/features.h"
10 #include "chrome/common/pref_font_webkit_names.h" 10 #include "chrome/common/pref_font_webkit_names.h"
(...skipping 1824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 // An integer pref with the maximum number of bits used by the client in a 1835 // An integer pref with the maximum number of bits used by the client in a
1836 // previous auto-enrollment request. If the client goes through an auto update 1836 // previous auto-enrollment request. If the client goes through an auto update
1837 // during OOBE and reboots into a version of the OS with a larger maximum 1837 // during OOBE and reboots into a version of the OS with a larger maximum
1838 // modulus, then it will retry auto-enrollment using the updated value. 1838 // modulus, then it will retry auto-enrollment using the updated value.
1839 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; 1839 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit";
1840 1840
1841 // The local state pref that stores device activity times before reporting 1841 // The local state pref that stores device activity times before reporting
1842 // them to the policy server. 1842 // them to the policy server.
1843 const char kDeviceActivityTimes[] = "device_status.activity_times"; 1843 const char kDeviceActivityTimes[] = "device_status.activity_times";
1844 1844
1845 // A pref holding the value of the policy used to state if the migration from
1846 // ecryptfs to ext4 is allowed.
1847 const char kDeviceEcryptfsMigrationStrategy[] =
1848 "device.ecryptfs_migration_strategy";
1849
1845 // A pref holding the value of the policy used to disable mounting of external 1850 // A pref holding the value of the policy used to disable mounting of external
1846 // storage for the user. 1851 // storage for the user.
1847 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; 1852 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled";
1848 1853
1849 // A pref holding the value of the policy used to limit mounting of external 1854 // A pref holding the value of the policy used to limit mounting of external
1850 // storage to read-only mode for the user. 1855 // storage to read-only mode for the user.
1851 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only"; 1856 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only";
1852 1857
1853 // Copy of owner swap mouse buttons option to use on login screen. 1858 // Copy of owner swap mouse buttons option to use on login screen.
1854 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; 1859 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right";
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
2557 // internal format (int64) in local store. (I.e., this is not a per-profile 2562 // internal format (int64) in local store. (I.e., this is not a per-profile
2558 // pref.) 2563 // pref.)
2559 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; 2564 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time";
2560 #endif 2565 #endif
2561 2566
2562 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) 2567 #if BUILDFLAG(ENABLE_OFFLINE_PAGES)
2563 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; 2568 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff";
2564 #endif 2569 #endif
2565 2570
2566 } // namespace prefs 2571 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698