summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 23:14:25 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 23:14:25 +0000
commitc0cfb2ff854d11bd0514cda699945de4053fc204 (patch)
treeab9f83fa9224934c44c22609c1522314b39718fd /chrome/browser/resources/net_internals
parent3b317836cf6a3039127506bcfc2a42273a92cb38 (diff)
downloadchromium_src-c0cfb2ff854d11bd0514cda699945de4053fc204.zip
chromium_src-c0cfb2ff854d11bd0514cda699945de4053fc204.tar.gz
chromium_src-c0cfb2ff854d11bd0514cda699945de4053fc204.tar.bz2
Add the spdy protocol to the information displayed about a spdy session in net-internals.
TEST=Connect to https://www.google.com/ and then pull up chrome://net-internals/#spdy. Notice the new Protocol Negotiatied column. Review URL: http://codereview.chromium.org/9625009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/net_internals')
-rw-r--r--chrome/browser/resources/net_internals/spdy_view.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/resources/net_internals/spdy_view.js b/chrome/browser/resources/net_internals/spdy_view.js
index 3c1aff0..cf5ddbf 100644
--- a/chrome/browser/resources/net_internals/spdy_view.js
+++ b/chrome/browser/resources/net_internals/spdy_view.js
@@ -139,6 +139,7 @@ var SpdyView = (function() {
tablePrinter.addHeaderCell('Host');
tablePrinter.addHeaderCell('Proxy');
tablePrinter.addHeaderCell('ID');
+ tablePrinter.addHeaderCell('Protocol Negotiatied');
tablePrinter.addHeaderCell('Active streams');
tablePrinter.addHeaderCell('Unclaimed pushed');
tablePrinter.addHeaderCell('Max');
@@ -162,6 +163,7 @@ var SpdyView = (function() {
var idCell = tablePrinter.addCell(session.source_id);
idCell.link = '#events&q=id:' + session.source_id;
+ tablePrinter.addCell(session.protocol_negotiated);
tablePrinter.addCell(session.active_streams);
tablePrinter.addCell(session.unclaimed_pushed_streams);
tablePrinter.addCell(session.max_concurrent_streams);