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

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

Issue 1268313004: s/use_alternate_protocols/use_alternative_services/g (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #15. Created 5 years, 4 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') | chromecast/browser/url_request_context_factory.cc » ('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=spdy-view-tab-content class=content-box> 1 <div id=spdy-view-tab-content class=content-box>
2 <ul id=spdy-view-status style='margin-top:0'> 2 <ul id=spdy-view-status style='margin-top:0'>
3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li> 3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li>
4 <li>Use Alternative Service: <span jscontent="use_alternate_protocols"></spa n></li> 4 <!-- "use_alternative_service" is used here since release 46, see
5 https://crrev.com/1268313004. "use_alternate_protocols" is here to
6 support importing netlog json files from earlier browsers.
7 TODO(bnc): Deprecate around 2016 February. -->
8 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services || $this.use_alternate_protocols"></span></li>
5 <li>Next Protocols: <span jscontent="next_protos"></span></li> 9 <li>Next Protocols: <span jscontent="next_protos"></span></li>
6 </ul> 10 </ul>
7 11
8 <h4>HTTP/2 sessions</h4> 12 <h4>HTTP/2 sessions</h4>
9 <div id=spdy-view-session-info> 13 <div id=spdy-view-session-info>
10 <!-- Only one of these two are shown --> 14 <!-- Only one of these two are shown -->
11 <div jsdisplay="spdySessionInfo.length == 0">None</div> 15 <div jsdisplay="spdySessionInfo.length == 0">None</div>
12 <div jsdisplay="spdySessionInfo.length != 0"> 16 <div jsdisplay="spdySessionInfo.length != 0">
13 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a> 17 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio ns</a>
14 <p> 18 <p>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 https://crrev.com/1043973002. "alternate_protocol" is here 88 https://crrev.com/1043973002. "alternate_protocol" is here
85 to support importing netlog json files from earlier browsers. 89 to support importing netlog json files from earlier browsers.
86 TODO(bnc): Deprecate around 2015 October. --> 90 TODO(bnc): Deprecate around 2015 October. -->
87 <td jscontent="$this.alternative_service || $this.alternate_protocol "></td> 91 <td jscontent="$this.alternative_service || $this.alternate_protocol "></td>
88 </tr> 92 </tr>
89 </tbody> 93 </tbody>
90 </table> 94 </table>
91 </div> 95 </div>
92 </div> 96 </div>
93 </div> 97 </div>
OLDNEW
« no previous file with comments | « chrome/browser/io_thread_unittest.cc ('k') | chromecast/browser/url_request_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698