| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| index 146004b82271736f4c9f1c83798acefb6c0d2af1..7724f0402bff1fd0aabe53ad1f719cdd45795b78 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| @@ -646,28 +646,6 @@ InjectedScript.prototype = {
|
| },
|
|
|
| /**
|
| - * @param {string} expression
|
| - * @param {string} objectGroup
|
| - * @param {boolean} injectCommandLineAPI
|
| - * @param {boolean} returnByValue
|
| - * @param {boolean} generatePreview
|
| - * @return {*}
|
| - */
|
| - evaluate: function(expression, objectGroup, injectCommandLineAPI, returnByValue, generatePreview)
|
| - {
|
| - var scopeExtensionForEval = injectCommandLineAPI ? new CommandLineAPI(this._commandLineAPIImpl) : undefined;
|
| - var wrappedResult = InjectedScriptHost.evaluateWithExceptionDetails(expression, scopeExtensionForEval);
|
| - if (objectGroup === "console" && !wrappedResult.exceptionDetails)
|
| - this._lastResult = wrappedResult.result;
|
| - if (!wrappedResult.exceptionDetails) {
|
| - return { wasThrown: false,
|
| - result: this._wrapObject(wrappedResult.result, objectGroup, returnByValue, generatePreview),
|
| - __proto__: null };
|
| - }
|
| - return this._createThrownValue(wrappedResult.result, objectGroup, generatePreview, wrappedResult.exceptionDetails);
|
| - },
|
| -
|
| - /**
|
| * @param {string} objectId
|
| * @param {string} expression
|
| * @param {string} args
|
|
|