Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: netlog_viewer/spdy_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « netlog_viewer/sockets_view.js ('k') | netlog_viewer/spdy_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id=spdy-view-tab-content class=content-box> 1 <div id=spdy-view-tab-content class=content-box>
2 <h4>HTTP/2 status</h4>
2 <ul id=spdy-view-status style='margin-top:0'> 3 <ul id=spdy-view-status style='margin-top:0'>
3 <!-- "enable_http2" and "enable_spdy31" are used since release 50, see 4 <!-- "enable_http2" and "enable_spdy31" are used since release 50, see
4 https://crrev.com/1651123002. "spdy_enabled" is here to support 5 https://crrev.com/1651123002. "spdy_enabled" is here to support
5 importing netlog json files from earlier browsers. 6 importing netlog json files from earlier browsers.
6 TODO(bnc): Deprecate around 2016 July. --> 7 TODO(bnc): Deprecate around 2016 July. -->
7 <li>HTTP/2 Enabled: <span jscontent="$this.enable_http2 == undefined ? $this .spdy_enabled : $this.enable_http2"></span></li> 8 <li>HTTP/2 Enabled: <span id=spdy-view-http2-enabled></span></li>
8 <li>SPDY/3.1 Enabled: <span jscontent="$this.enable_spdy31 == undefined ? $t his.spdy_enabled : $this.enable_spdy31"></span></li> 9 <li>SPDY/3.1 Enabled: <span id=spdy-view-spdy31-enabled></span></li>
9 <!-- "use_alternative_service" is used here since release 46, see 10 <!-- "use_alternative_service" is used here since release 46, see
10 https://crrev.com/1268313004. "use_alternate_protocols" is here to 11 https://crrev.com/1268313004. "use_alternate_protocols" is here to
11 support importing netlog json files from earlier browsers. 12 support importing netlog json files from earlier browsers.
12 TODO(bnc): Deprecate around 2016 February. --> 13 TODO(bnc): Deprecate around 2016 February. -->
13 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services == undefined ? $this.use_alternate_protocols : $this.use_alternative_services"> </span></li> 14 <li>Use Alternative Service: <span id=spdy-view-alternate-service></span></l i>
14 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see 15 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see
15 https://crrev.com/1387363004. "next_protos" is here to support 16 https://crrev.com/1387363004. "next_protos" is here to support
16 importing netlog json files from earlier browsers. 17 importing netlog json files from earlier browsers.
17 TODO(bnc): Deprecate around 2016 April. --> 18 TODO(bnc): Deprecate around 2016 April. -->
18 <li>ALPN Protocols: <span jscontent="$this.alpn_protos || $this.next_protos" ></span></li> 19 <li>ALPN Protocols: <span id=spdy-view-alpn-protocols></span></li>
19 <li>NPN Protocols: <span jscontent="$this.npn_protos || $this.next_protos">< /span></li> 20 <li>NPN Protocols: <span id=spdy-view-npn-protocols></span></li>
20 </ul> 21 </ul>
21 22
22 <h4>HTTP/2 sessions</h4> 23 <h4>HTTP/2 sessions</h4>
23 <div id=spdy-view-session-info> 24 <div id=spdy-view-session-info>
24 <!-- Only one of these two are shown --> 25 <!-- Only one of these two are shown -->
25 <div jsdisplay="spdySessionInfo.length == 0">None</div> 26 <div id=spdy-view-session-info-no-content>None</div>
26 <div jsdisplay="spdySessionInfo.length != 0"> 27 <div id=spdy-view-session-info-content>
27 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a> 28 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a>
28 <p> 29 <p>
29 <table class="styled-table"> 30 <table class="styled-table">
30 <thead> 31 <thead>
31 <tr> 32 <tr>
32 <th>Host</th> 33 <th>Host</th>
33 <th>Proxy</th> 34 <th>Proxy</th>
34 <th>ID</th> 35 <th>ID</th>
35 <th>Protocol Negotiated</th> 36 <th>Protocol Negotiated</th>
36 <th>Active streams</th> 37 <th>Active streams</th>
37 <th>Unclaimed pushed</th> 38 <th>Unclaimed pushed</th>
38 <th>Max</th> 39 <th>Max</th>
39 <th>Initiated</th> 40 <th>Initiated</th>
40 <th>Pushed</th> 41 <th>Pushed</th>
41 <th>Pushed and claimed</th> 42 <th>Pushed and claimed</th>
42 <th>Abandoned</th> 43 <th>Abandoned</th>
43 <th>Received frames</th> 44 <th>Received frames</th>
44 <th>Secure</th> 45 <th>Secure</th>
45 <th>Sent settings</th> 46 <th>Sent settings</th>
46 <th>Received settings</th> 47 <th>Received settings</th>
47 <th>Send window</th> 48 <th>Send window</th>
48 <th>Receive window</th> 49 <th>Receive window</th>
49 <th>Unacked received data</th> 50 <th>Unacked received data</th>
50 <th>Error</th> 51 <th>Error</th>
51 </tr> 52 </tr>
52 </thead> 53 </thead>
53 <tbody> 54 <tbody id=spdy-view-session-info-tbody>
54 <tr jsselect="spdySessionInfo">
55 <td><span jscontent="host_port_pair"></span>
56 <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''">< /span>
57 </td>
58 <td jscontent="proxy"></td>
59 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="so urce_id"></a></td>
60 <td jscontent="protocol_negotiated"></td>
61 <td jscontent="active_streams"></td>
62 <td jscontent="unclaimed_pushed_streams"></td>
63 <td jscontent="max_concurrent_streams"></td>
64 <td jscontent="streams_initiated_count"></td>
65 <td jscontent="streams_pushed_count"></td>
66 <td jscontent="streams_pushed_and_claimed_count"></td>
67 <td jscontent="streams_abandoned_count"></td>
68 <td jscontent="frames_received"></td>
69 <td jscontent="is_secure"></td>
70 <td jscontent="sent_settings"></td>
71 <td jscontent="received_settings"></td>
72 <td jscontent="send_window_size"></td>
73 <td jscontent="recv_window_size"></td>
74 <td jscontent="unacked_recv_window_bytes"></td>
75 <td jscontent="error"></td>
76 </tr>
77 </tbody> 55 </tbody>
78 </table> 56 </table>
79 </p> 57 </p>
80 </div> 58 </div>
81 </div> 59 </div>
82 </div> 60 </div>
83 61
OLDNEW
« no previous file with comments | « netlog_viewer/sockets_view.js ('k') | netlog_viewer/spdy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698