Index: Source/devtools/front_end/timeline/TimelineView.js |
diff --git a/Source/devtools/front_end/timeline/TimelineView.js b/Source/devtools/front_end/timeline/TimelineView.js |
index 918440c99787a4bd28e5b8508e246c73c767960e..e5b0a00a99ec3631b72f154ba6786c5d5ce31923 100644 |
--- a/Source/devtools/front_end/timeline/TimelineView.js |
+++ b/Source/devtools/front_end/timeline/TimelineView.js |
@@ -135,7 +135,7 @@ WebInspector.TimelineView.prototype = { |
var dividerPosition = Math.round(position); |
if (dividerPosition < 0 || dividerPosition >= clientWidth || dividers[dividerPosition]) |
continue; |
- var divider = WebInspector.TimelineUIUtils.createEventDivider(record.type(), WebInspector.TimelineUIUtils.recordTitle(record, this._model)); |
+ var divider = this._uiUtils.createEventDivider(record.type(), record.title()); |
divider.style.left = dividerPosition + "px"; |
dividers[dividerPosition] = divider; |
} |
@@ -181,7 +181,7 @@ WebInspector.TimelineView.prototype = { |
this._frameContainer.appendChild(frameStrip); |
if (actualStart > 0) { |
- var frameMarker = WebInspector.TimelineUIUtils.createEventDivider(WebInspector.TimelineModel.RecordType.BeginFrame); |
+ var frameMarker = this._uiUtils.createEventDivider(WebInspector.TimelineModel.RecordType.BeginFrame); |
frameMarker.style.left = frameStart + "px"; |
dividers.push(frameMarker); |
} |