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

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

Issue 2491783002: DevTools: Use lightweight sampling mode to collect runtime call stats for Timeline. (Closed)
Patch Set: 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
« 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: 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 f075760e19d973c338122f44eb4ce567ed5c3ce4..0810637981ccae74ca597468ea7b8dfccf70a09b 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -44,7 +44,7 @@ WebInspector.TimelineController = class {
categoriesArray.push(disabledByDefault('toplevel.flow'), disabledByDefault('ipc.flow'));
}
if (Runtime.experiments.isEnabled('timelineV8RuntimeCallStats') && enableJSSampling)
- categoriesArray.push(disabledByDefault('v8.runtime_stats'));
+ categoriesArray.push(disabledByDefault('v8.runtime_stats_sampling'));
if (Runtime.experiments.isEnabled('timelineTracingJSProfile') && enableJSSampling) {
categoriesArray.push(disabledByDefault('v8.cpu_profiler'));
if (WebInspector.moduleSetting('highResolutionCpuProfiling').get())
« 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