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

Unified Diff: chrome/browser/profiles/profile_io_data.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, 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_io_data.cc
===================================================================
--- chrome/browser/profiles/profile_io_data.cc (revision 99284)
+++ chrome/browser/profiles/profile_io_data.cc (working copy)
@@ -225,6 +225,7 @@
params->host_content_settings_map = profile->GetHostContentSettingsMap();
params->host_zoom_map = profile->GetHostZoomMap();
params->transport_security_state = profile->GetTransportSecurityState();
+ params->spdy_config_service = profile->GetSpdyConfigService();
params->ssl_config_service = profile->GetSSLConfigService();
base::Callback<Profile*(void)> profile_getter =
base::Bind(&GetProfileOnUI, g_browser_process->profile_manager(),
@@ -501,6 +502,7 @@
context->set_referrer_charset(profile_params_->referrer_charset);
context->set_transport_security_state(
profile_params_->transport_security_state);
+ context->set_spdy_config_service(profile_params_->spdy_config_service);
context->set_ssl_config_service(profile_params_->ssl_config_service);
}

Powered by Google App Engine
This is Rietveld 408576698