| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index 355d5baa239c838430b3db8648545d960b9b2640..4841b8bd2552e87c53e75ba3fa6bc9ab2cdc627d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -150,7 +150,7 @@ WebInspector.JavaScriptSourceFrame.prototype = {
|
| var networkURL = WebInspector.networkMapping.networkURL(this.uiSourceCode());
|
| var url = projectType === WebInspector.projectTypes.Formatter ? this.uiSourceCode().url() : networkURL;
|
| var isContentScript = projectType === WebInspector.projectTypes.ContentScripts;
|
| - if (!WebInspector.BlackboxSupport.isBlackboxed(url, isContentScript)) {
|
| + if (!WebInspector.blackboxManager.isBlackboxedUISourceCode(this.uiSourceCode())) {
|
| this._hideBlackboxInfobar();
|
| return;
|
| }
|
| @@ -172,7 +172,7 @@ WebInspector.JavaScriptSourceFrame.prototype = {
|
|
|
| function unblackbox()
|
| {
|
| - WebInspector.BlackboxSupport.unblackbox(url, isContentScript);
|
| + WebInspector.blackboxManager.unblackbox(url, isContentScript);
|
| }
|
|
|
| this._updateInfobars();
|
|
|