Home | History | Annotate | Download | only in automation

Lines Matching refs:job

161       URLRequestAutomationJob* job = it->second;
162 DCHECK(job);
163 if (job) {
164 job->OnMessage(message);
205 URLRequestAutomationJob* job) {
206 if (!job) {
213 if (job->is_pending()) {
214 DCHECK(!ContainsKey(pending_request_map_, job->id()));
215 DCHECK(!ContainsKey(request_map_, job->id()));
216 pending_request_map_[job->id()] = job;
218 DCHECK(!ContainsKey(request_map_, job->id()));
219 DCHECK(!ContainsKey(pending_request_map_, job->id()));
220 request_map_[job->id()] = job;
227 URLRequestAutomationJob* job) {
228 if (!job) {
234 if (job->is_pending()) {
235 DCHECK(ContainsKey(pending_request_map_, job->id()));
236 pending_request_map_.erase(job->id());
238 request_map_.erase(job->id());
390 URLRequestAutomationJob* job = it->second;
391 DCHECK(job);
392 if (job && job->request_id() == request_id) {
393 *automation_request_id = job->id();
553 scoped_refptr<URLRequestAutomationJob> job = (*index).second;
554 DCHECK_EQ(job->message_filter(), old_filter);
555 DCHECK(job->is_pending());
556 // StartPendingJob will register the job with the new filter.
557 job->StartPendingJob(tab_handle, new_filter);