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

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: Rebaselined 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
« no previous file with comments | « Source/devtools/front_end/sdk/Script.js ('k') | Source/devtools/front_end/sources/AddSourceMapURLDialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9cc00a7260f32c03875b4811e2d1de0f63639142..a2c4e0b4250f2a98faa77defe01e5feb384ec0e4 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)
{
« no previous file with comments | « Source/devtools/front_end/sdk/Script.js ('k') | Source/devtools/front_end/sources/AddSourceMapURLDialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698