OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 5 #ifndef NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
6 #define NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 6 #define NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <list> | 11 #include <list> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.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/base/net_export.h" |
20 #include "net/http/http_auth_controller.h" | 21 #include "net/http/http_auth_controller.h" |
21 #include "net/http/http_request_headers.h" | 22 #include "net/http/http_request_headers.h" |
22 #include "net/http/http_request_info.h" | 23 #include "net/http/http_request_info.h" |
23 #include "net/http/http_response_info.h" | 24 #include "net/http/http_response_info.h" |
24 #include "net/http/proxy_client_socket.h" | 25 #include "net/http/proxy_client_socket.h" |
25 #include "net/log/net_log_with_source.h" | 26 #include "net/log/net_log_with_source.h" |
26 #include "net/spdy/spdy_http_stream.h" | 27 #include "net/spdy/spdy_http_stream.h" |
27 #include "net/spdy/spdy_protocol.h" | 28 #include "net/spdy/spdy_protocol.h" |
28 #include "net/spdy/spdy_read_queue.h" | 29 #include "net/spdy/spdy_read_queue.h" |
29 #include "net/spdy/spdy_session.h" | 30 #include "net/spdy/spdy_session.h" |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 // Only used for posting write callbacks. Weak pointers created by this | 178 // Only used for posting write callbacks. Weak pointers created by this |
178 // factory are invalidated in Disconnect(). | 179 // factory are invalidated in Disconnect(). |
179 base::WeakPtrFactory<SpdyProxyClientSocket> write_callback_weak_factory_; | 180 base::WeakPtrFactory<SpdyProxyClientSocket> write_callback_weak_factory_; |
180 | 181 |
181 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket); | 182 DISALLOW_COPY_AND_ASSIGN(SpdyProxyClientSocket); |
182 }; | 183 }; |
183 | 184 |
184 } // namespace net | 185 } // namespace net |
185 | 186 |
186 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ | 187 #endif // NET_SPDY_SPDY_PROXY_CLIENT_SOCKET_H_ |
OLD | NEW |