Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 <!-- "alternative_service_probability_threshold" is used since release 44, | 4 <!-- "alternative_service_probability_threshold" is used since release 44, |
| 5 see https://crrev.com/1091283007. | 5 see https://crrev.com/1091283007. |
| 6 "alternate_protocol_probability_threshold" is here to support importing | 6 "alternate_protocol_probability_threshold" is here to support importing |
| 7 netlog json files from earlier browsers. | 7 netlog json files from earlier browsers. |
| 8 TODO(bnc): Deprecate around 2016 January. --!> | 8 TODO(bnc): Deprecate around 2016 January. --!> |
| 9 <li>Alternative Service Probability Threshold: <span jscontent="$this.altern ative_service_probability_threshold || $this.alternate_protocol_probability_thre shold"></span></li> | 9 <li>Alternative Service Probability Threshold: <span jscontent="$this.altern ative_service_probability_threshold || $this.alternate_protocol_probability_thre shold"></span></li> |
| 10 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa n></li> | 10 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa n></li> |
| 11 <li>QUIC connection options: <span jscontent="connection_options"></span></l i> | 11 <li>QUIC connection options: <span jscontent="connection_options"></span></l i> |
| 12 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li> | 12 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li> |
| 13 <li>QUIC Load Server Info Timeout Multiplier: <span jscontent="$this.load_se rver_info_timeout_srtt_multiplier"></span></li> | |
|
Ryan Hamilton
2016/01/10 23:16:59
Since this is #quic, I would remove "QUIC " from a
ramant (doing other things)
2016/01/11 18:05:13
Done.
| |
| 14 <li>QUIC Enable Connection Racing: <span jscontent="!!enable_connection_raci ng"></span></li> | |
| 15 <li>QUIC Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span>< /li> | |
| 16 <li>QUIC Prefer AES: <span jscontent="!!prefer_aes"></span></li> | |
| 17 <li>QUIC Maximum Number Of Lossy Connections: <span jscontent="$this.max_num ber_of_lossy_connections"></span></li> | |
| 18 <li>QUIC Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold "></span></li> | |
| 19 <li>QUIC Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li> | |
| 20 <li>QUIC Store Server Configs In Properties File: <span jscontent="!!store_s erver_configs_in_properties"></span></li> | |
| 21 <li>QUIC Idle Connection Timeout In Seconds: <span jscontent="$this.idle_con nection_timeout_seconds"></span></li> | |
| 22 <li>QUIC Disable PreConnect If 0RTT: <span jscontent="$this.disable_preconne ct_if_0rtt"></span></li> | |
| 13 <li jsdisplay="$this.disabled_reason && disabled_reason.length > 0">QUIC dyn amically disabled: <span jscontent="disabled_reason"></span></li> | 23 <li jsdisplay="$this.disabled_reason && disabled_reason.length > 0">QUIC dyn amically disabled: <span jscontent="disabled_reason"></span></li> |
| 14 </ul> | 24 </ul> |
| 15 | 25 |
| 16 <h4>QUIC sessions</h4> | 26 <h4>QUIC sessions</h4> |
| 17 <!-- Only one of these two are shown --> | 27 <!-- Only one of these two are shown --> |
| 18 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> | 28 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> |
| 19 <div jsdisplay="$this.sessions && sessions.length > 0"> | 29 <div jsdisplay="$this.sessions && sessions.length > 0"> |
| 20 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> | 30 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> |
| 21 <p> | 31 <p> |
| 22 <table class="styled-table"> | 32 <table class="styled-table"> |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 49 <td jscontent="packets_sent"></td> | 59 <td jscontent="packets_sent"></td> |
| 50 <td jscontent="packets_lost"></td> | 60 <td jscontent="packets_lost"></td> |
| 51 <td jscontent="packets_received"></td> | 61 <td jscontent="packets_received"></td> |
| 52 <td jscontent="connected"></td> | 62 <td jscontent="connected"></td> |
| 53 </tr> | 63 </tr> |
| 54 </tbody> | 64 </tbody> |
| 55 </table> | 65 </table> |
| 56 </p> | 66 </p> |
| 57 </div> | 67 </div> |
| 58 </div> | 68 </div> |
| OLD | NEW |