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

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

Issue 2546533003: Respect QuicAllowed policy for new streams (Closed)
Patch Set: Fixed accesses to iothread globals from UI thread Created 4 years 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
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>QUIC Enabled for new streams: <span jscontent="!!quic_enabled_for_new_st reams"></span></li>
4 <li>Origins To Force QUIC On: <span jscontent="origins_to_force_quic_on"></s pan></li> 5 <li>Origins To Force QUIC On: <span jscontent="origins_to_force_quic_on"></s pan></li>
5 <li>Connection options: <span jscontent="connection_options"></span></li> 6 <li>Connection options: <span jscontent="connection_options"></span></li>
6 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li> 7 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li>
7 <li>Load Server Info Timeout Multiplier: <span jscontent="$this.load_server_ info_timeout_srtt_multiplier"></span></li> 8 <li>Load Server Info Timeout Multiplier: <span jscontent="$this.load_server_ info_timeout_srtt_multiplier"></span></li>
8 <li>Enable Connection Racing: <span jscontent="!!enable_connection_racing">< /span></li> 9 <li>Enable Connection Racing: <span jscontent="!!enable_connection_racing">< /span></li>
9 <li>Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span></li> 10 <li>Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span></li>
10 <li>Prefer AES: <span jscontent="!!prefer_aes"></span></li> 11 <li>Prefer AES: <span jscontent="!!prefer_aes"></span></li>
11 <li>Maximum Number Of Lossy Connections: <span jscontent="$this.max_number_o f_lossy_connections"></span></li> 12 <li>Maximum Number Of Lossy Connections: <span jscontent="$this.max_number_o f_lossy_connections"></span></li>
12 <li>Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold"></s pan></li> 13 <li>Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold"></s pan></li>
13 <li>Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li> 14 <li>Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 <td jscontent="packets_sent"></td> 56 <td jscontent="packets_sent"></td>
56 <td jscontent="packets_lost"></td> 57 <td jscontent="packets_lost"></td>
57 <td jscontent="packets_received"></td> 58 <td jscontent="packets_received"></td>
58 <td jscontent="connected"></td> 59 <td jscontent="connected"></td>
59 </tr> 60 </tr>
60 </tbody> 61 </tbody>
61 </table> 62 </table>
62 </p> 63 </p>
63 </div> 64 </div>
64 </div> 65 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698