| Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content.html
|
| index e3620dc3f032c06b09e3d81dcb9fac0abbdb18fd..bcfc0511113cc5288453b41dcc98bee673afec26 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content.html
|
| @@ -24,7 +24,7 @@ function test()
|
| function addFileMapping(next)
|
| {
|
| InspectorTest.waitForBinding("foo.js").then(onBindingCreated);
|
| - WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
|
| + Workspace.fileSystemMapping.addFileMapping(fs.fileSystemPath, "http://127.0.0.1:8000", "/");
|
|
|
| function onBindingCreated(binding)
|
| {
|
| @@ -37,7 +37,7 @@ function test()
|
|
|
| function changeFileSystem(next)
|
| {
|
| - InspectorTest.addSniffer(WebInspector.Persistence.prototype, "_contentSyncedForTest", onSynced);
|
| + InspectorTest.addSniffer(Persistence.Persistence.prototype, "_contentSyncedForTest", onSynced);
|
| fsEntry.setContent("window.foo3 = 3;");
|
|
|
| function onSynced()
|
| @@ -50,7 +50,7 @@ function test()
|
|
|
| function changeNetworkUISourceCode(next)
|
| {
|
| - InspectorTest.addSniffer(WebInspector.Persistence.prototype, "_contentSyncedForTest", onSynced);
|
| + InspectorTest.addSniffer(Persistence.Persistence.prototype, "_contentSyncedForTest", onSynced);
|
| networkCode.addRevision("window.foo2 = 2;");
|
|
|
| function onSynced()
|
|
|