| Index: chrome/browser/sync/invalidations/invalidator_storage.cc
|
| diff --git a/chrome/browser/sync/invalidations/invalidator_storage.cc b/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| index e88d0e24e012cf1b263712a52bbc51175df49094..ab3b5a6e071c90c2a09e02dcc5bf25f40fd7ada6 100644
|
| --- a/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| +++ b/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| @@ -95,17 +95,21 @@ DictionaryValue* ObjectIdAndStateToValue(
|
| } // namespace
|
|
|
| // static
|
| -void InvalidatorStorage::RegisterUserPrefs(PrefRegistrySyncable* registry) {
|
| +void InvalidatorStorage::RegisterUserPrefs(
|
| + user_prefs::PrefRegistrySyncable* registry) {
|
| registry->RegisterListPref(prefs::kInvalidatorMaxInvalidationVersions,
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| - registry->RegisterStringPref(prefs::kInvalidatorInvalidationState,
|
| - std::string(),
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| - registry->RegisterStringPref(prefs::kInvalidatorClientId,
|
| - std::string(),
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| - registry->RegisterDictionaryPref(prefs::kSyncMaxInvalidationVersions,
|
| - PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + registry->RegisterStringPref(
|
| + prefs::kInvalidatorInvalidationState,
|
| + std::string(),
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + registry->RegisterStringPref(
|
| + prefs::kInvalidatorClientId,
|
| + std::string(),
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| + registry->RegisterDictionaryPref(
|
| + prefs::kSyncMaxInvalidationVersions,
|
| + user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
|
| }
|
|
|
| InvalidatorStorage::InvalidatorStorage(PrefService* pref_service)
|
|
|