| 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 c56375683514e15fea4d87b02ca87246df236ffe..32569a77ee05d88030878f88a0c85bf49cecfe3c 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
|
| }
|
|
|
|
|