| Index: chrome/browser/net/chrome_url_request_context.cc
|
| ===================================================================
|
| --- chrome/browser/net/chrome_url_request_context.cc (revision 65207)
|
| +++ chrome/browser/net/chrome_url_request_context.cc (working copy)
|
| @@ -268,7 +268,7 @@
|
| const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
|
|
| context->set_proxy_service(
|
| - CreateProxyService(io_thread_globals->net_log.get(),
|
| + CreateProxyService(io_thread()->net_log(),
|
| context,
|
| proxy_config_service_.release(),
|
| command_line,
|
| @@ -284,7 +284,7 @@
|
| context->ssl_config_service(),
|
| context->http_auth_handler_factory(),
|
| &io_thread_globals->network_delegate,
|
| - io_thread_globals->net_log.get(),
|
| + io_thread()->net_log(),
|
| backend);
|
|
|
| bool record_mode = chrome::kRecordModeEnabled &&
|
| @@ -318,7 +318,7 @@
|
|
|
| appcache_service_->set_request_context(context);
|
|
|
| - context->set_net_log(io_thread_globals->net_log.get());
|
| + context->set_net_log(io_thread()->net_log());
|
| return context;
|
| }
|
|
|
| @@ -410,7 +410,7 @@
|
| context->ssl_config_service(),
|
| context->http_auth_handler_factory(),
|
| &io_thread_globals->network_delegate,
|
| - io_thread_globals->net_log.get(),
|
| + io_thread()->net_log(),
|
| backend);
|
| context->set_cookie_store(new net::CookieMonster(NULL,
|
| cookie_monster_delegate_));
|
| @@ -423,7 +423,7 @@
|
|
|
| appcache_service_->set_request_context(context);
|
|
|
| - context->set_net_log(io_thread_globals->net_log.get());
|
| + context->set_net_log(io_thread()->net_log());
|
| return context;
|
| }
|
|
|
| @@ -502,12 +502,12 @@
|
| main_context->ssl_config_service(),
|
| main_context->http_auth_handler_factory(),
|
| &io_thread_globals->network_delegate,
|
| - io_thread_globals->net_log.get(),
|
| + io_thread()->net_log(),
|
| backend);
|
| }
|
|
|
| context->set_http_transaction_factory(cache);
|
| - context->set_net_log(io_thread_globals->net_log.get());
|
| + context->set_net_log(io_thread()->net_log());
|
|
|
| return context;
|
| }
|
|
|