OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "base/scoped_ptr.h" | 7 #include "base/scoped_ptr.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/field_trial.h" | 9 #include "base/field_trial.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/trace_event.h" | 11 #include "base/trace_event.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "net/base/client_socket_factory.h" | |
14 #include "net/base/connection_type_histograms.h" | 13 #include "net/base/connection_type_histograms.h" |
15 #include "net/base/io_buffer.h" | 14 #include "net/base/io_buffer.h" |
16 #include "net/base/load_flags.h" | 15 #include "net/base/load_flags.h" |
17 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
18 #include "net/base/net_util.h" | 17 #include "net/base/net_util.h" |
19 #include "net/base/ssl_cert_request_info.h" | 18 #include "net/base/ssl_cert_request_info.h" |
20 #include "net/base/ssl_client_socket.h" | |
21 #include "net/base/upload_data_stream.h" | 19 #include "net/base/upload_data_stream.h" |
22 #include "net/http/http_auth.h" | 20 #include "net/http/http_auth.h" |
23 #include "net/http/http_auth_handler.h" | 21 #include "net/http/http_auth_handler.h" |
24 #include "net/http/http_basic_stream.h" | 22 #include "net/http/http_basic_stream.h" |
25 #include "net/http/http_chunked_decoder.h" | 23 #include "net/http/http_chunked_decoder.h" |
26 #include "net/http/http_network_session.h" | 24 #include "net/http/http_network_session.h" |
27 #include "net/http/http_request_info.h" | 25 #include "net/http/http_request_info.h" |
28 #include "net/http/http_response_headers.h" | 26 #include "net/http/http_response_headers.h" |
29 #include "net/http/http_util.h" | 27 #include "net/http/http_util.h" |
| 28 #include "net/socket/client_socket_factory.h" |
| 29 #include "net/socket/ssl_client_socket.h" |
30 | 30 |
31 using base::Time; | 31 using base::Time; |
32 | 32 |
33 namespace net { | 33 namespace net { |
34 | 34 |
35 void HttpNetworkTransaction::ResponseHeaders::Realloc(size_t new_size) { | 35 void HttpNetworkTransaction::ResponseHeaders::Realloc(size_t new_size) { |
36 headers_.reset(static_cast<char*>(realloc(headers_.release(), new_size))); | 36 headers_.reset(static_cast<char*>(realloc(headers_.release(), new_size))); |
37 } | 37 } |
38 | 38 |
39 namespace { | 39 namespace { |
(...skipping 1667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1707 host_and_port = proxy_info_.proxy_server().host_and_port(); | 1707 host_and_port = proxy_info_.proxy_server().host_and_port(); |
1708 } else { | 1708 } else { |
1709 DCHECK(target == HttpAuth::AUTH_SERVER); | 1709 DCHECK(target == HttpAuth::AUTH_SERVER); |
1710 host_and_port = GetHostAndPort(request_->url); | 1710 host_and_port = GetHostAndPort(request_->url); |
1711 } | 1711 } |
1712 auth_info->host_and_port = ASCIIToWide(host_and_port); | 1712 auth_info->host_and_port = ASCIIToWide(host_and_port); |
1713 response_.auth_challenge = auth_info; | 1713 response_.auth_challenge = auth_info; |
1714 } | 1714 } |
1715 | 1715 |
1716 } // namespace net | 1716 } // namespace net |
OLD | NEW |