summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 23:06:27 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 23:06:27 +0000
commitf78475dbe35a34f8756bc38be1066677e46cbd32 (patch)
treeedbee743dcf8f97954dd0101ed6864ef6c8bbf33 /chrome/browser
parent5a82ad40f10c8bf3833c07c759f5c3338b916b1e (diff)
downloadchromium_src-f78475dbe35a34f8756bc38be1066677e46cbd32.zip
chromium_src-f78475dbe35a34f8756bc38be1066677e46cbd32.tar.gz
chromium_src-f78475dbe35a34f8756bc38be1066677e46cbd32.tar.bz2
Fill the "Description" field for SPDY_SESSION events with the hostname:port and proxy information of the connection.
BUG=58367 Review URL: http://codereview.chromium.org/3609015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/resources/net_internals/sourceentry.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/resources/net_internals/sourceentry.js b/chrome/browser/resources/net_internals/sourceentry.js
index c3e23e0..ff98bfe 100644
--- a/chrome/browser/resources/net_internals/sourceentry.js
+++ b/chrome/browser/resources/net_internals/sourceentry.js
@@ -228,6 +228,8 @@ SourceEntry.prototype.getDescription = function() {
case LogSourceType.HOST_RESOLVER_IMPL_REQUEST:
case LogSourceType.HOST_RESOLVER_IMPL_JOB:
return e.params.host;
+ case LogSourceType.SPDY_SESSION:
+ return e.params.host + ' (' + e.params.proxy + ')';
}
return '';