Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1049)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/Script.js

Issue 2247483003: [DevTools] Removed isInternalScript flag from protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-internal-script-flag
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()

Powered by Google App Engine
This is Rietveld 408576698