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

Unified Diff: Source/devtools/front_end/sources/ThreadsSidebarPane.js

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css Created 5 years, 6 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: Source/devtools/front_end/sources/ThreadsSidebarPane.js
diff --git a/Source/devtools/front_end/sources/ThreadsSidebarPane.js b/Source/devtools/front_end/sources/ThreadsSidebarPane.js
index c79a6ddf9d3989b7d0244f6b07700b816c7f3493..c33f1d129463c5e89827d61fbb2a09fabaa4eb66 100644
--- a/Source/devtools/front_end/sources/ThreadsSidebarPane.js
+++ b/Source/devtools/front_end/sources/ThreadsSidebarPane.js
@@ -19,7 +19,7 @@ WebInspector.ThreadsSidebarPane = function()
/** @type {?WebInspector.UIList.Item} */
this._selectedListItem = null;
this.threadList = new WebInspector.UIList();
- this.threadList.show(this.bodyElement);
+ this.threadList.show(this.element);
WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.DebuggerPaused, this._onDebuggerStateChanged, this);
WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.DebuggerResumed, this._onDebuggerStateChanged, this);
WebInspector.context.addFlavorChangeListener(WebInspector.Target, this._targetChanged, this);
« no previous file with comments | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698