HomeSort by relevance Sort by last modified time
    Searched refs:send_log_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/url_request/
url_request_throttler_entry.cc 136 if (!send_log_.empty() &&
137 send_log_.back() + sliding_window_period_ > ImplGetTimeNow()) {
190 DCHECK(send_log_.empty() ||
191 recommended_sending_time >= send_log_.back());
193 send_log_.push(recommended_sending_time);
200 while ((send_log_.front() + sliding_window_period_ <=
202 send_log_.size() > static_cast<unsigned>(max_send_threshold_)) {
203 send_log_.pop();
207 if (send_log_.size() == static_cast<unsigned>(max_send_threshold_))
208 sliding_window_release_time_ = send_log_.front() + sliding_window_period_
    [all...]
url_request_throttler_entry.h 151 std::queue<base::TimeTicks> send_log_; member in class:net::URLRequestThrottlerEntry

Completed in 68 milliseconds