Index: net/http/http_network_session.h |
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h |
index 5e86f9ca04916de07c5bf4568e8e1ed142483ad9..1e1af31abf44e211eeb46f14f94114cce6489adb 100644 |
--- a/net/http/http_network_session.h |
+++ b/net/http/http_network_session.h |
@@ -6,6 +6,9 @@ |
#define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
#include <set> |
+#include <string> |
+ |
+#include "base/basictypes.h" |
#include "base/memory/ref_counted.h" |
#include "base/threading/non_thread_safe.h" |
#include "net/base/host_port_pair.h" |
@@ -136,6 +139,9 @@ class NET_EXPORT HttpNetworkSession |
HttpStreamFactory* http_stream_factory() { |
return http_stream_factory_.get(); |
} |
+ HttpStreamFactory* websocket_stream_factory() { |
+ return websocket_stream_factory_.get(); |
+ } |
NetLog* net_log() { |
return net_log_; |
} |
@@ -190,6 +196,7 @@ class NET_EXPORT HttpNetworkSession |
QuicStreamFactory quic_stream_factory_; |
SpdySessionPool spdy_session_pool_; |
scoped_ptr<HttpStreamFactory> http_stream_factory_; |
+ scoped_ptr<HttpStreamFactory> websocket_stream_factory_; |
std::set<HttpResponseBodyDrainer*> response_drainers_; |
Params params_; |