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

Side by Side Diff: netlog_viewer/spdy_view.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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/source_tracker.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
(Empty)
1 <div id=spdy-view-tab-content class=content-box>
2 <ul id=spdy-view-status style='margin-top:0'>
3 <!-- "enable_http2" and "enable_spdy31" are used since release 50, see
4 https://crrev.com/1651123002. "spdy_enabled" is here to support
5 importing netlog json files from earlier browsers.
6 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>SPDY/3.1 Enabled: <span jscontent="$this.enable_spdy31 == undefined ? $t his.spdy_enabled : $this.enable_spdy31"></span></li>
9 <!-- "use_alternative_service" is used here since release 46, see
10 https://crrev.com/1268313004. "use_alternate_protocols" is here to
11 support importing netlog json files from earlier browsers.
12 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 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see
15 https://crrev.com/1387363004. "next_protos" is here to support
16 importing netlog json files from earlier browsers.
17 TODO(bnc): Deprecate around 2016 April. -->
18 <li>ALPN Protocols: <span jscontent="$this.alpn_protos || $this.next_protos" ></span></li>
19 <li>NPN Protocols: <span jscontent="$this.npn_protos || $this.next_protos">< /span></li>
20 </ul>
21
22 <h4>HTTP/2 sessions</h4>
23 <div id=spdy-view-session-info>
24 <!-- Only one of these two are shown -->
25 <div jsdisplay="spdySessionInfo.length == 0">None</div>
26 <div jsdisplay="spdySessionInfo.length != 0">
27 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a>
28 <p>
29 <table class="styled-table">
30 <thead>
31 <tr>
32 <th>Host</th>
33 <th>Proxy</th>
34 <th>ID</th>
35 <th>Protocol Negotiated</th>
36 <th>Active streams</th>
37 <th>Unclaimed pushed</th>
38 <th>Max</th>
39 <th>Initiated</th>
40 <th>Pushed</th>
41 <th>Pushed and claimed</th>
42 <th>Abandoned</th>
43 <th>Received frames</th>
44 <th>Secure</th>
45 <th>Sent settings</th>
46 <th>Received settings</th>
47 <th>Send window</th>
48 <th>Receive window</th>
49 <th>Unacked received data</th>
50 <th>Error</th>
51 </tr>
52 </thead>
53 <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>
78 </table>
79 </p>
80 </div>
81 </div>
82 </div>
83
OLDNEW
« no previous file with comments | « netlog_viewer/source_tracker.js ('k') | netlog_viewer/spdy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698