File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1358,6 +1358,9 @@ const List<String> _kCommonScoreKeys = <String>[
13581358 '99th_percentile_picture_cache_memory' ,
13591359 'worst_picture_cache_memory' ,
13601360 'old_gen_gc_count' ,
1361+ 'average_frame_request_pending_latency' ,
1362+ '90th_percentile_frame_request_pending_latency' ,
1363+ '99th_percentile_frame_request_pending_latency'
13611364];
13621365
13631366/// Measures how long it takes to compile a Flutter app to JavaScript and how
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ void main() {
5858 'average_vsync_transitions_missed' : 1 ,
5959 '90th_percentile_vsync_transitions_missed' : 1 ,
6060 '99th_percentile_vsync_transitions_missed' : 1 ,
61+ 'average_frame_request_pending_latency' : 0.1 ,
62+ '90th_percentile_frame_request_pending_latency' : 0.1 ,
63+ '99th_percentile_frame_request_pending_latency' : 0.1 ,
6164 };
6265 const String resultFileName = 'fake_result' ;
6366 void driveCallback (List <String > arguments) {
@@ -108,6 +111,9 @@ void main() {
108111 '90hz_frame_percentage' : 0.4 ,
109112 '120hz_frame_percentage' : 0.6 ,
110113 'illegal_refresh_rate_frame_count' : 10 ,
114+ 'average_frame_request_pending_latency' : 0.1 ,
115+ '90th_percentile_frame_request_pending_latency' : 0.1 ,
116+ '99th_percentile_frame_request_pending_latency' : 0.1 ,
111117 };
112118 const String resultFileName = 'fake_result' ;
113119 void driveCallback (List <String > arguments) {
You can’t perform that action at this time.
0 commit comments