| Index: src/inspector/debugger_script_externs.js
|
| diff --git a/src/inspector/debugger_script_externs.js b/src/inspector/debugger_script_externs.js
|
| index 72b84c133d22087982d2621a9f22fd1c3a87caaa..4fa3a0fbe3599ddaad46192d4dfb090d7f6a5a7a 100644
|
| --- a/src/inspector/debugger_script_externs.js
|
| +++ b/src/inspector/debugger_script_externs.js
|
| @@ -171,10 +171,8 @@ function ExecutionState() {}
|
|
|
| /**
|
| * @param {string} source
|
| - * @param {boolean} disableBreak
|
| - * @param {*=} additionalContext
|
| */
|
| -ExecutionState.prototype.evaluateGlobal = function(source, disableBreak, additionalContext) {}
|
| +ExecutionState.prototype.evaluateGlobal = function(source) {}
|
|
|
| /** @return {number} */
|
| ExecutionState.prototype.frameCount = function() {}
|
| @@ -439,9 +437,8 @@ FrameMirror.prototype.script = function() {}
|
|
|
| /**
|
| * @param {string} source
|
| - * @param {boolean} disableBreak
|
| */
|
| -FrameMirror.prototype.evaluate = function(source, disableBreak) {}
|
| +FrameMirror.prototype.evaluate = function(source) {}
|
|
|
| FrameMirror.prototype.restart = function() {}
|
|
|
|
|