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

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

Issue 715803002: DevTools: merge TracingTimelineModel into TimelineModel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/TimelinePresentationModel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePresentationModel.js b/Source/devtools/front_end/timeline/TimelinePresentationModel.js
index a18856732ece17af5a2216fda05b57e738d72a8d..1f0fdc58821737fa7116bfef79c3073b1f3ac145 100644
--- a/Source/devtools/front_end/timeline/TimelinePresentationModel.js
+++ b/Source/devtools/front_end/timeline/TimelinePresentationModel.js
@@ -86,7 +86,7 @@ WebInspector.TimelinePresentationModel.prototype = {
*/
addRecord: function(record)
{
- if (record.type() === WebInspector.TracingTimelineModel.RecordType.Program) {
+ if (record.type() === WebInspector.TimelineModel.RecordType.Program) {
var records = record.children();
for (var i = 0; i < records.length; ++i)
this._innerAddRecord(this._rootRecord, records[i]);

Powered by Google App Engine
This is Rietveld 408576698