| Index: Source/devtools/front_end/timeline/TimelineTreeView.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelineTreeView.js b/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| index 029d290e3e049615c1164bc9310c03b0fd796730..d04acfb2aae02fefdc6e407790063d9abf3cb65e 100644
|
| --- a/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| +++ b/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| @@ -170,8 +170,8 @@ WebInspector.TimelineTreeView.prototype = {
|
| [WebInspector.TimelineTreeView.GroupBy.DomainSecondLevel, groupByDomainSecondLevel],
|
| [WebInspector.TimelineTreeView.GroupBy.URL, groupByURL]
|
| ]);
|
| - var topDown = WebInspector.TimelineUIUtils.buildTopDownTree(this._model.mainThreadEvents(), this._startTime, this._endTime, this._filters, eventId);
|
| - var bottomUpRoot = WebInspector.TimelineUIUtils.buildBottomUpTree(topDown, groupByMapper.get(groupBy));
|
| + var topDown = WebInspector.TimelineModel.buildTopDownTree(this._model.mainThreadEvents(), this._startTime, this._endTime, this._filters, eventId);
|
| + var bottomUpRoot = WebInspector.TimelineModel.buildBottomUpTree(topDown, groupByMapper.get(groupBy));
|
| for (var group of groupNodes)
|
| bottomUpRoot.children.set(group[0], group[1]);
|
| this.dataGrid.rootNode().removeChildren();
|
|
|