Home | History | Annotate | Download | only in http

Lines Matching refs:Job

35 class HttpStreamFactoryImpl::Job {
37 Job(HttpStreamFactoryImpl* stream_factory,
42 ~Job();
45 // notified upon completion if the Job has not been Orphan()'d.
56 // Marks this Job as the "alternate" job, from Alternate-Protocol. Tracks the
61 // Tells |this| to wait for |job| to resume it.
62 void WaitFor(Job* job);
64 // Tells |this| that |job| has determined it still needs to continue
67 void Resume(Job* job);
69 // Used to detach the Job from |request|.
79 // Indicates whether or not this job is performing a preconnect.
82 // Indicates whether or not this Job has been orphaned by a Request.
101 // we have the http job block on the npn-spdy job after proxy resolution.
102 // The npn-spdy job will Resume() the http job if, in
209 CompletionCallbackImpl<Job> io_callback_;
220 // If this is a Job for an "Alternate-Protocol", then this will be non-NULL
224 // This is the Job we're dependent on. It will notify us if/when it's OK to
226 Job* blocking_job_;
229 Job* dependent_job_;
268 ScopedRunnableMethodFactory<Job> method_factory_;
270 DISALLOW_COPY_AND_ASSIGN(Job);