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