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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.cc

Issue 10834215: Remove static variables from HttpStreamFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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: chrome/browser/profiles/profile_impl_io_data.cc
diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc
index f233e8217543529c2f0d54bd0a304f0b02cf745f..18df8303148b0940d876b8a965f5ba75cd23501b 100644
--- a/chrome/browser/profiles/profile_impl_io_data.cc
+++ b/chrome/browser/profiles/profile_impl_io_data.cc
@@ -416,20 +416,40 @@ void ProfileImplIOData::LazyInitializeInternal(
lazy_params_->cache_path,
lazy_params_->cache_max_size,
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE));
+
+ net::HttpNetworkSession::Params network_session_params;
+ network_session_params.host_resolver = main_context->host_resolver();
+ network_session_params.cert_verifier = main_context->cert_verifier();
+ network_session_params.server_bound_cert_service =
+ main_context->server_bound_cert_service();
+ network_session_params.transport_security_state =
+ main_context->transport_security_state();
+ network_session_params.proxy_service = main_context->proxy_service();
+ network_session_params.ssl_session_cache_shard =
+ GetSSLSessionCacheShard();
+ network_session_params.ssl_config_service =
+ main_context->ssl_config_service();
+ network_session_params.http_auth_handler_factory =
+ main_context->http_auth_handler_factory();
+ network_session_params.network_delegate =
+ main_context->network_delegate();
+ network_session_params.http_server_properties =
+ main_context->http_server_properties();
+ network_session_params.net_log = main_context->net_log();
+ network_session_params.ignore_certificate_errors =
+ io_thread_globals->ignore_certificate_errors;
+ network_session_params.host_mapping_rules =
+ io_thread_globals->host_mapping_rules.get();
+ network_session_params.http_pipelining_enabled =
+ io_thread_globals->http_pipelining_enabled;
+ network_session_params.testing_fixed_http_port =
+ io_thread_globals->testing_fixed_http_port;
+ network_session_params.testing_fixed_https_port =
+ io_thread_globals->testing_fixed_https_port;
+ network_session_params.trusted_spdy_proxy = trusted_spdy_proxy;
+
net::HttpCache* main_cache = new net::HttpCache(
- main_context->host_resolver(),
- main_context->cert_verifier(),
- main_context->server_bound_cert_service(),
- main_context->transport_security_state(),
- main_context->proxy_service(),
- GetSSLSessionCacheShard(),
- main_context->ssl_config_service(),
- main_context->http_auth_handler_factory(),
- main_context->network_delegate(),
- main_context->http_server_properties(),
- main_context->net_log(),
- main_backend,
- trusted_spdy_proxy);
+ network_session_params, main_backend);
if (record_mode || playback_mode) {
main_cache->set_mode(

Powered by Google App Engine
This is Rietveld 408576698