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

Unified Diff: sync/engine/syncer_proto_util.cc

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/engine/syncer_proto_util.cc
diff --git a/sync/engine/syncer_proto_util.cc b/sync/engine/syncer_proto_util.cc
index bfd8151bef03405bd0b8913391b0ab53ef16d5ac..ae6afa0926a5fcd3766234e07a8378f27a48117a 100644
--- a/sync/engine/syncer_proto_util.cc
+++ b/sync/engine/syncer_proto_util.cc
@@ -433,6 +433,12 @@ SyncerError SyncerProtoUtil::PostClientToServerMessage(
session->delegate()->OnReceivedClientInvalidationHintBufferSize(
command.client_invalidation_hint_buffer_size());
}
+
+
rlarocque 2014/01/10 00:42:00 nit: remove extra space.
haitaol1 2014/01/10 22:10:34 Done.
+ if (command.has_gu_retry_delay_seconds()) {
+ session->delegate()->OnReceivedGuRetryDelaySeconds(
+ command.gu_retry_delay_seconds());
+ }
}
// Now do any special handling for the error type and decide on the return

Powered by Google App Engine
This is Rietveld 408576698