| Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-do-not-bind-dirty-sourcecode.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-do-not-bind-dirty-sourcecode.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-do-not-bind-dirty-sourcecode.html
|
| index aed0741a3b95e0ebfbdf5db75387214d51825dd3..fd5460650d3a07cf4f52644518235480635e8fe3 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-do-not-bind-dirty-sourcecode.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-do-not-bind-dirty-sourcecode.html
|
| @@ -19,15 +19,15 @@ function test()
|
| function waitForUISourceCodes(next)
|
| {
|
| Promise.all([
|
| - InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.Network)
|
| + InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.Network)
|
| .then(uiSourceCode => uiSourceCode.setWorkingCopy("dirty.")),
|
| - InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.FileSystem)
|
| + InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.FileSystem)
|
| ]).then(next);
|
| },
|
|
|
| function addFileSystemMapping(next)
|
| {
|
| - WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
|
| + Workspace.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
|
| next();
|
| },
|
|
|
|
|