From 020222ddd0216a43a6b87e59a6bfcea392f70054 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Wed, 29 Jan 2020 09:17:45 -0800 Subject: [PATCH] Allow --enable-service-port-fallback as a whitelisted arg (#16167) --- shell/common/switches.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/shell/common/switches.cc b/shell/common/switches.cc index b5b1599f1..8efb517ae 100644 --- a/shell/common/switches.cc +++ b/shell/common/switches.cc @@ -50,16 +50,17 @@ static const std::string gDartFlagsWhitelist[] = { // clang-format off static const std::string gDartFlagsWhitelist[] = { + "--enable_mirrors", + "--enable-service-port-fallback", + "--lazy_async_stacks", "--max_profile_depth", + "--no-causal_async_stacks", "--profile_period", "--random_seed", - "--enable_mirrors", - "--write-service-info", "--sample-buffer-duration", - "--no-causal_async_stacks", - "--lazy_async_stacks", "--trace-reload", "--trace-reload-verbose", + "--write-service-info", }; // clang-format on -- GitLab