OLD | NEW |
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="spdy_enabled"></span></li> | 3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li> |
4 <!-- "use_alternative_service" is used here since release 46, see | 4 <!-- "use_alternative_service" is used here since release 46, see |
5 https://crrev.com/1268313004. "use_alternate_protocols" is here to | 5 https://crrev.com/1268313004. "use_alternate_protocols" is here to |
6 support importing netlog json files from earlier browsers. | 6 support importing netlog json files from earlier browsers. |
7 TODO(bnc): Deprecate around 2016 February. --> | 7 TODO(bnc): Deprecate around 2016 February. --> |
8 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services
== undefined ? $this.use_alternate_protocols : $this.use_alternative_services">
</span></li> | 8 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services
== undefined ? $this.use_alternate_protocols : $this.use_alternative_services">
</span></li> |
9 <li>Next Protocols: <span jscontent="next_protos"></span></li> | 9 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see |
| 10 https://crrev.com/1387363004. "next_protos" is here to support |
| 11 importing netlog json files from earlier browsers. |
| 12 TODO(bnc): Deprecate around 2016 April. --> |
| 13 <li>ALPN Protocols: <span jscontent="$this.alpn_protos || $this.next_protos"
></span></li> |
| 14 <li>NPN Protocols: <span jscontent="$this.npn_protos || $this.next_protos"><
/span></li> |
10 </ul> | 15 </ul> |
11 | 16 |
12 <h4>HTTP/2 sessions</h4> | 17 <h4>HTTP/2 sessions</h4> |
13 <div id=spdy-view-session-info> | 18 <div id=spdy-view-session-info> |
14 <!-- Only one of these two are shown --> | 19 <!-- Only one of these two are shown --> |
15 <div jsdisplay="spdySessionInfo.length == 0">None</div> | 20 <div jsdisplay="spdySessionInfo.length == 0">None</div> |
16 <div jsdisplay="spdySessionInfo.length != 0"> | 21 <div jsdisplay="spdySessionInfo.length != 0"> |
17 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio
ns</a> | 22 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio
ns</a> |
18 <p> | 23 <p> |
19 <table class="styled-table"> | 24 <table class="styled-table"> |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 https://crrev.com/1043973002. "alternate_protocol" is here | 93 https://crrev.com/1043973002. "alternate_protocol" is here |
89 to support importing netlog json files from earlier browsers. | 94 to support importing netlog json files from earlier browsers. |
90 TODO(bnc): Deprecate around 2015 October. --> | 95 TODO(bnc): Deprecate around 2015 October. --> |
91 <td jscontent="$this.alternative_service || $this.alternate_protocol
"></td> | 96 <td jscontent="$this.alternative_service || $this.alternate_protocol
"></td> |
92 </tr> | 97 </tr> |
93 </tbody> | 98 </tbody> |
94 </table> | 99 </table> |
95 </div> | 100 </div> |
96 </div> | 101 </div> |
97 </div> | 102 </div> |
OLD | NEW |