| 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 5d0ed1ab79f1e57e526b4cf5c754b58ccea8a2b1..8f0083554b13aec4b3a18b19c6debf21d1886299 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
|
| @@ -83,7 +83,7 @@ InspectorTest.TestFileSystem.Entry.prototype = {
|
| this._children.splice(index, 1);
|
| delete this._childrenMap[child.name];
|
| child.parent = null;
|
| - InspectorFrontendHost.events.dispatchEventToListeners(InspectorFrontendHostAPI.Events.FileSystemFilesChanged, [fullPath]);
|
| + InspectorFrontendHost.events.dispatchEventToListeners(InspectorFrontendHostAPI.Events.FileSystemFilesChanged, {changedPaths: [], removedPaths: [fullPath], addedPaths: []});
|
| success();
|
| },
|
|
|
| @@ -110,7 +110,7 @@ InspectorTest.TestFileSystem.Entry.prototype = {
|
| {
|
| this.content = new Blob([content], {type: 'text/plain'});
|
| var fullPath = this._fileSystem.fileSystemPath + this.fullPath;
|
| - InspectorFrontendHost.events.dispatchEventToListeners(InspectorFrontendHostAPI.Events.FileSystemFilesChanged, [fullPath]);
|
| + InspectorFrontendHost.events.dispatchEventToListeners(InspectorFrontendHostAPI.Events.FileSystemFilesChanged, {changedPaths: [fullPath], removedPaths: [], addedPaths: []});
|
| },
|
|
|
| createReader: function()
|
|
|