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

Unified Diff: chrome/browser/resources/net_internals/spdy_view.html

Issue 2151643003: Update spdy_view.html. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/spdy_view.html
diff --git a/chrome/browser/resources/net_internals/spdy_view.html b/chrome/browser/resources/net_internals/spdy_view.html
index dd1bc166ef1886cbca614ce6436e73093cbd03aa..3fb82f80fe00bcc4b20dd03e5a59c7fb1948c619 100644
--- a/chrome/browser/resources/net_internals/spdy_view.html
+++ b/chrome/browser/resources/net_internals/spdy_view.html
@@ -1,22 +1,19 @@
<div id=spdy-view-tab-content class=content-box>
<ul id=spdy-view-status style='margin-top:0'>
- <!-- "enable_http2" and "enable_spdy31" are used since release 50, see
- https://crrev.com/1651123002. "spdy_enabled" is here to support
- importing netlog json files from earlier browsers.
- TODO(bnc): Deprecate around 2016 July. -->
- <li>HTTP/2 Enabled: <span jscontent="$this.enable_http2 == undefined ? $this.spdy_enabled : $this.enable_http2"></span></li>
- <li>SPDY/3.1 Enabled: <span jscontent="$this.enable_spdy31 == undefined ? $this.spdy_enabled : $this.enable_spdy31"></span></li>
- <!-- "use_alternative_service" is used here since release 46, see
- https://crrev.com/1268313004. "use_alternate_protocols" is here to
- support importing netlog json files from earlier browsers.
- TODO(bnc): Deprecate around 2016 February. -->
- <li>Use Alternative Service: <span jscontent="$this.use_alternative_services == undefined ? $this.use_alternate_protocols : $this.use_alternative_services"></span></li>
- <!-- "alpn_protos" and "npn_protos" are used here since release 48, see
- https://crrev.com/1387363004. "next_protos" is here to support
- importing netlog json files from earlier browsers.
- TODO(bnc): Deprecate around 2016 April. -->
- <li>ALPN Protocols: <span jscontent="$this.alpn_protos || $this.next_protos"></span></li>
- <li>NPN Protocols: <span jscontent="$this.npn_protos || $this.next_protos"></span></li>
+ <li>HTTP/2 Enabled: <span jscontent="enable_http2"></span></li>
+ <!-- "enable_spdy31" was removed at https://crrev.com/2115213002 in release 54.
+ It is here to support netlog json files from earlier browsers.
+ TODO(bnc): Remove around 2016 December. -->
+ <li>SPDY/3.1 Enabled: <span jscontent="enable_spdy31"></span></li>
+ <!-- "use_alternative_services" was removed at https://crrev.com/2011983002
+ in release 53. It is here to support netlog json files from earlier browsers.
+ TODO(bnc): Remove around 2016 December. -->
+ <li>Use Alternative Service: <span jscontent="use_alternative_services"></span></li>
+ <li>ALPN Protocols: <span jscontent="alpn_protos"></span></li>
+ <!-- "npn_protos" was removed at https://crrev.com/2111243004 in release 54.
+ It is here to support netlog json files from earlier browsers.
+ TODO(bnc): Remove around 2016 December. -->
+ <li>NPN Protocols: <span jscontent="npn_protos"></span></li>
</ul>
<h4>HTTP/2 sessions</h4>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698