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 e07631b51824161f6144881148e8792961637a3c..b57fa5caee39e7868b72df90521ca9ac9c491437 100644 |
--- a/Source/devtools/front_end/timeline/TimelinePanel.js |
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js |
@@ -51,7 +51,7 @@ WebInspector.TimelinePanel = function() |
this._tracingManager.addEventListener(WebInspector.TracingManager.Events.BufferUsage, this._onTracingBufferUsage, this); |
this._tracingModel = new WebInspector.TracingModel(); |
- this._tracingTimelineModel = new WebInspector.TracingTimelineModel(this._tracingManager, this._tracingModel, WebInspector.TimelineUIUtils.hiddenRecordsFilter()); |
+ this._tracingTimelineModel = new WebInspector.TimelineModel(this._tracingManager, this._tracingModel, WebInspector.TimelineUIUtils.hiddenRecordsFilter()); |
loislo
2014/11/11 12:33:06
this._timelineModel
yurys
2014/11/11 13:41:25
Done.
|
this._model = this._tracingTimelineModel; |
this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this); |