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

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

Issue 2389333002: DevTools: update styles for debugger's CallStackSidebarPane (Closed)
Patch Set: reset result after reorder, address comments Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
index 3b6b525f7e1b1c0a406c92c5cf409a005432ece1..862c4542a04b70a383e1e69647380ed7e0cf65f5 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
@@ -469,15 +469,7 @@ WebInspector.CallStackSidebarPane.CallFrame = function(functionName, location, l
this._location = location;
this._debuggerCallFrame = debuggerCallFrame;
this._asyncCallFrame = asyncCallFrame;
-
- if (asyncCallFrame) {
- var script = location.script();
- var locationElement = linkifier.linkifyRawLocation(location, script ? script.sourceURL : "");
- this.subtitleElement.appendChild(locationElement);
- } else {
- this._liveLocationPool = new WebInspector.LiveLocationPool();
- WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool);
- }
+ WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool);
}
WebInspector.CallStackSidebarPane.CallFrame.prototype = {

Powered by Google App Engine
This is Rietveld 408576698