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

Side by Side Diff: chromeos/settings/cros_settings_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chromeos/settings/cros_settings_names.h" 5 #include "chromeos/settings/cros_settings_names.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 8
9 const char kCrosSettingsPrefix[] = "cros."; 9 const char kCrosSettingsPrefix[] = "cros.";
10 10
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 238
239 // A list pref specifying the locales allowed on the login screen. Currently 239 // A list pref specifying the locales allowed on the login screen. Currently
240 // only the first value is used, as the single locale allowed on the login 240 // only the first value is used, as the single locale allowed on the login
241 // screen. 241 // screen.
242 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales"; 242 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales";
243 243
244 // A list pref containing the input method IDs allowed on the login screen. 244 // A list pref containing the input method IDs allowed on the login screen.
245 const char kDeviceLoginScreenInputMethods[] = 245 const char kDeviceLoginScreenInputMethods[] =
246 "cros.device_login_screen_input_methods"; 246 "cros.device_login_screen_input_methods";
247 247
248 // An integer pref, specifying the ecryptfs to ext4 migration strategy.
bartfab (slow) 2017/06/12 12:49:04 Nit: Follow the style of the other enums in this f
igorcov 2017/06/12 16:50:10 Done.
249 // 0 - the policy is not set.
250 // 1 - migration not allowed.
251 // 2 - migration allowed.
252 const char kDeviceEcryptfsMigrationStrategy[] =
253 "cros.device.ecryptfs_migration_strategy";
254
248 } // namespace chromeos 255 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698