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

Unified Diff: net/http/http_network_session.h

Issue 11416058: Integrating the QuicStreamFactory into the network stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Done Created 8 years, 1 month 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 47abaec02872045b4e5c80959f36b1da55d892c4..44e283a63d9d6b5b7da2a5bfa86e61c664b91128 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -14,6 +14,7 @@
#include "net/base/ssl_client_auth_cache.h"
#include "net/http/http_auth_cache.h"
#include "net/http/http_stream_factory.h"
+#include "net/quic/quic_stream_factory.h"
#include "net/spdy/spdy_session_pool.h"
namespace base {
@@ -103,6 +104,7 @@ class NET_EXPORT HttpNetworkSession
ProxyService* proxy_service() { return proxy_service_; }
SSLConfigService* ssl_config_service() { return ssl_config_service_; }
SpdySessionPool* spdy_session_pool() { return &spdy_session_pool_; }
+ QuicStreamFactory* quic_stream_factory() { return &quic_stream_factory_; }
HttpAuthHandlerFactory* http_auth_handler_factory() {
return http_auth_handler_factory_;
}
@@ -163,6 +165,7 @@ class NET_EXPORT HttpNetworkSession
scoped_ptr<ClientSocketPoolManager> normal_socket_pool_manager_;
scoped_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_;
SpdySessionPool spdy_session_pool_;
+ QuicStreamFactory quic_stream_factory_;
scoped_ptr<HttpStreamFactory> http_stream_factory_;
std::set<HttpResponseBodyDrainer*> response_drainers_;

Powered by Google App Engine
This is Rietveld 408576698