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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js

Issue 2803413002: DevTools: brush up paint marker rendering, sort experiments, restore event markers on the overview. (Closed)
Patch Set: fixed the test Created 3 years, 8 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: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
index 0916726826d0515575f75b45ab0f5f1f552cef38..2d1380c119d5837cb038413716e148597dbd2511 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -58,6 +58,8 @@ Timeline.TimelinePanel = class extends UI.Panel {
this._filters.push(Timeline.TimelineUIUtils.visibleEventsFilter());
this._filters.push(new TimelineModel.ExcludeTopLevelFilter());
}
+ if (!Runtime.experiments.isEnabled('timelinePaintTimingMarkers'))
+ this._filters.push(Timeline.TimelineUIUtils.paintEventsFilter());
/** @type {?Timeline.PerformanceModel} */
this._performanceModel = null;

Powered by Google App Engine
This is Rietveld 408576698