From f03cc19612e927378aef58ec20f41deca949d0ef Mon Sep 17 00:00:00 2001 From: Jia Hao Date: Wed, 17 Jan 2024 00:11:19 +0800 Subject: [PATCH] Add `flutter` prefix to import (flutter/engine#49793) This keeps things consistent with other imports and fixes the internal breakage (b/320443454). While the build system here is able to handle imports both with and without the flutter prefix, the internal mechanism that rewrites these imports is currently unable to handle the latter case. --- engine/src/flutter/shell/common/run_configuration.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/common/run_configuration.cc b/engine/src/flutter/shell/common/run_configuration.cc index 5ab909e021d..759fe757e3b 100644 --- a/engine/src/flutter/shell/common/run_configuration.cc +++ b/engine/src/flutter/shell/common/run_configuration.cc @@ -12,7 +12,7 @@ #include "flutter/fml/file.h" #include "flutter/fml/unique_fd.h" #include "flutter/runtime/dart_vm.h" -#include "runtime/isolate_configuration.h" +#include "flutter/runtime/isolate_configuration.h" namespace flutter {