| Index: LayoutTests/inspector/tracing/timeline-coalescing.html
|
| diff --git a/LayoutTests/inspector/tracing/timeline-coalescing.html b/LayoutTests/inspector/tracing/timeline-coalescing.html
|
| index ff6f55eaf4ed45cd2802c53798a0ae4eb4ca0e80..c93cdea6d58abb7dabfd38d9dd2b213e900daf7f 100644
|
| --- a/LayoutTests/inspector/tracing/timeline-coalescing.html
|
| +++ b/LayoutTests/inspector/tracing/timeline-coalescing.html
|
| @@ -13,13 +13,12 @@ InspectorTest.dumpStats = function(presentationRecord)
|
| return "";
|
|
|
| var aggregatedStats = {};
|
| - var uiUtils = WebInspector.panels.timeline._uiUtils;
|
| if (presentationRecord.coalesced()) {
|
| var presentationChildren = presentationRecord.presentationChildren();
|
| for (var i = 0; i < presentationChildren.length; ++i)
|
| - uiUtils.aggregateTimeForRecord(aggregatedStats, presentationChildren[i].record());
|
| + WebInspector.TimelineUIUtils.aggregateTimeForRecord(aggregatedStats, presentationChildren[i].record());
|
| } else {
|
| - uiUtils.aggregateTimeForRecord(aggregatedStats, presentationRecord.record());
|
| + WebInspector.TimelineUIUtils.aggregateTimeForRecord(aggregatedStats, presentationRecord.record());
|
| }
|
|
|
| var timeByCategory = "";
|
|
|