| 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 9866520943997d4c9f1e5192271d6bb115af4a70..65f7912920f8f3e44a82628de8d5d4991ac2aee1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| @@ -118,7 +118,8 @@ WebInspector.CallStackSidebarPane.prototype = {
|
| callFrameItem.element.addEventListener("contextmenu", this._callFrameContextMenu.bind(this, callFrameItem), true);
|
| this.callFrames.push(callFrameItem);
|
|
|
| - if (WebInspector.BlackboxSupport.isBlackboxed(callFrame.script.sourceURL, callFrame.script.isContentScript())) {
|
| + var location = this._debuggerModel.createRawLocation(callFrame.script, callFrame.location().lineNumber, callFrame.location().columnNumber);
|
| + if (WebInspector.BlackboxSupport.isBlackboxedScriptLocation(location)) {
|
| callFrameItem.setHidden(true);
|
| callFrameItem.setDimmed(true);
|
| ++this._hiddenCallFrames;
|
|
|