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

Unified Diff: net/socket/client_socket_pool_base.h

Issue 2414883005: TEMP DO NOT LAND (Closed)
Patch Set: tmp Created 4 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/socket/client_socket_pool.cc ('k') | net/socket/client_socket_pool_base.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.h
diff --git a/net/socket/client_socket_pool_base.h b/net/socket/client_socket_pool_base.h
index 024e9bf13a6d82826a097792e63743689acde632..85cda4d48df37002d40ae16fe36ab947528ad52d 100644
--- a/net/socket/client_socket_pool_base.h
+++ b/net/socket/client_socket_pool_base.h
@@ -338,6 +338,9 @@ class NET_EXPORT_PRIVATE ClientSocketPoolBaseHelper
const std::string& name,
const std::string& type) const;
+ void PopulateAllocatorDump(
+ base::trace_event::MemoryAllocatorDump* dump) const;
+
base::TimeDelta ConnectionTimeout() const {
return connect_job_factory_->ConnectionTimeout();
}
@@ -798,6 +801,11 @@ class ClientSocketPoolBase {
return helper_.GetLoadState(group_name, handle);
}
+ void PopulateAllocatorDump(
+ base::trace_event::MemoryAllocatorDump* dump) const {
+ return helper_.PopulateAllocatorDump(dump);
+ }
+
virtual void OnConnectJobComplete(int result, ConnectJob* job) {
return helper_.OnConnectJobComplete(result, job);
}
« no previous file with comments | « net/socket/client_socket_pool.cc ('k') | net/socket/client_socket_pool_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698