Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: net/http/http_network_transaction.cc

Issue 126110: [Refactor] Rename DnsResolutionObserver --> HostResolver::Observer.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/ftp/ftp_network_transaction.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 13 #include "net/base/client_socket_factory.h"
14 #include "net/base/connection_type_histograms.h" 14 #include "net/base/connection_type_histograms.h"
15 #include "net/base/dns_resolution_observer.h"
16 #include "net/base/io_buffer.h" 15 #include "net/base/io_buffer.h"
17 #include "net/base/load_flags.h" 16 #include "net/base/load_flags.h"
18 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
19 #include "net/base/net_util.h" 18 #include "net/base/net_util.h"
20 #include "net/base/ssl_cert_request_info.h" 19 #include "net/base/ssl_cert_request_info.h"
21 #include "net/base/ssl_client_socket.h" 20 #include "net/base/ssl_client_socket.h"
22 #include "net/base/upload_data_stream.h" 21 #include "net/base/upload_data_stream.h"
23 #include "net/http/http_auth.h" 22 #include "net/http/http_auth.h"
24 #include "net/http/http_auth_handler.h" 23 #include "net/http/http_auth_handler.h"
25 #include "net/http/http_basic_stream.h" 24 #include "net/http/http_basic_stream.h"
(...skipping 1642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 host_and_port = proxy_info_.proxy_server().host_and_port(); 1667 host_and_port = proxy_info_.proxy_server().host_and_port();
1669 } else { 1668 } else {
1670 DCHECK(target == HttpAuth::AUTH_SERVER); 1669 DCHECK(target == HttpAuth::AUTH_SERVER);
1671 host_and_port = GetHostAndPort(request_->url); 1670 host_and_port = GetHostAndPort(request_->url);
1672 } 1671 }
1673 auth_info->host_and_port = ASCIIToWide(host_and_port); 1672 auth_info->host_and_port = ASCIIToWide(host_and_port);
1674 response_.auth_challenge = auth_info; 1673 response_.auth_challenge = auth_info;
1675 } 1674 }
1676 1675
1677 } // namespace net 1676 } // namespace net
OLDNEW
« no previous file with comments | « net/ftp/ftp_network_transaction.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698