Home | History | Annotate | Download | only in url_request

Lines Matching refs:job

250     // The first job completed and none of the subsequent series of
252 // cached results from the initial job, the POST.
403 void URLRequest::StartJob(URLRequestJob* job) {
412 job_ = job;
430 // Should only be called if the original job didn't make any progress.
435 void URLRequest::RestartWithJob(URLRequestJob *job) {
436 DCHECK(job->request() == this);
438 StartJob(job);
469 // There's nothing to do if we are not waiting on a Job.
475 // The Job will call our NotifyDone method asynchronously. This is done so
506 URLRequestJob* job =
509 if (job) {
510 RestartWithJob(job);
522 URLRequestJob* job =
524 if (job) {
525 RestartWithJob(job);
584 job_->DetachRequest(); // ensures that the job will not call us again