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

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

Issue 1207753002: DevTools: Reverse priority order of timeline cpu utilization groups. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelineEventOverview.js
diff --git a/Source/devtools/front_end/timeline/TimelineEventOverview.js b/Source/devtools/front_end/timeline/TimelineEventOverview.js
index 37d74677bc7de1e4d79336814e717e57facf11a1..257233a231c903110db7bc6616768465832d0f0f 100644
--- a/Source/devtools/front_end/timeline/TimelineEventOverview.js
+++ b/Source/devtools/front_end/timeline/TimelineEventOverview.js
@@ -212,7 +212,7 @@ WebInspector.TimelineEventOverview.prototype = {
var ctx = this._context;
var x = 0;
var categories = WebInspector.TimelineUIUtils.categories();
- var categoryOrder = ["idle", "scripting", "rendering", "painting", "loading", "other"];
+ var categoryOrder = ["idle", "loading", "painting", "rendering", "scripting", "other"];
var otherIndex = categoryOrder.indexOf("other");
var idleIndex = 0;
console.assert(idleIndex === categoryOrder.indexOf("idle"));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698