diff options
author | nick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-13 20:27:11 +0000 |
---|---|---|
committer | nick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-13 20:27:11 +0000 |
commit | 55779e6a7c90f306405003383aabab7dc1d1abc6 (patch) | |
tree | 2c9f50468b57329c06645ccc78e00d5b7cf5ced8 /chrome/browser/sync/syncable/syncable_id.h | |
parent | a65aa987739a241f5581b94227e49245543080d0 (diff) | |
download | chromium_src-55779e6a7c90f306405003383aabab7dc1d1abc6.zip chromium_src-55779e6a7c90f306405003383aabab7dc1d1abc6.tar.gz chromium_src-55779e6a7c90f306405003383aabab7dc1d1abc6.tar.bz2 |
Fix handling of undeletion within the syncer.
Accomplished by:
(a) Plumbing the const CommitMessage into process_commit_response_command.cc, so that we can know the server state better (IS_DEL is no longer authoritative if !
which spilled over into a couple test expectations.
(b) Relaxing the enforced invariants that version==0 implied !ServerKnows, for items with client tags.
(c) Use ID renaming instead of delete/recreate to handle collisions on the unique tag.
(d) Upon deletion, version number goes to 0 so that the server knows to process the item as a recreate, if it gets undeleted. Previously, the server number would get synthesized on the client by incrementing the last known version number.
(e) Add unit tests for pretty much every ordering of delete/undelete I could come up with.
BUG=46769
TEST=unit tests; repeatedly uninstalled/installed extensions
Review URL: http://codereview.chromium.org/2844037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52209 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/syncable/syncable_id.h')
-rw-r--r-- | chrome/browser/sync/syncable/syncable_id.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/sync/syncable/syncable_id.h b/chrome/browser/sync/syncable/syncable_id.h index 73e26c2..ed8a2e5 100644 --- a/chrome/browser/sync/syncable/syncable_id.h +++ b/chrome/browser/sync/syncable/syncable_id.h @@ -84,7 +84,6 @@ class Id { inline void Clear() { s_ = "r"; } - std::string AsQueryParam() const; // Must never allow id == 0 or id < 0 to compile. inline bool operator == (const Id& that) const { return s_ == that.s_; @@ -99,13 +98,13 @@ class Id { return s_ > that.s_; } - public: - // Three functions used to work with our proto buffers. + // Three functions are used to work with our proto buffers. std::string GetServerId() const; static Id CreateFromServerId(const std::string& server_id); // This should only be used if you get back a reference to a local // id from the server. Returns a client only opaque id. static Id CreateFromClientString(const std::string& local_id); + protected: std::string s_; }; |