| 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 23ddc267dc0ee6b31e672d6672fd22cbd3c41669..e64e267f84dfb962d6c36d8809b8be0501b8c3a3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| @@ -425,11 +425,11 @@ WebInspector.CallStackSidebarPane.CallFrame = function(callFrame, asyncCallFrame
|
|
|
| WebInspector.CallStackSidebarPane.CallFrame.prototype = {
|
| /**
|
| - * @param {!WebInspector.UILocation} uiLocation
|
| + * @param {!WebInspector.LiveLocation} liveLocation
|
| */
|
| - _update: function(uiLocation)
|
| + _update: function(liveLocation)
|
| {
|
| - var text = uiLocation.linkText();
|
| + var text = liveLocation.uiLocation.linkText();
|
| this.setSubtitle(text.trimMiddle(30));
|
| this.subtitleElement.title = text;
|
| },
|
|
|