Index: third_party/WebKit/LayoutTests/inspector/workspace-mapping.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/workspace-mapping.html b/third_party/WebKit/LayoutTests/inspector/workspace-mapping.html |
index 94f8076347fe2b70a0e15f715a5003c8663746c8..9a0ee02aba9cff5ac3e9e40a63da3420ed7cddd7 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/workspace-mapping.html |
+++ b/third_party/WebKit/LayoutTests/inspector/workspace-mapping.html |
@@ -33,7 +33,7 @@ function test() |
function dumpHasMappingForURL(url) |
{ |
- var result = networkMapping.hasMappingForNetworkURL(url) |
+ var result = fileSystemMapping.hasMappingForNetworkURL(url) |
if (result) |
InspectorTest.addResult(" url " + url + " is mapped."); |
else |
@@ -42,13 +42,13 @@ function test() |
function dumpUISourceCodeForURL(url) |
{ |
- var uiSourceCode = networkMapping.uiSourceCodeForURLForAnyTarget(url); |
+ var uiSourceCode = workspace.uiSourceCodeForURL(url); |
InspectorTest.addResult(" url " + url + " is mapped to " + (uiSourceCode ? uiSourceCode.url() : null)); |
} |
function dumpURLForPath(fileSystemPath, filePath) |
{ |
- var url = networkMapping._networkURLForFileSystemURL(fileSystemPath, fileSystemPath + "/" + filePath) |
+ var url = fileSystemMapping.networkURLForFileSystemURL(fileSystemPath, fileSystemPath + "/" + filePath) |
InspectorTest.addResult(" path " + fileSystemPath + " / " + filePath + " is mapped to " + (url ? url : null)); |
} |