summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/sync/engine/syncer_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/engine/syncer_thread.cc b/chrome/browser/sync/engine/syncer_thread.cc
index 7e62e7c..33354d0 100644
--- a/chrome/browser/sync/engine/syncer_thread.cc
+++ b/chrome/browser/sync/engine/syncer_thread.cc
@@ -262,7 +262,7 @@ void SyncerThread::ThreadMainLoop() {
// We block until the CV is signaled (e.g a control field changed, loss of
// network connection, nudge, spurious, etc), or the poll interval elapses.
TimeDelta sleep_time = end_wait - TimeTicks::Now();
- if (initial_sync_for_thread || sleep_time > TimeDelta::FromSeconds(0)) {
+ if (sleep_time > TimeDelta::FromSeconds(0)) {
vault_field_changed_.TimedWait(sleep_time);
if (TimeTicks::Now() < end_wait) {