Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / spdy_view.html
blob4168785648ae31eb6fa0bf84b30f7a2f19c507a1
1 <div id=spdy-view-tab-content class=content-box>
2 <ul id=spdy-view-status style='margin-top:0'>
3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li>
4 <li>Use Alternative Service: <span jscontent="use_alternate_protocols"></span></li>
5 <li>Next Protocols: <span jscontent="next_protos"></span></li>
6 </ul>
8 <h4>HTTP/2 sessions</h4>
9 <div id=spdy-view-session-info>
10 <!-- Only one of these two are shown -->
11 <div jsdisplay="spdySessionInfo.length == 0">None</div>
12 <div jsdisplay="spdySessionInfo.length != 0">
13 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessions</a>
14 <p>
15 <table class="styled-table">
16 <thead>
17 <tr>
18 <th>Host</th>
19 <th>Proxy</th>
20 <th>ID</th>
21 <th>Protocol Negotiated</th>
22 <th>Active streams</th>
23 <th>Unclaimed pushed</th>
24 <th>Max</th>
25 <th>Initiated</th>
26 <th>Pushed</th>
27 <th>Pushed and claimed</th>
28 <th>Abandoned</th>
29 <th>Received frames</th>
30 <th>Secure</th>
31 <th>Sent settings</th>
32 <th>Received settings</th>
33 <th>Send window</th>
34 <th>Receive window</th>
35 <th>Unacked received data</th>
36 <th>Error</th>
37 </tr>
38 </thead>
39 <tbody>
40 <tr jsselect="spdySessionInfo">
41 <td><span jscontent="host_port_pair"></span>
42 <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></span>
43 </td>
44 <td jscontent="proxy"></td>
45 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
46 <td jscontent="protocol_negotiated"></td>
47 <td jscontent="active_streams"></td>
48 <td jscontent="unclaimed_pushed_streams"></td>
49 <td jscontent="max_concurrent_streams"></td>
50 <td jscontent="streams_initiated_count"></td>
51 <td jscontent="streams_pushed_count"></td>
52 <td jscontent="streams_pushed_and_claimed_count"></td>
53 <td jscontent="streams_abandoned_count"></td>
54 <td jscontent="frames_received"></td>
55 <td jscontent="is_secure"></td>
56 <td jscontent="sent_settings"></td>
57 <td jscontent="received_settings"></td>
58 <td jscontent="send_window_size"></td>
59 <td jscontent="recv_window_size"></td>
60 <td jscontent="unacked_recv_window_bytes"></td>
61 <td jscontent="error"></td>
62 </tr>
63 </tbody>
64 </table>
65 </p>
66 </div>
67 </div>
69 <h4>Alternative Service Mappings</h4>
70 <div id=spdy-view-alternate-protocol-mappings>
71 <div jsdisplay="spdyAlternateProtocolMappings.length == 0">None</div>
72 <div jsdisplay="spdyAlternateProtocolMappings.length != 0">
73 <table class="styled-table">
74 <thead>
75 <tr>
76 <th>Host</th>
77 <th>Alternative Service</th>
78 </tr>
79 </thead>
80 <tbody>
81 <tr jsselect="spdyAlternateProtocolMappings">
82 <td jscontent="host_port_pair"></td>
83 <!-- "alternative_service" is used since release 43, see
84 https://crrev.com/1043973002. "alternate_protocol" is here
85 to support importing netlog json files from earlier browsers.
86 TODO(bnc): Deprecate around 2015 October. -->
87 <td jscontent="$this.alternative_service || $this.alternate_protocol"></td>
88 </tr>
89 </tbody>
90 </table>
91 </div>
92 </div>
93 </div>