File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
front_end/panels/timeline Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ export class TimelineController implements Trace.TracingManager.TracingManagerCl
9797 disabledByDefault ( 'devtools.timeline.frame' ) ,
9898 disabledByDefault ( 'devtools.timeline.stack' ) ,
9999 disabledByDefault ( 'devtools.timeline' ) ,
100- disabledByDefault ( 'devtools.v8-source-rundown-sources' ) ,
101100 disabledByDefault ( 'devtools.v8-source-rundown' ) ,
102101 disabledByDefault ( 'v8.compile' ) ,
103102 disabledByDefault ( 'v8.inspector' ) ,
@@ -109,6 +108,10 @@ export class TimelineController implements Trace.TracingManager.TracingManagerCl
109108 'navigation,rail' ,
110109 ] ;
111110
111+ if ( Root . Runtime . experiments . isEnabled ( Root . Runtime . ExperimentName . TIMELINE_COMPILED_SOURCES ) ) {
112+ categoriesArray . push ( disabledByDefault ( 'devtools.v8-source-rundown-sources' ) ) ;
113+ }
114+
112115 if ( Root . Runtime . experiments . isEnabled ( 'timeline-v8-runtime-call-stats' ) && options . enableJSSampling ) {
113116 categoriesArray . push ( disabledByDefault ( 'v8.runtime_stats_sampling' ) ) ;
114117 }
You can’t perform that action at this time.
0 commit comments