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

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

Issue 2459573006: [DevTools] Show V8 Runtime Call Stats on timeline (Closed)
Patch Set: Created 4 years, 2 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 | « third_party/WebKit/Source/devtools/front_end/main/Main.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 be3ad3e49e06c633332a1576dfda3d4bed05707e..695e39d7a7c7831c58d435a647a0f1060a25f64c 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -51,6 +51,8 @@ WebInspector.TimelineController.prototype = {
categoriesArray.push(disabledByDefault("toplevel.flow"),
disabledByDefault("ipc.flow"));
}
+ if (Runtime.experiments.isEnabled("timelineV8RuntimeCallStats") && enableJSSampling)
+ categoriesArray.push(disabledByDefault("v8.runtime_stats"));
if (Runtime.experiments.isEnabled("timelineTracingJSProfile") && enableJSSampling) {
categoriesArray.push(disabledByDefault("v8.cpu_profiler"));
if (WebInspector.moduleSetting("highResolutionCpuProfiling").get())
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/main/Main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698