Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 0e84d44

Browse files
committed
add pause_dart_microtasks=false
1 parent 224b526 commit 0e84d44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/platform/fuchsia/flutter/vsync_waiter.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void VsyncWaiter::AwaitVSyncForSecondaryCallback() {
218218
"request_already_pending", frame_request_pending_);
219219

220220
FrameTargetTimes times = GetTargetTimesHelper(/*secondary_callback=*/true);
221-
FireCallback(times.first, times.second);
221+
FireCallback(times.first, times.second, false);
222222
}
223223

224224
// Postcondition: Either a frame is scheduled or frame_request_pending_ is set
@@ -232,7 +232,7 @@ void VsyncWaiter::FireCallbackMaybe() {
232232
last_targetted_vsync_ = times.second;
233233
frame_request_pending_ = false;
234234

235-
FireCallback(times.first, times.second);
235+
FireCallback(times.first, times.second, false);
236236
} else {
237237
frame_request_pending_ = true;
238238
}

0 commit comments

Comments
 (0)