diff options
Diffstat (limited to 'chrome/browser/sync/engine/all_status.cc')
-rw-r--r-- | chrome/browser/sync/engine/all_status.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/sync/engine/all_status.cc b/chrome/browser/sync/engine/all_status.cc index 4ee697b..d5b2a2b1 100644 --- a/chrome/browser/sync/engine/all_status.cc +++ b/chrome/browser/sync/engine/all_status.cc @@ -27,6 +27,8 @@ static const time_t kMinSyncObserveInterval = 10; // seconds // Backoff interval randomization factor. static const int kBackoffRandomizationFactor = 2; +const int AllStatus::kMaxBackoffSeconds = 60 * 60 * 4; // 4 hours. + const char* AllStatus::GetSyncStatusString(SyncStatus icon) { const char* strings[] = {"OFFLINE", "OFFLINE_UNSYNCED", "SYNCING", "READY", "CONFLICT", "OFFLINE_UNUSABLE"}; |