| Index: chrome/browser/profiles/gaia_info_update_service_factory.cc
|
| diff --git a/chrome/browser/profiles/gaia_info_update_service_factory.cc b/chrome/browser/profiles/gaia_info_update_service_factory.cc
|
| index 7631f06f810d46d9ade984e2905a1eb7e7f38e57..1d519e32cb3bc596e76e3290ecd8aa6f9062f913 100644
|
| --- a/chrome/browser/profiles/gaia_info_update_service_factory.cc
|
| +++ b/chrome/browser/profiles/gaia_info_update_service_factory.cc
|
| @@ -38,12 +38,13 @@ ProfileKeyedService* GAIAInfoUpdateServiceFactory::BuildServiceInstanceFor(
|
| }
|
|
|
| void GAIAInfoUpdateServiceFactory::RegisterUserPrefs(
|
| - PrefRegistrySyncable* prefs) {
|
| - prefs->RegisterInt64Pref(prefs::kProfileGAIAInfoUpdateTime, 0,
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + user_prefs::PrefRegistrySyncable* prefs) {
|
| + prefs->RegisterInt64Pref(prefs::kProfileGAIAInfoUpdateTime,
|
| + 0,
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| prefs->RegisterStringPref(prefs::kProfileGAIAInfoPictureURL,
|
| std::string(),
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| bool GAIAInfoUpdateServiceFactory::ServiceIsNULLWhileTesting() const {
|
|
|