| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index 1c5989e129431dae0b8ea64d9751b62e685df12c..20f7aef19e090105e92184aee825e7757b52e113 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -255,8 +255,12 @@ Profile* Profile::CreateProfileAsync(const FilePath&path,
|
|
|
| // static
|
| void ProfileImpl::RegisterUserPrefs(PrefService* prefs) {
|
| - prefs->RegisterBooleanPref(prefs::kSavingBrowserHistoryDisabled, false);
|
| - prefs->RegisterBooleanPref(prefs::kClearSiteDataOnExit, false);
|
| + prefs->RegisterBooleanPref(prefs::kSavingBrowserHistoryDisabled,
|
| + false,
|
| + false /* don't sync pref */);
|
| + prefs->RegisterBooleanPref(prefs::kClearSiteDataOnExit,
|
| + false,
|
| + true /* sync pref */);
|
| }
|
|
|
| ProfileImpl::ProfileImpl(const FilePath& path,
|
|
|