| Index: Source/devtools/front_end/network/NetworkPanel.js
|
| diff --git a/Source/devtools/front_end/network/NetworkPanel.js b/Source/devtools/front_end/network/NetworkPanel.js
|
| index a785a757b3cbcf5c033bc885fb79b0e1cbf4e01a..ad8d08fac78778929f44eaab297b4b356a1a8e5e 100644
|
| --- a/Source/devtools/front_end/network/NetworkPanel.js
|
| +++ b/Source/devtools/front_end/network/NetworkPanel.js
|
| @@ -1403,12 +1403,13 @@ WebInspector.NetworkLogView.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;
|
| var currentMatchedRequestNode = this._currentMatchedRequestNode;
|
| this._clearSearchMatchedList();
|
| this._searchRegExp = createPlainTextSearchRegex(query, "i");
|
| @@ -1424,6 +1425,22 @@ WebInspector.NetworkLogView.prototype = {
|
| },
|
|
|
| /**
|
| + * @return {boolean}
|
| + */
|
| + supportsCaseSensitiveSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsRegexSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| + /**
|
| * @param {?WebInspector.NetworkDataGridNode} node
|
| * @return {number}
|
| */
|
| @@ -2124,13 +2141,13 @@ WebInspector.NetworkPanel.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)
|
| {
|
| - this._networkLogView.performSearch(query, shouldJump, jumpBackwards);
|
| + this._networkLogView.performSearch(searchConfig, shouldJump, jumpBackwards);
|
| },
|
|
|
| jumpToPreviousSearchResult: function()
|
| @@ -2138,6 +2155,22 @@ WebInspector.NetworkPanel.prototype = {
|
| this._networkLogView.jumpToPreviousSearchResult();
|
| },
|
|
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsCaseSensitiveSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| + supportsRegexSearch: function()
|
| + {
|
| + return false;
|
| + },
|
| +
|
| jumpToNextSearchResult: function()
|
| {
|
| this._networkLogView.jumpToNextSearchResult();
|
|
|