| 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 d27f8f7f09483af83decb6d6d1f3fbbe957225cb..b615741b1dbdc9fb32f22926bd6eeac7beaf2141 100644
|
| --- a/Source/devtools/front_end/sdk/Workspace.js
|
| +++ b/Source/devtools/front_end/sdk/Workspace.js
|
| @@ -134,10 +134,11 @@ WebInspector.ProjectDelegate.prototype = {
|
|
|
| /**
|
| * @param {!WebInspector.ProjectSearchConfig} searchConfig
|
| + * @param {!Array.<string>} filesMathingFileQuery
|
| * @param {!WebInspector.Progress} progress
|
| * @param {function(!Array.<string>)} callback
|
| */
|
| - findFilesMatchingSearchRequest: function(searchConfig, progress, callback) { },
|
| + findFilesMatchingSearchRequest: function(searchConfig, filesMathingFileQuery, progress, callback) { },
|
|
|
| /**
|
| * @param {!WebInspector.Progress} progress
|
| @@ -503,12 +504,13 @@ WebInspector.Project.prototype = {
|
|
|
| /**
|
| * @param {!WebInspector.ProjectSearchConfig} searchConfig
|
| + * @param {!Array.<string>} filesMathingFileQuery
|
| * @param {!WebInspector.Progress} progress
|
| * @param {function(!Array.<string>)} callback
|
| */
|
| - findFilesMatchingSearchRequest: function(searchConfig, progress, callback)
|
| + findFilesMatchingSearchRequest: function(searchConfig, filesMathingFileQuery, progress, callback)
|
| {
|
| - this._projectDelegate.findFilesMatchingSearchRequest(searchConfig, progress, callback);
|
| + this._projectDelegate.findFilesMatchingSearchRequest(searchConfig, filesMathingFileQuery, progress, callback);
|
| },
|
|
|
| /**
|
|
|