| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChartView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChartView.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChartView.js
|
| index d7e69c7869246d5c21931c14ca8f7cf378ad3656..82fa8a691b6d9cfd3b87004b18ec2543331d37cf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChartView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChartView.js
|
| @@ -370,7 +370,7 @@ Timeline.TimelineFlameChartView = class extends UI.VBox {
|
| * @return {boolean}
|
| */
|
| supportsCaseSensitiveSearch() {
|
| - return false;
|
| + return true;
|
| }
|
|
|
| /**
|
| @@ -378,7 +378,7 @@ Timeline.TimelineFlameChartView = class extends UI.VBox {
|
| * @return {boolean}
|
| */
|
| supportsRegexSearch() {
|
| - return false;
|
| + return true;
|
| }
|
|
|
| /**
|
| @@ -469,8 +469,7 @@ Timeline.TimelineFlameChartView = class extends UI.VBox {
|
| * @param {boolean=} jumpBackwards
|
| */
|
| performSearch(searchConfig, shouldJump, jumpBackwards) {
|
| - var query = searchConfig.query;
|
| - this._searchRegex = createPlainTextSearchRegex(query, 'i');
|
| + this._searchRegex = searchConfig.toSearchRegex();
|
| delete this._searchResults;
|
| this._updateSearchHighlight(true, shouldJump, jumpBackwards);
|
| }
|
|
|