Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: LayoutTests/inspector/tracing/timeline-coalescing.html

Issue 713913002: DevTools: merge TracingTimelineUIUtils into TimelineUIUtils (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Deleted instance refs Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = "";
« no previous file with comments | « LayoutTests/http/tests/inspector/timeline-test.js ('k') | LayoutTests/inspector/tracing/timeline-event-causes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698