| 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 968ac81dd0e2954570ab0a3faa4e6af838a13b67..4e6f0c8e086f5dcf0b08edb0ffd150b2967eff32 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
|
| @@ -585,14 +585,15 @@ WebInspector.DebuggerModel.prototype = {
|
| * @param {number} endColumn
|
| * @param {boolean} isContentScript
|
| * @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, isContentScript, isInternalScript, sourceMapURL, hasSourceURL, hasSyntaxError)
|
| + _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL, hasSyntaxError)
|
| {
|
| - var script = new WebInspector.Script(this, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, sourceMapURL, hasSourceURL);
|
| + var script = new WebInspector.Script(this, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL);
|
| this._registerScript(script);
|
| if (!hasSyntaxError)
|
| this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.ParsedScriptSource, script);
|
| @@ -1009,12 +1010,13 @@ WebInspector.DebuggerDispatcher.prototype = {
|
| * @param {number} endColumn
|
| * @param {boolean=} isContentScript
|
| * @param {boolean=} isInternalScript
|
| + * @param {boolean=} isLiveEdit
|
| * @param {string=} sourceMapURL
|
| * @param {boolean=} hasSourceURL
|
| */
|
| - scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, sourceMapURL, hasSourceURL)
|
| + scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, isLiveEdit, sourceMapURL, hasSourceURL)
|
| {
|
| - this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, !!isInternalScript, sourceMapURL, hasSourceURL, false);
|
| + this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, !!isInternalScript, !!isLiveEdit, sourceMapURL, hasSourceURL, false);
|
| },
|
|
|
| /**
|
| @@ -1032,7 +1034,7 @@ WebInspector.DebuggerDispatcher.prototype = {
|
| */
|
| scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, isInternalScript, sourceMapURL, hasSourceURL)
|
| {
|
| - this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, !!isInternalScript, sourceMapURL, hasSourceURL, true);
|
| + this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, !!isInternalScript, false, sourceMapURL, hasSourceURL, true);
|
| },
|
|
|
| /**
|
|
|