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 68b69a282c5b89e822f0d6c8ab7a0231f2318250..272589d0e332fbb1325b77299ac646d6c73d20ab 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; |
}, |
/** |