Chromium Code Reviews| 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) |
|
msw
2014/03/20 18:51:26
nit: should this also exclude OS_IOS?
noms (inactive)
2014/03/20 20:28:20
Good call. Done.
On 2014/03/20 18:51:26, msw wrote
|
| + // 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()) { |