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

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

Issue 1387363004: Disable HTTP/2 over NPN (with OpenSSL). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #7. Created 5 years, 2 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 | « chrome/browser/net/preconnect.cc ('k') | net/http/http_network_session.h » ('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 <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
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>
OLDNEW
« no previous file with comments | « chrome/browser/net/preconnect.cc ('k') | net/http/http_network_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698