From 499a70f5e21b2d2ee2fd360f2f58579fc29e0c55 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Sat, 17 Oct 2020 20:33:13 -0700 Subject: [PATCH] Restore missing call to RuntimeDelegate.OnRootIsolateCreated (#21953) 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 c0874db466c7ce..a2ea4a00d24dfb 100644 --- a/runtime/runtime_controller.cc +++ b/runtime/runtime_controller.cc @@ -397,6 +397,9 @@ bool RuntimeController::LaunchRootIsolate( } FML_DCHECK(Dart_CurrentIsolate() == nullptr); + + client_.OnRootIsolateCreated(); + return true; }