Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js |
index f7154e4d5b11623345cafcc006cbabc6a3095275..b0c430e7e2f62b789a1bee8049bc1f0d3546f712 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js |
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js |
@@ -554,7 +554,7 @@ WebInspector.TimelineFlameChartDataProvider.prototype = { |
_appendAsyncEvents: function(asyncEvents) |
{ |
var groups = WebInspector.TimelineModel.AsyncEventGroup; |
- var groupArray = Object.values(groups); |
+ var groupArray = Object.keys(groups).map(key => groups[key]); |
groupArray.remove(groups.animation); |
groupArray.remove(groups.input); |