 Chromium Code Reviews
 Chromium Code Reviews Issue 1663723002:
  [DevTools] Add sourceMap support for blackboxing  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@call-set-blackboxed-ranges-on-script-parsed
    
  
    Issue 1663723002:
  [DevTools] Add sourceMap support for blackboxing  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@call-set-blackboxed-ranges-on-script-parsed| Index: third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js b/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js | 
| index b40b21f3a08c5847eda797119631b9978e108cad..aa3c06bf6a5cad1018eb70aaffd30756676592c0 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js | 
| @@ -25,8 +25,8 @@ WebInspector.DebuggerPresentationUtils.callFrameAnchorFromStackTrace = function( | 
| for (var i = 0; i < callFrames.length; ++i) { | 
| var script = debuggerModel && debuggerModel.scriptForId(callFrames[i].scriptId); | 
| var blackboxed = script ? | 
| - WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) : | 
| - WebInspector.BlackboxSupport.isBlackboxedURL(callFrames[i].url); | 
| + WebInspector.blackboxManager.isBlackboxedScript(script) : | 
| 
dgozman
2016/02/09 23:44:51
Since script may be partially blackboxed, you have
 
kozy
2016/02/10 01:19:41
Done.
 | 
| + WebInspector.blackboxManager.isBlackboxedURL(callFrames[i].url); | 
| if (!blackboxed) | 
| return callFrames[i]; | 
| } |