| Index: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| index 73941c34156d89f34bf22d5cc0f04316ec9fccc3..0882d8e502d003b12742e9ee755cdc4887bdda25 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -463,19 +463,18 @@ WebInspector.DebuggerModel.prototype = {
|
| * @param {!RuntimeAgent.ExecutionContextId} executionContextId
|
| * @param {string} hash
|
| * @param {*|undefined} executionContextAuxData
|
| - * @param {boolean} isInternalScript
|
| * @param {boolean} isLiveEdit
|
| * @param {string=} sourceMapURL
|
| * @param {boolean=} hasSourceURL
|
| * @param {boolean=} hasSyntaxError
|
| * @return {!WebInspector.Script}
|
| */
|
| - _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL, hasSyntaxError)
|
| + _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, isLiveEdit, sourceMapURL, hasSourceURL, hasSyntaxError)
|
| {
|
| var isContentScript = false;
|
| if (executionContextAuxData && ("isDefault" in executionContextAuxData))
|
| isContentScript = !executionContextAuxData["isDefault"];
|
| - var script = new WebInspector.Script(this, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, isContentScript, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL);
|
| + var script = new WebInspector.Script(this, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, isContentScript, isLiveEdit, sourceMapURL, hasSourceURL);
|
| this._registerScript(script);
|
| if (!hasSyntaxError)
|
| this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.ParsedScriptSource, script);
|
| @@ -844,14 +843,13 @@ WebInspector.DebuggerDispatcher.prototype = {
|
| * @param {!RuntimeAgent.ExecutionContextId} executionContextId
|
| * @param {string} hash
|
| * @param {*=} executionContextAuxData
|
| - * @param {boolean=} isInternalScript
|
| * @param {boolean=} isLiveEdit
|
| * @param {string=} sourceMapURL
|
| * @param {boolean=} hasSourceURL
|
| */
|
| - scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL)
|
| + scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, isLiveEdit, sourceMapURL, hasSourceURL)
|
| {
|
| - this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, !!isInternalScript, !!isLiveEdit, sourceMapURL, hasSourceURL, false);
|
| + this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, !!isLiveEdit, sourceMapURL, hasSourceURL, false);
|
| },
|
|
|
| /**
|
| @@ -865,13 +863,12 @@ WebInspector.DebuggerDispatcher.prototype = {
|
| * @param {!RuntimeAgent.ExecutionContextId} executionContextId
|
| * @param {string} hash
|
| * @param {*=} executionContextAuxData
|
| - * @param {boolean=} isInternalScript
|
| * @param {string=} sourceMapURL
|
| * @param {boolean=} hasSourceURL
|
| */
|
| - scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, isInternalScript, sourceMapURL, hasSourceURL)
|
| + scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, sourceMapURL, hasSourceURL)
|
| {
|
| - this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, !!isInternalScript, false, sourceMapURL, hasSourceURL, true);
|
| + this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash, executionContextAuxData, false, sourceMapURL, hasSourceURL, true);
|
| },
|
|
|
| /**
|
|
|