| Index: Source/devtools/front_end/timeline/TimelineModelImpl.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelineModelImpl.js b/Source/devtools/front_end/timeline/TimelineModelImpl.js
|
| index d44ae4a323b915d1dfd2decc791b936adcf42599..d6b8cc2fc1a7515251470e13d3017e0a8b8c72bf 100644
|
| --- a/Source/devtools/front_end/timeline/TimelineModelImpl.js
|
| +++ b/Source/devtools/front_end/timeline/TimelineModelImpl.js
|
| @@ -9,7 +9,8 @@
|
| */
|
| WebInspector.TimelineModelImpl = function(timelineManager)
|
| {
|
| - WebInspector.TimelineModel.call(this, timelineManager.target());
|
| + WebInspector.TimelineModel.call(this);
|
| + this._target = timelineManager.target();
|
| this._timelineManager = timelineManager;
|
| this._filters = [];
|
| this._bindings = new WebInspector.TimelineModelImpl.InterRecordBindings();
|
| @@ -395,7 +396,7 @@ WebInspector.TimelineModel.RecordImpl.prototype = {
|
| */
|
| target: function()
|
| {
|
| - return this._model.target();
|
| + return this._model._target;
|
| },
|
|
|
| /**
|
|
|