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

Unified Diff: net/socket/client_socket_pool_base.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/socket/client_socket_pool_base.h ('k') | net/socket/client_socket_pool_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/client_socket_pool_base.cc
===================================================================
--- net/socket/client_socket_pool_base.cc (revision 23124)
+++ net/socket/client_socket_pool_base.cc (working copy)
@@ -103,6 +103,7 @@
}
int ClientSocketPoolBase::RequestSocket(
+ LoadLog* load_log,
const std::string& group_name,
const HostResolver::RequestInfo& resolve_info,
int priority,
@@ -122,7 +123,7 @@
may_have_stalled_group_ = true;
}
CHECK(callback);
- Request r(handle, callback, priority, resolve_info);
+ Request r(load_log, handle, callback, priority, resolve_info);
InsertRequestIntoQueue(r, &group.pending_requests);
return ERR_IO_PENDING;
}
@@ -142,7 +143,7 @@
// We couldn't find a socket to reuse, so allocate and connect a new one.
CHECK(callback);
- Request r(handle, callback, priority, resolve_info);
+ Request r(load_log, handle, callback, priority, resolve_info);
scoped_ptr<ConnectJob> connect_job(
connect_job_factory_->NewConnectJob(group_name, r, this));
@@ -498,7 +499,7 @@
group->pending_requests.pop_front();
int rv = RequestSocket(
- group_name, r.resolve_info, r.priority, r.handle, r.callback);
+ r.load_log, group_name, r.resolve_info, r.priority, r.handle, r.callback);
if (rv != ERR_IO_PENDING) {
r.callback->Run(rv);
« no previous file with comments | « net/socket/client_socket_pool_base.h ('k') | net/socket/client_socket_pool_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698