From f95812f71ea4150b65abdd209e6d107746afaee9 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 5 Apr 2021 15:03:21 -0700 Subject: [PATCH] Remove the DartIsolate::PostMessage timeline event See https://github.com/flutter/flutter/issues/79498 --- runtime/dart_isolate.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/dart_isolate.cc b/runtime/dart_isolate.cc index de933bca67fc4..0bb3940dad01c 100644 --- a/runtime/dart_isolate.cc +++ b/runtime/dart_isolate.cc @@ -446,7 +446,6 @@ void DartIsolate::SetMessageHandlingTaskRunner( message_handling_task_runner_ = runner; message_handler().Initialize([runner](std::function task) { - TRACE_EVENT0("flutter", "DartIsolate::PostMessage"); runner->PostTask([task = std::move(task)]() { TRACE_EVENT0("flutter", "DartIsolate::HandleMessage"); task();