Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: third_party/WebKit/LayoutTests/inspector/file-system-mapping.html

Issue 1564113003: DevTools: merge uisourcecode's url-alike members. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698