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

Unified Diff: net/http/http_network_transaction.cc

Issue 344026: Add LoadLog to ClientSocket::Connect(). (Closed)
Patch Set: Minor build fixups and fixed mac bug. Created 11 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/ftp/ftp_network_transaction.cc ('k') | net/socket/client_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index 9e8b98a319f892db3e960de150918ef89e268674..ddb74d9954b38d2505fd8dea45a457ac3bf6c877 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -627,7 +627,7 @@ int HttpNetworkTransaction::DoSOCKSConnect() {
else
s = new SOCKSClientSocket(s, req_info, session_->host_resolver());
connection_.set_socket(s);
- return connection_.socket()->Connect(&io_callback_);
+ return connection_.socket()->Connect(&io_callback_, load_log_);
}
int HttpNetworkTransaction::DoSOCKSConnectComplete(int result) {
@@ -658,7 +658,7 @@ int HttpNetworkTransaction::DoSSLConnect() {
s = session_->socket_factory()->CreateSSLClientSocket(
s, request_->url.HostNoBrackets(), ssl_config_);
connection_.set_socket(s);
- return connection_.socket()->Connect(&io_callback_);
+ return connection_.socket()->Connect(&io_callback_, load_log_);
}
int HttpNetworkTransaction::DoSSLConnectComplete(int result) {
« no previous file with comments | « net/ftp/ftp_network_transaction.cc ('k') | net/socket/client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698