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

Unified Diff: net/http/http_network_session.h

Issue 7827033: Introduce net::HttpServerPropertiesManager to manage server-specific properties. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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
===================================================================
--- net/http/http_network_session.h (revision 99284)
+++ net/http/http_network_session.h (working copy)
@@ -38,6 +38,7 @@
class NetLog;
class NetworkDelegate;
class ProxyService;
+class SpdyConfigService;
class SSLConfigService;
class SSLHostInfoFactory;
@@ -56,6 +57,7 @@
dns_cert_checker(NULL),
proxy_service(NULL),
ssl_host_info_factory(NULL),
+ spdy_config_service(NULL),
ssl_config_service(NULL),
http_auth_handler_factory(NULL),
network_delegate(NULL),
@@ -69,6 +71,7 @@
DnsCertProvenanceChecker* dns_cert_checker;
ProxyService* proxy_service;
SSLHostInfoFactory* ssl_host_info_factory;
+ SpdyConfigService* spdy_config_service;
SSLConfigService* ssl_config_service;
HttpAuthHandlerFactory* http_auth_handler_factory;
NetworkDelegate* network_delegate;
@@ -112,6 +115,7 @@
CertVerifier* cert_verifier() { return cert_verifier_; }
ProxyService* proxy_service() { return proxy_service_; }
+ SpdyConfigService* spdy_config_service() { return spdy_config_service_; }
SSLConfigService* ssl_config_service() { return ssl_config_service_; }
SpdySessionPool* spdy_session_pool() { return &spdy_session_pool_; }
HttpAuthHandlerFactory* http_auth_handler_factory() {
@@ -153,6 +157,7 @@
// Not const since it's modified by HttpNetworkSessionPeer for testing.
ProxyService* proxy_service_;
+ const scoped_refptr<SpdyConfigService> spdy_config_service_;
const scoped_refptr<SSLConfigService> ssl_config_service_;
HttpAuthCache http_auth_cache_;

Powered by Google App Engine
This is Rietveld 408576698