diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-16 21:41:10 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-16 21:41:10 +0000 |
commit | 4c2464b49571049ad7128343bfafa9abb3be7e0c (patch) | |
tree | 720f5a9c678057babcfed67f3b7f6f2bb972a35f /chrome/browser/net/chrome_url_request_context.cc | |
parent | 778b07162832ede8794dc72f859534d7ff6849a2 (diff) | |
download | chromium_src-4c2464b49571049ad7128343bfafa9abb3be7e0c.zip chromium_src-4c2464b49571049ad7128343bfafa9abb3be7e0c.tar.gz chromium_src-4c2464b49571049ad7128343bfafa9abb3be7e0c.tar.bz2 |
Move over another legacy "LoadLog-style" event generator to routing its messages through the NetLog.
BUG=37421
Review URL: http://codereview.chromium.org/1052002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41768 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/chrome_url_request_context.cc')
-rw-r--r-- | chrome/browser/net/chrome_url_request_context.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/net/chrome_url_request_context.cc b/chrome/browser/net/chrome_url_request_context.cc index 7ad6ecf..81b9fb5 100644 --- a/chrome/browser/net/chrome_url_request_context.cc +++ b/chrome/browser/net/chrome_url_request_context.cc @@ -82,6 +82,7 @@ net::ProxyConfigService* CreateProxyConfigService( // Create a proxy service according to the options on command line. net::ProxyService* CreateProxyService( net::NetworkChangeNotifier* network_change_notifier, + net::NetLog* net_log, URLRequestContext* context, net::ProxyConfigService* proxy_config_service, const CommandLine& command_line, @@ -101,6 +102,7 @@ net::ProxyService* CreateProxyService( use_v8, context, network_change_notifier, + net_log, io_loop); } @@ -150,6 +152,7 @@ ChromeURLRequestContext* FactoryForOriginal::Create() { context->set_proxy_service( CreateProxyService(io_thread()->globals()->network_change_notifier.get(), + io_thread()->globals()->net_log.get(), context, proxy_config_service_.release(), command_line, |