diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-24 15:55:51 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-24 15:55:51 +0000 |
commit | ee094b89dd380eed93bc0e6ce380d03a0b1b5329 (patch) | |
tree | d49719e986de616af7b59b95046be1613568a8f7 /net/proxy/proxy_script_fetcher_unittest.cc | |
parent | bb872ba65a60c2ade48089f6f0bc538e0cc649ac (diff) | |
download | chromium_src-ee094b89dd380eed93bc0e6ce380d03a0b1b5329.zip chromium_src-ee094b89dd380eed93bc0e6ce380d03a0b1b5329.tar.gz chromium_src-ee094b89dd380eed93bc0e6ce380d03a0b1b5329.tar.bz2 |
Adds HostResolveImpl Requests and Jobs to log.
Differences over the reverted version (http://codereview.chromium.org/3080034/show - reverted http://codereview.chromium.org/3137022/show ):
* Jobs never log anything in their destructor, as the HostResolverImpl randomly outlives the NetLog, at least in some unit tests.
* Removed the extra log entries for when a DNS lookup starts/completes. Instead, the job's event is ended in OnLookupComplete().
* Slight modification of the CanceledAsynchronousLookup unit test, as the Job is now closed before posting any events to the Request. For actual lookups, this behavior means the Job's duration more accurately reflects the time the DNS lookup takes itself.
BUG=46844
TEST=Look at the net-internals screen.
Review URL: http://codereview.chromium.org/3119027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_script_fetcher_unittest.cc')
-rw-r--r-- | net/proxy/proxy_script_fetcher_unittest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/proxy/proxy_script_fetcher_unittest.cc b/net/proxy/proxy_script_fetcher_unittest.cc index 65a7d4d..8980c0e 100644 --- a/net/proxy/proxy_script_fetcher_unittest.cc +++ b/net/proxy/proxy_script_fetcher_unittest.cc @@ -35,7 +35,8 @@ class RequestContext : public URLRequestContext { RequestContext() { net::ProxyConfig no_proxy; host_resolver_ = - net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism); + net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, + NULL); proxy_service_ = net::ProxyService::CreateFixed(no_proxy); ssl_config_service_ = new net::SSLConfigServiceDefaults; |