Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(637)

Unified Diff: sync/internal_api/public/non_blocking_sync_common.h

Issue 1918923002: [Sync] USS: Ignore encryption changes during conflict resolution 1/2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sync/internal_api/public/non_blocking_sync_common.h
diff --git a/sync/internal_api/public/non_blocking_sync_common.h b/sync/internal_api/public/non_blocking_sync_common.h
index 45ea7dcc0632c563afc2bb25494e008ddca3ef92..5424e46ae400fb80cdde06a3a494448c26c7bca6 100644
--- a/sync/internal_api/public/non_blocking_sync_common.h
+++ b/sync/internal_api/public/non_blocking_sync_common.h
@@ -31,16 +31,19 @@ struct SYNC_EXPORT CommitRequestData {
// this struct.
int64_t sequence_number = 0;
int64_t base_version = 0;
+ std::string specifics_hash;
};
struct SYNC_EXPORT CommitResponseData {
CommitResponseData();
+ CommitResponseData(const CommitResponseData& other);
~CommitResponseData();
std::string id;
std::string client_tag_hash;
int64_t sequence_number = 0;
int64_t response_version = 0;
+ std::string specifics_hash;
};
struct SYNC_EXPORT UpdateResponseData {

Powered by Google App Engine
This is Rietveld 408576698