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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/Linkifier.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/Linkifier.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
index a49b44c6be8aa5b4db64a3d5be6520c270c3d990..f1374c919515839a8d737a93022150237441b1e9 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
@@ -206,8 +206,8 @@ WebInspector.Linkifier.prototype = {
var debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
var script = debuggerModel && debuggerModel.scriptForId(callFrame.scriptId);
var blackboxed = script ?
- WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) :
- WebInspector.BlackboxSupport.isBlackboxedURL(callFrame.url);
+ WebInspector.blackboxManager.isBlackboxedScript(script) :
dgozman 2016/02/09 23:44:51 Same as before.
kozy 2016/02/10 01:19:41 Done.
+ WebInspector.blackboxManager.isBlackboxedURL(callFrame.url);
if (blackboxed)
anchor.classList.add("webkit-html-blackbox-link");

Powered by Google App Engine
This is Rietveld 408576698