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

Unified Diff: chrome/common/pref_names.cc

Issue 11783008: Add a lock to the managed user settings page and require authentication for unlocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style issue fixes Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index fb670a86030e71f466bc3614642b8b6f1b38f264..97b7dd111e03d3a957d86a0c3b2eb9c2743a026c 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -842,6 +842,9 @@ const char kDeauthorizeContentLicenses[] =
"browser.clear_data.content_licenses";
const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
+// A boolean pref controlling the use of a password to lock chrome
+const char kChildLockDisabled[] = "child.locking_disabled";
Bernhard Bauer 2013/01/07 14:39:22 This preference is not used.
+
// Boolean pref to define the default values for using spellchecker.
const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking";
@@ -2069,6 +2072,9 @@ const char kManagedNotificationsBlockedForUrls[] =
const char kManagedAutoSelectCertificateForUrls[] =
"profile.managed_auto_select_certificate_for_urls";
+const char kManagedModeLocalPassphrase[] = "managed_mode.passphrase";
Bernhard Bauer 2013/01/07 14:39:22 You should probably add a comment explaining these
+const char kManagedModeLocalSalt[] = "managed_mode.salt";
+
// Set to true if the user created a login item so we should not modify it when
// uninstalling background apps.
const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item";

Powered by Google App Engine
This is Rietveld 408576698