summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/detailsview.js
diff options
context:
space:
mode:
authormmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-11 21:55:11 +0000
committermmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-11 21:55:11 +0000
commitc5afccb09e2b865b20803d44e9fb1b7cb39ca123 (patch)
tree10bfd7813c4592ecd0844ac0a0447b0851a26ed9 /chrome/browser/resources/net_internals/detailsview.js
parenta0057be84fa71801a949079147edb9dd8cdfb5da (diff)
downloadchromium_src-c5afccb09e2b865b20803d44e9fb1b7cb39ca123.zip
chromium_src-c5afccb09e2b865b20803d44e9fb1b7cb39ca123.tar.gz
chromium_src-c5afccb09e2b865b20803d44e9fb1b7cb39ca123.tar.bz2
Use JSON for net-internals log dumps and make them loadable.
BUG=87320 TEST=manual Review URL: http://codereview.chromium.org/7215037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92061 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/net_internals/detailsview.js')
-rw-r--r--chrome/browser/resources/net_internals/detailsview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/resources/net_internals/detailsview.js b/chrome/browser/resources/net_internals/detailsview.js
index e3543d4..a68a6b1 100644
--- a/chrome/browser/resources/net_internals/detailsview.js
+++ b/chrome/browser/resources/net_internals/detailsview.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -19,8 +19,8 @@ function DetailsView(tabHandlesContainerId,
this.logView_ = new DetailsLogView(logBoxId);
this.timelineView_ = new DetailsTimelineView(timelineBoxId);
- this.addTab(logTabId, this.logView_, true);
- this.addTab(timelineTabId, this.timelineView_, true);
+ this.addTab(logTabId, this.logView_, true, true);
+ this.addTab(timelineTabId, this.timelineView_, true, true);
// Default to the log view.
this.switchToTab(logTabId, null);