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

Unified Diff: Source/devtools/front_end/sdk/UISourceCode.js

Issue 373743003: DevTools: Add support for adding source map to a script from the DevTools window. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/devtools/front_end/sdk/UISourceCode.js
diff --git a/Source/devtools/front_end/sdk/UISourceCode.js b/Source/devtools/front_end/sdk/UISourceCode.js
index a8e7ca5f84001033fa86195c10f479e0546ce6ae..7c2c50d7e605c5db92179a77dbd66e2b5d59d197 100644
--- a/Source/devtools/front_end/sdk/UISourceCode.js
+++ b/Source/devtools/front_end/sdk/UISourceCode.js
@@ -59,7 +59,7 @@ WebInspector.UISourceCode = function(project, parentPath, name, originURL, url,
this._sourceMappingForTarget = new Map();
/**
- * @type {!Map.<!WebInspector.Target, !WebInspector.ScriptFile>}
+ * @type {!Map.<!WebInspector.Target, !WebInspector.ResourceScriptFile>}
*/
this._scriptFileForTarget = new Map();
@@ -224,7 +224,7 @@ WebInspector.UISourceCode.prototype = {
/**
* @param {!WebInspector.Target} target
- * @return {?WebInspector.ScriptFile}
+ * @return {?WebInspector.ResourceScriptFile}
*/
scriptFileForTarget: function(target)
{
@@ -233,7 +233,7 @@ WebInspector.UISourceCode.prototype = {
/**
* @param {!WebInspector.Target} target
- * @param {?WebInspector.ScriptFile} scriptFile
+ * @param {?WebInspector.ResourceScriptFile} scriptFile
*/
setScriptFileForTarget: function(target, scriptFile)
{

Powered by Google App Engine
This is Rietveld 408576698