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

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

Issue 339493006: Move divider detection and creation onto TimelineUIUtils instance (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/TracingTimelineModel.js
diff --git a/Source/devtools/front_end/timeline/TracingTimelineModel.js b/Source/devtools/front_end/timeline/TracingTimelineModel.js
index b9769678e7f29ff695b735fe149198f776024fe5..1cc5637b317ac23f3ea81841c30a0bdc910b9a7e 100644
--- a/Source/devtools/front_end/timeline/TracingTimelineModel.js
+++ b/Source/devtools/front_end/timeline/TracingTimelineModel.js
@@ -227,7 +227,7 @@ WebInspector.TracingTimelineModel.prototype = {
}
var parentRecord = recordStack.peekLast() || null;
var record = new WebInspector.TracingTimelineModel.TraceEventRecord(this, event, parentRecord);
- if (WebInspector.TimelineUIUtils.isEventDivider(record))
+ if (WebInspector.TracingTimelineUIUtils.isEventDivider(record))
this._eventDividerRecords.push(record);
if (!recordStack.length)
this._addTopLevelRecord(record);
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineView.js ('k') | Source/devtools/front_end/timeline/TracingTimelineUIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698