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

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

Issue 15896025: Change --origin-port-to-force-quic-on to --origin-to-force-quic-on. (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 | « chrome/browser/io_thread.cc ('k') | chrome/common/chrome_switches.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=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>Origin Port To Force QUIC On: <span jscontent="origin_port_to_force_quic _on"></span></li> 4 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa n></li>
5 </ul> 5 </ul>
6 6
7 <h4>QUIC sessions</h4> 7 <h4>QUIC sessions</h4>
8 <!-- Only one of these two are shown --> 8 <!-- Only one of these two are shown -->
9 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 9 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
10 <div jsdisplay="$this.sessions && sessions.length > 0"> 10 <div jsdisplay="$this.sessions && sessions.length > 0">
11 <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>
12 <p> 12 <p>
13 <table class="styled-table"> 13 <table class="styled-table">
14 <thead> 14 <thead>
(...skipping 13 matching lines...) Expand all
28 <td jscontent="peer_address"></td> 28 <td jscontent="peer_address"></td>
29 <td jscontent="guid"></td> 29 <td jscontent="guid"></td>
30 <td jscontent="open_streams"></td> 30 <td jscontent="open_streams"></td>
31 <td jscontent="total_streams"></td> 31 <td jscontent="total_streams"></td>
32 </tr> 32 </tr>
33 </tbody> 33 </tbody>
34 </table> 34 </table>
35 </p> 35 </p>
36 </div> 36 </div>
37 </div> 37 </div>
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698