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

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, 2 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
« no previous file with comments | « net/http/http_cache.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.h
===================================================================
--- net/http/http_network_session.h (revision 104660)
+++ net/http/http_network_session.h (working copy)
@@ -35,6 +35,7 @@
class HttpNetworkSessionPeer;
class HttpProxyClientSocketPool;
class HttpResponseBodyDrainer;
+class HttpServerProperties;
class NetLog;
class NetworkDelegate;
class ProxyService;
@@ -59,6 +60,7 @@
ssl_config_service(NULL),
http_auth_handler_factory(NULL),
network_delegate(NULL),
+ http_server_properties(NULL),
net_log(NULL) {}
ClientSocketFactory* client_socket_factory;
@@ -72,6 +74,7 @@
SSLConfigService* ssl_config_service;
HttpAuthHandlerFactory* http_auth_handler_factory;
NetworkDelegate* network_delegate;
+ HttpServerProperties* http_server_properties;
NetLog* net_log;
};
@@ -120,6 +123,9 @@
NetworkDelegate* network_delegate() {
return network_delegate_;
}
+ HttpServerProperties* http_server_properties() {
+ return http_server_properties_;
+ }
HttpStreamFactory* http_stream_factory() {
return http_stream_factory_.get();
@@ -148,6 +154,7 @@
NetLog* const net_log_;
NetworkDelegate* const network_delegate_;
+ HttpServerProperties* const http_server_properties_;
CertVerifier* const cert_verifier_;
HttpAuthHandlerFactory* const http_auth_handler_factory_;
« no previous file with comments | « net/http/http_cache.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698