| Index: Source/core/inspector/InjectedScriptExterns.js
|
| diff --git a/Source/core/inspector/InjectedScriptExterns.js b/Source/core/inspector/InjectedScriptExterns.js
|
| index 81ac85c3769be278a77478f8ce098d5ba98d710f..cdae0c791851367e154ccfef0f26ea99d521165b 100644
|
| --- a/Source/core/inspector/InjectedScriptExterns.js
|
| +++ b/Source/core/inspector/InjectedScriptExterns.js
|
| @@ -39,11 +39,17 @@ InjectedScriptHostClass.prototype.getInternalProperties = function(object) { }
|
| */
|
| InjectedScriptHostClass.prototype.functionDetails = function(func) { }
|
| /**
|
| - * @param {!Object} receiver
|
| * @param {!Function} func
|
| - * @param {...*} args
|
| + * @param {*} receiver
|
| + * @param {!Array.<*>=} args
|
| */
|
| -InjectedScriptHostClass.prototype.suppressWarningsAndCall = function(receiver, func, args) { }
|
| +InjectedScriptHostClass.prototype.callFunction = function(func, receiver, args) { }
|
| +/**
|
| + * @param {!Function} func
|
| + * @param {*} receiver
|
| + * @param {!Array.<*>=} args
|
| + */
|
| +InjectedScriptHostClass.prototype.suppressWarningsAndCallFunction = function(func, receiver, args) { }
|
| /**
|
| * @param {*} object
|
| */
|
|
|