 Chromium Code Reviews
 Chromium Code Reviews Issue 1699183003:
  [DevTools] Don't load sourcemap for blackboxed scripts  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@add-source-map-support-v3
    
  
    Issue 1699183003:
  [DevTools] Don't load sourcemap for blackboxed scripts  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@add-source-map-support-v3| Index: third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| index 807058537d6a04d18bb3d6b83a7f9f64a5c22d0b..c1e4d608023e39c1d7bcd8e71157191ea1223dbc 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js | 
| @@ -243,6 +243,17 @@ WebInspector.DebuggerWorkspaceBinding.prototype = { | 
| }, | 
| /** | 
| + * @param {!WebInspector.Script} script | 
| + */ | 
| + loadSourceMap: function(script) | 
| 
dgozman
2016/02/18 02:37:41
maybeLoadSourceMap
 
kozy
2016/02/19 02:24:50
Done.
 | 
| + { | 
| + var targetData = this._targetToData.get(script.target()); | 
| + if (!targetData) | 
| + return; | 
| + targetData._compilerMapping.loadSourceMap(script); | 
| + }, | 
| + | 
| + /** | 
| * @param {!WebInspector.Event} event | 
| */ | 
| _globalObjectCleared: function(event) |