| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This StreamSocket implementation wraps a ClientSocketHandle that is created | 5 // This StreamSocket implementation wraps a ClientSocketHandle that is created |
| 6 // from the client socket pool after resolving proxies. | 6 // from the client socket pool after resolving proxies. |
| 7 | 7 |
| 8 #ifndef JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ | 8 #ifndef JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ |
| 9 #define JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ | 9 #define JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ |
| 10 #pragma once | 10 #pragma once |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 ProxyResolvingClientSocket( | 41 ProxyResolvingClientSocket( |
| 42 net::ClientSocketFactory* socket_factory, | 42 net::ClientSocketFactory* socket_factory, |
| 43 const scoped_refptr<net::URLRequestContextGetter>& request_context_getter, | 43 const scoped_refptr<net::URLRequestContextGetter>& request_context_getter, |
| 44 const net::SSLConfig& ssl_config, | 44 const net::SSLConfig& ssl_config, |
| 45 const net::HostPortPair& dest_host_port_pair); | 45 const net::HostPortPair& dest_host_port_pair); |
| 46 virtual ~ProxyResolvingClientSocket(); | 46 virtual ~ProxyResolvingClientSocket(); |
| 47 | 47 |
| 48 // net::StreamSocket implementation. | 48 // net::StreamSocket implementation. |
| 49 virtual int Read(net::IOBuffer* buf, int buf_len, | 49 virtual int Read(net::IOBuffer* buf, int buf_len, |
| 50 net::OldCompletionCallback* callback) OVERRIDE; | 50 net::OldCompletionCallback* callback) OVERRIDE; |
| 51 virtual int Read(net::IOBuffer* buf, int buf_len, |
| 52 const net::CompletionCallback& callback) OVERRIDE; |
| 51 virtual int Write(net::IOBuffer* buf, int buf_len, | 53 virtual int Write(net::IOBuffer* buf, int buf_len, |
| 52 net::OldCompletionCallback* callback) OVERRIDE; | 54 net::OldCompletionCallback* callback) OVERRIDE; |
| 53 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; | 55 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
| 54 virtual bool SetSendBufferSize(int32 size) OVERRIDE; | 56 virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
| 55 virtual int Connect(net::OldCompletionCallback* callback) OVERRIDE; | 57 virtual int Connect(net::OldCompletionCallback* callback) OVERRIDE; |
| 56 virtual int Connect(const net::CompletionCallback& callback) OVERRIDE; | 58 virtual int Connect(const net::CompletionCallback& callback) OVERRIDE; |
| 57 virtual void Disconnect() OVERRIDE; | 59 virtual void Disconnect() OVERRIDE; |
| 58 virtual bool IsConnected() const OVERRIDE; | 60 virtual bool IsConnected() const OVERRIDE; |
| 59 virtual bool IsConnectedAndIdle() const OVERRIDE; | 61 virtual bool IsConnectedAndIdle() const OVERRIDE; |
| 60 virtual int GetPeerAddress(net::AddressList* address) const OVERRIDE; | 62 virtual int GetPeerAddress(net::AddressList* address) const OVERRIDE; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_; | 98 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_; |
| 97 | 99 |
| 98 // The callback passed to Connect(). | 100 // The callback passed to Connect(). |
| 99 net::OldCompletionCallback* old_user_connect_callback_; | 101 net::OldCompletionCallback* old_user_connect_callback_; |
| 100 net::CompletionCallback user_connect_callback_; | 102 net::CompletionCallback user_connect_callback_; |
| 101 }; | 103 }; |
| 102 | 104 |
| 103 } // namespace notifier | 105 } // namespace notifier |
| 104 | 106 |
| 105 #endif // JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ | 107 #endif // JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ |
| OLD | NEW |