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

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

Issue 450973002: DevTools: animate changes to flame chart window. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/TimelineFrameOverview.js
diff --git a/Source/devtools/front_end/timeline/TimelineFrameOverview.js b/Source/devtools/front_end/timeline/TimelineFrameOverview.js
index 399a2fb5c412fe38ba0a05f9dad4be0b45d62ffb..0a051548a40bc15162096484c9c2b57a839f497b 100644
--- a/Source/devtools/front_end/timeline/TimelineFrameOverview.js
+++ b/Source/devtools/front_end/timeline/TimelineFrameOverview.js
@@ -275,7 +275,7 @@ WebInspector.TimelineFrameOverview.prototype = {
var y0 = Math.floor(windowHeight - frame.duration * scale) + 0.5;
var y1 = windowHeight + 0.5;
- this._context.strokeStyle = "rgba(90, 90, 90, 0.3)";
+ this._context.strokeStyle = "rgba(90, 90, 90, 0.2)";
this._context.beginPath();
this._context.moveTo(x, y1);
this._context.lineTo(x, y0);

Powered by Google App Engine
This is Rietveld 408576698