| 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 cc4c9d424cda6e972febdbd83e1827952f316662..0cc30d65b74ef9700406c8e0881671926700f95a 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,8 @@ var HttpPipelineView = (function() {
|
| tablePrinter.addRow();
|
|
|
| tablePrinter.addCell(connection.host);
|
| + tablePrinter.addCell(
|
| + connection.forced === undefined ? false : connection.forced);
|
| tablePrinter.addCell(connection.depth);
|
| tablePrinter.addCell(connection.capacity);
|
| tablePrinter.addCell(connection.usable);
|
|
|