Index: Source/devtools/front_end/sdk/Workspace.js |
diff --git a/Source/devtools/front_end/sdk/Workspace.js b/Source/devtools/front_end/sdk/Workspace.js |
index 4670b5e9e04939fcb6da7d4804b5a9ecb089307f..0cde1a39896d89fb52a594e9418c74c2f1271aa8 100644 |
--- a/Source/devtools/front_end/sdk/Workspace.js |
+++ b/Source/devtools/front_end/sdk/Workspace.js |
@@ -99,8 +99,9 @@ WebInspector.ProjectDelegate.prototype = { |
/** |
* @param {string} path |
+ * @param {function()=} callback |
*/ |
- refresh: function(path) { }, |
+ refresh: function(path, callback) { }, |
/** |
* @param {string} path |
@@ -438,10 +439,11 @@ WebInspector.Project.prototype = { |
/** |
* @param {string} path |
+ * @param {function()=} callback |
*/ |
- refresh: function(path) |
+ refresh: function(path, callback) |
{ |
- this._projectDelegate.refresh(path); |
+ this._projectDelegate.refresh(path, callback); |
}, |
/** |