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

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

Issue 934773005: Rename SPDY to HTTP/2 on NetLog tab. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | chrome/browser/resources/net_internals/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
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>SPDY Enabled: <span jscontent="spdy_enabled"></span></li> 3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li>
4 <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span ></li> 4 <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span ></li>
5 <li>Force SPDY Always: <span jscontent="force_spdy_always"></span></li> 5 <li>Force HTTP/2 Always: <span jscontent="force_spdy_always"></span></li>
6 <li>Force SPDY Over SSL: <span jscontent="force_spdy_over_ssl"></span></li> 6 <li>Force HTTP/2 Over SSL: <span jscontent="force_spdy_over_ssl"></span></li >
7 <li>Next Protocols: <span jscontent="next_protos"></span></li> 7 <li>Next Protocols: <span jscontent="next_protos"></span></li>
8 </ul> 8 </ul>
9 9
10 <h4>SPDY sessions</h4> 10 <h4>HTTP/2 sessions</h4>
11 <div id=spdy-view-session-info> 11 <div id=spdy-view-session-info>
12 <!-- Only one of these two are shown --> 12 <!-- Only one of these two are shown -->
13 <div jsdisplay="spdySessionInfo.length == 0">None</div> 13 <div jsdisplay="spdySessionInfo.length == 0">None</div>
14 <div jsdisplay="spdySessionInfo.length != 0"> 14 <div jsdisplay="spdySessionInfo.length != 0">
15 <a href="#events&q=type:SPDY_SESSION%20is:active">View live SPDY sessions< /a> 15 <a href="#events&q=type:SPDY_SESSION%20is:active">View live HTTP/2 session s</a>
16 <p> 16 <p>
17 <table class="styled-table"> 17 <table class="styled-table">
18 <thead> 18 <thead>
19 <tr> 19 <tr>
20 <th>Host</th> 20 <th>Host</th>
21 <th>Proxy</th> 21 <th>Proxy</th>
22 <th>ID</th> 22 <th>ID</th>
23 <th>Protocol Negotiated</th> 23 <th>Protocol Negotiated</th>
24 <th>Active streams</th> 24 <th>Active streams</th>
25 <th>Unclaimed pushed</th> 25 <th>Unclaimed pushed</th>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 <tbody> 82 <tbody>
83 <tr jsselect="spdyAlternateProtocolMappings"> 83 <tr jsselect="spdyAlternateProtocolMappings">
84 <td jscontent="host_port_pair"></td> 84 <td jscontent="host_port_pair"></td>
85 <td jscontent="alternate_protocol"></td> 85 <td jscontent="alternate_protocol"></td>
86 </tr> 86 </tr>
87 </tbody> 87 </tbody>
88 </table> 88 </table>
89 </div> 89 </div>
90 </div> 90 </div>
91 </div> 91 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/spdy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698