| Index: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| index a5e5bb25a9716e15e493a249d5b29f9e76eccf1c..b7968f0ddef3581bbe7f74fe8daadfc1ef594513 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -1091,17 +1091,16 @@ WebInspector.DebuggerModel.CallFrame.prototype = {
|
| /**
|
| * @param {?Protocol.Error} error
|
| * @param {!RuntimeAgent.RemoteObject} result
|
| - * @param {boolean=} wasThrown
|
| - * @param {?RuntimeAgent.ExceptionDetails=} exceptionDetails
|
| + * @param {!RuntimeAgent.ExceptionDetails=} exceptionDetails
|
| */
|
| - function didEvaluateOnCallFrame(error, result, wasThrown, exceptionDetails)
|
| + function didEvaluateOnCallFrame(error, result, exceptionDetails)
|
| {
|
| if (error) {
|
| console.error(error);
|
| callback(null, false);
|
| return;
|
| }
|
| - callback(result, wasThrown, exceptionDetails);
|
| + callback(result, !!exceptionDetails, exceptionDetails);
|
| }
|
| this._debuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluateOnCallFrame);
|
| },
|
|
|