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

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

Issue 9433015: Add a force pipelining option to load flags. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix build on other platforms Created 8 years, 10 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.js
diff --git a/chrome/browser/resources/net_internals/http_pipeline_view.js b/chrome/browser/resources/net_internals/http_pipeline_view.js
index 39652bea62b1c1cc0413e9f2cec12048a664262b..fcb5288450432bb6f83c7ad0096d14938ba4d26b 100644
--- a/chrome/browser/resources/net_internals/http_pipeline_view.js
+++ b/chrome/browser/resources/net_internals/http_pipeline_view.js
@@ -121,6 +121,7 @@ var HttpPipelineView = (function() {
function createConnectionTablePrinter(httpPipelinedConnectionInfo) {
var tablePrinter = new TablePrinter();
tablePrinter.addHeaderCell('Host');
+ tablePrinter.addHeaderCell('Forced');
tablePrinter.addHeaderCell('Depth');
tablePrinter.addHeaderCell('Capacity');
tablePrinter.addHeaderCell('Usable');
@@ -134,6 +135,7 @@ var HttpPipelineView = (function() {
tablePrinter.addRow();
tablePrinter.addCell(connection.host);
+ tablePrinter.addCell(connection.forced);
mmenke 2012/02/23 18:54:58 Suggest you do something to avoid displaying 'unde
James Simonsen 2012/02/23 23:49:46 Good point. I hadn't thought about that.
tablePrinter.addCell(connection.depth);
tablePrinter.addCell(connection.capacity);
tablePrinter.addCell(connection.usable);

Powered by Google App Engine
This is Rietveld 408576698