| Index: chrome/common/pref_names.cc
|
| diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
|
| index 9639b6aa79626f435f196f8c241e61277a87c4ab..1aebee9db9b83f85580a4a7fa503da861171ae98 100644
|
| --- a/chrome/common/pref_names.cc
|
| +++ b/chrome/common/pref_names.cc
|
| @@ -1849,10 +1849,6 @@ const char kSyncSuppressStart[] = "sync.suppress_start";
|
| // if a new sync type has rolled out so we can notify the user.
|
| const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types";
|
|
|
| -// Dictionary from sync model type (as an int) to max invalidation
|
| -// version (int64 represented as a string).
|
| -const char kSyncMaxInvalidationVersions[] = "sync.max_invalidation_versions";
|
| -
|
| // The GUID session sync will use to identify this client, even across sync
|
| // disable/enable events.
|
| const char kSyncSessionsGUID[] = "sync.session_sync_guid";
|
| @@ -1864,11 +1860,9 @@ const char kInvalidatorClientId[] = "invalidator.client_id";
|
| // The value is base 64 encoded.
|
| const char kInvalidatorInvalidationState[] = "invalidator.invalidation_state";
|
|
|
| -// List of {source, name, max invalidation version} tuples. source is an int,
|
| -// while max invalidation version is an int64; both are stored as string
|
| -// representations though.
|
| -const char kInvalidatorMaxInvalidationVersions[] =
|
| - "invalidator.max_invalidation_versions";
|
| +// List of received invalidations that have not been acted on by any clients
|
| +// yet. Used to keep invalidation clients in sync in case of a restart.
|
| +const char kInvalidatorSavedInvalidations[] = "invalidator.saved_invalidations";
|
|
|
| // A string that can be used to restore sync encryption infrastructure on
|
| // startup so that the user doesn't need to provide credentials on each start.
|
|
|