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

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

Issue 190063008: Include the scheme in the key for QUIC the session map. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net-internals 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 | « no previous file | net/quic/quic_client_session.cc » ('j') | net/quic/quic_stream_factory_test.cc » ('J')
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>Persist Server Config Information Enabled: <span jscontent="!!enable_qui c_persist_server_info"></span></li>
8 <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>
9 </ul> 9 </ul>
10 10
11 <h4>QUIC sessions</h4> 11 <h4>QUIC sessions</h4>
12 <!-- Only one of these two are shown --> 12 <!-- Only one of these two are shown -->
13 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 13 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
14 <div jsdisplay="$this.sessions && sessions.length > 0"> 14 <div jsdisplay="$this.sessions && sessions.length > 0">
15 <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>
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>Secure</th>
21 <th>Version</th> 22 <th>Version</th>
22 <th>Peer address</th> 23 <th>Peer address</th>
23 <th>GUID</th> 24 <th>GUID</th>
24 <th>Active streams</th> 25 <th>Active streams</th>
25 <th>Total streams</th> 26 <th>Total streams</th>
26 <th>Connected</th> 27 <th>Connected</th>
27 </tr> 28 </tr>
28 </thead> 29 </thead>
29 <tbody> 30 <tbody>
30 <tr jsselect="sessions"> 31 <tr jsselect="sessions">
31 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td> 32 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td>
33 <td jscontent="!!secure"></td>
32 <td jscontent="version"></td> 34 <td jscontent="version"></td>
33 <td jscontent="peer_address"></td> 35 <td jscontent="peer_address"></td>
34 <td jscontent="guid"></td> 36 <td jscontent="guid"></td>
35 <td jscontent="open_streams"></td> 37 <td jscontent="open_streams"></td>
36 <td jscontent="total_streams"></td> 38 <td jscontent="total_streams"></td>
37 <td jscontent="connected"></td> 39 <td jscontent="connected"></td>
38 </tr> 40 </tr>
39 </tbody> 41 </tbody>
40 </table> 42 </table>
41 </p> 43 </p>
42 </div> 44 </div>
43 </div> 45 </div>
OLDNEW
« no previous file with comments | « no previous file | net/quic/quic_client_session.cc » ('j') | net/quic/quic_stream_factory_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698