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

  /external/chromium/net/socket/
client_socket_pool_base.cc 47 ConnectJob::ConnectJob(const std::string& group_name,
62 ConnectJob::~ConnectJob() {
66 void ConnectJob::Initialize(bool is_preconnect) {
73 int ConnectJob::Connect() {
75 timer_.Start(timeout_duration_, this, &ConnectJob::OnTimeout);
91 void ConnectJob::UseForNormalRequest() {
96 void ConnectJob::set_socket(ClientSocket* socket) {
105 void ConnectJob::NotifyDelegateOfCompletion(int rv)
    [all...]
client_socket_pool_base.h 13 // ClientSocketPoolBase abstracts socket connection details behind ConnectJob,
16 // ConnectJob with a SocketParams. Subclasses of ClientSocketPool should
17 // implement their socket specific connection by subclassing ConnectJob and
18 // implementing ConnectJob::ConnectInternal(). They can control the parameters
19 // passed to each new ConnectJob instance via their ConnectJobFactory subclass
52 // ConnectJob provides an abstract interface for "connecting" a socket.
55 class ConnectJob {
63 virtual void OnConnectJobComplete(int result, ConnectJob* job) = 0;
70 ConnectJob(const std::string& group_name,
74 virtual ~ConnectJob();
    [all...]

Completed in 41 milliseconds