Index: Source/devtools/front_end/timeline/TimelinePanel.js |
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js |
index 4ddcfdda14caf528d393d9ff79cbe6de9f3b8937..6cdb8c6821e8cc11f9d6fa21a6378d85369a4347 100644 |
--- a/Source/devtools/front_end/timeline/TimelinePanel.js |
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js |
@@ -273,8 +273,10 @@ WebInspector.TimelinePanel.prototype = { |
*/ |
_timelineView: function() |
{ |
- if (!this._lazyTimelineView) |
- this._lazyTimelineView = new WebInspector.TimelineView(this, this._model); |
+ if (!this._lazyTimelineView) { |
+ var coalescableRecordTypes = this._tracingTimelineModel ? WebInspector.TracingTimelineUIUtils.coalescableRecordTypes : WebInspector.TimelineUIUtils.coalescableRecordTypes; |
+ this._lazyTimelineView = new WebInspector.TimelineView(this, this._model, coalescableRecordTypes); |
+ } |
return this._lazyTimelineView; |
}, |