| 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)
|
| {
|
|
|