From 5a592563c0c92257e37c1061ec1e339ea768283e Mon Sep 17 00:00:00 2001 From: Jia Hao Goh Date: Tue, 16 Jan 2024 21:01:42 +0800 Subject: [PATCH] Add `flutter` prefix to import 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. --- shell/common/run_configuration.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/common/run_configuration.cc b/shell/common/run_configuration.cc index 5ab909e021d7f..759fe757e3bd5 100644 --- a/shell/common/run_configuration.cc +++ b/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 {