summaryrefslogtreecommitdiffstats
path: root/chrome/service/net
diff options
context:
space:
mode:
authormmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-18 18:01:15 +0000
committermmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-18 18:01:15 +0000
commit2bb044402ba016977b58014a22b0631ab7ed605d (patch)
tree6e85bb65048d4b262b6bb4e1d6d0e418957b857d /chrome/service/net
parent8748bdf9fe94b62e76e7adf7fac9af7dfd9c0ca3 (diff)
downloadchromium_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 'chrome/service/net')
-rw-r--r--chrome/service/net/service_url_request_context.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/service/net/service_url_request_context.cc b/chrome/service/net/service_url_request_context.cc
index e7069a5..ad45796 100644
--- a/chrome/service/net/service_url_request_context.cc
+++ b/chrome/service/net/service_url_request_context.cc
@@ -22,8 +22,7 @@ ServiceURLRequestContextGetter::ServiceURLRequestContextGetter()
ServiceURLRequestContext::ServiceURLRequestContext() {
host_resolver_ =
- net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism,
- NULL);
+ net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism);
DCHECK(g_service_process);
// TODO(sanjeevr): Change CreateSystemProxyConfigService to accept a
// MessageLoopProxy* instead of MessageLoop*.