From c637edb34e27998cb423337972bc811969e474e1 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Sat, 17 Oct 2020 19:15:43 -0700 Subject: [PATCH] Restore missing call to RuntimeDelegate.OnRootIsolateCreated Fixes https://github.com/flutter/flutter/issues/68411 --- runtime/runtime_controller.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/runtime_controller.cc b/runtime/runtime_controller.cc index b2a8f7a14389f..8c541c2ffecf0 100644 --- a/runtime/runtime_controller.cc +++ b/runtime/runtime_controller.cc @@ -398,6 +398,9 @@ bool RuntimeController::LaunchRootIsolate( } FML_DCHECK(Dart_CurrentIsolate() == nullptr); + + client_.OnRootIsolateCreated(); + return true; }