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

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: 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
« no previous file with comments | « chrome/browser/io_thread_unittest.cc ('k') | chrome/common/chrome_switches.h » ('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>Alternate Protocol Probability Threshold: <span jscontent="alternate_pro tocol_probability_threshold"></span></li> 4 <li>Alternative Service Probability Threshold: <span jscontent="alternative_ service_probability_threshold"></span></li>
eroman 2015/04/23 20:04:11 This is going to affect loading of older log files
Bence 2015/04/24 14:24:59 Done.
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>QUIC connection options: <span jscontent="connection_options"></span></l i> 6 <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> 7 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li>
8 </ul> 8 </ul>
9 9
10 <h4>QUIC sessions</h4> 10 <h4>QUIC sessions</h4>
11 <!-- Only one of these two are shown --> 11 <!-- Only one of these two are shown -->
12 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 12 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
13 <div jsdisplay="$this.sessions && sessions.length > 0"> 13 <div jsdisplay="$this.sessions && sessions.length > 0">
14 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> 14 <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> 43 <td jscontent="packets_sent"></td>
44 <td jscontent="packets_lost"></td> 44 <td jscontent="packets_lost"></td>
45 <td jscontent="packets_received"></td> 45 <td jscontent="packets_received"></td>
46 <td jscontent="connected"></td> 46 <td jscontent="connected"></td>
47 </tr> 47 </tr>
48 </tbody> 48 </tbody>
49 </table> 49 </table>
50 </p> 50 </p>
51 </div> 51 </div>
52 </div> 52 </div>
OLDNEW
« no previous file with comments | « chrome/browser/io_thread_unittest.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698