Chromium Code Reviews| 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..90a91de42d4c3a2a724bc0200d77a483bb7f11f5 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,8 @@ 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(); |
|
lushnikov
2016/10/07 22:28:29
this should go to the outside
luoe
2016/10/07 23:18:58
Removed, after checking that it wasn't used.
|
| - WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool); |
| - } |
| + this._liveLocationPool = new WebInspector.LiveLocationPool(); |
| + WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool); |
| } |
| WebInspector.CallStackSidebarPane.CallFrame.prototype = { |