| 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 = {
|
|
|