Searched refs:next_scheduled (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chrome/browser/sync_file_system/
H A Dsync_process_runner.cc212 base::TimeTicks next_scheduled; local
215 next_scheduled = last_run_ + base::TimeDelta::FromMilliseconds(delay);
216 if (next_scheduled < now) {
217 next_scheduled =
221 next_scheduled = now + base::TimeDelta::FromMilliseconds(delay);
224 if (next_scheduled < throttle_until_)
225 next_scheduled = throttle_until_;
227 if (timer_helper_->IsRunning() && last_scheduled_ == next_scheduled)
232 name_.c_str(), (next_scheduled - now).InMilliseconds());
234 last_scheduled_ = next_scheduled;
[all...]

Completed in 84 milliseconds