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

Unified Diff: net/url_request/url_request_context.cc

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/url_request/url_request_context.h ('k') | net/url_request/url_request_context_storage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context.cc
===================================================================
--- net/url_request/url_request_context.cc (revision 104660)
+++ net/url_request/url_request_context.cc (working copy)
@@ -24,6 +24,7 @@
http_auth_handler_factory_(NULL),
proxy_service_(NULL),
network_delegate_(NULL),
+ http_server_properties_(NULL),
transport_security_state_(NULL),
ftp_auth_cache_(new FtpAuthCache),
http_transaction_factory_(NULL),
@@ -43,6 +44,7 @@
set_proxy_service(other->proxy_service());
set_ssl_config_service(other->ssl_config_service());
set_network_delegate(other->network_delegate());
+ set_http_server_properties(other->http_server_properties());
set_cookie_store(other->cookie_store());
set_transport_security_state(other->transport_security_state());
// FTPAuthCache is unique per context.
« no previous file with comments | « net/url_request/url_request_context.h ('k') | net/url_request/url_request_context_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698