| Index: Source/devtools/front_end/console/ConsoleView.js
|
| diff --git a/Source/devtools/front_end/console/ConsoleView.js b/Source/devtools/front_end/console/ConsoleView.js
|
| index 6c5ebf2c09ab12535b117da51e91772f7dce1a64..3d69ab62e1cb47e2fbda0a2a28ff0bbe120a8224 100644
|
| --- a/Source/devtools/front_end/console/ConsoleView.js
|
| +++ b/Source/devtools/front_end/console/ConsoleView.js
|
| @@ -905,12 +905,13 @@ WebInspector.ConsoleView.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.searchCanceled();
|
| this._searchableView.updateSearchMatchesCount(0);
|
| this._searchRegex = createPlainTextSearchRegex(query, "gi");
|
| @@ -942,6 +943,22 @@ WebInspector.ConsoleView.prototype = {
|
| this._jumpToSearchResult(this._currentSearchResultIndex - 1);
|
| },
|
|
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsCaseSensitiveSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsRegexSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| _clearCurrentSearchResultHighlight: function()
|
| {
|
| if (!this._searchResults)
|
|
|