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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js

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
Patch Set: Created 4 years, 10 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
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];
}

Powered by Google App Engine
This is Rietveld 408576698