File tree 2 files changed +9
-0
lines changed
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>[
1358
1358
'99th_percentile_picture_cache_memory' ,
1359
1359
'worst_picture_cache_memory' ,
1360
1360
'old_gen_gc_count' ,
1361
+ 'average_frame_request_pending_latency' ,
1362
+ '90th_percentile_frame_request_pending_latency' ,
1363
+ '99th_percentile_frame_request_pending_latency'
1361
1364
];
1362
1365
1363
1366
/// 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() {
58
58
'average_vsync_transitions_missed' : 1 ,
59
59
'90th_percentile_vsync_transitions_missed' : 1 ,
60
60
'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 ,
61
64
};
62
65
const String resultFileName = 'fake_result' ;
63
66
void driveCallback (List <String > arguments) {
@@ -108,6 +111,9 @@ void main() {
108
111
'90hz_frame_percentage' : 0.4 ,
109
112
'120hz_frame_percentage' : 0.6 ,
110
113
'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 ,
111
117
};
112
118
const String resultFileName = 'fake_result' ;
113
119
void driveCallback (List <String > arguments) {
You can’t perform that action at this time.
0 commit comments