| 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..22559c29beca00274c759c4ed7e8f0f0e2dd296e 100644
|
| --- a/chrome/browser/resources/net_internals/http_pipeline_view.js
|
| +++ b/chrome/browser/resources/net_internals/http_pipeline_view.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -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);
|
|
|