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

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

Issue 2151643003: Update spdy_view.html. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « 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 <!-- "enable_http2" and "enable_spdy31" are used since release 50, see 3 <li>HTTP/2 Enabled: <span jscontent="enable_http2"></span></li>
4 https://crrev.com/1651123002. "spdy_enabled" is here to support 4 <!-- "enable_spdy31" was removed at https://crrev.com/2115213002 in release 54.
5 importing netlog json files from earlier browsers. 5 It is here to support netlog json files from earlier browsers.
6 TODO(bnc): Deprecate around 2016 July. --> 6 TODO(bnc): Remove around 2016 December. -->
7 <li>HTTP/2 Enabled: <span jscontent="$this.enable_http2 == undefined ? $this .spdy_enabled : $this.enable_http2"></span></li> 7 <li>SPDY/3.1 Enabled: <span jscontent="enable_spdy31"></span></li>
8 <li>SPDY/3.1 Enabled: <span jscontent="$this.enable_spdy31 == undefined ? $t his.spdy_enabled : $this.enable_spdy31"></span></li> 8 <!-- "use_alternative_services" was removed at https://crrev.com/2011983002
9 <!-- "use_alternative_service" is used here since release 46, see 9 in release 53. It is here to support netlog json files from earlier br owsers.
10 https://crrev.com/1268313004. "use_alternate_protocols" is here to 10 TODO(bnc): Remove around 2016 December. -->
11 support importing netlog json files from earlier browsers. 11 <li>Use Alternative Service: <span jscontent="use_alternative_services"></sp an></li>
12 TODO(bnc): Deprecate around 2016 February. --> 12 <li>ALPN Protocols: <span jscontent="alpn_protos"></span></li>
13 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services == undefined ? $this.use_alternate_protocols : $this.use_alternative_services"> </span></li> 13 <!-- "npn_protos" was removed at https://crrev.com/2111243004 in release 54.
14 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see 14 It is here to support netlog json files from earlier browsers.
15 https://crrev.com/1387363004. "next_protos" is here to support 15 TODO(bnc): Remove around 2016 December. -->
16 importing netlog json files from earlier browsers. 16 <li>NPN Protocols: <span jscontent="npn_protos"></span></li>
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> 17 </ul>
21 18
22 <h4>HTTP/2 sessions</h4> 19 <h4>HTTP/2 sessions</h4>
23 <div id=spdy-view-session-info> 20 <div id=spdy-view-session-info>
24 <!-- Only one of these two are shown --> 21 <!-- Only one of these two are shown -->
25 <div jsdisplay="spdySessionInfo.length == 0">None</div> 22 <div jsdisplay="spdySessionInfo.length == 0">None</div>
26 <div jsdisplay="spdySessionInfo.length != 0"> 23 <div jsdisplay="spdySessionInfo.length != 0">
27 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a> 24 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a>
28 <p> 25 <p>
29 <table class="styled-table"> 26 <table class="styled-table">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 <td jscontent="recv_window_size"></td> 70 <td jscontent="recv_window_size"></td>
74 <td jscontent="unacked_recv_window_bytes"></td> 71 <td jscontent="unacked_recv_window_bytes"></td>
75 <td jscontent="error"></td> 72 <td jscontent="error"></td>
76 </tr> 73 </tr>
77 </tbody> 74 </tbody>
78 </table> 75 </table>
79 </p> 76 </p>
80 </div> 77 </div>
81 </div> 78 </div>
82 </div> 79 </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