| 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 192602186f285b90791dab45319ad90950dfde70..f249fd009d6719d0bbf4a03b3675d339b9f4602c 100644
|
| --- a/net/socket/client_socket_pool_base.h
|
| +++ b/net/socket/client_socket_pool_base.h
|
| @@ -56,6 +56,9 @@
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| +namespace trace_event {
|
| +class MemoryAllocatorDump;
|
| +}
|
| }
|
|
|
| namespace net {
|
| @@ -338,6 +341,8 @@ class NET_EXPORT_PRIVATE ClientSocketPoolBaseHelper
|
| const std::string& name,
|
| const std::string& type) const;
|
|
|
| + void DumpMemoryStats(base::trace_event::MemoryAllocatorDump* dump) const;
|
| +
|
| base::TimeDelta ConnectionTimeout() const {
|
| return connect_job_factory_->ConnectionTimeout();
|
| }
|
| @@ -793,6 +798,10 @@ class ClientSocketPoolBase {
|
| return helper_.GetLoadState(group_name, handle);
|
| }
|
|
|
| + void DumpMemoryStats(base::trace_event::MemoryAllocatorDump* dump) const {
|
| + return helper_.DumpMemoryStats(dump);
|
| + }
|
| +
|
| virtual void OnConnectJobComplete(int result, ConnectJob* job) {
|
| return helper_.OnConnectJobComplete(result, job);
|
| }
|
|
|