| Index: third_party/WebKit/LayoutTests/inspector/file-system-mapping-overrides.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/file-system-mapping-overrides.html b/third_party/WebKit/LayoutTests/inspector/file-system-mapping-overrides.html
|
| index ac50e1a440e8574c77f01b76f0554c045fb21ab8..08ad415987f64c74ae5895e55dcea2807651b340 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/file-system-mapping-overrides.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/file-system-mapping-overrides.html
|
| @@ -7,7 +7,7 @@ function test()
|
| InspectorTest.runTestSuite([
|
| function testFileSystemClashDirectOrder(next)
|
| {
|
| - var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| + var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| fileSystemMapping.addFileSystem("file:///Source/devtools");
|
|
|
| fileSystemMapping.addNonConfigurableFileMapping("file:///Source/devtools", "chrome-devtools://devtools/bundled/wrong_url", "/");
|
| @@ -20,7 +20,7 @@ function test()
|
|
|
| function testFileSystemClashReversedOrder(next)
|
| {
|
| - var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| + var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| fileSystemMapping.addFileSystem("file:///Source/devtools");
|
|
|
| fileSystemMapping.addFileMapping("file:///Source/devtools", "http://localhost:1234/right_url", "/");
|
| @@ -33,7 +33,7 @@ function test()
|
|
|
| function testNetworkClashDirectOrder(next)
|
| {
|
| - var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| + var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| fileSystemMapping.addFileSystem("file:///Source/devtools");
|
|
|
| fileSystemMapping.addNonConfigurableFileMapping("file:///Source/devtools", "http://localhost:1234/front_end", "/wrong");
|
| @@ -46,7 +46,7 @@ function test()
|
|
|
| function testNetworkClashReversedOrder(next)
|
| {
|
| - var fileSystemMapping = new Workspace.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| + var fileSystemMapping = new Persistence.FileSystemMapping(Workspace.isolatedFileSystemManager);
|
| fileSystemMapping.addFileSystem("file:///Source/devtools");
|
|
|
| fileSystemMapping.addFileMapping("file:///Source/devtools", "http://localhost:1234/front_end", "/right");
|
|
|