| Index: third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html b/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
|
| index 4db0472e6720eaff61222daa8846e4dea2247385..265ede7f4197e8c157f632b3e1bd81c4bc193ad5 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
|
| @@ -54,8 +54,8 @@ function test()
|
|
|
| function dumpFileForURL(fileSystemMapping, url)
|
| {
|
| - var hasMappingForURL = fileSystemMapping.hasMappingForURL(url);
|
| - InspectorTest.addResult(" Has mapping for '" + url + "': " + hasMappingForURL);
|
| + var hasMappingForNetworkURL = fileSystemMapping.hasMappingForNetworkURL(url);
|
| + InspectorTest.addResult(" Has mapping for '" + url + "': " + hasMappingForNetworkURL);
|
| var fileForURL = fileSystemMapping.fileForURL(url);
|
| if (!fileForURL)
|
| InspectorTest.addResult(" File for '" + url + "': null");
|
| @@ -65,7 +65,7 @@ function test()
|
|
|
| function dumpURLForPath(fileSystemMapping, fileSystemPath, filePath)
|
| {
|
| - var url = fileSystemMapping.urlForPath(fileSystemPath, filePath);
|
| + var url = fileSystemMapping.networkURLForFileSystemURL(fileSystemPath, filePath);
|
| InspectorTest.addResult(" URL for path '" + filePath + "': " + url);
|
| }
|
|
|
|
|