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

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

Issue 1091283007: Rename methods and members and const variables to alternative service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #4. Created 5 years, 8 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
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>Alternate Protocol Probability Threshold: <span jscontent="alternate_pro tocol_probability_threshold"></span></li> 4 <!-- "alternative_service_probability_threshold" is used since release 44,
5 see https://crrev.com/1091283007.
6 "alternate_protocol_probability_threshold" is here to support importing
7 netlog json files from earlier browsers.
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>
5 <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>
6 <li>QUIC connection options: <span jscontent="connection_options"></span></l i> 11 <li>QUIC connection options: <span jscontent="connection_options"></span></l i>
7 <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>
8 </ul> 13 </ul>
9 14
10 <h4>QUIC sessions</h4> 15 <h4>QUIC sessions</h4>
11 <!-- Only one of these two are shown --> 16 <!-- Only one of these two are shown -->
12 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 17 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
13 <div jsdisplay="$this.sessions && sessions.length > 0"> 18 <div jsdisplay="$this.sessions && sessions.length > 0">
14 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> 19 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a>
(...skipping 28 matching lines...) Expand all
43 <td jscontent="packets_sent"></td> 48 <td jscontent="packets_sent"></td>
44 <td jscontent="packets_lost"></td> 49 <td jscontent="packets_lost"></td>
45 <td jscontent="packets_received"></td> 50 <td jscontent="packets_received"></td>
46 <td jscontent="connected"></td> 51 <td jscontent="connected"></td>
47 </tr> 52 </tr>
48 </tbody> 53 </tbody>
49 </table> 54 </table>
50 </p> 55 </p>
51 </div> 56 </div>
52 </div> 57 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698