| 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 843f7eb8e3f821d0563e0dfd86f0e240f02c4917..9a8f771807e438a6c5a7aa048f5c47b71d39a817 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -611,12 +611,12 @@ WebInspector.DebuggerModel.prototype = {
|
| * @param {string} code
|
| * @param {string} objectGroup
|
| * @param {boolean} includeCommandLineAPI
|
| - * @param {boolean} doNotPauseOnExceptionsAndMuteConsole
|
| + * @param {boolean} silent
|
| * @param {boolean} returnByValue
|
| * @param {boolean} generatePreview
|
| * @param {function(?WebInspector.RemoteObject, !RuntimeAgent.ExceptionDetails=)} callback
|
| */
|
| - evaluateOnSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
|
| + evaluateOnSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, silent, returnByValue, generatePreview, callback)
|
| {
|
| /**
|
| * @param {?RuntimeAgent.RemoteObject} result
|
| @@ -631,7 +631,7 @@ WebInspector.DebuggerModel.prototype = {
|
| callback(this.target().runtimeModel.createRemoteObject(result), exceptionDetails);
|
| }
|
|
|
| - this.selectedCallFrame().evaluate(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluate.bind(this));
|
| + this.selectedCallFrame().evaluate(code, objectGroup, includeCommandLineAPI, silent, returnByValue, generatePreview, didEvaluate.bind(this));
|
| },
|
|
|
| /**
|
| @@ -1061,12 +1061,12 @@ WebInspector.DebuggerModel.CallFrame.prototype = {
|
| * @param {string} code
|
| * @param {string} objectGroup
|
| * @param {boolean} includeCommandLineAPI
|
| - * @param {boolean} doNotPauseOnExceptionsAndMuteConsole
|
| + * @param {boolean} silent
|
| * @param {boolean} returnByValue
|
| * @param {boolean} generatePreview
|
| * @param {function(?RuntimeAgent.RemoteObject, !RuntimeAgent.ExceptionDetails=)} callback
|
| */
|
| - evaluate: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
|
| + evaluate: function(code, objectGroup, includeCommandLineAPI, silent, returnByValue, generatePreview, callback)
|
| {
|
| /**
|
| * @param {?Protocol.Error} error
|
| @@ -1082,7 +1082,7 @@ WebInspector.DebuggerModel.CallFrame.prototype = {
|
| }
|
| callback(result, exceptionDetails);
|
| }
|
| - this._debuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluateOnCallFrame);
|
| + this._debuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, silent, returnByValue, generatePreview, didEvaluateOnCallFrame);
|
| },
|
|
|
| /**
|
|
|