| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| index 8b98d888eccf4f577b34dbc6d6f58163fb4c9bc9..b99dda493a43e133788a2227bf0b1eedfd7d9a44 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js | 
| @@ -928,7 +928,8 @@ WebInspector.SourcesPanel.prototype = { | 
| if (contentType.hasScripts() && projectType !== WebInspector.projectTypes.Snippets) { | 
| var networkURL = this._networkMapping.networkURL(uiSourceCode); | 
| var url = projectType === WebInspector.projectTypes.Formatter ? uiSourceCode.url() : networkURL; | 
| -            this.sidebarPanes.callstack.appendBlackboxURLContextMenuItems(contextMenu, url, projectType === WebInspector.projectTypes.ContentScripts); | 
| +            var isBlackboxed = WebInspector.blackboxManager.isBlackboxedUISourceCode(uiSourceCode); | 
| +            this.sidebarPanes.callstack.appendBlackboxURLContextMenuItems(contextMenu, url, projectType === WebInspector.projectTypes.ContentScripts, isBlackboxed); | 
| } | 
| }, | 
|  | 
|  |