| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ | 5 #ifndef NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ |
| 6 #define NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ | 6 #define NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
| 17 #include "net/base/completion_callback.h" | 17 #include "net/base/completion_callback.h" |
| 18 #include "net/base/host_port_pair.h" | 18 #include "net/base/host_port_pair.h" |
| 19 #include "net/base/load_timing_info.h" | 19 #include "net/base/load_timing_info.h" |
| 20 #include "net/http/http_auth_controller.h" | 20 #include "net/http/http_auth_controller.h" |
| 21 #include "net/http/proxy_client_socket.h" | 21 #include "net/http/proxy_client_socket.h" |
| 22 #include "net/log/net_log_with_source.h" | 22 #include "net/log/net_log_with_source.h" |
| 23 #include "net/socket/next_proto.h" | 23 #include "net/socket/next_proto.h" |
| 24 #include "net/socket/ssl_client_socket.h" | 24 #include "net/socket/ssl_client_socket.h" |
| 25 #include "net/socket/ssl_client_socket_pool.h" | 25 #include "net/socket/ssl_client_socket_pool.h" |
| 26 #include "net/socket/transport_client_socket_pool.h" | 26 #include "net/socket/transport_client_socket_pool.h" |
| 27 #include "net/spdy/spdy_session.h" | 27 #include "net/spdy/chromium/spdy_session.h" |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 | 30 |
| 31 class ClientSocketHandle; | 31 class ClientSocketHandle; |
| 32 class IOBuffer; | 32 class IOBuffer; |
| 33 class HttpAuthCache; | 33 class HttpAuthCache; |
| 34 class HttpResponseInfo; | 34 class HttpResponseInfo; |
| 35 class HttpStream; | 35 class HttpStream; |
| 36 class IOBuffer; | 36 class IOBuffer; |
| 37 class ProxyDelegate; | 37 class ProxyDelegate; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 208 |
| 209 // Time when the connection to the proxy was started. | 209 // Time when the connection to the proxy was started. |
| 210 base::TimeTicks connect_start_time_; | 210 base::TimeTicks connect_start_time_; |
| 211 | 211 |
| 212 DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocketWrapper); | 212 DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocketWrapper); |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 } // namespace net | 215 } // namespace net |
| 216 | 216 |
| 217 #endif // NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ | 217 #endif // NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ |
| OLD | NEW |