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

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

Issue 402113002: Draw marker events on Timeline flame chart (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/TracingTimelineModel.js
diff --git a/Source/devtools/front_end/timeline/TracingTimelineModel.js b/Source/devtools/front_end/timeline/TracingTimelineModel.js
index 36d5160a0673dedcc5a358b86ca87b6512626e12..7367ab833b71c0b968f5f3d0ffddde137fe8ad7a 100644
--- a/Source/devtools/front_end/timeline/TracingTimelineModel.js
+++ b/Source/devtools/front_end/timeline/TracingTimelineModel.js
@@ -239,7 +239,7 @@ WebInspector.TracingTimelineModel.prototype = {
this._addTopLevelRecord(top);
}
var record = new WebInspector.TracingTimelineModel.TraceEventRecord(this, event);
- if (WebInspector.TracingTimelineUIUtils.isEventDivider(record))
+ if (WebInspector.TracingTimelineUIUtils.isMarkerEvent(event))
this._eventDividerRecords.push(record);
if (!this._recordFilter.accept(record))
continue;

Powered by Google App Engine
This is Rietveld 408576698