diff --git a/engine/src/flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.cc b/engine/src/flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.cc index a2dbb35ea4a..c86ff1208cd 100644 --- a/engine/src/flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.cc +++ b/engine/src/flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.cc @@ -231,7 +231,7 @@ bool DartComponentController::CreateAndBindNamespace() { dart_outgoing_dir_ptr_to_check_on_open_.NewRequest()); // Collect our standard set of directories. - std::vector other_dirs = {"debug", "ctrl", "diagnostics"}; + std::vector other_dirs = {"debug", "ctrl"}; dart_outgoing_dir_ptr_to_check_on_open_.events().OnOpen = [this, other_dirs](zx_status_t status, auto unused) { diff --git a/engine/src/flutter/shell/platform/fuchsia/flutter/component_v2.cc b/engine/src/flutter/shell/platform/fuchsia/flutter/component_v2.cc index ef616bbf4bf..98f1f57abfc 100644 --- a/engine/src/flutter/shell/platform/fuchsia/flutter/component_v2.cc +++ b/engine/src/flutter/shell/platform/fuchsia/flutter/component_v2.cc @@ -274,7 +274,7 @@ ComponentV2::ComponentV2( // Collect our standard set of directories along with directories that are // included in the cml file to expose. - std::vector other_dirs = {"debug", "ctrl", "diagnostics"}; + std::vector other_dirs = {"debug", "ctrl"}; for (auto dir : metadata.expose_dirs) { other_dirs.push_back(dir); }