| 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 9e9e27937c84d79df68a3f54c66ed18a2d9e1f55..fa0fc4f4c4e729b12fbf103de6444a9baf3cfede 100644
|
| --- a/chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| +++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| @@ -1088,19 +1088,19 @@ const LogoURLs google_logos = {
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
|
|
| -void RegisterUserPrefs(PrefService* prefs) {
|
| +void RegisterUserPrefs(PrefServiceSyncable* prefs) {
|
| prefs->RegisterIntegerPref(prefs::kCountryIDAtInstall,
|
| kCountryIDUnknown,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| prefs->RegisterListPref(prefs::kSearchProviderOverrides,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| prefs->RegisterIntegerPref(prefs::kSearchProviderOverridesVersion,
|
| -1,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| // Obsolete pref, for migration.
|
| prefs->RegisterIntegerPref(prefs::kGeoIDAtInstall,
|
| -1,
|
| - PrefService::UNSYNCABLE_PREF);
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| int GetDataVersion(PrefService* prefs) {
|
|
|