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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js

Issue 2867783003: DevTools: move IsolatedFileSystem/IsolatedFileSystemManager into persistence/ (Closed)
Patch Set: fix order Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js
index e9fdd8cc9e23db0201c06a0f3f9e255a99930b69..6952408ef980d9d1141582e9d3723b72593e8d88 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/isolated-filesystem-test.js
@@ -41,14 +41,14 @@ InspectorTest.TestFileSystem.prototype = {
fileSystemName: this.fileSystemPath }
});
- Workspace.isolatedFileSystemManager.addEventListener(Workspace.IsolatedFileSystemManager.Events.FileSystemAdded, created);
+ Persistence.isolatedFileSystemManager.addEventListener(Persistence.IsolatedFileSystemManager.Events.FileSystemAdded, created);
function created(event)
{
var fileSystem = event.data;
if (fileSystem.path() !== fileSystemPath)
return;
- Workspace.isolatedFileSystemManager.removeEventListener(Workspace.IsolatedFileSystemManager.Events.FileSystemAdded, created);
+ Persistence.isolatedFileSystemManager.removeEventListener(Persistence.IsolatedFileSystemManager.Events.FileSystemAdded, created);
callback(fileSystem);
}
},
@@ -61,7 +61,7 @@ InspectorTest.TestFileSystem.prototype = {
addFileMapping: function(urlPrefix, pathPrefix)
{
- var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
+ var fileSystemMapping = new Persistence.FileSystemMapping(Persistence.isolatedFileSystemManager);
fileSystemMapping.addFileSystem(this.fileSystemPath);
fileSystemMapping.addFileMapping(this.fileSystemPath, urlPrefix, pathPrefix);
fileSystemMapping.dispose();
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698