diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 18:01:15 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 18:01:15 +0000 |
commit | 2bb044402ba016977b58014a22b0631ab7ed605d (patch) | |
tree | 6e85bb65048d4b262b6bb4e1d6d0e418957b857d /net/tools/hresolv/hresolv.cc | |
parent | 8748bdf9fe94b62e76e7adf7fac9af7dfd9c0ca3 (diff) | |
download | chromium_src-2bb044402ba016977b58014a22b0631ab7ed605d.zip chromium_src-2bb044402ba016977b58014a22b0631ab7ed605d.tar.gz chromium_src-2bb044402ba016977b58014a22b0631ab7ed605d.tar.bz2 |
Revert 56539 - Added HostResolveImpl Requests and Jobs to log.
ConnectJobs point to the requests, Requests point back to ConnectJobs and to the DNS lookup they were attached to, if any.
Also CONNECT_JOBs are now identified by their host/port on the Requests list.
BUG= 46844
TEST= Look at the net-internals screen.
Review URL: http://codereview.chromium.org/3080034
TBR=eroman@chromium.org
Review URL: http://codereview.chromium.org/3137022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools/hresolv/hresolv.cc')
-rw-r--r-- | net/tools/hresolv/hresolv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/hresolv/hresolv.cc b/net/tools/hresolv/hresolv.cc index 9528b73..d74cdf1 100644 --- a/net/tools/hresolv/hresolv.cc +++ b/net/tools/hresolv/hresolv.cc @@ -451,7 +451,7 @@ int main(int argc, char** argv) { base::TimeDelta::FromSeconds(0)); scoped_refptr<net::HostResolver> host_resolver( - new net::HostResolverImpl(NULL, cache, 100u, NULL)); + new net::HostResolverImpl(NULL, cache, 100u)); ResolverInvoker invoker(host_resolver.get()); invoker.ResolveAll(hosts_and_times, options.async); |