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

Unified Diff: base/prefs/pref_service_builder.h

Issue 23610004: Rename managed user pref store to supervised user pref store. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years, 4 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
« no previous file with comments | « no previous file | base/prefs/pref_service_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/prefs/pref_service_builder.h
diff --git a/base/prefs/pref_service_builder.h b/base/prefs/pref_service_builder.h
index cf6a9590c3cb0243f70b0d5cbd03c55b9f87d688..7af43926233464654bdf2920d548ff624f8b0d7d 100644
--- a/base/prefs/pref_service_builder.h
+++ b/base/prefs/pref_service_builder.h
@@ -29,7 +29,7 @@ class BASE_PREFS_EXPORT PrefServiceBuilder {
// Functions for setting the various parameters of the PrefService to build.
// These take ownership of the |store| parameter.
PrefServiceBuilder& WithManagedPrefs(PrefStore* store);
- PrefServiceBuilder& WithManagedUserPrefs(PrefStore* store);
+ PrefServiceBuilder& WithSupervisedUserPrefs(PrefStore* store);
PrefServiceBuilder& WithExtensionPrefs(PrefStore* store);
PrefServiceBuilder& WithCommandLinePrefs(PrefStore* store);
PrefServiceBuilder& WithUserPrefs(PersistentPrefStore* store);
@@ -56,7 +56,7 @@ class BASE_PREFS_EXPORT PrefServiceBuilder {
virtual void ResetDefaultState();
scoped_refptr<PrefStore> managed_prefs_;
- scoped_refptr<PrefStore> managed_user_prefs_;
+ scoped_refptr<PrefStore> supervised_user_prefs_;
scoped_refptr<PrefStore> extension_prefs_;
scoped_refptr<PrefStore> command_line_prefs_;
scoped_refptr<PersistentPrefStore> user_prefs_;
« no previous file with comments | « no previous file | base/prefs/pref_service_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698