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_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 5 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/location.h" | 13 #include "base/location.h" |
14 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
17 #include "net/base/net_export.h" | 17 #include "net/base/net_export.h" |
18 #include "net/base/net_log.h" | 18 #include "net/base/net_log.h" |
19 #include "net/base/ssl_config_service.h" | |
20 #include "net/http/http_pipelined_connection.h" | 19 #include "net/http/http_pipelined_connection.h" |
21 #include "net/http/http_request_info.h" | 20 #include "net/http/http_request_info.h" |
22 #include "net/http/http_stream_parser.h" | 21 #include "net/http/http_stream_parser.h" |
23 #include "net/proxy/proxy_info.h" | 22 #include "net/proxy/proxy_info.h" |
| 23 #include "net/ssl/ssl_config_service.h" |
24 | 24 |
25 namespace net { | 25 namespace net { |
26 | 26 |
27 class ClientSocketHandle; | 27 class ClientSocketHandle; |
28 class GrowableIOBuffer; | 28 class GrowableIOBuffer; |
29 class HostPortPair; | 29 class HostPortPair; |
30 class HttpNetworkSession; | 30 class HttpNetworkSession; |
31 class HttpRequestHeaders; | 31 class HttpRequestHeaders; |
32 class HttpResponseInfo; | 32 class HttpResponseInfo; |
33 class IOBuffer; | 33 class IOBuffer; |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 ReadHeadersState read_next_state_; | 321 ReadHeadersState read_next_state_; |
322 int active_read_id_; | 322 int active_read_id_; |
323 bool read_still_on_call_stack_; | 323 bool read_still_on_call_stack_; |
324 | 324 |
325 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl); | 325 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl); |
326 }; | 326 }; |
327 | 327 |
328 } // namespace net | 328 } // namespace net |
329 | 329 |
330 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 330 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
OLD | NEW |