| Index: chrome/browser/search_engines/template_url_prepopulate_data.cc | 
| diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc | 
| index 4498c4890b3ddcc8caafbff63105a11d65c09e59..43728a26ea734b5fcd19be84a9ba403a3165950b 100644 | 
| --- a/chrome/browser/search_engines/template_url_prepopulate_data.cc | 
| +++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc | 
| @@ -3341,11 +3341,18 @@ void GetPrepopulationSetFromCountryID(PrefService* prefs, | 
| namespace TemplateURLPrepopulateData { | 
|  | 
| void RegisterUserPrefs(PrefService* prefs) { | 
| -  prefs->RegisterIntegerPref(prefs::kCountryIDAtInstall, kCountryIDUnknown); | 
| -  prefs->RegisterListPref(prefs::kSearchProviderOverrides); | 
| -  prefs->RegisterIntegerPref(prefs::kSearchProviderOverridesVersion, -1); | 
| +  prefs->RegisterIntegerPref(prefs::kCountryIDAtInstall, | 
| +                             kCountryIDUnknown, | 
| +                             false /* don't sync pref */); | 
| +  prefs->RegisterListPref(prefs::kSearchProviderOverrides, | 
| +                          false /* don't sync pref */); | 
| +  prefs->RegisterIntegerPref(prefs::kSearchProviderOverridesVersion, | 
| +                             -1, | 
| +                             false /* don't sync pref */); | 
| // Obsolete pref, for migration. | 
| -  prefs->RegisterIntegerPref(prefs::kGeoIDAtInstall, -1); | 
| +  prefs->RegisterIntegerPref(prefs::kGeoIDAtInstall, | 
| +                             -1, | 
| +                             false /* don't sync pref */); | 
| } | 
|  | 
| int GetDataVersion(PrefService* prefs) { | 
|  |