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

Unified Diff: net/socket/client_socket_pool.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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
Index: net/socket/client_socket_pool.h
diff --git a/net/socket/client_socket_pool.h b/net/socket/client_socket_pool.h
index b59f6049da89ea14a9cfcc95d97930792d83b14a..a5c11d64000c3ec1467e41dbba5e1c91fd18b3d6 100644
--- a/net/socket/client_socket_pool.h
+++ b/net/socket/client_socket_pool.h
@@ -106,7 +106,7 @@ class NET_EXPORT ClientSocketPool : public LowerLayeredPool {
RespectLimits respect_limits,
ClientSocketHandle* handle,
const CompletionCallback& callback,
- const BoundNetLog& net_log) = 0;
+ const NetLogWithSource& net_log) = 0;
// RequestSockets is used to request that |num_sockets| be connected in the
// connection group for |group_name|. If the connection group already has
@@ -121,7 +121,7 @@ class NET_EXPORT ClientSocketPool : public LowerLayeredPool {
virtual void RequestSockets(const std::string& group_name,
const void* params,
int num_sockets,
- const BoundNetLog& net_log) = 0;
+ const NetLogWithSource& net_log) = 0;
// Called to cancel a RequestSocket call that returned ERR_IO_PENDING. The
// same handle parameter must be passed to this method as was passed to the
@@ -197,7 +197,7 @@ void RequestSocketsForPool(
const std::string& group_name,
const scoped_refptr<typename PoolType::SocketParams>& params,
int num_sockets,
- const BoundNetLog& net_log) {
+ const NetLogWithSource& net_log) {
pool->RequestSockets(group_name, &params, num_sockets, net_log);
}

Powered by Google App Engine
This is Rietveld 408576698