| Index: Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelineFlameChart.js b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| index 755457591e08d541a3733ff15cc19d9108229221..e6df39f0cffdbb67d6bea20c6f6897f57ec6fb0b 100644
|
| --- a/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| +++ b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| @@ -165,9 +165,9 @@ WebInspector.TimelineFlameChartDataProvider.prototype = {
|
| this._appendFrameBars(this._frameModel.frames());
|
| this._appendThreadTimelineData(WebInspector.UIString("Main Thread"), this._model.mainThreadEvents());
|
| var threads = this._model.virtualThreads();
|
| - for (var threadName in threads) {
|
| - if (threadName !== WebInspector.TimelineModel.MainThreadName)
|
| - this._appendThreadTimelineData(threadName, threads[threadName]);
|
| + for (var i = 0; i < threads.length; i++) {
|
| + var thread = threads[i];
|
| + this._appendThreadTimelineData(thread.name, thread.events);
|
| }
|
| return this._timelineData;
|
| },
|
|
|