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

Unified Diff: net/http/http_network_transaction.cc

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_network_transaction.h ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_transaction.cc
===================================================================
--- net/http/http_network_transaction.cc (revision 23124)
+++ net/http/http_network_transaction.cc (working copy)
@@ -161,10 +161,12 @@
#endif
}
-int HttpNetworkTransaction::Start(const HttpRequestInfo* request_info,
+int HttpNetworkTransaction::Start(LoadLog* load_log,
+ const HttpRequestInfo* request_info,
CompletionCallback* callback) {
UpdateConnectionTypeHistograms(CONNECTION_ANY);
+ load_log_ = load_log;
request_ = request_info;
start_time_ = base::Time::Now();
@@ -540,7 +542,7 @@
}
return session_->proxy_service()->ResolveProxy(
- request_->url, &proxy_info_, &io_callback_, &pac_request_);
+ load_log_, request_->url, &proxy_info_, &io_callback_, &pac_request_);
}
int HttpNetworkTransaction::DoResolveProxyComplete(int result) {
@@ -627,8 +629,8 @@
transport_socket_request_time_ = base::TimeTicks::Now();
- int rv = connection_.Init(connection_group, resolve_info, request_->priority,
- &io_callback_);
+ int rv = connection_.Init(NULL, connection_group, resolve_info,
+ request_->priority, &io_callback_);
return rv;
}
@@ -1544,7 +1546,7 @@
}
int rv = session_->proxy_service()->ReconsiderProxyAfterError(
- request_->url, &proxy_info_, &io_callback_, &pac_request_);
+ load_log_, request_->url, &proxy_info_, &io_callback_, &pac_request_);
if (rv == OK || rv == ERR_IO_PENDING) {
// If the error was during connection setup, there is no socket to
// disconnect.
« no previous file with comments | « net/http/http_network_transaction.h ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698