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

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

Issue 2715783002: [DevTools] Fix 'node targets available' not appearing, but listed in Remote Devices drawer tab. (Closed)
Patch Set: Created 3 years, 10 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 | « third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/sources/ThreadsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/ThreadsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/ThreadsSidebarPane.js
index e97e00e443b5c452a1d71767543637dadf672ec3..897bbbfe2424cbd228b0e8e514229b2f6bd568d4 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/ThreadsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/ThreadsSidebarPane.js
@@ -10,12 +10,12 @@ Sources.ThreadsSidebarPane = class extends UI.VBox {
super(true);
this.registerRequiredCSS('sources/threadsSidebarPane.css');
- this._availableNodeTargetsElement = this.element.createChild('div', 'hidden available-node-targets');
-
/** @type {!UI.ListControl<!SDK.DebuggerModel>} */
this._list = new UI.ListControl(this, UI.ListMode.NonViewport);
this.contentElement.appendChild(this._list.element);
+ this._availableNodeTargetsElement = this.contentElement.createChild('div', 'hidden available-node-targets');
+
UI.context.addFlavorChangeListener(SDK.Target, this._targetFlavorChanged, this);
SDK.targetManager.addModelListener(
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698