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.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/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; |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 NetLogWithSource net_log_; | 204 NetLogWithSource net_log_; |
205 | 205 |
206 base::OneShotTimer connect_timer_; | 206 base::OneShotTimer connect_timer_; |
207 | 207 |
208 DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocketWrapper); | 208 DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocketWrapper); |
209 }; | 209 }; |
210 | 210 |
211 } // namespace net | 211 } // namespace net |
212 | 212 |
213 #endif // NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ | 213 #endif // NET_HTTP_HTTP_PROXY_CLIENT_SOCKET_WRAPPER_H_ |
OLD | NEW |