| Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| index 50f07d4a7735e025b4b5a04fc9524b88f4e507e6..3b6b525f7e1b1c0a406c92c5cf409a005432ece1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| @@ -281,6 +281,11 @@ WebInspector.CallStackSidebarPane.prototype = {
|
| */
|
| appendBlackboxURLContextMenuItems: function(contextMenu, uiSourceCode)
|
| {
|
| + var binding = WebInspector.persistence.binding(uiSourceCode);
|
| + if (binding)
|
| + uiSourceCode = binding.network;
|
| + if (uiSourceCode.project().type() === WebInspector.projectTypes.FileSystem)
|
| + return;
|
| var canBlackbox = WebInspector.blackboxManager.canBlackboxUISourceCode(uiSourceCode);
|
| var isBlackboxed = WebInspector.blackboxManager.isBlackboxedUISourceCode(uiSourceCode);
|
| var isContentScript = uiSourceCode.project().type() === WebInspector.projectTypes.ContentScripts;
|
|
|