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

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

Issue 464343002: DevTools: align call stack rendering with the rest of the panels. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 89579c9097021fb3cd57a4c4042458af25d52b03..b731e4efc84b67c7123ffbf884642bc95512200c 100644
--- a/Source/devtools/front_end/sources/ThreadsSidebarPane.js
+++ b/Source/devtools/front_end/sources/ThreadsSidebarPane.js
@@ -29,7 +29,7 @@ WebInspector.ThreadsSidebarPane.prototype = {
*/
targetAdded: function(target)
{
- var placard = new WebInspector.Placard(WebInspector.displayNameForURL(target.name()), "");
+ var placard = new WebInspector.Placard(target.name(), "");
placard.element.addEventListener("click", this._onPlacardClick.bind(this, placard), false);
var currentTarget = WebInspector.context.flavor(WebInspector.Target);
if (currentTarget === target)

Powered by Google App Engine
This is Rietveld 408576698