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/file-system-mapping.html

Issue 2529303003: DevTools: move FileSystemMapping from Workspace to Persistence (Closed)
Patch Set: fix tests Created 4 years, 1 month 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 620664d28ecffe8ed2df79f675995899730491e2..a34a244302e0ef715107cae6471943207159aecd 100644
--- a/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
+++ b/third_party/WebKit/LayoutTests/inspector/file-system-mapping.html
@@ -87,7 +87,7 @@ function test()
}
// At first create file system mapping and clear it.
- var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
+ var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
var fileSystemPaths = Object.keys(fileSystemMapping._fileSystemMappings);
for (var i = 0; i < fileSystemPaths.length; ++i)
fileSystemMapping.removeFileSystem(fileSystemPaths[i]);
@@ -131,7 +131,7 @@ function test()
// Then create another file mapping to make sure it is correctly restored from the settings.
InspectorTest.addResult("Creating another file system mapping.");
fileSystemMapping.dispose();
- var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
+ var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
checkAndDumpFileSystemMapping(fileSystemMapping);
// Now remove file mappings.

Powered by Google App Engine
This is Rietveld 408576698