Index: LayoutTests/inspector/tracing/timeline-js-callstacks.html |
diff --git a/LayoutTests/inspector/tracing/timeline-js-callstacks.html b/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
index 0377461a6398554fd74ea120a0b6b29a5fef6a4a..22108595fa2491e0c06e3dc3b621a5fa7e8bbd24 100644 |
--- a/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
+++ b/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
@@ -387,9 +387,9 @@ function test() |
WebInspector.TimelineUIUtils.hiddenEventsFilter(), |
new WebInspector.ExcludeTopLevelFilter() |
]; |
- var treeTopDown = WebInspector.TimelineUIUtils.buildTopDownTree(events, 0, Infinity, filters, eventId); |
+ var treeTopDown = WebInspector.TimelineModel.buildTopDownTree(events, 0, Infinity, filters, eventId); |
printProfileTree(0, treeTopDown); |
- var treeBottomUp = WebInspector.TimelineUIUtils.buildBottomUpTree(treeTopDown); |
+ var treeBottomUp = WebInspector.TimelineModel.buildBottomUpTree(treeTopDown); |
printProfileTree(0, treeBottomUp); |
function eventId(event) |