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

Unified Diff: net/http/http_network_session.h

Issue 9764003: Increase number of max sockets per group for WebSocket connections. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add NUM_SOCKET_POOL_TYPES. Created 8 years, 9 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/http/http_network_session.h
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
index 9d8c2ec4422f0a6ea05b1103e3673eda498a13ed..f6d314b34366f8be3d0e1557bff2618ad09ddc4b 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -15,7 +15,6 @@
#include "net/base/ssl_client_auth_cache.h"
#include "net/http/http_auth_cache.h"
#include "net/http/http_stream_factory.h"
-#include "net/socket/client_socket_pool_manager.h"
#include "net/spdy/spdy_session_pool.h"
#include "net/spdy/spdy_settings_storage.h"
@@ -27,6 +26,7 @@ namespace net {
class CertVerifier;
class ClientSocketFactory;
+class ClientSocketPoolManager;
class HostResolver;
class HttpAuthHandlerFactory;
class HttpNetworkSessionPeer;
@@ -83,7 +83,8 @@ class NET_EXPORT HttpNetworkSession
enum SocketPoolType {
NORMAL_SOCKET_POOL,
- WEBSOCKET_SOCKET_POOL
+ WEBSOCKET_SOCKET_POOL,
+ NUM_SOCKET_POOL_TYPES
};
explicit HttpNetworkSession(const Params& params);

Powered by Google App Engine
This is Rietveld 408576698