| Index: chrome/browser/resources/net_internals/dataview.js
|
| ===================================================================
|
| --- chrome/browser/resources/net_internals/dataview.js (revision 74177)
|
| +++ chrome/browser/resources/net_internals/dataview.js (working copy)
|
| @@ -270,6 +270,20 @@
|
|
|
| text.push('');
|
| text.push('----------------------------------------------');
|
| + text.push(' SPDY Status');
|
| + text.push('----------------------------------------------');
|
| + text.push('');
|
| +
|
| + text.push('SPDY Enabled: ' + data.spdyStatus.spdy_enabled);
|
| + text.push('Use Alternate Protocol: ' +
|
| + data.spdyStatus.use_alternate_protocols);
|
| + text.push('Force SPDY Always: ' + data.spdyStatus.force_spdy_always);
|
| + text.push('Force SPDY Over SSL: ' + data.spdyStatus.force_spdy_over_ssl);
|
| + text.push('Next Protocols: ' + data.spdyStatus.next_protos);
|
| +
|
| +
|
| + text.push('');
|
| + text.push('----------------------------------------------');
|
| text.push(' SPDY Sessions');
|
| text.push('----------------------------------------------');
|
| text.push('');
|
| @@ -282,6 +296,22 @@
|
| text.push(spdyTablePrinter.toText(2));
|
| }
|
|
|
| + text.push('');
|
| + text.push('----------------------------------------------');
|
| + text.push(' Alternate Protocol Mappings');
|
| + text.push('----------------------------------------------');
|
| + text.push('');
|
| +
|
| + if (data.spdyAlternateProtocolMappings == null ||
|
| + data.spdyAlternateProtocolMappings.length == 0) {
|
| + text.push('None');
|
| + } else {
|
| + var spdyTablePrinter =
|
| + SpdyView.createAlternateProtocolMappingsTablePrinter(
|
| + data.spdyAlternateProtocolMappings);
|
| + text.push(spdyTablePrinter.toText(2));
|
| + }
|
| +
|
| if (g_browser.isPlatformWindows()) {
|
| text.push('');
|
| text.push('----------------------------------------------');
|
|
|