| Index: chrome/browser/profiles/profile.cc
|
| diff --git a/chrome/browser/profiles/profile.cc b/chrome/browser/profiles/profile.cc
|
| index c93ad22e6d40c8b893001a426666a4eab858baab..a9276bfdb74ce68fdbbaaec17f0c476ebde6a99e 100644
|
| --- a/chrome/browser/profiles/profile.cc
|
| +++ b/chrome/browser/profiles/profile.cc
|
| @@ -166,11 +166,20 @@ void Profile::RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
|
| prefs::kSpdyProxyAuthWasEnabledBefore,
|
| false,
|
| user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| -
|
| #endif // defined(OS_ANDROID) || defined(OS_IOS)
|
| +#if !defined(OS_ANDROID) && !defined(OS_CHROMEOS)
|
| + // Preferences related to the avatar bubble and user manager tutorials.
|
| + registry->RegisterIntegerPref(
|
| + prefs::kProfileAvatarTutorialShown,
|
| + 0,
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + registry->RegisterBooleanPref(
|
| + prefs::kProfileUserManagerTutorialShown,
|
| + false,
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| +#endif
|
| }
|
|
|
| -
|
| std::string Profile::GetDebugName() {
|
| std::string name = GetPath().BaseName().MaybeAsASCII();
|
| if (name.empty()) {
|
|
|