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

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

Issue 199533004: [Mac, Win] Show a user manager tutorial once per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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.cc
diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
index d100644d07eca684f747fc17704cd4f8f95e6efb..c2fc95e0c1fe04af1341311eb60196b699215b3b 100644
--- a/chrome/browser/prefs/browser_prefs.cc
+++ b/chrome/browser/prefs/browser_prefs.cc
@@ -510,6 +510,10 @@ void RegisterNewProfileUIPrefs(user_prefs::PrefRegistrySyncable* registry) {
prefs::kProfileAvatarTutorialShown,
0,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
+ registry->RegisterBooleanPref(
gab 2014/03/14 16:43:58 The |registry| isn't typically invoked directly fr
noms (inactive) 2014/03/14 18:24:36 Done. Moved to profiles::RegisterTutorialPrefs()
+ prefs::kProfileUserManagerTutorialShown,
+ false,
+ user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}
#endif

Powered by Google App Engine
This is Rietveld 408576698