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 fba4f02acf60cfd1f056b6c8cda7e697f2116ae3..e663ccf2e29fb08bc00fc0235fdd3e949075bd28 100644 |
--- a/Source/devtools/front_end/timeline/TimelineFlameChart.js |
+++ b/Source/devtools/front_end/timeline/TimelineFlameChart.js |
@@ -386,7 +386,7 @@ WebInspector.TimelineFlameChartDataProvider.prototype = { |
if (color) |
return color; |
var parsedColor = WebInspector.Color.parse(category.fillColorStop1); |
- color = parsedColor.setAlpha(0.7).toString(WebInspector.Color.Format.RGBA) || ""; |
+ color = parsedColor.setAlpha(0.7).asString(WebInspector.Color.Format.RGBA) || ""; |
this._asyncColorByCategory[category.name] = color; |
return color; |
} |