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

Unified Diff: chrome/browser/prefs/browser_prefs.h

Issue 18199003: Allow Chrome OS login profile to have different default pref values (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment addressed. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/browser_prefs.h
diff --git a/chrome/browser/prefs/browser_prefs.h b/chrome/browser/prefs/browser_prefs.h
index ecd97360ae58213f85adfaaeffa6055289a95d17..1ca7077dd506492d83214eea4c369115387dfa3d 100644
--- a/chrome/browser/prefs/browser_prefs.h
+++ b/chrome/browser/prefs/browser_prefs.h
@@ -18,8 +18,15 @@ namespace chrome {
// Register all prefs that will be used via the local state PrefService.
void RegisterLocalState(PrefRegistrySimple* registry);
-// Register all prefs that will be used via a PrefService attached to a Profile.
-void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
+// Register all prefs that will be used via a PrefService attached to a user
+// Profile.
+void RegisterUserProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+
+#if defined(OS_CHROMEOS)
+// Register all prefs that will be used via a PrefService attached to the login
+// Profile.
+void RegisterLoginProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+#endif
// Migrates prefs from |local_state| to |profile|'s pref store.
void MigrateBrowserPrefs(Profile* profile, PrefService* local_state);

Powered by Google App Engine
This is Rietveld 408576698