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

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

Issue 185083002: Avoid persisting of QUIC server config information in Stable and Beta (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed rch's comments from Patch set 1 Created 6 years, 9 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.cc » ('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>HTTPS Over QUIC Enabled: <span jscontent="!!quic_enabled_https"></span>< /li> 4 <li>HTTPS Over QUIC Enabled: <span jscontent="!!quic_enabled_https"></span>< /li>
5 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa n></li> 5 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa n></li>
6 <li>Packet Pacing Enabled: <span jscontent="!!enable_quic_pacing"></span></l i> 6 <li>Packet Pacing Enabled: <span jscontent="!!enable_quic_pacing"></span></l i>
7 <li>Persist Server Config Information Enabled: <span jscontent="!!enable_qui c_persist_server_info"></span></li>
7 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li> 8 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li>
8 </ul> 9 </ul>
9 10
10 <h4>QUIC sessions</h4> 11 <h4>QUIC sessions</h4>
11 <!-- Only one of these two are shown --> 12 <!-- Only one of these two are shown -->
12 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 13 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
13 <div jsdisplay="$this.sessions && sessions.length > 0"> 14 <div jsdisplay="$this.sessions && sessions.length > 0">
14 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> 15 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a>
15 <p> 16 <p>
16 <table class="styled-table"> 17 <table class="styled-table">
(...skipping 16 matching lines...) Expand all
33 <td jscontent="guid"></td> 34 <td jscontent="guid"></td>
34 <td jscontent="open_streams"></td> 35 <td jscontent="open_streams"></td>
35 <td jscontent="total_streams"></td> 36 <td jscontent="total_streams"></td>
36 <td jscontent="connected"></td> 37 <td jscontent="connected"></td>
37 </tr> 38 </tr>
38 </tbody> 39 </tbody>
39 </table> 40 </table>
40 </p> 41 </p>
41 </div> 42 </div>
42 </div> 43 </div>
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/common/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698