| Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| index 6b4c794177a5dea4dfc72e77c8eed4e5d1854252..cff9cfb83bc77dcb75d2044cf64a83a4afa9d015 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| @@ -18,8 +18,8 @@ function test()
|
| function waitForUISourceCodes(next)
|
| {
|
| Promise.all([
|
| - InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.Network),
|
| - InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.FileSystem)
|
| + InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.Network),
|
| + InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.FileSystem)
|
| ]).then(next);
|
| },
|
|
|
| @@ -31,7 +31,7 @@ function test()
|
|
|
| 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", "/");
|
| InspectorTest.waitForBinding("foo.js").then(next);
|
| },
|
|
|
| @@ -44,14 +44,14 @@ function test()
|
|
|
| function dumpGoToSourceDialog()
|
| {
|
| - WebInspector.panels.sources._sourcesView.showOpenResourceDialog();
|
| - var dialog = WebInspector.OpenResourceDialog._instanceForTest;
|
| + UI.panels.sources._sourcesView.showOpenResourceDialog();
|
| + var dialog = Sources.OpenResourceDialog._instanceForTest;
|
| var keys = [];
|
| for (var i = 0; i < dialog.itemCount(); ++i)
|
| keys.push(dialog.itemKeyAt(i));
|
| keys.sort();
|
| InspectorTest.addResult(keys.join("\n"));
|
| - WebInspector.Dialog._instance.detach();
|
| + UI.Dialog._instance.detach();
|
| }
|
| };
|
| </script>
|
|
|