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

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

Issue 2349343002: DevTools: introduce persistence/ module (Closed)
Patch Set: reupload Created 4 years, 3 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/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));
}

Powered by Google App Engine
This is Rietveld 408576698