| 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())
|
|
|