| Index: Source/devtools/front_end/extensions/ExtensionPanel.js
|
| diff --git a/Source/devtools/front_end/extensions/ExtensionPanel.js b/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| index 395fa532b6db18ab00190ef12e3216caab1611f9..8e82fce2325400388c5d15a2c60517c137c71e64 100644
|
| --- a/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| +++ b/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| @@ -85,12 +85,13 @@ WebInspector.ExtensionPanel.prototype = {
|
| },
|
|
|
| /**
|
| - * @param {string} query
|
| + * @param {!WebInspector.SearchableView.SearchConfig} searchConfig
|
| * @param {boolean} shouldJump
|
| * @param {boolean=} jumpBackwards
|
| */
|
| - performSearch: function(query, shouldJump, jumpBackwards)
|
| + performSearch: function(searchConfig, shouldJump, jumpBackwards)
|
| {
|
| + var query = searchConfig.query;
|
| this._server.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.PerformSearch, query);
|
| },
|
|
|
| @@ -104,6 +105,22 @@ WebInspector.ExtensionPanel.prototype = {
|
| this._server.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.PreviousSearchResult);
|
| },
|
|
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsCaseSensitiveSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsRegexSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| __proto__: WebInspector.Panel.prototype
|
| }
|
|
|
|
|