| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 3cb238abf44b3e4c07ddc624556d79e9dc18b434..4127d0ab23f63bd28b791f19dfd6ee63ca5b0a43 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -1040,7 +1040,7 @@ WebInspector.SourcesPanel.prototype = {
|
| */
|
| _showFunctionDefinition: function(remoteObject)
|
| {
|
| - remoteObject.debuggerModel().functionDetails(remoteObject, this._didGetFunctionDetails.bind(this));
|
| + remoteObject.debuggerModel().functionDetailsPromise(remoteObject).then(this._didGetFunctionDetails.bind(this));
|
| },
|
|
|
| /**
|
|
|