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

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 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1832 // An integer pref with the maximum number of bits used by the client in a 1832 // An integer pref with the maximum number of bits used by the client in a
1833 // previous auto-enrollment request. If the client goes through an auto update 1833 // previous auto-enrollment request. If the client goes through an auto update
1834 // during OOBE and reboots into a version of the OS with a larger maximum 1834 // during OOBE and reboots into a version of the OS with a larger maximum
1835 // modulus, then it will retry auto-enrollment using the updated value. 1835 // modulus, then it will retry auto-enrollment using the updated value.
1836 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; 1836 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit";
1837 1837
1838 // The local state pref that stores device activity times before reporting 1838 // The local state pref that stores device activity times before reporting
1839 // them to the policy server. 1839 // them to the policy server.
1840 const char kDeviceActivityTimes[] = "device_status.activity_times"; 1840 const char kDeviceActivityTimes[] = "device_status.activity_times";
1841 1841
1842 // A pref holding the value of the policy used to state if the migration from
1843 // ecryptfs to ext4 is allowed.
1844 const char kDeviceEcryptfsMigrationStrategy[] =
1845 "device_ecryptfs_migration_strategy";
1846
1842 // A pref holding the value of the policy used to disable mounting of external 1847 // A pref holding the value of the policy used to disable mounting of external
1843 // storage for the user. 1848 // storage for the user.
1844 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled"; 1849 const char kExternalStorageDisabled[] = "hardware.external_storage_disabled";
1845 1850
1846 // A pref holding the value of the policy used to limit mounting of external 1851 // A pref holding the value of the policy used to limit mounting of external
1847 // storage to read-only mode for the user. 1852 // storage to read-only mode for the user.
1848 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only"; 1853 const char kExternalStorageReadOnly[] = "hardware.external_storage_read_only";
1849 1854
1850 // Copy of owner swap mouse buttons option to use on login screen. 1855 // Copy of owner swap mouse buttons option to use on login screen.
1851 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; 1856 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right";
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
2550 "settings_reset_prompt.last_triggered_for_homepage"; 2555 "settings_reset_prompt.last_triggered_for_homepage";
2551 2556
2552 #if defined(OS_ANDROID) 2557 #if defined(OS_ANDROID)
2553 // Timestamp of the clipboard's last modified time, stored in base::Time's 2558 // Timestamp of the clipboard's last modified time, stored in base::Time's
2554 // internal format (int64) in local store. (I.e., this is not a per-profile 2559 // internal format (int64) in local store. (I.e., this is not a per-profile
2555 // pref.) 2560 // pref.)
2556 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; 2561 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time";
2557 #endif 2562 #endif
2558 2563
2559 } // namespace prefs 2564 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698