| 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 88b82108f2d2c65e9f760baa3eca96ea232b8056..3673b57bbdabec1e0d932aed839e62ad907dfd11 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptSource.js
|
| @@ -419,19 +419,6 @@ InjectedScript.prototype = {
|
| return "{\"injectedScriptId\":" + injectedScriptId + ",\"id\":" + id + "}";
|
| },
|
|
|
| - clearLastEvaluationResult: function()
|
| - {
|
| - delete this._lastResult;
|
| - },
|
| -
|
| - /**
|
| - * @param {*} result
|
| - */
|
| - setLastEvaluationResult: function(result)
|
| - {
|
| - this._lastResult = result;
|
| - },
|
| -
|
| /**
|
| * @param {!Object} object
|
| * @param {string} objectGroupName
|
| @@ -1185,9 +1172,6 @@ function CommandLineAPI(commandLineAPIImpl)
|
| var member = "$" + i;
|
| this[member] = bind(commandLineAPIImpl._inspectedObject, commandLineAPIImpl, i);
|
| }
|
| -
|
| - this.$_ = injectedScript._lastResult;
|
| -
|
| this.__proto__ = null;
|
| }
|
|
|
|
|