Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js |
index 4914bb590bd18578b53c152420e70bf6e9b7f09d..7839b1814aca95a9607eca3747fc6b14a3668d84 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js |
@@ -711,13 +711,13 @@ WebInspector.AggregatedTimelineTreeView.prototype = { |
case WebInspector.AggregatedTimelineTreeView.GroupBy.Category: |
var category = categories[id] || categories["other"]; |
groupNode.name = category.title; |
- groupNode.color = category.fillColorStop1; |
+ groupNode.color = category.color; |
break; |
case WebInspector.AggregatedTimelineTreeView.GroupBy.Domain: |
case WebInspector.AggregatedTimelineTreeView.GroupBy.Subdomain: |
case WebInspector.AggregatedTimelineTreeView.GroupBy.URL: |
groupNode.name = id || WebInspector.UIString("unattributed"); |
- groupNode.color = id ? WebInspector.TimelineUIUtils.eventColor(event) : categories["other"].fillColorStop1; |
+ groupNode.color = id ? WebInspector.TimelineUIUtils.eventColor(event) : categories["other"].color; |
break; |
} |
return groupNode; |