Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: Source/devtools/front_end/timeline/TimelineModel.js

Issue 397313003: DevTools: Remove target function from TimelineModel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase once more Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/timeline/TimelineModel.js
diff --git a/Source/devtools/front_end/timeline/TimelineModel.js b/Source/devtools/front_end/timeline/TimelineModel.js
index 046c3c3ce97c0b8afe523b005eaa9692570a21e7..6493e0259df63ed650522a6d3e26dddc381a36e7 100644
--- a/Source/devtools/front_end/timeline/TimelineModel.js
+++ b/Source/devtools/front_end/timeline/TimelineModel.js
@@ -30,12 +30,11 @@
/**
* @constructor
- * @extends {WebInspector.SDKObject}
- * @param {!WebInspector.Target} target
+ * @extends {WebInspector.Object}
*/
-WebInspector.TimelineModel = function(target)
+WebInspector.TimelineModel = function()
{
- WebInspector.SDKObject.call(this, target);
+ WebInspector.Object.call(this);
this._filters = [];
}
@@ -331,7 +330,7 @@ WebInspector.TimelineModel.prototype = {
return this._eventDividerRecords;
},
- __proto__: WebInspector.SDKObject.prototype
+ __proto__: WebInspector.Object.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineFlameChart.js ('k') | Source/devtools/front_end/timeline/TimelineModelImpl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698