Chromium Code Reviews| Index: net/socket/client_socket_pool_manager.h |
| diff --git a/net/socket/client_socket_pool_manager.h b/net/socket/client_socket_pool_manager.h |
| index 553a34845113f90ddcc6a658308546ef69e6249f..18c08a327ee9e4c4cdd3281be9b4050c36579e61 100644 |
| --- a/net/socket/client_socket_pool_manager.h |
| +++ b/net/socket/client_socket_pool_manager.h |
| @@ -16,6 +16,9 @@ |
| namespace base { |
| class Value; |
| +namespace trace_event { |
| +class MemoryAllocatorDump; |
| +} |
| } |
| namespace net { |
| @@ -83,6 +86,8 @@ class NET_EXPORT_PRIVATE ClientSocketPoolManager { |
| const HostPortPair& proxy_server) = 0; |
| // Creates a Value summary of the state of the socket pools. |
| virtual std::unique_ptr<base::Value> SocketPoolInfoToValue() const = 0; |
| + virtual void DumpMemoryStats( |
| + base::trace_event::MemoryAllocatorDump* dump) const = 0; |
|
ssid
2016/12/02 21:36:35
I think this should be:
virtual void DumpMemorySta
|
| }; |
| // A helper method that uses the passed in proxy information to initialize a |