| Index: chrome/browser/profiles/gaia_info_update_service.cc
|
| diff --git a/chrome/browser/profiles/gaia_info_update_service.cc b/chrome/browser/profiles/gaia_info_update_service.cc
|
| index bf7e92576d0f456eb25cba2017131fdd0bdb8c08..c7229fc9ea7736aac4b11c390c5343933f689d68 100644
|
| --- a/chrome/browser/profiles/gaia_info_update_service.cc
|
| +++ b/chrome/browser/profiles/gaia_info_update_service.cc
|
| @@ -78,11 +78,13 @@ bool GAIAInfoUpdateService::ShouldUseGAIAProfileInfo(Profile* profile) {
|
| }
|
|
|
| // static
|
| -void GAIAInfoUpdateService::RegisterUserPrefs(PrefServiceBase* prefs) {
|
| - prefs->RegisterInt64Pref(
|
| - prefs::kProfileGAIAInfoUpdateTime, 0, PrefServiceBase::UNSYNCABLE_PREF);
|
| - prefs->RegisterStringPref(
|
| - prefs::kProfileGAIAInfoPictureURL, "", PrefServiceBase::UNSYNCABLE_PREF);
|
| +void GAIAInfoUpdateService::RegisterUserPrefs(PrefServiceSyncable* prefs) {
|
| + prefs->RegisterInt64Pref(prefs::kProfileGAIAInfoUpdateTime,
|
| + 0,
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| + prefs->RegisterStringPref(prefs::kProfileGAIAInfoPictureURL,
|
| + "",
|
| + PrefServiceSyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| bool GAIAInfoUpdateService::NeedsProfilePicture() const {
|
|
|