| Index: third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| index e30ea6495a46273b4a3f43b5a7ed9527b3289dcb..ea0942516f4e7d43a707cf5ae1e223271b2e7c0d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js
|
| @@ -37,12 +37,11 @@
|
| * @param {!RuntimeAgent.ExecutionContextId} executionContextId
|
| * @param {string} hash
|
| * @param {boolean} isContentScript
|
| - * @param {boolean} isInternalScript
|
| * @param {boolean} isLiveEdit
|
| * @param {string=} sourceMapURL
|
| * @param {boolean=} hasSourceURL
|
| */
|
| -WebInspector.Script = function(debuggerModel, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, isContentScript, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL)
|
| +WebInspector.Script = function(debuggerModel, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, isContentScript, isLiveEdit, sourceMapURL, hasSourceURL)
|
| {
|
| WebInspector.SDKObject.call(this, debuggerModel.target());
|
| this.debuggerModel = debuggerModel;
|
| @@ -55,7 +54,6 @@ WebInspector.Script = function(debuggerModel, scriptId, sourceURL, startLine, st
|
| this._executionContextId = executionContextId;
|
| this.hash = hash;
|
| this._isContentScript = isContentScript;
|
| - this._isInternalScript = isInternalScript;
|
| this._isLiveEdit = isLiveEdit;
|
| this.sourceMapURL = sourceMapURL;
|
| this.hasSourceURL = hasSourceURL;
|
| @@ -125,14 +123,6 @@ WebInspector.Script.prototype = {
|
| },
|
|
|
| /**
|
| - * @return {boolean}
|
| - */
|
| - isInternalScript: function()
|
| - {
|
| - return this._isInternalScript;
|
| - },
|
| -
|
| - /**
|
| * @return {?WebInspector.ExecutionContext}
|
| */
|
| executionContext: function()
|
|
|