From 39f4744acf6cd74cf39a4cd3703d764666557b55 Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Wed, 22 May 2024 07:59:08 -0400 Subject: [PATCH] flags: disable in-product health system --- docs/chrome-flags-for-tools.md | 1 + src/flags.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/chrome-flags-for-tools.md b/docs/chrome-flags-for-tools.md index a6c6db0bc..7c76de61f 100644 --- a/docs/chrome-flags-for-tools.md +++ b/docs/chrome-flags-for-tools.md @@ -21,6 +21,7 @@ Here's a **[Nov 2022 comparison of what flags](https://docs.google.com/spreadshe * `--no-first-run`: Skip first run wizards * `--ash-no-nudges`: Avoids blue bubble "user education" nudges (eg., "… give your browser a new look", Memory Saver) * `--disable-search-engine-choice-screen`: Disable the 2023+ search engine choice screen +* `--propagate-iph-for-testing`: Specifies which in-product help (IPH) features are allowed. If no arguments are provided, then all IPH features are disabled. ## Task throttling diff --git a/src/flags.ts b/src/flags.ts index 775dea3f9..b9250407c 100644 --- a/src/flags.ts +++ b/src/flags.ts @@ -77,4 +77,6 @@ export const DEFAULT_FLAGS: ReadonlyArray = [ '--disable-prompt-on-repost', // Disables Domain Reliability Monitoring, which tracks whether the browser has difficulty contacting Google-owned sites and uploads reports to Google. '--disable-domain-reliability', + // Disable the in-product Help (IPH) system. + '--propagate-iph-for-testing', ];