| Index: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
|
| index 6584ca8213350e12216a1ca331fcaa21ef8079c4..e116c9f7670c2fb67f363e424df174b4cc633994 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
|
| @@ -157,6 +157,15 @@ WebInspector.CompilerScriptMapping.prototype = {
|
| },
|
|
|
| /**
|
| + * @param {!WebInspector.Script} script
|
| + * @return {?WebInspector.SourceMap}
|
| + */
|
| + sourceMapForScript: function(script)
|
| + {
|
| + return this._sourceMapForScriptId[script.scriptId];
|
| + },
|
| +
|
| + /**
|
| * @param {!WebInspector.Event} event
|
| */
|
| _sourceMapURLAdded: function(event)
|
| @@ -187,6 +196,8 @@ WebInspector.CompilerScriptMapping.prototype = {
|
| */
|
| _sourceMapLoaded: function(script, uiSourceCodePath, sourceMap)
|
| {
|
| + WebInspector.blackboxManager.sourceMapLoaded(script, sourceMap);
|
| +
|
| this._stubUISourceCodes.delete(script.scriptId);
|
| this._stubProject.removeFile(uiSourceCodePath);
|
|
|
|
|