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

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

Issue 1525016: Make it possible to switch between views of the new net-internals page by usi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix long lines Created 10 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/detailsview.js
===================================================================
--- chrome/browser/resources/net_internals/detailsview.js (revision 43897)
+++ chrome/browser/resources/net_internals/detailsview.js (working copy)
@@ -19,8 +19,8 @@
this.logView_ = new DetailsLogView(logBoxId);
this.timelineView_ = new DetailsTimelineView(timelineBoxId);
- this.addTab(logTabId, this.logView_);
- this.addTab(timelineTabId, this.timelineView_);
+ this.addTab(logTabId, this.logView_, true);
+ this.addTab(timelineTabId, this.timelineView_, true);
// Default to the log view.
this.switchToTab(logTabId);
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698