| Index: sync/sessions/nudge_tracker.cc
|
| diff --git a/sync/sessions/nudge_tracker.cc b/sync/sessions/nudge_tracker.cc
|
| index a0bdbda7c801b36290f2d598bc54a45c7a6277c3..d9aaec6bf81c3ba1ec23bff0b1ee1abacff349b9 100644
|
| --- a/sync/sessions/nudge_tracker.cc
|
| +++ b/sync/sessions/nudge_tracker.cc
|
| @@ -63,7 +63,7 @@ bool NudgeTracker::IsRetryRequired() const {
|
| if (current_retry_time_.is_null())
|
| return false;
|
|
|
| - return current_retry_time_ < sync_cycle_start_time_;
|
| + return current_retry_time_ <= sync_cycle_start_time_;
|
| }
|
|
|
| void NudgeTracker::RecordSuccessfulSyncCycle() {
|
| @@ -300,7 +300,7 @@ void NudgeTracker::SetSyncCycleStartTime(base::TimeTicks now) {
|
| // it is ready to go, then we set it as the current_retry_time_. It will stay
|
| // there until a GU retry has succeeded.
|
| if (!next_retry_time_.is_null() &&
|
| - next_retry_time_ < sync_cycle_start_time_) {
|
| + next_retry_time_ <= sync_cycle_start_time_) {
|
| current_retry_time_ = next_retry_time_;
|
| next_retry_time_ = base::TimeTicks();
|
| }
|
|
|