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

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

Issue 16082003: Remove obsolete "Use SPDY over QUIC" settings from chrome://net-internals/#quic (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« 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=quic-view-tab-content class=content-box> 1 <div id=quic-view-tab-content class=content-box>
2 <ul style='margin-top:0'> 2 <ul style='margin-top:0'>
3 <li>QUIC Enabled: <span jscontent="!!quic_enabled"></span></li> 3 <li>QUIC Enabled: <span jscontent="!!quic_enabled"></span></li>
4 <li>Use SPDY over QUIC: <span jscontent="!!$this.use_spdy_over_quic"></span> </li>
5 <li>Origin Port To Force QUIC On: <span jscontent="origin_port_to_force_quic _on"></span></li> 4 <li>Origin Port To Force QUIC On: <span jscontent="origin_port_to_force_quic _on"></span></li>
6 </ul> 5 </ul>
7 6
8 <h4>QUIC sessions</h4> 7 <h4>QUIC sessions</h4>
9 <!-- Only one of these two are shown --> 8 <!-- Only one of these two are shown -->
10 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 9 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
11 <div jsdisplay="$this.sessions && sessions.length > 0"> 10 <div jsdisplay="$this.sessions && sessions.length > 0">
12 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> 11 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a>
13 <p> 12 <p>
14 <table class="styled-table"> 13 <table class="styled-table">
(...skipping 14 matching lines...) Expand all
29 <td jscontent="peer_address"></td> 28 <td jscontent="peer_address"></td>
30 <td jscontent="guid"></td> 29 <td jscontent="guid"></td>
31 <td jscontent="open_streams"></td> 30 <td jscontent="open_streams"></td>
32 <td jscontent="total_streams"></td> 31 <td jscontent="total_streams"></td>
33 </tr> 32 </tr>
34 </tbody> 33 </tbody>
35 </table> 34 </table>
36 </p> 35 </p>
37 </div> 36 </div>
38 </div> 37 </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