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

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

Issue 2517463005: Timeline: nuke flow events experiment (Closed)
Patch Set: also removed flow events support from FlameChart Created 4 years, 1 month 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/TimelineController.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
index ac9c4b86b7b861e1ba8dc6ed734112630df3092c..c85ba1b335eb869a521dadca9ed0f34de5e7aefc 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -47,9 +47,6 @@ Timeline.TimelineController = class {
];
categoriesArray.push(TimelineModel.TimelineModel.Category.LatencyInfo);
- if (Runtime.experiments.isEnabled('timelineFlowEvents'))
- categoriesArray.push(disabledByDefault('toplevel.flow'), disabledByDefault('ipc.flow'));
-
if (Runtime.experiments.isEnabled('timelineV8RuntimeCallStats') && enableJSSampling)
categoriesArray.push(disabledByDefault('v8.runtime_stats_sampling'));
if (Runtime.experiments.isEnabled('timelineTracingJSProfile') && enableJSSampling) {
@@ -310,4 +307,4 @@ Timeline.TimelineController = class {
eventsRetrievalProgress(progress) {
this._delegate.loadingProgress(progress);
}
-};
+};

Powered by Google App Engine
This is Rietveld 408576698