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

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

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix line endings Created 6 years, 7 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
Index: chrome/browser/resources/net_internals/http_pipeline_view.html
diff --git a/chrome/browser/resources/net_internals/http_pipeline_view.html b/chrome/browser/resources/net_internals/http_pipeline_view.html
deleted file mode 100644
index 80cbbc4a9bf2a7b282ba7b28e4b5cb57f73e9463..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/net_internals/http_pipeline_view.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<div id=http-pipeline-view-tab-content class=content-box>
- <ul style='margin-top:0'>
- <li>HTTP Pipelining Enabled:
- <span id=http-pipeline-view-enabled-span jscontent="pipelining_enabled"></span></li>
- </ul>
-
- <h4>HTTP Pipelined Connections</h4>
- <!-- Only one of these two are shown -->
- <div jsdisplay="pipelined_connection_info.length == 0">None</div>
- <div jsdisplay="pipelined_connection_info.length != 0">
- <a href="#events&q=type:HTTP_PIPELINED_CONNECTION%20is:active">View live HTTP pipelined connections</a>
- <p>
- <table class="styled-table">
- <thead>
- <tr>
- <th>Host</th>
- <th>Forced</th>
- <th>Depth</th>
- <th>Capacity</th>
- <th>Usable</th>
- <th>Active</th>
- <th>ID</th>
- </tr>
- </thead>
- <tbody>
- <tr jsselect="Array.prototype.concat.apply([], pipelined_connection_info)">
- <td jscontent="host"></td>
- <td jscontent="!!$this.forced"></td>
- <td jscontent="depth"></td>
- <td jscontent="capacity"></td>
- <td jscontent="usable"></td>
- <td jscontent="active"></td>
- <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
- </tr>
- </tbody>
- </table>
- </p>
- </div>
-
- <h4>Known Hosts</h4>
- <!-- Only one of these two are shown -->
- <div jsdisplay="pipelined_host_info.length == 0">None</div>
- <div jsdisplay="pipelined_host_info.length != 0">
- <table class="styled-table">
- <thead>
- <tr>
- <th>Host</th>
- <th>Pipelining Capability</th>
- </tr>
- </thead>
- <tbody id=http-pipeline-view-known-hosts-table>
- <tr jsselect="pipelined_host_info">
- <td jscontent="host"></td>
- <td jscontent="capability"></td>
- </tr>
- </tbody>
- </table>
- </div>
-</div>
« no previous file with comments | « chrome/browser/resources/net_internals/browser_bridge.js ('k') | chrome/browser/resources/net_internals/http_pipeline_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698