diff options
Diffstat (limited to 'net/http/http_network_session.h')
-rw-r--r-- | net/http/http_network_session.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h index 7d5b67f..f7da921 100644 --- a/net/http/http_network_session.h +++ b/net/http/http_network_session.h @@ -20,7 +20,9 @@ #include "net/spdy/spdy_session_pool.h" #include "net/spdy/spdy_settings_storage.h" +namespace base { class Value; +} namespace net { @@ -127,11 +129,11 @@ class NET_API HttpNetworkSession // Creates a Value summary of the state of the socket pools. The caller is // responsible for deleting the returned value. - Value* SocketPoolInfoToValue() const; + base::Value* SocketPoolInfoToValue() const; // Creates a Value summary of the state of the SPDY sessions. The caller is // responsible for deleting the returned value. - Value* SpdySessionPoolInfoToValue() const; + base::Value* SpdySessionPoolInfoToValue() const; void CloseAllConnections(); void CloseIdleConnections(); |