| Index: third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| index b94e72605b67424b14a0f624b3bcf05e17875d58..c1752f48319aec4d4350f1fe1f6c10aa4fd5ca99 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| @@ -175,6 +175,7 @@ Profiler.BottomUpProfileDataGridTree = class extends Profiler.ProfileDataGridTre
|
| */
|
| constructor(formatter, searchableView, rootProfileNode, total) {
|
| super(formatter, searchableView, total);
|
| + this.deepSearch = false;
|
|
|
| // Iterate each node in pre-order.
|
| var profileNodeUIDs = 0;
|
| @@ -291,28 +292,6 @@ Profiler.BottomUpProfileDataGridTree = class extends Profiler.ProfileDataGridTre
|
|
|
| /**
|
| * @override
|
| - * @param {!UI.SearchableView.SearchConfig} searchConfig
|
| - * @param {boolean} shouldJump
|
| - * @param {boolean=} jumpBackwards
|
| - */
|
| - performSearch(searchConfig, shouldJump, jumpBackwards) {
|
| - this.searchCanceled();
|
| - var matchesQuery = this._matchFunction(searchConfig);
|
| - if (!matchesQuery)
|
| - return;
|
| -
|
| - this._searchResults = [];
|
| - for (var current = this.children[0]; current; current = current.traverseNextNode(true, null, true)) {
|
| - if (matchesQuery(current))
|
| - this._searchResults.push({profileNode: current});
|
| - }
|
| - this._searchResultIndex = jumpBackwards ? 0 : this._searchResults.length - 1;
|
| - this._searchableView.updateSearchMatchesCount(this._searchResults.length);
|
| - this._searchableView.updateCurrentMatchIndex(this._searchResultIndex);
|
| - }
|
| -
|
| - /**
|
| - * @override
|
| */
|
| populateChildren() {
|
| Profiler.BottomUpProfileDataGridNode._sharedPopulate(this);
|
|
|