| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index 48a61fcad2e32007cb4012e9cca19c35849d0007..170248d5b250446213a1296bca8fd8cd1fc36790 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -894,6 +894,7 @@ net::URLRequestContext* IOThread::ConstructSystemRequestContext(
|
| new net::HttpNetworkSession(system_params));
|
| globals->system_http_transaction_factory.reset(
|
| new net::HttpNetworkLayer(globals->system_http_network_session.get()));
|
| + context->set_name_string("systems");
|
| context->set_http_transaction_factory(
|
| globals->system_http_transaction_factory.get());
|
|
|
| @@ -1047,6 +1048,7 @@ net::URLRequestContext* IOThread::ConstructProxyScriptFetcherContext(
|
| globals->proxy_script_fetcher_http_transaction_factory.reset(
|
| new net::HttpNetworkLayer(
|
| globals->proxy_script_fetcher_http_network_session.get()));
|
| + context->set_name_string("proxy");
|
| context->set_http_transaction_factory(
|
| globals->proxy_script_fetcher_http_transaction_factory.get());
|
|
|
|
|