Chromium Code Reviews| Index: chrome/browser/profiles/profile_manager.cc |
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc |
| index 3a69b5e042999d0a461ac0d6f890292d44b5057f..b5da38b1951edf639defdc56cd3d11ea35e4a6a7 100644 |
| --- a/chrome/browser/profiles/profile_manager.cc |
| +++ b/chrome/browser/profiles/profile_manager.cc |
| @@ -927,6 +927,11 @@ void ProfileManager::InitProfileUserPrefs(Profile* profile) { |
| profile->GetPrefs()->SetString(prefs::kSupervisedUserId, |
| supervised_user_id); |
| } |
| +#if !defined(OS_ANDROID) |
| + if (profile->IsNewProfile()) { |
|
Peter Kasting
2016/11/20 07:32:09
Nit: No {}
tmartino
2016/11/21 00:27:34
Done
|
| + profile->GetPrefs()->SetBoolean(prefs::kHasSeenWelcomeUI, false); |
| + } |
| +#endif |
| } |
| void ProfileManager::RegisterTestingProfile(Profile* profile, |