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

Side by Side Diff: chrome/browser/resources/net_internals/spdy_view.html

Issue 2579063002: Remove obsolete parameters from spdy_view.html. (Closed)
Patch Set: Created 4 years 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 | « no previous file | no next file » | 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 <ul id=spdy-view-status style='margin-top:0'> 2 <ul id=spdy-view-status style='margin-top:0'>
3 <li>HTTP/2 Enabled: <span jscontent="enable_http2"></span></li> 3 <li>HTTP/2 Enabled: <span jscontent="enable_http2"></span></li>
4 <!-- "enable_spdy31" was removed at https://crrev.com/2115213002 in release 54.
5 It is here to support netlog json files from earlier browsers.
6 TODO(bnc): Remove around 2016 December. -->
7 <li>SPDY/3.1 Enabled: <span jscontent="enable_spdy31"></span></li>
8 <!-- "use_alternative_services" was removed at https://crrev.com/2011983002
9 in release 53. It is here to support netlog json files from earlier br owsers.
10 TODO(bnc): Remove around 2016 December. -->
11 <li>Use Alternative Service: <span jscontent="use_alternative_services"></sp an></li>
12 <li>ALPN Protocols: <span jscontent="alpn_protos"></span></li> 4 <li>ALPN Protocols: <span jscontent="alpn_protos"></span></li>
13 <!-- "npn_protos" was removed at https://crrev.com/2111243004 in release 54.
14 It is here to support netlog json files from earlier browsers.
15 TODO(bnc): Remove around 2016 December. -->
16 <li>NPN Protocols: <span jscontent="npn_protos"></span></li>
17 </ul> 5 </ul>
18 6
19 <h4>HTTP/2 sessions</h4> 7 <h4>HTTP/2 sessions</h4>
20 <div id=spdy-view-session-info> 8 <div id=spdy-view-session-info>
21 <!-- Only one of these two are shown --> 9 <!-- Only one of these two are shown -->
22 <div jsdisplay="spdySessionInfo.length == 0">None</div> 10 <div jsdisplay="spdySessionInfo.length == 0">None</div>
23 <div jsdisplay="spdySessionInfo.length != 0"> 11 <div jsdisplay="spdySessionInfo.length != 0">
24 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a> 12 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a>
25 <p> 13 <p>
26 <table class="styled-table"> 14 <table class="styled-table">
(...skipping 20 matching lines...) Expand all
47 <th>Error</th> 35 <th>Error</th>
48 </tr> 36 </tr>
49 </thead> 37 </thead>
50 <tbody> 38 <tbody>
51 <tr jsselect="spdySessionInfo"> 39 <tr jsselect="spdySessionInfo">
52 <td><span jscontent="host_port_pair"></span> 40 <td><span jscontent="host_port_pair"></span>
53 <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''">< /span> 41 <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''">< /span>
54 </td> 42 </td>
55 <td jscontent="proxy"></td> 43 <td jscontent="proxy"></td>
56 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="so urce_id"></a></td> 44 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="so urce_id"></a></td>
57 <!-- "protocol_negotiated" was renamed "negotiated_protocol" in re lease 54 45 <td jscontent="negotiated_protocol"></td>
58 at https://crrev.com/2229693003.
59 TODO(bnc): Remove support for netlog json files from earlier browsers around 2016 December. -->
60 <td jscontent="$this.negotiated_protocol == undefined ? $this.prot ocol_negotiated : $this.negotiated_protocol"></td>
61 <td jscontent="active_streams"></td> 46 <td jscontent="active_streams"></td>
62 <td jscontent="unclaimed_pushed_streams"></td> 47 <td jscontent="unclaimed_pushed_streams"></td>
63 <td jscontent="max_concurrent_streams"></td> 48 <td jscontent="max_concurrent_streams"></td>
64 <td jscontent="streams_initiated_count"></td> 49 <td jscontent="streams_initiated_count"></td>
65 <td jscontent="streams_pushed_count"></td> 50 <td jscontent="streams_pushed_count"></td>
66 <td jscontent="streams_pushed_and_claimed_count"></td> 51 <td jscontent="streams_pushed_and_claimed_count"></td>
67 <td jscontent="streams_abandoned_count"></td> 52 <td jscontent="streams_abandoned_count"></td>
68 <td jscontent="frames_received"></td> 53 <td jscontent="frames_received"></td>
69 <td jscontent="is_secure"></td> 54 <td jscontent="is_secure"></td>
70 <td jscontent="sent_settings"></td> 55 <td jscontent="sent_settings"></td>
71 <td jscontent="received_settings"></td> 56 <td jscontent="received_settings"></td>
72 <td jscontent="send_window_size"></td> 57 <td jscontent="send_window_size"></td>
73 <td jscontent="recv_window_size"></td> 58 <td jscontent="recv_window_size"></td>
74 <td jscontent="unacked_recv_window_bytes"></td> 59 <td jscontent="unacked_recv_window_bytes"></td>
75 <td jscontent="error"></td> 60 <td jscontent="error"></td>
76 </tr> 61 </tr>
77 </tbody> 62 </tbody>
78 </table> 63 </table>
79 </p> 64 </p>
80 </div> 65 </div>
81 </div> 66 </div>
82 </div> 67 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698