| Index: third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js | 
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js | 
| index f7a82f692a390377577a27bf8f461ee481c859af..16661d70651b8ee90f43aa77e9efdea804c53c53 100644 | 
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js | 
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js | 
| @@ -280,7 +280,7 @@ InspectorTest.captureStackTraceIntoString = function(callFrames, asyncStackTrace | 
| var frame = callFrames[i]; | 
| var script = frame.location().script(); | 
| var uiLocation = WebInspector.debuggerWorkspaceBinding.rawLocationToUILocation(frame.location()); | 
| -            var isFramework = WebInspector.BlackboxSupport.isBlackboxedURL(script.sourceURL); | 
| +            var isFramework = WebInspector.blackboxManager.isBlackboxedRawLocation(frame.location()); | 
| if (options.dropFrameworkCallFrames && isFramework) | 
| continue; | 
| var url; | 
|  |