| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 48fecbbfc75b86c7f411243a7e8f44daf166e8f7..b8ee4a06812336e188479112df57239c88f8b1a3 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -499,7 +499,12 @@ void ProfileManager::CreateMultiProfileAsync() {
|
|
|
| // static
|
| void ProfileManager::RegisterPrefs(PrefService* prefs) {
|
| - prefs->RegisterStringPref(prefs::kProfileLastUsed, "");
|
| - prefs->RegisterDictionaryPref(prefs::kProfileDirectoryMap);
|
| - prefs->RegisterIntegerPref(prefs::kProfilesNumCreated, 1);
|
| + prefs->RegisterStringPref(prefs::kProfileLastUsed,
|
| + "",
|
| + false /* don't sync pref */);
|
| + prefs->RegisterDictionaryPref(prefs::kProfileDirectoryMap,
|
| + false /* don't sync pref */);
|
| + prefs->RegisterIntegerPref(prefs::kProfilesNumCreated,
|
| + 1,
|
| + false /* don't sync pref */);
|
| }
|
|
|