summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/source_entry.js
diff options
context:
space:
mode:
authorszym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-01 22:28:20 +0000
committerszym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-01 22:28:20 +0000
commit0f292de0198f86ad901d0197f69bc74aac42137b (patch)
treed9b5f1704e64b20c02d78f8f9b323a95cb08df3f /chrome/browser/resources/net_internals/source_entry.js
parentf5167883d8c59a17060f431048a115102c934be1 (diff)
downloadchromium_src-0f292de0198f86ad901d0197f69bc74aac42137b.zip
chromium_src-0f292de0198f86ad901d0197f69bc74aac42137b.tar.gz
chromium_src-0f292de0198f86ad901d0197f69bc74aac42137b.tar.bz2
[net/dns] Refactoring of job dispatch in HostResolverImpl in preparation for DnsTransactionFactory.
- Replaces JobPool with PrioritizedDispatcher. - Separates Job which aggregates Requests from ProcTask which executes on WorkerPool. - Queues Jobs rather than Requests before dispatching them. (So that we can queue before DnsTransactionFactory and then before ProcTask.) This is the second CL in series to merge AsyncHostResolver into HostResolverImpl. BUG=107880 TEST=waterfall Review URL: http://codereview.chromium.org/9101011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120114 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/net_internals/source_entry.js')
-rw-r--r--chrome/browser/resources/net_internals/source_entry.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/resources/net_internals/source_entry.js b/chrome/browser/resources/net_internals/source_entry.js
index 1a244db..389369b 100644
--- a/chrome/browser/resources/net_internals/source_entry.js
+++ b/chrome/browser/resources/net_internals/source_entry.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -88,6 +88,7 @@ var SourceEntry = (function() {
break;
case LogSourceType.HOST_RESOLVER_IMPL_REQUEST:
case LogSourceType.HOST_RESOLVER_IMPL_JOB:
+ case LogSourceType.HOST_RESOLVER_IMPL_PROC_TASK:
this.description_ = e.params.host;
break;
case LogSourceType.DISK_CACHE_ENTRY: