| Index: Source/devtools/front_end/sdk/FileSystemWorkspaceBinding.js
|
| diff --git a/Source/devtools/front_end/sdk/FileSystemWorkspaceBinding.js b/Source/devtools/front_end/sdk/FileSystemWorkspaceBinding.js
|
| index 2808a8e4c284ee9e0a548664287ac95dd36c3ed7..653125d2ba7613aeff622b3834e29c534673b13b 100644
|
| --- a/Source/devtools/front_end/sdk/FileSystemWorkspaceBinding.js
|
| +++ b/Source/devtools/front_end/sdk/FileSystemWorkspaceBinding.js
|
| @@ -481,10 +481,11 @@ WebInspector.FileSystemWorkspaceBinding.FileSystem.prototype = {
|
|
|
| /**
|
| * @param {string} path
|
| + * @param {function()=} callback
|
| */
|
| - refresh: function(path)
|
| + refresh: function(path, callback)
|
| {
|
| - this._fileSystem.requestFilesRecursive(path, this._addFile.bind(this));
|
| + this._fileSystem.requestFilesRecursive(path, this._addFile.bind(this), callback);
|
| },
|
|
|
| /**
|
|
|