| 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 b45a287fd7fb019c15107d4d118568a42dd4377a..1b8e7b86d9b8d511079c433d683253d4eb87e7a1 100644
|
| --- a/chrome/browser/profiles/profile_impl_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc
|
| @@ -478,23 +478,23 @@ void ProfileImplIOData::InitializeInternal(
|
| if (http_server_properties_manager_)
|
| http_server_properties_manager_->InitializeOnNetworkThread();
|
|
|
| - main_context->set_transport_security_state(transport_security_state());
|
| + main_context->set_transport_security_state(transport_security_state()); // WJM
|
|
|
| main_context->set_net_log(io_thread->net_log());
|
|
|
| network_delegate_ = data_reduction_proxy_io_data()->CreateNetworkDelegate(
|
| chrome_network_delegate.Pass(), true).Pass();
|
|
|
| - main_context->set_network_delegate(network_delegate_.get());
|
| + main_context->set_network_delegate(network_delegate_.get()); // WJM
|
|
|
| main_context->set_http_server_properties(http_server_properties());
|
|
|
| main_context->set_host_resolver(
|
| - io_thread_globals->host_resolver.get());
|
| + io_thread_globals->host_resolver.get()); // WJM
|
| main_context->set_cert_transparency_verifier(
|
| io_thread_globals->cert_transparency_verifier.get());
|
| main_context->set_http_auth_handler_factory(
|
| - io_thread_globals->http_auth_handler_factory.get());
|
| + io_thread_globals->http_auth_handler_factory.get()); // WJM
|
|
|
| main_context->set_proxy_service(proxy_service());
|
| main_context->set_backoff_manager(
|
| @@ -535,7 +535,7 @@ void ProfileImplIOData::InitializeInternal(
|
| }
|
|
|
| set_channel_id_service(channel_id_service);
|
| - main_context->set_channel_id_service(channel_id_service);
|
| + main_context->set_channel_id_service(channel_id_service); // WJM
|
|
|
| scoped_ptr<net::HttpCache> main_cache;
|
| {
|
|
|