Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html |
index 3fe1f6e5f9783751ef35185b7bec73fe98fbf3ac..0bdb7090faf61054fec63d1610cfb06bf940e0d1 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html |
@@ -33,7 +33,7 @@ function test() |
function createMockWorkspace() |
{ |
InspectorTest.createWorkspaceWithTarget(true); |
- InspectorTest.testDebuggerProject = new WebInspector.ContentProviderBasedProject(InspectorTest.testWorkspace, "", WebInspector.projectTypes.Debugger, "debugger:", ""); |
+ InspectorTest.testDebuggerProject = new WebInspector.ContentProviderBasedProject(InspectorTest.testWorkspace, "", WebInspector.projectTypes.Debugger, ""); |
return InspectorTest.testWorkspace; |
} |
@@ -44,7 +44,7 @@ function test() |
function addDebuggerFile(workspace, url) |
{ |
- var uiSourceCode = InspectorTest.testDebuggerProject.createUISourceCode("", url, url, WebInspector.resourceTypes.Script); |
+ var uiSourceCode = InspectorTest.testDebuggerProject.createUISourceCode(url, WebInspector.resourceTypes.Script); |
InspectorTest.testDebuggerProject.addUISourceCodeWithProvider(uiSourceCode, createContentProvider(url)); |
return InspectorTest.testWorkspace.uiSourceCode("debugger:", uiSourceCode.path()); |
} |