From afaef07cacdd03e71e5d351e659ffa3a6516bb0a Mon Sep 17 00:00:00 2001 From: David Worsham Date: Wed, 6 Oct 2021 10:49:10 -0700 Subject: [PATCH] Revert "Guard task queue id for fuchsia (#26542)" (flutter/engine#29042) This reverts commit 1692a5f722119bb6673eb36d5d4f3d98b208f189. --- engine/src/flutter/shell/common/vsync_waiter.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/engine/src/flutter/shell/common/vsync_waiter.cc b/engine/src/flutter/shell/common/vsync_waiter.cc index c2806d5b7d3..1755755182e 100644 --- a/engine/src/flutter/shell/common/vsync_waiter.cc +++ b/engine/src/flutter/shell/common/vsync_waiter.cc @@ -133,13 +133,8 @@ void VsyncWaiter::FireCallback(fml::TimePoint frame_start_time, TRACE_FLOW_BEGIN("flutter", kVsyncFlowName, flow_identifier); - fml::TaskQueueId ui_task_queue_id = fml::_kUnmerged; - if (pause_secondary_tasks) { - // Guarding `GetTaskQueueId` behind `pause_secondary_tasks` as on Fuchsia - // the task runners don't initialize message loop task queues. - // Once the migration to embedder API is done, this can be deleted. - ui_task_queue_id = task_runners_.GetUITaskRunner()->GetTaskQueueId(); - } + fml::TaskQueueId ui_task_queue_id = + task_runners_.GetUITaskRunner()->GetTaskQueueId(); task_runners_.GetUITaskRunner()->PostTask( [ui_task_queue_id, callback, flow_identifier, frame_start_time,