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 #include "net/http/http_network_transaction.h" | 5 #include "net/http/http_network_transaction.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 29 matching lines...) Expand all Loading... | |
40 #include "net/http/http_proxy_client_socket_pool.h" | 40 #include "net/http/http_proxy_client_socket_pool.h" |
41 #include "net/http/http_request_headers.h" | 41 #include "net/http/http_request_headers.h" |
42 #include "net/http/http_request_info.h" | 42 #include "net/http/http_request_info.h" |
43 #include "net/http/http_response_body_drainer.h" | 43 #include "net/http/http_response_body_drainer.h" |
44 #include "net/http/http_response_headers.h" | 44 #include "net/http/http_response_headers.h" |
45 #include "net/http/http_response_info.h" | 45 #include "net/http/http_response_info.h" |
46 #include "net/http/http_stream_factory.h" | 46 #include "net/http/http_stream_factory.h" |
47 #include "net/http/http_util.h" | 47 #include "net/http/http_util.h" |
48 #include "net/http/url_security_manager.h" | 48 #include "net/http/url_security_manager.h" |
49 #include "net/socket/client_socket_factory.h" | 49 #include "net/socket/client_socket_factory.h" |
50 #include "net/socket/sctp_client_socket_pool.h" | |
Mike Belshe
2011/04/06 18:32:53
nit: I don't think we need this.
| |
50 #include "net/socket/socks_client_socket_pool.h" | 51 #include "net/socket/socks_client_socket_pool.h" |
51 #include "net/socket/ssl_client_socket.h" | 52 #include "net/socket/ssl_client_socket.h" |
52 #include "net/socket/ssl_client_socket_pool.h" | 53 #include "net/socket/ssl_client_socket_pool.h" |
53 #include "net/socket/tcp_client_socket_pool.h" | 54 #include "net/socket/tcp_client_socket_pool.h" |
54 #include "net/spdy/spdy_http_stream.h" | 55 #include "net/spdy/spdy_http_stream.h" |
55 #include "net/spdy/spdy_session.h" | 56 #include "net/spdy/spdy_session.h" |
56 #include "net/spdy/spdy_session_pool.h" | 57 #include "net/spdy/spdy_session_pool.h" |
57 | 58 |
58 using base::Time; | 59 using base::Time; |
59 | 60 |
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1285 description = base::StringPrintf("Unknown state 0x%08X (%u)", state, | 1286 description = base::StringPrintf("Unknown state 0x%08X (%u)", state, |
1286 state); | 1287 state); |
1287 break; | 1288 break; |
1288 } | 1289 } |
1289 return description; | 1290 return description; |
1290 } | 1291 } |
1291 | 1292 |
1292 #undef STATE_CASE | 1293 #undef STATE_CASE |
1293 | 1294 |
1294 } // namespace net | 1295 } // namespace net |
OLD | NEW |