Unverified Commit eb742ea8 authored by Kaushik Iska's avatar Kaushik Iska Committed by GitHub

Specify rasterFinishWallTime (#85731)

This is to transition `rasterFinishWallTime` to a required field in `dart:ui`.
parent 0d1c13e6
......@@ -143,6 +143,7 @@ void main() {
buildFinish: 15000,
rasterStart: 16000,
rasterFinish: 20000,
rasterFinishWallTime: 20010,
frameNumber: 1991
)]);
......
......@@ -29,6 +29,9 @@ void main() {
buildFinish: buildTimes[i],
rasterStart: 500,
rasterFinish: rasterTimes[i],
// Wall time should not be used in any profiling metrics.
// It is primarily to correlate with external tools' measurement.
rasterFinishWallTime: 0,
),
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment