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

Unified Diff: sync/protocol/sync.proto

Issue 124083002: Client-side changes to support retry GU. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/protocol/sync.proto
diff --git a/sync/protocol/sync.proto b/sync/protocol/sync.proto
index ee051cdee592d200eab4160b83cef9f8de9f5f05..d5fc00c8616e13a5e6b2d8668fcf3f8bc0eeaf9a 100644
--- a/sync/protocol/sync.proto
+++ b/sync/protocol/sync.proto
@@ -584,10 +584,14 @@ message GetUpdatesMessage {
// already created. Should be set to true only by mobile clients.
optional bool create_mobile_bookmarks_folder = 1000 [default = false];
- // This value is an udpated version of the GetUpdatesCallerInfo's
+ // This value is an updated version of the GetUpdatesCallerInfo's
// GetUpdatesSource. It describes the reason for the GetUpdate request.
// Introduced in M29.
optional SyncEnums.GetUpdatesOrigin get_updates_origin = 9;
+
+ // Whether this GU also serves as a retry GU. Any GU that happens after
+ // retry timer timeout is a retry GU effectively.
+ optional bool is_retry = 10 [default = false];
};
message AuthenticateMessage {

Powered by Google App Engine
This is Rietveld 408576698