Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "chrome/browser/flag_descriptions.h" |
| 6 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 7 | #include "build/build_config.h" |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 8 | #include "build/chromeos_buildflags.h" |
Colin Blundell | 120bc90 | 2023-01-12 15:33:27 | [diff] [blame] | 9 | #include "flag_descriptions.h" |
David Dorwin | 7d75ca9 | 2022-03-10 21:59:56 | [diff] [blame] | 10 | #include "pdf/buildflags.h" |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 11 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 12 | // Keep in identical order as the header file, see the comment at the top |
| 13 | // for formatting rules. |
| 14 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 15 | namespace flag_descriptions { |
| 16 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 17 | const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; |
| 18 | const char kAccelerated2dCanvasDescription[] = |
| 19 | "Enables the use of the GPU to perform 2d canvas rendering instead of " |
| 20 | "using software rendering."; |
horo | db71a5a | 2017-06-09 16:08:24 | [diff] [blame] | 21 | |
Justin Novosad | 8faf695 | 2021-08-20 22:36:49 | [diff] [blame] | 22 | const char kCanvasOopRasterizationName[] = |
| 23 | "Out-of-process 2D canvas rasterization."; |
| 24 | const char kCanvasOopRasterizationDescription[] = |
| 25 | "The rasterization of 2d canvas contents is performed in the GPU process. " |
| 26 | "Requires that out-of-process rasterization be enabled."; |
| 27 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 28 | const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode"; |
| 29 | const char kAcceleratedVideoDecodeDescription[] = |
| 30 | "Hardware-accelerated video decode where available."; |
| 31 | |
Hirokazu Honda | 732d3e62 | 2019-06-12 01:13:44 | [diff] [blame] | 32 | const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode"; |
| 33 | const char kAcceleratedVideoEncodeDescription[] = |
| 34 | "Hardware-accelerated video encode where available."; |
| 35 | |
David Dorwin | 7d75ca9 | 2022-03-10 21:59:56 | [diff] [blame] | 36 | #if BUILDFLAG(ENABLE_PDF) |
Ankit Kumar 🌪️ | cc71c02a | 2020-08-06 03:44:30 | [diff] [blame] | 37 | const char kAccessiblePDFFormName[] = "Accessible PDF Forms"; |
| 38 | const char kAccessiblePDFFormDescription[] = |
| 39 | "Enables accessibility support for PDF forms."; |
Hui Yingst | 058c2370 | 2022-11-06 18:59:22 | [diff] [blame] | 40 | |
| 41 | const char kPdfUseSkiaRendererName[] = "Use Skia Renderer"; |
| 42 | const char kPdfUseSkiaRendererDescription[] = "Use Skia as the PDF renderer."; |
David Dorwin | 7d75ca9 | 2022-03-10 21:59:56 | [diff] [blame] | 43 | #endif |
Ankit Kumar 🌪️ | cc71c02a | 2020-08-06 03:44:30 | [diff] [blame] | 44 | |
Liza Bipin | a0d7fcf | 2022-12-28 14:38:50 | [diff] [blame] | 45 | extern const char kAddEduAccountFromAccountSettingsForSupervisedUsersName[] = |
| 46 | "Add Edu Account From Account Settings For Supervised Users"; |
| 47 | extern const char |
| 48 | kAddEduAccountFromAccountSettingsForSupervisedUsersDescription[] = |
| 49 | "Enables supervised users to add additional Edu accounts and " |
| 50 | "simplifies settings UI"; |
Mihai Sardarescu | a6919374 | 2019-12-06 17:31:33 | [diff] [blame] | 51 | |
Nikki Fang | 32bf628 | 2023-01-04 05:28:41 | [diff] [blame] | 52 | const char kAppDeduplicationServiceFondueName[] = |
| 53 | "Identify duplicate app groups."; |
| 54 | const char kAppDeduplicationServiceFondueDescription[] = |
| 55 | "Enables pulling app duplicate data from a Google server to allow clients " |
| 56 | "to determine app duplicates."; |
| 57 | |
Etienne Pierre-doray | b6e0b67 | 2022-07-06 17:17:36 | [diff] [blame] | 58 | const char kAlignWakeUpsName[] = "Align delayed wake ups at 125 Hz"; |
| 59 | const char kAlignWakeUpsDescription[] = |
| 60 | "Run most delayed tasks with a non-zero delay (including DOM Timers) on a " |
| 61 | "periodic 125Hz tick, instead of as soon as their delay has passed."; |
| 62 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 63 | const char kAllowInsecureLocalhostName[] = |
| 64 | "Allow invalid certificates for resources loaded from localhost."; |
| 65 | const char kAllowInsecureLocalhostDescription[] = |
| 66 | "Allows requests to localhost over HTTPS even when an invalid certificate " |
| 67 | "is presented."; |
| 68 | |
sophiewen | cc86b2c | 2023-02-07 18:29:46 | [diff] [blame] | 69 | const char kWindowLayoutMenu[] = "New Window Layout Menu"; |
| 70 | const char kWindowLayoutMenuDescription[] = |
| 71 | "Enables the new Window Layout menu for adjusting window layouts. Also " |
| 72 | "enables Floating windows and partial split-screen layouts."; |
| 73 | |
Judy Wang | ec296a1 | 2021-03-12 00:22:52 | [diff] [blame] | 74 | const char kWindowsFollowCursorName[] = |
| 75 | "Windows open on the display with the cursor"; |
| 76 | const char kWindowsFollowCursorDescription[] = |
| 77 | "When there are multiple displays, windows open on the display where " |
| 78 | "cursor is located."; |
| 79 | |
Chris Blume | d5d8587 | 2021-02-17 18:21:01 | [diff] [blame] | 80 | const char kAnimatedImageResumeName[] = "Use animated image resume behavior"; |
| 81 | const char kAnimatedImageResumeDescription[] = |
| 82 | "Resumes animated images from the last frame drawn rather than attempt " |
| 83 | "to catch up to the frame that should be drawn based on current time."; |
| 84 | |
Dominic Mazzoni | 34dfc648 | 2020-11-18 22:17:58 | [diff] [blame] | 85 | const char kAriaElementReflectionName[] = "Enable ARIA element reflection"; |
| 86 | const char kAriaElementReflectionDescription[] = |
| 87 | "Enable setting ARIA relationship attributes that reference other elements " |
| 88 | "directly without an IDREF"; |
| 89 | |
Andrew Paseltiner | 11afa4e | 2022-07-26 14:23:49 | [diff] [blame] | 90 | const char kAttributionReportingDebugModeName[] = |
| 91 | "Attribution Reporting Debug Mode"; |
| 92 | const char kAttributionReportingDebugModeDescription[] = |
| 93 | "Enables debug mode for the Attribution Reporting API. This removes all " |
| 94 | "reporting delays and noise. Only works if the Attribution Reporting API " |
| 95 | "is already enabled."; |
| 96 | |
Tsuyoshi Horo | 41b0fe00 | 2023-01-30 03:04:57 | [diff] [blame] | 97 | const char kBackgroundResourceFetchName[] = "Background Resource Fetch"; |
| 98 | const char kBackgroundResourceFetchDescription[] = |
| 99 | "Process resource requests in a background thread inside Blink."; |
| 100 | |
Joe DeBlasio | e349bdd | 2022-12-28 00:39:59 | [diff] [blame] | 101 | const char kBlockInsecureDownloadsName[] = "Block insecure downloads"; |
| 102 | const char kBlockInsecureDownloadsDescription[] = |
| 103 | "Enables insecure download blocking. This shows a 'blocked' message if the " |
| 104 | "user attempts to download a file over an insecure transport (e.g. HTTP) " |
| 105 | "either directly or via an insecure redirect."; |
| 106 | |
Yutaka Hirano | 92bdfa2 | 2022-06-01 15:51:33 | [diff] [blame] | 107 | const char kBrokerFileOperationsOnDiskCacheInNetworkServiceName[] = |
| 108 | "Broker file operations on disk cache in the Network Service"; |
| 109 | const char kBrokerFileOperationsOnDiskCacheInNetworkServiceDescription[] = |
| 110 | "Broker file operations on disk cache running in the Network Service. This " |
| 111 | "is no-op when the Network Service is running in the browser process."; |
| 112 | |
Hubert Chao | c30058a | 2022-12-01 01:08:44 | [diff] [blame] | 113 | const char kCertDualVerificationEnabledName[] = "Cert Dual Verification"; |
| 114 | const char kCertDualVerificationEnabledDescription[] = |
| 115 | "Runs both platform Cert Verifer and Chrome Cert Verifier, reporting " |
| 116 | "any differences to Chrome if Safe Browsing Extended Reporting is " |
| 117 | "enabled."; |
| 118 | |
Ana SollanoKim | 2266c11 | 2022-07-14 23:38:15 | [diff] [blame] | 119 | const char kClipboardUnsanitizedContentName[] = |
| 120 | "Clipboard unsanitized read and write"; |
| 121 | const char kClipboardUnsanitizedContentDescription[] = |
| 122 | "Allows reading/writing unsanitized content from/to the clipboard. " |
| 123 | "Currently, it is only applicable to HTML format. See crbug.com/1268679."; |
| 124 | |
Hubert Chao | d8adfa7 | 2022-10-19 18:18:52 | [diff] [blame] | 125 | const char kChromeRootStoreEnabledName[] = "Chrome Root Store"; |
| 126 | const char kChromeRootStoreEnabledDescription[] = |
| 127 | "Enable use of Chrome Root Store over platform roots. " |
| 128 | "On some platforms this may also enable Chrome Cert Verifier."; |
| 129 | |
Basia Zimirska | b0d235a | 2021-02-24 19:42:53 | [diff] [blame] | 130 | const char kContentLanguagesInLanguagePickerName[] = |
| 131 | "Content languages in language picker"; |
| 132 | const char kContentLanguagesInLanguagePickerDescription[] = |
| 133 | "Enables bringing user's content languages that are translatable to the " |
| 134 | "top of the list with all languages shown in the translate menu"; |
| 135 | |
Riley Tatum | 8a784fdb | 2022-10-19 16:48:52 | [diff] [blame] | 136 | const char kCustomizeChromeColorExtractionName[] = |
| 137 | "Customize Chrome Color Extraction"; |
| 138 | const char kCustomizeChromeColorExtractionDescription[] = |
| 139 | "Enables setting theme color based on background image color when " |
| 140 | "background image is changed in New Tab Page Customize Chrome."; |
| 141 | |
Nihar Majmudar | c934f4f | 2022-08-02 23:56:15 | [diff] [blame] | 142 | const char kCustomizeChromeSidePanelName[] = "Customize Chrome Side Panel"; |
| 143 | const char KCustomizeChromeSidePanelDescription[] = |
| 144 | "Enables the ability to use Customize Chrome functionality from the " |
| 145 | "unified side panel on the New Tab Page."; |
| 146 | |
Alice Wang | 345e0944 | 2021-07-05 09:03:29 | [diff] [blame] | 147 | const char kForceStartupSigninPromoName[] = "Force Start-up Signin Promo"; |
| 148 | const char kForceStartupSigninPromoDescription[] = |
| 149 | "If enabled, the full screen signin promo will be forced to show up at " |
| 150 | "Chrome start-up."; |
| 151 | |
Tanmoy Mollik | 271c46e | 2022-10-18 13:24:30 | [diff] [blame] | 152 | const char kGaiaIdCacheInAccountManagerFacadeName[] = |
| 153 | "Gaia Id In AccountManagerFacade (AMF)"; |
| 154 | const char kGaiaIdCacheInAccountManagerFacadeDescription[] = |
Tanmoy Mollik | d2408c2e | 2022-10-03 12:54:55 | [diff] [blame] | 155 | "If enabled, starts fetching gaia id from android accounts in " |
| 156 | "AccountManagerFacade (AMF)"; |
| 157 | |
Tanmoy Mollik | 429d21a | 2022-11-28 15:42:06 | [diff] [blame] | 158 | const char kIdentityStatusConsistencyName[] = "Identity Status Consistency"; |
| 159 | const char kIdentityStatusConsistencyDescription[] = |
| 160 | "If enabled, always show identity status - even for signed-out users"; |
| 161 | |
Alice Wang | 9746958 | 2022-05-09 08:00:26 | [diff] [blame] | 162 | const char kTangibleSyncName[] = "Tangible Sync"; |
| 163 | const char kTangibleSyncDescription[] = |
| 164 | "Enables the tangible sync when a user starts the sync consent flow"; |
| 165 | |
shivanigithub | 9936838 | 2021-06-16 18:33:37 | [diff] [blame] | 166 | const char kDebugHistoryInterventionNoUserActivationName[] = |
| 167 | "Debug flag for history intervention on no user activation"; |
| 168 | const char kDebugHistoryInterventionNoUserActivationDescription[] = |
| 169 | "This flag when enabled, will be used to debug an issue where a page that " |
| 170 | "did not get user activation " |
| 171 | "is able to work around the history intervention which is not the expected " |
| 172 | "behavior"; |
| 173 | |
Viktoriia Kovalova | 2195056 | 2022-01-11 15:49:12 | [diff] [blame] | 174 | extern const char kDefaultChromeAppsMigrationName[] = |
| 175 | "Default Chrome apps policy migration"; |
| 176 | extern const char kDefaultChromeAppsMigrationDescription[] = |
| 177 | "Enable replacing policies to force install Chrome apps with policies to " |
| 178 | "force install PWAs"; |
| 179 | |
Tommy Steimel | c79b2e0 | 2022-07-07 19:07:51 | [diff] [blame] | 180 | const char kDocumentPictureInPictureApiName[] = |
| 181 | "Document Picture-in-Picture API"; |
| 182 | const char kDocumentPictureInPictureApiDescription[] = |
| 183 | "Enables API to open an always-on-top window with a full HTML document"; |
| 184 | |
Mohamed Amir Yosef | e19919bc | 2022-09-30 11:49:26 | [diff] [blame] | 185 | const char kPasswordNotesWithBackupName[] = "Password notes in settings"; |
| 186 | const char kPasswordNotesWithBackupDescription[] = |
Adem Derinel | 2ea69d9 | 2022-03-17 08:58:05 | [diff] [blame] | 187 | "Enables a note section for each password in the settings page."; |
| 188 | |
Adem Derinel | 76fff52a1 | 2022-06-20 08:49:06 | [diff] [blame] | 189 | const char kPasswordViewPageInSettingsName[] = "Password view page in settings"; |
| 190 | const char kPasswordViewPageInSettingsDescription[] = |
| 191 | "Enables a new password details subpage in the settings password " |
| 192 | "management UI."; |
| 193 | |
Vasiliy Telezhnikov | 85321a8 | 2022-11-08 00:20:15 | [diff] [blame] | 194 | extern const char kPPAPISharedImagesSwapChainName[] = |
| 195 | "Use SharedImages for PPAPI swapchain"; |
| 196 | extern const char kPPAPISharedImagesSwapChainDescription[] = |
| 197 | "Switches legacy swap chain code to SharedImages"; |
| 198 | |
Colin Blundell | 120bc90 | 2023-01-12 15:33:27 | [diff] [blame] | 199 | extern const char kSupportPepperVideoDecoderDevAPIName[] = |
| 200 | "Controls whether the Pepper PPB_VideoDecoder(Dev) API is supported"; |
| 201 | extern const char kSupportPepperVideoDecoderDevAPIDescription[] = |
| 202 | "When disabled, Chrome will return 0 if asked to create the " |
| 203 | "PPB_VideoDecoder(Dev) API by in-process callers"; |
| 204 | |
Colin Blundell | 2ebb732 | 2023-02-03 07:43:58 | [diff] [blame] | 205 | extern const char kCmdDecoderAlwaysGetSizeFromSourceTextureName[] = |
| 206 | "Controls whether the GLES2 validating decoder always gets size from the " |
| 207 | "source texture when copying textures"; |
| 208 | extern const char kCmdDecoderAlwaysGetSizeFromSourceTextureDescription[] = |
| 209 | "When enabled, the GLES2 validating decoder will obtain size from the " |
| 210 | "source texture rather than the GLImage when copying textures even if a " |
| 211 | "GLImage is present"; |
| 212 | |
Andre Le | 29427c2 | 2022-09-23 23:01:57 | [diff] [blame] | 213 | const char kPrivacyIndicatorsName[] = "Enable Privacy Indicators"; |
| 214 | const char kPrivacyIndicatorsDescription[] = |
| 215 | "While screen sharing or camera/microphone is being accessed, show a green " |
| 216 | "icon in the status area as well as add a silent notification to the tray."; |
| 217 | |
Vicky Min | b02c3e9 | 2020-07-07 20:56:52 | [diff] [blame] | 218 | const char kEnableBluetoothSerialPortProfileInSerialApiName[] = |
| 219 | "Enable Bluetooth Serial Port Profile in Serial API"; |
| 220 | const char kEnableBluetoothSerialPortProfileInSerialApiDescription[] = |
| 221 | "When enabled, Bluetooth Serial Port Profile devices will be enumerated " |
| 222 | "for use with the Serial API."; |
| 223 | |
Vikas Soni | 7981a2d | 2021-07-30 18:51:11 | [diff] [blame] | 224 | const char kEnableDrDcName[] = |
| 225 | "Enables Display Compositor to use a new gpu thread."; |
| 226 | const char kEnableDrDcDescription[] = |
| 227 | "When enabled, chrome uses 2 gpu threads instead of 1. " |
| 228 | " Display compositor uses new dr-dc gpu thread and all other clients " |
| 229 | "(raster, webgl, video) " |
| 230 | " continues using the gpu main thread."; |
| 231 | |
vikassoni | 93f244b | 2022-05-12 21:58:26 | [diff] [blame] | 232 | const char kEnableDrDcVulkanName[] = |
| 233 | " Use this flag along with flag enable-drdc to enable DrDc on Vulkan. " |
| 234 | " Note that this flag will be a no-op if enable-drdc is disabled. "; |
| 235 | |
Le Hoang Quyen | d6ceade6 | 2022-05-20 07:13:10 | [diff] [blame] | 236 | const char kForceGpuMainThreadToNormalPriorityDrDcName[] = |
| 237 | "Force GPU main thread priority to normal for DrDc."; |
| 238 | const char kForceGpuMainThreadToNormalPriorityDrDcDescription[] = |
| 239 | "When enabled, force GPU main thread priority to be normal for DrDc mode. " |
| 240 | "In that case DrDc thread continues to use DISPLAY thread priority and " |
| 241 | "hence have higher thread priority than GPU main. Note that this flag will " |
| 242 | "be a no-op when DrDc is disabled."; |
| 243 | |
Aashna Sheth | ec3b89f | 2022-09-15 13:06:50 | [diff] [blame] | 244 | const char kTextBasedAudioDescriptionName[] = "Enable audio descriptions."; |
| 245 | const char kTextBasedAudioDescriptionDescription[] = |
| 246 | "When enabled, HTML5 video elements with a 'descriptions' WebVTT track " |
| 247 | "will speak the audio descriptions aloud as the video plays."; |
| 248 | |
Aga Wronska | 344fa828 | 2021-10-07 14:18:05 | [diff] [blame] | 249 | #if BUILDFLAG(ENABLE_SUPERVISED_USERS) |
| 250 | const char kWebFilterInterstitialRefreshName[] = |
| 251 | "Web filter interstitial refresh."; |
| 252 | const char kWebFilterInterstitialRefreshDescription[] = |
James Lee | 89b449e5 | 2022-12-13 18:14:52 | [diff] [blame] | 253 | "Enable web filter interstitial refresh for Family Link users."; |
Aga Wronska | 344fa828 | 2021-10-07 14:18:05 | [diff] [blame] | 254 | #endif // ENABLE_SUPERVISED_USERS |
| 255 | |
Elly Fong-Jones | 0c55976a | 2021-10-06 18:04:30 | [diff] [blame] | 256 | const char kUpcomingSharingFeaturesName[] = "Enable upcoming sharing features."; |
| 257 | const char kUpcomingSharingFeaturesDescription[] = |
| 258 | "This flag enables all upcoming sharing features, in the experiment " |
| 259 | "arms that are most likely to be shipped. This is a meta-flag so which " |
| 260 | "features are upcoming at any given time may change."; |
| 261 | |
Regan Hsu | 3243afa | 2021-06-21 18:27:27 | [diff] [blame] | 262 | const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address"; |
| 263 | const char kUseStorkSmdsServerAddressDescription[] = |
| 264 | "Use the Stork SM-DS address to fetch pending eSIM profiles managed by the " |
| 265 | "Stork prod server. Note that Stork profiles can be created with an EID at " |
| 266 | "go/stork-profile, and managed at go/stork-batch > View Profiles. Also " |
Jason Zhang | 26cacea | 2022-04-04 18:55:04 | [diff] [blame] | 267 | "note that an test EUICC card is required to use this feature, usually " |
| 268 | "that requires the kCellularUseSecond flag to be enabled. Go to " |
Regan Hsu | 3243afa | 2021-06-21 18:27:27 | [diff] [blame] | 269 | "go/cros-connectivity > Dev Tips for more instructions."; |
| 270 | |
Regan Hsu | 1ffea92 | 2020-09-10 17:08:47 | [diff] [blame] | 271 | const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL"; |
| 272 | const char kUseWallpaperStagingUrlDescription[] = |
| 273 | "Use the staging server as part of the Wallpaper App to verify " |
| 274 | "additions/removals of wallpapers."; |
| 275 | |
Kyle Horimoto | 874554a | 2019-01-31 00:52:09 | [diff] [blame] | 276 | const char kUseMessagesStagingUrlName[] = "Use Messages staging URL"; |
| 277 | const char kUseMessagesStagingUrlDescription[] = |
| 278 | "Use the staging server as part of the \"Messages\" feature under " |
| 279 | "\"Connected Devices\" settings."; |
| 280 | |
Jon Mann | 5ebbd153 | 2020-04-17 22:12:05 | [diff] [blame] | 281 | const char kUseCustomMessagesDomainName[] = "Use custom Messages domain"; |
| 282 | const char kUseCustomMessagesDomainDescription[] = |
| 283 | "Use a custom URL as part of the \"Messages\" feature under " |
| 284 | "\"Connected Devices\" settings."; |
| 285 | |
Pilar Molina Lopez | fd83aae | 2022-12-16 22:19:57 | [diff] [blame] | 286 | const char kUseMojoVideoDecoderForPepperName[] = |
| 287 | "Use the MojoVideoDecoder for hardware video decoding in Pepper"; |
| 288 | const char kUseMojoVideoDecoderForPepperDescription[] = |
| 289 | "Switches Pepper to use the MojoVideoDecoder for hardware accelerated " |
| 290 | "video decoding instead of the legacy video decoder."; |
| 291 | |
Vasiliy Telezhnikov | a416481 | 2022-10-03 18:38:20 | [diff] [blame] | 292 | const char kUseDMSAAForTilesName[] = "Use DMSAA for tiles"; |
| 293 | const char kUseDMSAAForTilesDescription[] = |
| 294 | "Switches skia to use DMSAA instead of MSAA for tile raster"; |
| 295 | |
Tsuyoshi Horo | d8114960 | 2022-07-04 01:34:09 | [diff] [blame] | 296 | const char kUseDnsHttpsSvcbAlpnName[] = "Use DNS https alpn"; |
| 297 | const char kUseDnsHttpsSvcbAlpnDescription[] = |
| 298 | "When enabled, Chrome may try QUIC on the first connection using the ALPN" |
| 299 | " information in the DNS HTTPS record."; |
| 300 | |
cfredric | 6f15576 | 2020-12-10 18:52:40 | [diff] [blame] | 301 | const char kEnableFirstPartySetsName[] = "Enable First-Party Sets"; |
| 302 | const char kEnableFirstPartySetsDescription[] = |
| 303 | "When enabled, Chrome will apply First-Party Sets to features such as the " |
| 304 | "SameParty cookie attribute."; |
| 305 | |
David Benjamin | 371481f | 2022-06-15 15:57:40 | [diff] [blame] | 306 | extern const char kEncryptedClientHelloName[] = "Encrypted ClientHello"; |
| 307 | extern const char kEncryptedClientHelloDescription[] = |
| 308 | "When enabled, Chrome will enable Encrypted ClientHello support. This will " |
| 309 | "encrypt TLS ClientHello if the server enables the extension via the HTTPS " |
| 310 | "DNS record."; |
| 311 | |
W. James MacLean | 0d757fa | 2022-02-16 16:13:31 | [diff] [blame] | 312 | extern const char kIsolatedSandboxedIframesName[] = |
| 313 | "Isolated sandboxed iframes"; |
| 314 | extern const char kIsolatedSandboxedIframesDescription[] = |
| 315 | "When enabled, applies process isolation to iframes with the 'sandbox' " |
| 316 | "attribute and without the 'allow-same-origin' permission set on that " |
W. James MacLean | 3b6d087 | 2022-06-24 16:16:14 | [diff] [blame] | 317 | "attribute. This also applies to documents with a similar CSP sandbox " |
| 318 | "header, even in the main frame. The affected sandboxed documents can be " |
| 319 | "grouped into processes based on their URL's site or origin. The default " |
| 320 | "grouping when enabled is per-site."; |
W. James MacLean | 0d757fa | 2022-02-16 16:13:31 | [diff] [blame] | 321 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 322 | const char kAssistantConsentSimplifiedTextName[] = |
Josh Simmons | d9bf13d7 | 2021-12-03 01:49:22 | [diff] [blame] | 323 | "AssistantConsentSimplifiedText"; |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 324 | const char kAssistantConsentSimplifiedTextDescription[] = |
Josh Simmons | d9bf13d7 | 2021-12-03 01:49:22 | [diff] [blame] | 325 | "Enables simplified consent copy in the Assistant voice search consent " |
| 326 | "dialog."; |
| 327 | |
Basia Zimirska | b4f6ed8 | 2022-07-20 16:54:45 | [diff] [blame] | 328 | const char kAssistantNonPersonalizedVoiceSearchName[] = |
| 329 | "AssistantNonPersonalizedVoiceSearch"; |
| 330 | const char kAssistantNonPersonalizedVoiceSearchDescription[] = |
| 331 | "Enables the Assistant voice recognition and search without any " |
| 332 | "personalization."; |
| 333 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 334 | const char kAssistantConsentV2Name[] = "AssistanConsentV2"; |
| 335 | const char kAssistantConsentV2Description[] = |
Basia Zimirska | b87ded0 | 2021-07-27 20:39:08 | [diff] [blame] | 336 | "Enables different strategies for handling backing off from the consent " |
| 337 | "screen without explicitly clicking yes/no buttons, i.e. when a user taps " |
| 338 | "outside of the sheet."; |
Basia Zimirska | ae49bd3 | 2021-07-14 02:51:28 | [diff] [blame] | 339 | |
Anne Lim | 24031e9d | 2019-09-12 23:03:19 | [diff] [blame] | 340 | const char kAutofillAlwaysReturnCloudTokenizedCardName[] = |
| 341 | "Return cloud token details for server credit cards when possible"; |
| 342 | const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] = |
| 343 | "When enabled and where available, forms filled using Google Payments " |
| 344 | "server cards are populated with cloud token details, including CPAN " |
| 345 | "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic " |
| 346 | "CVV)."; |
| 347 | |
siashah | 2b698e2b | 2021-04-21 15:09:55 | [diff] [blame] | 348 | const char kAutofillAutoTriggerManualFallbackForCardsName[] = |
| 349 | "Auto trigger manual fallback for credit card form-filling failure cases"; |
| 350 | const char kAutofillAutoTriggerManualFallbackForCardsDescription[] = |
| 351 | "When enabled, manual fallback will be auto-triggered on form interaction " |
| 352 | "in the case where autofill failed to fill a credit card form accurately."; |
| 353 | |
Yi An | 8b28bef | 2022-06-29 19:11:32 | [diff] [blame] | 354 | const char kAutofillEnableFIDOProgressDialogName[] = |
| 355 | "Show FIDO progress dialog on Android"; |
| 356 | const char kAutofillEnableFIDOProgressDialogDescription[] = |
| 357 | "When enabled, a progress dialog is displayed while authenticating with " |
| 358 | "FIDO on Android."; |
| 359 | |
siashah | d77982440 | 2022-03-31 20:06:55 | [diff] [blame] | 360 | const char kAutofillEnableManualFallbackForVirtualCardsName[] = |
| 361 | "Show manual fallback for virtual cards"; |
| 362 | const char kAutofillEnableManualFallbackForVirtualCardsDescription[] = |
| 363 | "When enabled, manual fallback will be enabled for virtual cards on " |
| 364 | "Android."; |
| 365 | |
Siyu An | 042eac8 | 2022-09-19 23:55:03 | [diff] [blame] | 366 | const char kAutofillEnableCardArtImageName[] = "Enable showing card art images"; |
| 367 | const char kAutofillEnableCardArtImageDescription[] = |
| 368 | "When enabled, card product images (instead of network icons) will be " |
| 369 | "shown in Payments Autofill UI."; |
| 370 | |
Vishwas Uppoor | 89303a9 | 2022-08-03 00:56:26 | [diff] [blame] | 371 | const char kAutofillEnableCardProductNameName[] = |
| 372 | "Enable showing card product name"; |
| 373 | const char kAutofillEnableCardProductNameDescription[] = |
| 374 | "When enabled, card product name (instead of issuer network) will be shown " |
Siyu An | 042eac8 | 2022-09-19 23:55:03 | [diff] [blame] | 375 | "in Payments Autofill UI."; |
Vishwas Uppoor | 89303a9 | 2022-08-03 00:56:26 | [diff] [blame] | 376 | |
Vinny Persky | 13d8dde | 2022-10-04 19:34:13 | [diff] [blame] | 377 | const char kAutofillEnableCvcForVcnYellowPathName[] = |
| 378 | "Enable CVC Authentication in the yellow path of the VCN retrieval flow"; |
| 379 | const char kAutofillEnableCvcForVcnYellowPathDescription[] = |
| 380 | "When enabled, if the user encounters the yellow path (challenge path) in " |
| 381 | "the VCN retrieval flow and the server denotes that the card is eligible " |
| 382 | "for CVC authentication, CVC authentication will be offered as one of the " |
| 383 | "challenge options."; |
| 384 | |
Jared Saul | 702563e | 2021-09-20 22:36:52 | [diff] [blame] | 385 | const char kAutofillEnableOfferNotificationForPromoCodesName[] = |
| 386 | "Extend Autofill offers and rewards notification to promo code offers"; |
| 387 | const char kAutofillEnableOfferNotificationForPromoCodesDescription[] = |
| 388 | "When enabled, a notification will be displayed on page navigation if the " |
| 389 | "domain has an eligible merchant promo code offer or reward."; |
| 390 | |
siashah | eb118ad5 | 2020-12-15 00:17:07 | [diff] [blame] | 391 | const char kAutofillEnableOffersInClankKeyboardAccessoryName[] = |
| 392 | "Enable Autofill offers in keyboard accessory"; |
| 393 | const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] = |
| 394 | "When enabled, offers will be displayed in the keyboard accessory when " |
| 395 | "available."; |
| 396 | |
Vinny Persky | 6d96eae | 2023-02-08 00:46:04 | [diff] [blame] | 397 | const char kAutofillEnablePageLoadMetadataIntegrationName[] = |
| 398 | "Enable Autofill Page Load Metadata integration"; |
| 399 | const char kAutofillEnablePageLoadMetadataIntegrationDescription[] = |
| 400 | "When enabled, client side filtering functionality will be triggered for " |
| 401 | "certain autofill use-cases, for example filtering displaying virtual card " |
| 402 | "suggestions on websites where the merchant has opted-out of virtual " |
| 403 | "cards."; |
| 404 | |
Alexander Tekle | b464381 | 2023-01-06 23:12:30 | [diff] [blame] | 405 | const char kAutofillEnableRankingFormulaAddressProfilesName[] = |
| 406 | "Enable new Autofill suggestion ranking formula for profiles"; |
| 407 | const char kAutofillEnableRankingFormulaAddressProfilesDescription[] = |
| 408 | "When enabled, Autofill will use a new ranking formula to rank Autofill " |
| 409 | "profile suggestions."; |
| 410 | |
Alexander Tekle | 35dfbbd | 2023-01-31 08:32:39 | [diff] [blame] | 411 | const char kAutofillEnableRankingFormulaCreditCardsName[] = |
| 412 | "Enable new Autofill suggestion ranking formula for credit cards"; |
| 413 | const char kAutofillEnableRankingFormulaCreditCardsDescription[] = |
| 414 | "When enabled, Autofill will use a new ranking formula to rank Autofill " |
| 415 | "credit card suggestions."; |
| 416 | |
Siyu An | 3194bda | 2022-07-13 19:30:37 | [diff] [blame] | 417 | const char kAutofillEnableRemadeDownstreamMetricsName[] = |
| 418 | "Enable remade Autofill Downstream metrics logging"; |
| 419 | const char kAutofillEnableRemadeDownstreamMetricsDescription[] = |
| 420 | "When enabled, some extra metrics logging for Autofill Downstream will " |
| 421 | "start."; |
| 422 | |
siashah | 2b698e2b | 2021-04-21 15:09:55 | [diff] [blame] | 423 | const char kAutofillEnableStickyManualFallbackForCardsName[] = |
| 424 | "Make manual fallback sticky for credit cards"; |
| 425 | const char kAutofillEnableStickyManualFallbackForCardsDescription[] = |
| 426 | "When enabled, if the user interacts with the manual fallback bottom " |
| 427 | "sheet, it'll remain sticky until the user dismisses it."; |
| 428 | |
Vinny Persky | f98de02 | 2022-01-05 22:14:10 | [diff] [blame] | 429 | const char kAutofillEnableUpdateVirtualCardEnrollmentName[] = |
| 430 | "Enable Update Virtual Card Enrollment"; |
| 431 | const char kAutofillEnableUpdateVirtualCardEnrollmentDescription[] = |
| 432 | "When enabled, the user will have the ability to update the virtual card " |
| 433 | "enrollment of a credit card through their chrome browser after certain " |
| 434 | "autofill flows (for example, downstream and upstream), and from the " |
| 435 | "settings page."; |
| 436 | |
Vinny Persky | 650f8440 | 2022-04-14 18:46:18 | [diff] [blame] | 437 | const char kAutofillEnableVirtualCardFidoEnrollmentName[] = |
| 438 | "Enable FIDO enrollment for virtual cards"; |
| 439 | const char kAutofillEnableVirtualCardFidoEnrollmentDescription[] = |
| 440 | "When enabled, after a successful authentication to autofill a virtual " |
| 441 | "card, the user will be prompted to opt-in to FIDO if the user is not " |
| 442 | "currently opted-in, and if the user is opted-in already and the virtual " |
| 443 | "card is FIDO eligible the user will be prompted to register the virtual " |
| 444 | "card into FIDO."; |
| 445 | |
siyua | 1959322 | 2019-12-04 22:27:06 | [diff] [blame] | 446 | const char kAutofillEnableVirtualCardName[] = |
| 447 | "Offer to use cloud token virtual card in Autofill"; |
| 448 | const char kAutofillEnableVirtualCardDescription[] = |
| 449 | "When enabled, if all requirements are met, Autofill will offer to use " |
| 450 | "virtual credit cards in form filling."; |
| 451 | |
Siyu An | a8b9a0bc | 2022-01-31 19:40:41 | [diff] [blame] | 452 | const char kAutofillEnableVirtualCardManagementInDesktopSettingsPageName[] = |
| 453 | "Enable virtual card enrollment management in desktop payments settings " |
| 454 | "page"; |
| 455 | const char |
| 456 | kAutofillEnableVirtualCardManagementInDesktopSettingsPageDescription[] = |
| 457 | "When enabled, chrome://settings/payments will offer the option to " |
| 458 | "enroll in virtual card if the card is eligible and to unenroll if the " |
| 459 | "card has been enrolled."; |
| 460 | |
Siyu An | 003243c | 2022-04-07 22:13:11 | [diff] [blame] | 461 | const char kAutofillEnableVirtualCardMetadataName[] = |
| 462 | "Enable showing metadata for virtual cards"; |
| 463 | const char kAutofillEnableVirtualCardMetadataDescription[] = |
| 464 | "When enabled, Chrome will show metadata together with other card " |
| 465 | "information when the virtual card is presented to users."; |
| 466 | |
Siyu An | ff02e74 | 2022-04-07 19:08:22 | [diff] [blame] | 467 | const char kAutofillEnforceDelaysInStrikeDatabaseName[] = |
| 468 | "Enforce delay between offering Autofill opportunities in the strike " |
| 469 | "database"; |
| 470 | const char kAutofillEnforceDelaysInStrikeDatabaseDescription[] = |
| 471 | "When enabled, if previous Autofill feature offer was declined, " |
| 472 | "Chrome will wait for some time before showing the offer again."; |
| 473 | |
Qihui Zhao | 30bf4ca | 2022-07-26 20:24:59 | [diff] [blame] | 474 | extern const char kAutofillFillIbanFieldsName[] = |
| 475 | "Enable Autofill of IBAN fields in forms"; |
| 476 | extern const char kAutofillFillIbanFieldsDescription[] = |
| 477 | "When enabled, Autofill will attempt to fill IBAN (International Bank " |
| 478 | "Account Number) fields when data is available."; |
| 479 | |
Jared Saul | 2188f76 | 2021-08-02 21:22:23 | [diff] [blame] | 480 | const char kAutofillFillMerchantPromoCodeFieldsName[] = |
| 481 | "Enable Autofill of promo code fields in forms"; |
| 482 | const char kAutofillFillMerchantPromoCodeFieldsDescription[] = |
| 483 | "When enabled, Autofill will attempt to fill merchant promo/coupon/gift " |
| 484 | "code fields when data is available."; |
| 485 | |
Matthias Körber | 44082a49 | 2021-09-15 18:29:18 | [diff] [blame] | 486 | const char kAutofillHighlightOnlyChangedValuesInPreviewModeName[] = |
| 487 | "Highlight only changed values in preview mode."; |
| 488 | const char kAutofillHighlightOnlyChangedValuesInPreviewModeDescription[] = |
| 489 | "When Autofill is previewing filling a form, already autofilled values " |
| 490 | "and other values that are not changed by accepting the preview should " |
| 491 | "not be highlighted."; |
| 492 | |
Qihui Zhao | 72836c6 | 2022-12-16 04:31:41 | [diff] [blame] | 493 | const char kAutofillOfferToSaveCardWithSameLastFourName[] = |
| 494 | "Offer credit card save for cards with same last-4 but different " |
| 495 | "expiration dates"; |
| 496 | const char kAutofillOfferToSaveCardWithSameLastFourDescription[] = |
| 497 | "Offer credit card save when Chrome detects a card number with the same " |
| 498 | "last 4 digits as an existing server card, but a different expiration " |
| 499 | "date."; |
| 500 | |
Nakul Vaidya | 876210f | 2022-08-08 17:47:19 | [diff] [blame] | 501 | const char kAutofillParseIBANFieldsName[] = "Parse IBAN fields in forms"; |
| 502 | const char kAutofillParseIBANFieldsDescription[] = |
Nakul Vaidya | ddfdfbc | 2022-06-28 23:43:32 | [diff] [blame] | 503 | "When enabled, Autofill will attempt to find International Bank Account " |
| 504 | "Number (IBAN) fields when parsing forms."; |
| 505 | |
Nakul Vaidya | 13ca204 | 2022-07-27 01:59:55 | [diff] [blame] | 506 | const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsName[] = |
| 507 | "Parse standalone CVC fields for VCN card on file in forms"; |
| 508 | const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsDescription[] = |
| 509 | "When enabled, Autofill will attempt to find standalone CVC fields for VCN " |
| 510 | "card on file when parsing forms."; |
| 511 | |
Vidhan | 5885afa | 2022-06-23 15:18:16 | [diff] [blame] | 512 | const char kAutofillPreventOverridingPrefilledValuesName[] = |
| 513 | "Prevent Autofill from overriding prefilled field values"; |
| 514 | const char kAutofillPreventOverridingPrefilledValuesDescription[] = |
| 515 | "When enabled, Autofill won't override any field values that have not been " |
| 516 | "filled by Autofill"; |
| 517 | |
Dmitry Vykochko | 91af82b0 | 2022-12-09 17:37:37 | [diff] [blame] | 518 | const char kAutofillMoreProminentPopupName[] = "More prominent Autofill popup"; |
| 519 | const char kAutofillMoreProminentPopupDescription[] = |
| 520 | "If enabled Autofill's popup becomes more prominent, i.e. its shadow " |
| 521 | "becomes more emphasized, position is also updated"; |
| 522 | |
Qihui Zhao | 69ac9eee | 2022-12-15 21:36:39 | [diff] [blame] | 523 | const char kAutofillRemoveCardExpirationAndTypeTitlesName[] = |
| 524 | "Remove expiration and type titles from Chrome Payment Settings page on " |
| 525 | "desktop"; |
| 526 | const char kAutofillRemoveCardExpirationAndTypeTitlesDescription[] = |
| 527 | "When enabled, expiration and type titles will be removed from the Chrome " |
| 528 | "Payment Settings page on desktop platforms."; |
| 529 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 530 | const char kAutofillSaveAndFillVPAName[] = |
Christos Froussios | 13b412df | 2019-09-19 19:12:47 | [diff] [blame] | 531 | "Offer save and autofill of UPI/VPA values"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 532 | const char kAutofillSaveAndFillVPADescription[] = |
Christos Froussios | 13b412df | 2019-09-19 19:12:47 | [diff] [blame] | 533 | "If enabled, when autofill recognizes a UPI/VPA value in a payment form, " |
| 534 | "it will offer to save it. If saved, it will be offered for filling in " |
| 535 | "fields which expect a VPA."; |
| 536 | |
Vidhan | b03b1ea | 2022-05-19 12:07:58 | [diff] [blame] | 537 | const char kAutofillShowManualFallbackInContextMenuName[] = |
| 538 | "Show Autofill options in Context Menu"; |
| 539 | const char kAutofillShowManualFallbackInContextMenuDescription[] = |
| 540 | "When enabled, users would get address/credit cards/passwords autofilling " |
| 541 | "options in the context menu if the context menu is opened on a text field"; |
| 542 | |
Vipul Vinod Koul | aebbcb3a | 2023-01-05 19:50:50 | [diff] [blame] | 543 | const char kAutofillSuggestServerCardInsteadOfLocalCardName[] = |
| 544 | "Suggest Server card instead of Local card for deduped cards"; |
| 545 | const char kAutofillSuggestServerCardInsteadOfLocalCardDescription[] = |
| 546 | "When enabled, Autofill suggestions that consist of a local and server " |
| 547 | "version of the same card will attempt to fill the server card upon " |
| 548 | "selection instead of the local card."; |
| 549 | |
Vishwas Uppoor | 940bd24 | 2022-12-15 09:49:42 | [diff] [blame] | 550 | const char kAutofillTouchToFillForCreditCardsAndroidName[] = |
| 551 | "Enable Touch To Fill bottomsheet for Autofill credit card suggestions"; |
| 552 | const char kAutofillTouchToFillForCreditCardsAndroidDescription[] = |
| 553 | "When enabled, Autofill credit card suggestions are shown on the " |
| 554 | "Touch To Fill bottomsheet"; |
| 555 | |
Jared Saul | b0473bd | 2022-04-20 00:03:41 | [diff] [blame] | 556 | const char kAutofillUpstreamAllowAdditionalEmailDomainsName[] = |
| 557 | "Allow Autofill credit card upload save for select non-Google-based " |
| 558 | "accounts"; |
| 559 | const char kAutofillUpstreamAllowAdditionalEmailDomainsDescription[] = |
| 560 | "When enabled, credit card upload is offered if the user's logged-in " |
| 561 | "account's domain is from a common email provider."; |
| 562 | |
| 563 | const char kAutofillUpstreamAllowAllEmailDomainsName[] = |
| 564 | "Allow Autofill credit card upload save for all non-Google-based accounts"; |
| 565 | const char kAutofillUpstreamAllowAllEmailDomainsDescription[] = |
| 566 | "When enabled, credit card upload is offered without regard to the user's " |
| 567 | "logged-in account's domain."; |
| 568 | |
Caitlin Fischer | 43edd90a | 2019-05-01 13:24:30 | [diff] [blame] | 569 | const char kAutofillUseImprovedLabelDisambiguationName[] = |
| 570 | "Autofill Uses Improved Label Disambiguation"; |
| 571 | const char kAutofillUseImprovedLabelDisambiguationDescription[] = |
| 572 | "When enabled, the Autofill dropdown's suggestions' labels are displayed " |
| 573 | "using the improved disambiguation format."; |
| 574 | |
Jia | 0175adae | 2019-05-15 00:21:25 | [diff] [blame] | 575 | const char kAutoScreenBrightnessName[] = "Auto Screen Brightness model"; |
| 576 | const char kAutoScreenBrightnessDescription[] = |
Jia | c75d4ee02 | 2020-08-11 02:34:12 | [diff] [blame] | 577 | "Uses Auto Screen Brightness ML model (if it exists) to adjust screen " |
| 578 | "brightness based on ambient light. If disabled, screen brightness " |
Jia | e4e1924 | 2020-08-11 05:13:41 | [diff] [blame] | 579 | "will be controlled by the heuristic model provided by powerd (and only " |
| 580 | "on devices that have ambient light sensors)."; |
Jia | 0175adae | 2019-05-15 00:21:25 | [diff] [blame] | 581 | |
Alexander Timin | 6ae060b6 | 2019-09-17 11:21:37 | [diff] [blame] | 582 | const char kBackForwardCacheName[] = "Back-forward cache"; |
| 583 | const char kBackForwardCacheDescription[] = |
Rakina Zata Amni | 95a2a91d | 2020-07-14 12:41:44 | [diff] [blame] | 584 | "If enabled, caches eligible pages after cross-site navigations." |
| 585 | "To enable caching pages on same-site navigations too, choose 'enabled " |
| 586 | "same-site support'."; |
Alexander Timin | 6ae060b6 | 2019-09-17 11:21:37 | [diff] [blame] | 587 | |
Yuzu Saijo | 312b843 | 2022-03-01 03:27:31 | [diff] [blame] | 588 | const char kEnableBackForwardCacheForScreenReaderName[] = |
| 589 | "Enable Back-forward cache for screen readers"; |
| 590 | const char kEnableBackForwardCacheForScreenReaderDescription[] = |
| 591 | "If enabled, allow pages to enter back/forward cache even if a screen " |
| 592 | "reader is in use. The page might still not be cached for other reasons."; |
| 593 | |
minch | 1b87401 | 2021-06-17 00:21:33 | [diff] [blame] | 594 | const char kBentoBarName[] = "Persistent desks bar"; |
| 595 | const char kBentoBarDescription[] = |
| 596 | "Showing a persistent desks bar at the top of the screen in clamshell mode " |
| 597 | "when there are more than one desk."; |
| 598 | |
conniekxu | 5ea72887b | 2021-10-21 20:43:23 | [diff] [blame] | 599 | const char kDragWindowToNewDeskName[] = "Drag window to new desk"; |
| 600 | const char kDragWindowToNewDeskDescription[] = |
| 601 | "Enable dragging and dropping a window to the new desk button in overview " |
| 602 | "when there are less than the maximum number of desks."; |
| 603 | |
Ioana Pandele | 69fe467 | 2021-04-28 08:06:37 | [diff] [blame] | 604 | const char kBiometricReauthForPasswordFillingName[] = |
| 605 | "Biometric reauth for password filling"; |
| 606 | const char kBiometricReauthForPasswordFillingDescription[] = |
| 607 | "Enables biometric" |
| 608 | "re-authentication before password filling"; |
| 609 | |
Norge Vizcay | 5f6bfb4 | 2022-06-10 08:33:14 | [diff] [blame] | 610 | const char kFastCheckoutName[] = "Fast Checkout"; |
| 611 | const char kFastCheckoutDescription[] = |
| 612 | "Enables Fast Checkout experiences in Chrome."; |
| 613 | |
Illia Klimov | e406ecc1 | 2022-11-22 15:53:29 | [diff] [blame] | 614 | const char kFailFastQuietChipName[] = "Fail fast quiet chip"; |
| 615 | const char kFailFastQuietChipDescription[] = |
| 616 | "Enables fast finalization of a permission request if it is displayed as a " |
| 617 | "quiet chip."; |
| 618 | |
danielng | dd3ef94 | 2021-10-28 06:42:48 | [diff] [blame] | 619 | const char kBorealisBigGlName[] = "Borealis Big GL"; |
| 620 | const char kBorealisBigGlDescription[] = "Enable Big GL when running Borealis."; |
| 621 | |
danielng | 1078c637 | 2021-06-28 06:31:36 | [diff] [blame] | 622 | const char kBorealisDiskManagementName[] = "Borealis Disk management"; |
| 623 | const char kBorealisDiskManagementDescription[] = |
| 624 | "Enable experimental disk management settings."; |
| 625 | |
Nicholas Hollingum | 449d825 | 2021-11-29 00:18:29 | [diff] [blame] | 626 | const char kBorealisForceBetaClientName[] = "Borealis Force Beta Client"; |
| 627 | const char kBorealisForceBetaClientDescription[] = |
| 628 | "Force the client to run its beta version."; |
| 629 | |
Nicholas Hollingum | e867209 | 2022-08-25 04:23:16 | [diff] [blame] | 630 | const char kBorealisForceDoubleScaleName[] = "Borealis Force Double Scale"; |
| 631 | const char kBorealisForceDoubleScaleDescription[] = |
| 632 | "Force the client to run in 2x visual zoom."; |
| 633 | |
Nicholas Hollingum | 449d825 | 2021-11-29 00:18:29 | [diff] [blame] | 634 | const char kBorealisLinuxModeName[] = "Borealis Linux Mode"; |
| 635 | const char kBorealisLinuxModeDescription[] = |
| 636 | "Do not run ChromeOS-specific code in the client."; |
| 637 | |
Nicholas Hollingum | 97500cc1 | 2022-03-03 22:44:43 | [diff] [blame] | 638 | // For UX reasons we prefer "enabled", but that is used internally to refer to |
| 639 | // whether borealis is installed or not, so the name of the variable is a bit |
| 640 | // different to the user-facing name. |
| 641 | const char kBorealisPermittedName[] = "Borealis Enabled"; |
| 642 | const char kBorealisPermittedDescription[] = |
| 643 | "Allows Borealis to run on your device. Borealis may still be blocked for " |
| 644 | "other reasons, including: administrator settings, device hardware " |
| 645 | "capabilities, or other security measures."; |
| 646 | |
danielng | 573ad374 | 2022-07-06 05:26:24 | [diff] [blame] | 647 | const char kBorealisStorageBallooningName[] = "Borealis Storage Ballooning"; |
| 648 | const char kBorealisStorageBallooningDescription[] = |
| 649 | "Enables storage balloning for Borealis. This takes precedence over the " |
| 650 | "other Borealis Disk management flag."; |
| 651 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 652 | const char kBypassAppBannerEngagementChecksName[] = |
| 653 | "Bypass user engagement checks"; |
| 654 | const char kBypassAppBannerEngagementChecksDescription[] = |
| 655 | "Bypasses user engagement checks for displaying app banners, such as " |
| 656 | "requiring that users have visited the site before and that the banner " |
| 657 | "hasn't been shown recently. This allows developers to test that other " |
| 658 | "eligibility requirements for showing app banners, such as having a " |
| 659 | "manifest, are met."; |
| 660 | |
sisidovski | 62b577f2 | 2022-12-15 03:10:00 | [diff] [blame] | 661 | const char kServiceWorkerBypassFetchHandlerForMainResourceName[] = |
| 662 | "Bypass Service Worker Fetch Handler for main resource"; |
| 663 | const char kServiceWorkerBypassFetchHandlerForMainResourceDescription[] = |
| 664 | "Bypass starting a service worker and its fetch handler for main resource " |
| 665 | "requests. The service worker starts after sending a main resource request " |
| 666 | "and handles subresources. If the main resource could be handled in the " |
| 667 | "fetch handler, the feature may affect the page load."; |
| 668 | |
Elaine Chien | aeb4adc | 2020-12-08 04:22:05 | [diff] [blame] | 669 | const char kChromeLabsName[] = "Chrome Labs"; |
| 670 | const char kChromeLabsDescription[] = |
| 671 | "Access Chrome Labs through the toolbar menu to see featured user-facing " |
| 672 | "experimental features."; |
| 673 | |
Elaine Chien | f90ffa7 | 2023-01-25 19:18:32 | [diff] [blame] | 674 | const char kChromeRefresh2023Name[] = "Chrome Refresh 2023"; |
| 675 | const char kChromeRefresh2023Description[] = "Refresh of Chrome Desktop UI"; |
| 676 | |
Tobias Soppa | 20dd3c7 | 2021-08-12 14:27:40 | [diff] [blame] | 677 | const char kClosedTabCacheName[] = "Closed Tab Cache"; |
| 678 | const char kClosedTabCacheDescription[] = |
| 679 | "Enables closed tab cache to instantaneously restore recently closed tabs. " |
Felipe Andrade | 579b7fd | 2022-10-14 15:17:28 | [diff] [blame] | 680 | "NOTE: This feature is highly experimental and will lead to various " |
Tobias Soppa | 20dd3c7 | 2021-08-12 14:27:40 | [diff] [blame] | 681 | "breakages, enable at your own risk."; |
| 682 | |
Yue Zhang | 25d7296 | 2022-06-13 21:14:05 | [diff] [blame] | 683 | const char kCommerceHintAndroidName[] = "Commerce Hint Android"; |
| 684 | const char kCommerceHintAndroidDescription[] = |
| 685 | "Enables commerce hint detection on Android."; |
| 686 | |
Jae Hoon Kim | 2d4256e | 2022-04-15 21:59:09 | [diff] [blame] | 687 | const char kConsumerAutoUpdateToggleAllowedName[] = |
| 688 | "Allow Consumer Auto Update Toggle"; |
| 689 | const char kConsumerAutoUpdateToggleAllowedDescription[] = |
| 690 | "Allow enabling the consumer auto update toggle in settings"; |
| 691 | |
Nandhini | 11a6a87b | 2019-08-22 22:45:24 | [diff] [blame] | 692 | const char kContextMenuSearchWithGoogleLensName[] = |
| 693 | "Google Lens powered image search in the context menu."; |
| 694 | const char kContextMenuSearchWithGoogleLensDescription[] = |
| 695 | "Replaces default image search with an intent to Google Lens when " |
| 696 | "supported."; |
| 697 | |
Anudeep Palanki | c903c59e | 2023-01-26 16:46:55 | [diff] [blame] | 698 | const char kContextMenuGoogleLensSearchOptimizationsName[] = |
| 699 | "Google Lens powered image search string variations in the context menu."; |
| 700 | const char kContextMenuGoogleLensSearchOptimizationsDescription[] = |
| 701 | "Replaces Google Lens string variations when Google Lens is supported."; |
| 702 | |
sauski | 8fa237c | 2020-05-18 12:04:24 | [diff] [blame] | 703 | const char kClientStorageAccessContextAuditingName[] = |
| 704 | "Access contexts for client-side storage"; |
| 705 | const char kClientStorageAccessContextAuditingDescription[] = |
| 706 | "Record the first-party contexts in which client-side storage was accessed"; |
| 707 | |
Shuran Huang | d11e73e | 2021-04-14 16:10:12 | [diff] [blame] | 708 | const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] = |
| 709 | "Clear window name in top-level cross-site cross-browsing-context-group " |
| 710 | "navigation"; |
| 711 | const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] = |
| 712 | "Clear the preserved window.name property when it's a top-level cross-site " |
| 713 | "navigation that swaps BrowsingContextGroup."; |
Shuran Huang | a5be08b | 2021-01-20 18:46:29 | [diff] [blame] | 714 | |
Dana Fried | 16e9d9c | 2021-01-28 09:32:28 | [diff] [blame] | 715 | #if BUILDFLAG(GOOGLE_CHROME_BRANDING) |
| 716 | const char kChromeTipsInMainMenuName[] = |
| 717 | "Show 'Tips for Chrome' in Help portion of main menu."; |
| 718 | const char kChromeTipsInMainMenuDescription[] = |
| 719 | "Enables 'Tips for Chrome' in main menu; the menu item will take users to " |
| 720 | "an official Google site with information about the latest and most " |
| 721 | "popular Chrome features."; |
Dana Fried | 1ae80f3 | 2021-05-10 19:57:37 | [diff] [blame] | 722 | |
| 723 | const char kChromeTipsInMainMenuNewBadgeName[] = |
| 724 | "Show 'New' promo badge on 'Tips for Chrome' in Help portion of main menu."; |
| 725 | const char kChromeTipsInMainMenuNewBadgeDescription[] = |
| 726 | "Enables 'New' promo badge on 'Tips for Chrome' in main menu; experiment to" |
| 727 | " test the value of this user education feature."; |
Dana Fried | 16e9d9c | 2021-01-28 09:32:28 | [diff] [blame] | 728 | #endif |
| 729 | |
rbpotter | e877c1f | 2021-06-15 00:23:55 | [diff] [blame] | 730 | const char kChromeWhatsNewUIName[] = |
| 731 | "Show Chrome What's New page at chrome://whats-new"; |
| 732 | const char kChromeWhatsNewUIDescription[] = |
| 733 | "Enables Chrome What's New page at chrome://whats-new."; |
| 734 | |
Jeffrey Young | 45a5adc | 2022-10-10 18:57:43 | [diff] [blame] | 735 | const char kDarkLightModeKMeansColorName[] = |
| 736 | "K Means color algorithm for dark light mode"; |
| 737 | const char kDarkLightModeKMeansColorDescription[] = |
| 738 | "Enables the alternate K Means color algorithm for extracting color from " |
| 739 | "user wallpaper to mix into system UI for dark light mode"; |
| 740 | |
Sanja Perisic | a1e5cd8 | 2022-02-24 11:52:50 | [diff] [blame] | 741 | extern const char kDeviceForceScheduledRebootName[] = |
| 742 | "Enable DeviceScheduledReboot policy for all sessions."; |
| 743 | extern const char kDeviceForceScheduledRebootDescription[] = |
| 744 | "Schedule recurring reboot for the device. Reboots are always executed at " |
| 745 | "a scheduled time. If the session is active, user will be notified about " |
| 746 | "the reboot, but the reboot will not be delayed."; |
| 747 | |
Alexis Menard | 61ecb91d | 2021-07-17 04:10:33 | [diff] [blame] | 748 | const char kDevicePostureName[] = "Device Posture API"; |
| 749 | const char kDevicePostureDescription[] = |
| 750 | "Enables Device Posture API (foldable devices)"; |
| 751 | |
Mei Liang | 36e41a5e | 2022-02-10 01:43:50 | [diff] [blame] | 752 | const char kDiscountConsentV2Name[] = "Discount Consent V2"; |
| 753 | const char kDiscountConsentV2Description[] = "Enables Discount Consent V2"; |
| 754 | |
Kamila | 5e993568 | 2022-08-05 12:43:29 | [diff] [blame] | 755 | const char kDisruptiveNotificationPermissionRevocationName[] = |
| 756 | "Disruptive notification permission revocation"; |
| 757 | const char kDisruptiveNotificationPermissionRevocationDescription[] = |
| 758 | "Enables revoking the notification permission on sites that send " |
| 759 | "disruptive notifications unless the permission was granted through a " |
| 760 | "prompt that informed the user about this possibility."; |
| 761 | |
Daniele Castagna | 6a5cbdeb6 | 2020-02-18 22:48:14 | [diff] [blame] | 762 | const char kDoubleBufferCompositingName[] = "Double buffered compositing"; |
| 763 | const char kDoubleBufferCompositingDescription[] = |
| 764 | "Use double buffer for compositing (instead of triple-buffering). " |
| 765 | "Latency should be reduced in some cases. On the other hand, more skipped " |
| 766 | "frames are expected."; |
| 767 | |
Youssef Esmat | 9cdb6b4 | 2022-12-21 19:28:45 | [diff] [blame] | 768 | const char kMainThreadCompositingPriorityName[] = |
| 769 | "Main thread runs as compositing"; |
| 770 | const char kMainThreadCompositingPriorityDescription[] = |
| 771 | "Runs the main thread at compositing priority since it responds to input " |
| 772 | "and is on the critical path."; |
| 773 | |
Mei Liang | d79d382 | 2022-10-26 21:55:25 | [diff] [blame] | 774 | const char kMerchantWidePromotionsName[] = "Merchant wide promotions"; |
| 775 | const char kMerchantWidePromotionsDescription[] = |
| 776 | "Enables the discount consent for all merchants, and show merchant wide " |
| 777 | "promotions if they are available"; |
| 778 | |
Mei Liang | d5813c3 | 2022-10-29 01:09:07 | [diff] [blame] | 779 | const char kCodeBasedRBDName[] = "Code-based RBD"; |
| 780 | const char kCodeBasedRBDDescription[] = "Enables the Code-based RBD."; |
| 781 | |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 782 | const char kForceColorProfileSRGB[] = "sRGB"; |
| 783 | const char kForceColorProfileP3[] = "Display P3 D65"; |
Christopher Cameron | b15ffe6 | 2022-11-15 10:25:31 | [diff] [blame] | 784 | const char kForceColorProfileRec2020[] = "ITU-R BT.2020"; |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 785 | const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4"; |
Sunny Sachanandani | 71e474a | 2019-06-11 02:32:03 | [diff] [blame] | 786 | const char kForceColorProfileSCRGBLinear[] = |
| 787 | "scRGB linear (HDR where available)"; |
| 788 | const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)"; |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 789 | |
| 790 | const char kForceColorProfileName[] = "Force color profile"; |
| 791 | const char kForceColorProfileDescription[] = |
| 792 | "Forces Chrome to use a specific color profile instead of the color " |
| 793 | "of the window's current monitor, as specified by the operating system."; |
| 794 | |
Chris Blume | b504da1f2 | 2020-04-27 00:21:44 | [diff] [blame] | 795 | const char kDynamicColorGamutName[] = "Dynamic color gamut"; |
| 796 | const char kDynamicColorGamutDescription[] = |
| 797 | "Displays in wide color when the content is wide. When the content is " |
| 798 | "not wide, displays sRGB"; |
| 799 | |
Keishi Hattori | 1529974 | 2020-04-20 04:00:09 | [diff] [blame] | 800 | const char kCooperativeSchedulingName[] = "Cooperative Scheduling"; |
| 801 | const char kCooperativeSchedulingDescription[] = |
| 802 | "Enables cooperative scheduling in Blink."; |
| 803 | |
Lijin Shen | 5feade6 | 2019-09-17 03:01:01 | [diff] [blame] | 804 | const char kDarkenWebsitesCheckboxInThemesSettingName[] = |
| 805 | "Darken websites checkbox in themes setting"; |
| 806 | const char kDarkenWebsitesCheckboxInThemesSettingDescription[] = |
| 807 | "Show a darken websites checkbox in themes settings when system default or " |
| 808 | "dark is selected. The checkbox can toggle the auto-darkening web contents " |
| 809 | "feature"; |
| 810 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 811 | const char kDebugPackedAppName[] = "Debugging for packed apps"; |
| 812 | const char kDebugPackedAppDescription[] = |
| 813 | "Enables debugging context menu options such as Inspect Element for packed " |
| 814 | "applications."; |
| 815 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 816 | const char kDebugShortcutsName[] = "Debugging keyboard shortcuts"; |
| 817 | const char kDebugShortcutsDescription[] = |
| 818 | "Enables additional keyboard shortcuts that are useful for debugging Ash."; |
| 819 | |
Sharon Yang | f390ea9 | 2021-06-23 19:55:40 | [diff] [blame] | 820 | const char kDisableProcessReuse[] = "Disable subframe process reuse"; |
| 821 | const char kDisableProcessReuseDescription[] = |
| 822 | "Prevents out-of-process iframes from reusing compatible processes from " |
| 823 | "unrelated tabs. This is an experimental mode that will result in more " |
| 824 | "processes being created."; |
| 825 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 826 | const char kDisallowDocWrittenScriptsUiName[] = |
| 827 | "Block scripts loaded via document.write"; |
| 828 | const char kDisallowDocWrittenScriptsUiDescription[] = |
| 829 | "Disallows fetches for third-party parser-blocking scripts inserted into " |
| 830 | "the main frame via document.write."; |
| 831 | |
Vladimir Levin | 501455e | 2022-11-04 20:04:54 | [diff] [blame] | 832 | const char kViewTransitionName[] = "viewTransition API"; |
| 833 | const char kViewTransitionDescription[] = |
| 834 | "Controls the availability of the viewTransition JavaScript API."; |
Vladimir Levin | 4fd9269d | 2021-03-12 20:07:21 | [diff] [blame] | 835 | |
Khushal Sagar | b5af36e | 2022-11-09 22:33:29 | [diff] [blame] | 836 | const char kViewTransitionOnNavigationName[] = |
| 837 | "viewTransition API for navigations"; |
| 838 | const char kViewTransitionOnNavigationDescription[] = |
| 839 | "Controls the availability of the viewTransition API on document " |
| 840 | "navigations."; |
| 841 | |
Mark Schillaci | 402301cb | 2022-02-02 18:36:37 | [diff] [blame] | 842 | const char kEnableAutoDisableAccessibilityName[] = "Auto-disable Accessibility"; |
| 843 | const char kEnableAutoDisableAccessibilityDescription[] = |
| 844 | "When accessibility APIs are no longer being requested, automatically " |
| 845 | "disables accessibility. This might happen if an assistive technology is " |
| 846 | "turned off or if an extension which uses accessibility APIs no longer " |
| 847 | "needs them."; |
| 848 | |
Jack Lynch | ef0bac5 | 2022-11-01 21:22:18 | [diff] [blame] | 849 | const char kEnableAutoDisableAccessibilityV2Name[] = |
| 850 | "Auto-disable Accessibility V2"; |
| 851 | const char kEnableAutoDisableAccessibilityV2Description[] = |
| 852 | "Automatically disable accessibility when Android reports no assistive " |
| 853 | "technologies are running. Might break accessibility for assistive " |
| 854 | "technologies without isAccessibilityTool set."; |
| 855 | |
Mohamed Amir Yosef | f676313 | 2021-02-18 15:53:14 | [diff] [blame] | 856 | const char kEnableAutofillAddressSavePromptName[] = |
| 857 | "Autofill Address Save Prompts"; |
| 858 | const char kEnableAutofillAddressSavePromptDescription[] = |
| 859 | "Enable the Autofill address save prompts."; |
| 860 | |
Manas Verma | 7e5b391b | 2019-04-09 02:08:53 | [diff] [blame] | 861 | const char kEnableAutofillCreditCardAuthenticationName[] = |
| 862 | "Allow using platform authenticators to retrieve server cards"; |
| 863 | const char kEnableAutofillCreditCardAuthenticationDescription[] = |
| 864 | "When enabled, users will be given the option to use a platform " |
| 865 | "authenticator (if available) to verify card ownership when retrieving " |
| 866 | "credit cards from Google Payments."; |
| 867 | |
Lily Chen | 17c5797 | 2020-04-22 19:27:44 | [diff] [blame] | 868 | const char kEnableExperimentalCookieFeaturesName[] = |
| 869 | "Enable experimental cookie features"; |
| 870 | const char kEnableExperimentalCookieFeaturesDescription[] = |
| 871 | "Enable new features that affect setting, sending, and managing cookies. " |
| 872 | "The enabled features are subject to change at any time."; |
| 873 | |
Peng Huang | a0f7d7e5 | 2021-09-29 13:27:13 | [diff] [blame] | 874 | const char kEnableRawDrawName[] = "Enable raw draw"; |
| 875 | const char kEnableRawDrawDescription[] = |
| 876 | "When enabled, web content will be rastered on output surface directly."; |
| 877 | |
Peter McNeeley | 8a0156d2 | 2022-02-01 20:37:54 | [diff] [blame] | 878 | const char kEnableDelegatedCompositingName[] = "Enable delegated compositing"; |
| 879 | const char kEnableDelegatedCompositingDescription[] = |
| 880 | "When enabled and applicable, the act of compositing is delegated to Ash."; |
| 881 | |
Jenny Blessing | 45326bf | 2019-08-29 23:50:37 | [diff] [blame] | 882 | const char kEnableRemovingAllThirdPartyCookiesName[] = |
| 883 | "Enable removing SameSite=None cookies"; |
| 884 | const char kEnableRemovingAllThirdPartyCookiesDescription[] = |
| 885 | "Enables UI on chrome://settings/siteData to remove all third-party " |
| 886 | "cookies and site data."; |
| 887 | |
Yann Dago | 1215b29a | 2022-04-25 19:51:58 | [diff] [blame] | 888 | const char kEnableBrowsingDataLifetimeManagerName[] = |
| 889 | "Enables the BrowsingDataLifetimeManager service to run."; |
| 890 | const char kEnableBrowsingDataLifetimeManagerDescription[] = |
| 891 | "Enables the BrowsingDataLifetimeManager service to run and periodically " |
| 892 | "delete browsing data as specified by the BrowsingDataLifetime policy."; |
| 893 | |
Sonja Laurila | c0492c85 | 2021-09-17 14:49:32 | [diff] [blame] | 894 | const char kDesktopPWAsAdditionalWindowingControlsName[] = |
| 895 | "Desktop PWA Window Minimize/maximize/restore"; |
| 896 | const char kDesktopPWAsAdditionalWindowingControlsDescription[] = |
| 897 | "Enable PWAs to manually recreate the minimize, maximize and restore " |
| 898 | "window functionalities with respective APIs."; |
| 899 | |
liqining.keiling | 151bedd6 | 2022-08-17 19:18:26 | [diff] [blame] | 900 | #if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID) |
| 901 | |
| 902 | const char kDesktopPWAsAppHomePageFlagId[] = |
| 903 | "enable-desktop-pwas-app-home-page"; |
| 904 | const char kDesktopPWAsAppHomePageName[] = "desktop PWAs app home page"; |
| 905 | const char kDesktopPWAsAppHomePageDescription[] = |
| 906 | "Use new chrome://apps page which has different UX on desktop"; |
| 907 | |
| 908 | #endif // !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID) |
| 909 | |
Alan Cutter | eaae7f4 | 2020-12-07 02:24:11 | [diff] [blame] | 910 | const char kDesktopPWAsElidedExtensionsMenuName[] = |
| 911 | "Desktop PWAs elided extensions menu"; |
| 912 | const char kDesktopPWAsElidedExtensionsMenuDescription[] = |
| 913 | "Moves the Extensions \"puzzle piece\" icon from the title bar into the " |
| 914 | "app menu for web app windows."; |
| 915 | |
Alan Cutter | 6270489 | 2021-08-31 21:27:17 | [diff] [blame] | 916 | const char kDesktopPWAsLaunchHandlerName[] = "Desktop PWA launch handler"; |
| 917 | const char kDesktopPWAsLaunchHandlerDescription[] = |
| 918 | "Enable web app manifests to declare app launch behavior. Prototype " |
| 919 | "implementation of: " |
Alan Cutter | 203d5de | 2022-10-28 04:53:37 | [diff] [blame] | 920 | "https://github.com/WICG/web-app-launch/blob/main/launch_handler.md"; |
Alan Cutter | 6270489 | 2021-08-31 21:27:17 | [diff] [blame] | 921 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 922 | const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips"; |
| 923 | const char kDesktopPWAsTabStripDescription[] = |
Louise Brett | 015114f | 2022-11-07 04:14:11 | [diff] [blame] | 924 | "Experimental UI for tabbed application mode - exploring what PWA windows " |
| 925 | "would look like with a tab strip."; |
Alan Cutter | 121812d | 2020-01-09 05:03:37 | [diff] [blame] | 926 | |
Louise Brett | 51548fb | 2021-06-18 00:27:21 | [diff] [blame] | 927 | const char kDesktopPWAsTabStripSettingsName[] = |
| 928 | "Desktop PWA tab strips settings"; |
| 929 | const char kDesktopPWAsTabStripSettingsDescription[] = |
| 930 | "Experimental UI for selecting whether a PWA should open in tabbed mode."; |
| 931 | |
Ivan Šandrk | 8a71039 | 2021-05-20 13:53:13 | [diff] [blame] | 932 | const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps"; |
| 933 | const char kDesktopPWAsSubAppsDescription[] = |
| 934 | "Enable installed PWAs to create shortcuts by installing their sub apps. " |
| 935 | "Prototype implementation of: " |
| 936 | "https://github.com/ivansandrk/multi-apps/blob/main/explainer.md"; |
| 937 | |
Abhinav Kasamsetty | d7bb22c | 2023-01-31 08:18:32 | [diff] [blame] | 938 | const char kDesktopPWAsScopeExtensionsName[] = "Desktop PWA Scope Extensions"; |
| 939 | const char kDesktopPWAsScopeExtensionsDescription[] = |
| 940 | "Enable web app manifests to declare scope extensions to extend app scope " |
| 941 | "to other origins. Prototype implementation of: " |
| 942 | "https://github.com/WICG/manifest-incubations/blob/gh-pages/" |
| 943 | "scope_extensions-explainer.md"; |
| 944 | |
Sonja Laurila | 67ab70d | 2022-05-13 13:57:26 | [diff] [blame] | 945 | const char kDesktopPWAsBorderlessName[] = "Desktop PWA Borderless"; |
| 946 | const char kDesktopPWAsBorderlessDescription[] = |
| 947 | "Enable web app manifests to declare borderless mode as a display " |
| 948 | "override. Prototype implementation of: go/borderless-mode."; |
| 949 | |
Alexey Baskakov | d913a127 | 2021-07-09 02:12:19 | [diff] [blame] | 950 | const char kDesktopPWAsWebBundlesName[] = "Desktop PWAs Web Bundles"; |
| 951 | const char kDesktopPWAsWebBundlesDescription[] = |
| 952 | "Adds support for web bundles, making web apps able to be launched " |
| 953 | "offline."; |
| 954 | |
Phillis Tang | dc765bbd | 2022-08-10 22:41:26 | [diff] [blame] | 955 | const char kDesktopPWAsDetailedInstallDialogName[] = |
| 956 | "Desktop PWAs Detailed Install Dialog"; |
| 957 | const char kDesktopPWAsDetailedInstallDialogDescription[] = |
| 958 | "Enable PWAs with screenshots to show a detailed install dialog during " |
| 959 | "installation"; |
| 960 | |
Camden King | 332a4e0 | 2023-01-25 22:07:16 | [diff] [blame] | 961 | const char kSkipServiceWorkerCheckInstallOnlyName[] = |
| 962 | "Skip service worker check for PWA installs"; |
| 963 | const char kSkipServiceWorkerCheckInstallOnlyDescription[] = |
| 964 | "Allows PWAs to be installed without a service worker."; |
| 965 | |
| 966 | const char kSkipServiceWorkerForInstallPromptName[] = |
| 967 | "Promote PWA installation without a service worker"; |
| 968 | const char kSkipServiceWorkerForInstallPromptDescription[] = |
| 969 | "Allows PWAs that can be installed without a service worker to be " |
| 970 | "promoted. Requires #enable-skip-service-worker-check-install-only flag to " |
| 971 | "also be enabled."; |
| 972 | |
Alan Cutter | b85c0d2 | 2022-01-28 01:46:10 | [diff] [blame] | 973 | const char kEnablePreinstalledWebAppDuplicationFixerName[] = |
| 974 | "Enable the app deduplication fix for migrated preinstalled web apps"; |
| 975 | const char kEnablePreinstalledWebAppDuplicationFixerDescription[] = |
| 976 | "The preinstalled web app migration encountered app duplication issues " |
| 977 | "when it rolled out. This code path will attempt to re-migrate instances " |
| 978 | "of app duplication where the old app failed to stay removed. See " |
| 979 | "https://crbug.com/1290716."; |
| 980 | |
Steven Valdez | 89a44ea9 | 2019-05-01 15:18:49 | [diff] [blame] | 981 | const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data"; |
| 982 | const char kEnableTLS13EarlyDataDescription[] = |
| 983 | "This option enables TLS 1.3 Early Data, allowing GET requests to be sent " |
| 984 | "during the handshake when resuming a connection to a compatible TLS 1.3 " |
| 985 | "server."; |
| 986 | |
Katie Dektar | 7faf40ba | 2023-01-11 22:19:30 | [diff] [blame] | 987 | const char kAccessibilityAcceleratorNotificationsTimeoutName[] = |
| 988 | "Allows accelerator notifications for accessibility features to time out"; |
| 989 | const char kAccessibilityAcceleratorNotificationsTimeoutDescription[] = |
| 990 | "Enables notifications for accessibility features turned on by keyboard " |
| 991 | "shortcut (docked magnifier, screen magnifier and high contrast) to time " |
| 992 | "out instead of remaining pinned."; |
| 993 | |
Katie Dektar | 29e670d8 | 2022-08-23 17:54:40 | [diff] [blame] | 994 | const char kAccessibilityServiceName[] = "Experimental Accessibility Service"; |
| 995 | const char kAccessibilityServiceDescription[] = |
| 996 | "This option enables the experimental Accessibility Service and runs some " |
| 997 | "accessibility features in the service."; |
| 998 | |
Katie Dektar | 4cf2df7 | 2022-08-26 22:31:19 | [diff] [blame] | 999 | const char kExperimentalAccessibilityColorEnhancementSettingsName[] = |
| 1000 | "Experimental Accessibility color enhancement settings"; |
| 1001 | const char kExperimentalAccessibilityColorEnhancementSettingsDescription[] = |
| 1002 | "This option enables the experimental Accessibility color enhancement " |
| 1003 | "settings found in the OS Accessibility settings."; |
| 1004 | |
Josiah Krutz | c796db1 | 2022-09-02 23:38:37 | [diff] [blame] | 1005 | const char kAccessibilitySelectToSpeakPageMigrationName[] = |
| 1006 | "Select-to-Speak Page Migration"; |
| 1007 | const char kAccessibilitySelectToSpeakPageMigrationDescription[] = |
| 1008 | "This option enables Select-to-Speak page migration from extension options " |
| 1009 | "page to a Chrome OS settings page."; |
| 1010 | |
Jacob Francis | ee72f8c | 2022-10-26 17:01:00 | [diff] [blame] | 1011 | const char kAccessibilitySelectToSpeakContextMenuOptionName[] = |
| 1012 | "Select-To-Speak Context menu option"; |
| 1013 | const char kAccessibilitySelectToSpeakContextMenuOptionDescription[] = |
| 1014 | "This option enables a context menu option that will speak the selected " |
| 1015 | "text"; |
| 1016 | |
Josiah Krutz | f581bb0 | 2022-10-13 22:57:01 | [diff] [blame] | 1017 | const char kAccessibilitySelectToSpeakHoverTextImprovementsName[] = |
| 1018 | "Select-to-Speak Hover Text Improvements"; |
| 1019 | const char kAccessibilitySelectToSpeakHoverTextImprovementsDescription[] = |
| 1020 | "This option enables improvements in the text shown when hovering over the " |
| 1021 | "Select-to-Speak feature icon in the system tray."; |
| 1022 | |
Adam Langley | f66f28d2 | 2020-02-05 18:10:38 | [diff] [blame] | 1023 | const char kPostQuantumCECPQ2Name[] = "TLS Post-Quantum Confidentiality"; |
| 1024 | const char kPostQuantumCECPQ2Description[] = |
| 1025 | "This option enables a post-quantum (i.e. resistent to quantum computers) " |
| 1026 | "key exchange algorithm in TLS (CECPQ2)."; |
| 1027 | |
James Hollyer | 1b943edb | 2020-10-28 03:28:06 | [diff] [blame] | 1028 | const char kMacCoreLocationBackendName[] = "Core Location Backend"; |
| 1029 | const char kMacCoreLocationBackendDescription[] = |
| 1030 | "Enables usage of the Core Location APIs as the backend for Geolocation " |
| 1031 | "API"; |
James Hollyer | 070f60a | 2020-05-05 06:13:15 | [diff] [blame] | 1032 | |
Mohamed Adel | 52ac1ae | 2020-09-08 16:10:27 | [diff] [blame] | 1033 | const char kNewMacNotificationAPIName[] = |
| 1034 | "Determines which notification API to use on macOS devices"; |
| 1035 | const char kNewMacNotificationAPIDescription[] = |
| 1036 | "Enables the usage of Apple's new notification API which will run on macOS " |
| 1037 | "10.14+"; |
| 1038 | |
Pete Lavallee | 2d4415c7 | 2019-10-07 20:43:56 | [diff] [blame] | 1039 | const char kWinrtGeolocationImplementationName[] = |
| 1040 | "WinRT Geolocation Implementation"; |
| 1041 | const char kWinrtGeolocationImplementationDescription[] = |
| 1042 | "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows " |
| 1043 | "for geolocation"; |
| 1044 | |
Dominic Farolino | af2f3b7 | 2021-05-03 23:44:16 | [diff] [blame] | 1045 | const char kEnableFencedFramesName[] = "Enable the <fencedframe> element."; |
| 1046 | const char kEnableFencedFramesDescription[] = |
| 1047 | "Fenced frames are an experimental web platform feature that allows " |
Nan Lin | 066a81a | 2022-04-20 18:46:54 | [diff] [blame] | 1048 | "embedding an isolated top-level page. This requires " |
| 1049 | "#privacy-sandbox-ads-apis to also be enabled. See " |
Dominic Farolino | af2f3b7 | 2021-05-03 23:44:16 | [diff] [blame] | 1050 | "https://github.com/shivanigithub/fenced-frame"; |
| 1051 | |
James Hollyer | 24f30cb72 | 2021-06-18 21:22:24 | [diff] [blame] | 1052 | const char kEnableGamepadButtonAxisEventsName[] = |
| 1053 | "Gamepad Button and Axis Events"; |
| 1054 | const char kEnableGamepadButtonAxisEventsDescription[] = |
| 1055 | "Enables the ability to subscribe to changes in buttons and/or axes " |
| 1056 | "on the gamepad object."; |
| 1057 | |
Mikhail Pozdnyakov | 73373a6 | 2017-08-24 17:31:25 | [diff] [blame] | 1058 | const char kEnableGenericSensorExtraClassesName[] = |
| 1059 | "Generic Sensor Extra Classes"; |
| 1060 | const char kEnableGenericSensorExtraClassesDescription[] = |
| 1061 | "Enables an extra set of sensor classes based on Generic Sensor API, which " |
| 1062 | "expose previously unavailable platform features, i.e. AmbientLightSensor " |
| 1063 | "and Magnetometer interfaces."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 1064 | |
Vikas Soni | 78daa63 | 2019-01-12 01:32:52 | [diff] [blame] | 1065 | const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging"; |
| 1066 | const char kEnableGpuServiceLoggingDescription[] = |
| 1067 | "Enable printing the actual GL driver calls."; |
| 1068 | |
Christian Flach | 3de81af1 | 2022-06-10 17:53:11 | [diff] [blame] | 1069 | const char kEnableIsolatedWebAppsName[] = "Enable Isolated Web Apps"; |
| 1070 | const char kEnableIsolatedWebAppsDescription[] = |
| 1071 | "Enables experimental support for isolated web apps. " |
| 1072 | "See https://github.com/reillyeon/isolated-web-apps for more information."; |
| 1073 | |
Robbie McElrath | 8bc8f2b | 2022-11-14 19:59:02 | [diff] [blame] | 1074 | const char kEnableIsolatedWebAppDevModeName[] = |
| 1075 | "Enable Isolated Web App Developer Mode"; |
| 1076 | const char kEnableIsolatedWebAppDevModeDescription[] = |
| 1077 | "Enables the installation of unverified Isolated Web Apps"; |
| 1078 | |
Chase Phillips | f29be25 | 2023-02-02 22:19:39 | [diff] [blame] | 1079 | const char kEnableIwaControlledFrameName[] = "Enable IWA Controlled Frame"; |
| 1080 | const char kEnableIwaControlledFrameDescription[] = |
| 1081 | "Enables experimental support for IWA Controlled Frame. " |
| 1082 | "See " |
| 1083 | "https://github.com/chasephillips/controlled-frame/blob/main/EXPLAINER.md " |
| 1084 | "for more information."; |
| 1085 | |
Zentaro Kavanagh | 9d1307e | 2022-02-23 21:33:05 | [diff] [blame] | 1086 | const char kEnableRgbKeyboardName[] = "Enable RGB Keyboard Support"; |
| 1087 | const char kEnableRgbKeyboardDescription[] = |
| 1088 | "Enable RGB Keyboard support on supported devices."; |
| 1089 | |
Jimmy Gong | 07656e4 | 2021-04-08 02:31:08 | [diff] [blame] | 1090 | const char kEnableShortcutCustomizationAppName[] = |
| 1091 | "Enable shortcut customization app"; |
| 1092 | const char kEnableShortcutCustomizationAppDescription[] = |
| 1093 | "Enable the shortcut customization SWA, allowing users to customize system " |
| 1094 | "shortcuts."; |
| 1095 | |
Cam Bickel | d363a179 | 2022-10-06 16:59:09 | [diff] [blame] | 1096 | extern const char kEnableShortcutCustomizationName[] = |
| 1097 | "Enable customization in new shortcuts app"; |
| 1098 | extern const char kEnableShortcutCustomizationDescription[] = |
| 1099 | "Enable customization of shortcuts in the new shortcuts app."; |
| 1100 | |
David Padlipsky | a68a5644 | 2022-11-02 22:06:13 | [diff] [blame] | 1101 | const char kEnableInputDeviceSettingsSplitName[] = |
| 1102 | "Enable input device settings split"; |
| 1103 | const char kEnableInputDeviceSettingsSplitDescription[] = |
| 1104 | "Enable input device settings to be split per-device."; |
| 1105 | |
Michael Checo | 26110cc9 | 2022-05-04 00:55:07 | [diff] [blame] | 1106 | const char kExperimentalRgbKeyboardPatternsName[] = |
| 1107 | "Enable experimental RGB Keyboard patterns support"; |
| 1108 | const char kExperimentalRgbKeyboardPatternsDescription[] = |
| 1109 | "Enable experimental RGB Keyboard patterns support on supported devices."; |
| 1110 | |
Charlene Yan | e75ce25 | 2019-05-22 17:56:32 | [diff] [blame] | 1111 | const char kDownloadAutoResumptionNativeName[] = |
| 1112 | "Enable download auto-resumption in native"; |
| 1113 | const char kDownloadAutoResumptionNativeDescription[] = |
| 1114 | "Enables download auto-resumption in native"; |
| 1115 | |
Varun Khaneja | e493d2b2 | 2022-02-18 18:17:31 | [diff] [blame] | 1116 | const char kDownloadBubbleName[] = "Enable download bubble"; |
| 1117 | const char kDownloadBubbleDescription[] = |
| 1118 | "Enables the download bubble instead of the download shelf."; |
| 1119 | |
thefrog | e0ea8bd | 2022-06-24 15:04:53 | [diff] [blame] | 1120 | const char kDownloadBubbleV2Name[] = "Enable download bubble V2"; |
| 1121 | const char kDownloadBubbleV2Description[] = |
| 1122 | "Adds features to the download bubble not available on the download shelf. " |
| 1123 | "Only works if the base download bubble flag download-bubble is also " |
| 1124 | "enabled."; |
| 1125 | |
Xing Liu | a8d6b27 | 2021-11-11 00:02:16 | [diff] [blame] | 1126 | const char kDownloadRangeName[] = "Enable download range support"; |
| 1127 | const char kDownloadRangeDescription[] = |
| 1128 | "Enables arbitrary download range request support."; |
| 1129 | |
Awad Osman | 3302987 | 2022-12-02 19:04:26 | [diff] [blame] | 1130 | const char kEnableEnhancedSafeBrowsingSettingsImprovementsName[] = |
| 1131 | "Enable enhanced safe browsing settings improvements"; |
| 1132 | const char kEnableEnhancedSafeBrowsingSettingsImprovementsDescription[] = |
| 1133 | "Adds an in-product-help bubble to the ESB settings options when users are " |
| 1134 | "directed to the chrome security settings page through ESB promotions and " |
| 1135 | "also collapses the ESB option."; |
| 1136 | |
Bernhard Bauer | 5533f991 | 2017-11-06 17:56:02 | [diff] [blame] | 1137 | const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file"; |
| 1138 | const char kEnableNetworkLoggingToFileDescription[] = |
| 1139 | "Enables network logging to a file named netlog.json in the user data " |
| 1140 | "directory. The file can be imported into chrome://net-internals."; |
| 1141 | |
Shakti Sahu | 5a046f6 | 2019-03-12 19:25:34 | [diff] [blame] | 1142 | const char kEnableNewDownloadBackendName[] = "Enable new download backend"; |
| 1143 | const char kEnableNewDownloadBackendDescription[] = |
| 1144 | "Enables the new download backend that uses offline content provider"; |
| 1145 | |
Alexander Timin | a812932f | 2022-06-29 23:39:34 | [diff] [blame] | 1146 | const char kEnablePerfettoSystemTracingName[] = |
| 1147 | "Enable Perfetto system tracing"; |
| 1148 | const char kEnablePerfettoSystemTracingDescription[] = |
| 1149 | "When enabled, Chrome will attempt to connect to the system tracing " |
| 1150 | "service"; |
| 1151 | |
Lucas Furukawa Gadani | 9f57e19 | 2019-04-05 14:56:10 | [diff] [blame] | 1152 | const char kEnablePortalsName[] = "Enable Portals."; |
| 1153 | const char kEnablePortalsDescription[] = |
| 1154 | "Portals are an experimental web platform feature that allows embedding" |
| 1155 | " and seamless transitions between pages." |
| 1156 | " See https://github.com/WICG/portals and https://wicg.github.io/portals/"; |
| 1157 | |
Jeremy Roman | 30e81e8 | 2020-01-29 22:56:47 | [diff] [blame] | 1158 | const char kEnablePortalsCrossOriginName[] = "Enable cross-origin Portals."; |
| 1159 | const char kEnablePortalsCrossOriginDescription[] = |
| 1160 | "Allows portals to load cross-origin URLs in addition to same-origin ones." |
| 1161 | " Has no effect if Portals are not enabled."; |
| 1162 | |
Doug Arnett | c52291a | 2020-05-07 18:52:30 | [diff] [blame] | 1163 | const char kEnableTranslateSubFramesName[] = "Translate sub frames"; |
| 1164 | const char kEnableTranslateSubFramesDescription[] = |
| 1165 | "Enable the translation of sub frames (as well as the main frame)"; |
| 1166 | |
Matt Reynolds | 9e96d08d | 2022-09-30 01:28:50 | [diff] [blame] | 1167 | const char kEnableWebUsbOnExtensionServiceWorkerName[] = |
| 1168 | "Enable WebUSB on extension service workers"; |
| 1169 | const char kEnableWebUsbOnExtensionServiceWorkerDescription[] = |
| 1170 | "When enabled, WebUSB API is available on extension service workers."; |
| 1171 | |
Qiaofei Ye | beb9a23 | 2020-07-22 23:47:04 | [diff] [blame] | 1172 | const char kEnableWindowsGamingInputDataFetcherName[] = |
| 1173 | "Enable Windows.Gaming.Input"; |
| 1174 | const char kEnableWindowsGamingInputDataFetcherDescription[] = |
| 1175 | "Enable Windows.Gaming.Input by default to provide game controller " |
| 1176 | "support on Windows 10 desktop."; |
| 1177 | |
Titouan Rigoudy | f619f546 | 2020-09-25 16:35:49 | [diff] [blame] | 1178 | const char kBlockInsecurePrivateNetworkRequestsName[] = |
| 1179 | "Block insecure private network requests."; |
| 1180 | const char kBlockInsecurePrivateNetworkRequestsDescription[] = |
Titouan Rigoudy | 449de9d | 2022-02-16 19:14:06 | [diff] [blame] | 1181 | "Prevents non-secure contexts from making subresource requests to " |
| 1182 | "more-private IP addresses. See also: " |
| 1183 | "https://developer.chrome.com/blog/private-network-access-update/"; |
| 1184 | |
| 1185 | const char kPrivateNetworkAccessSendPreflightsName[] = |
| 1186 | "Send Private Network Access preflights"; |
| 1187 | const char kPrivateNetworkAccessSendPreflightsDescription[] = |
| 1188 | "Enables sending Private Network Access preflights ahead of requests to " |
| 1189 | "more-private IP addresses. Failed preflights display warnings in DevTools " |
| 1190 | "without failing entire request. See also: " |
| 1191 | "https://developer.chrome.com/blog/private-network-access-preflight/"; |
| 1192 | |
| 1193 | const char kPrivateNetworkAccessRespectPreflightResultsName[] = |
| 1194 | "Respect the result of Private Network Access preflights"; |
| 1195 | const char kPrivateNetworkAccessRespectPreflightResultsDescription[] = |
| 1196 | "Enables sending Private Network Access preflights ahead of requests to " |
| 1197 | "more-private IP addresses. These preflight requests must succeed in order " |
| 1198 | "for the request to proceed. See also: " |
| 1199 | "https://developer.chrome.com/blog/private-network-access-preflight/"; |
Titouan Rigoudy | f619f546 | 2020-09-25 16:35:49 | [diff] [blame] | 1200 | |
Yifan Luo | 6e4029d5 | 2022-08-11 17:28:11 | [diff] [blame] | 1201 | const char kPrivateNetworkAccessPreflightShortTimeoutName[] = |
| 1202 | "Reduce waiting time for Private Network Access preflights response"; |
| 1203 | const char kPrivateNetworkAccessPreflightShortTimeoutDescription[] = |
| 1204 | "Reduce the waiting time for Private Network Access preflights to 200 " |
| 1205 | "milliseconds. The default timeout period for requests is 5 minutes." |
| 1206 | "See also: " |
| 1207 | "https://developer.chrome.com/blog/private-network-access-preflight/"; |
| 1208 | |
Zentaro Kavanagh | 53c48cb2 | 2021-03-25 00:19:06 | [diff] [blame] | 1209 | const char kDeprecateAltClickName[] = |
| 1210 | "Enable Alt+Click deprecation notifications"; |
| 1211 | const char kDeprecateAltClickDescription[] = |
| 1212 | "Start providing notifications about Alt+Click deprecation and enable " |
| 1213 | "Search+Click as an alternative."; |
| 1214 | |
Zentaro Kavanagh | c1898fe | 2021-06-25 00:31:45 | [diff] [blame] | 1215 | const char kDeprecateAltBasedSixPackName[] = |
| 1216 | "Deprecate Alt based six-pack (PgUp, PgDn, Home, End, Delete, Insert)"; |
| 1217 | const char kDeprecateAltBasedSixPackDescription[] = |
| 1218 | "Show deprecation notifications and disable functionality for Alt based " |
| 1219 | "six pack deprecations. The Search based versions continue to work."; |
| 1220 | |
Chris Hall | 4a4225f6 | 2019-01-18 03:07:16 | [diff] [blame] | 1221 | const char kExperimentalAccessibilityLanguageDetectionName[] = |
| 1222 | "Experimental accessibility language detection"; |
| 1223 | const char kExperimentalAccessibilityLanguageDetectionDescription[] = |
| 1224 | "Enable language detection for in-page content which is then exposed to " |
Chris Hall | 31e92b2 | 2019-11-15 05:57:22 | [diff] [blame] | 1225 | "assistive technologies such as screen readers."; |
Chris Hall | 4a4225f6 | 2019-01-18 03:07:16 | [diff] [blame] | 1226 | |
Chris Hall | 4f3ca558 | 2019-11-19 02:55:49 | [diff] [blame] | 1227 | const char kExperimentalAccessibilityLanguageDetectionDynamicName[] = |
| 1228 | "Experimental accessibility language detection for dynamic content"; |
| 1229 | const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] = |
| 1230 | "Enable language detection for dynamic content which is then exposed to " |
| 1231 | "assistive technologies such as screen readers."; |
| 1232 | |
Rahul Arakeri | 61a2ad27 | 2019-03-19 22:55:08 | [diff] [blame] | 1233 | const char kCompositorThreadedScrollbarScrollingName[] = |
Rahul Arakeri | ac87fb1 | 2019-05-14 00:07:22 | [diff] [blame] | 1234 | "Compositor threaded scrollbar scrolling"; |
Rahul Arakeri | 61a2ad27 | 2019-03-19 22:55:08 | [diff] [blame] | 1235 | const char kCompositorThreadedScrollbarScrollingDescription[] = |
| 1236 | "Enables pointer-based scrollbar scrolling on the compositor thread " |
| 1237 | "instead of the main thread"; |
| 1238 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1239 | const char kMemlogName[] = "Chrome heap profiler start mode."; |
| 1240 | const char kMemlogDescription[] = |
| 1241 | "Starts heap profiling service that records sampled memory allocation " |
| 1242 | "profile having each sample attributed with a callstack. " |
| 1243 | "The sampling resolution is controlled with --memlog-sampling-rate flag. " |
| 1244 | "Recorded heap dumps can be obtained at chrome://tracing " |
| 1245 | "[category:memory-infra] and chrome://memory-internals. This setting " |
| 1246 | "controls which processes will be profiled since their start. To profile " |
| 1247 | "any given process at a later time use chrome://memory-internals page."; |
| 1248 | const char kMemlogModeMinimal[] = "Browser and GPU"; |
| 1249 | const char kMemlogModeAll[] = "All processes"; |
| 1250 | const char kMemlogModeAllRenderers[] = "All renderers"; |
| 1251 | const char kMemlogModeRendererSampling[] = "Single renderer"; |
| 1252 | const char kMemlogModeBrowser[] = "Browser only"; |
| 1253 | const char kMemlogModeGpu[] = "GPU only"; |
Alexei Filippov | 2e8bfee | 2019-03-07 21:51:27 | [diff] [blame] | 1254 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1255 | const char kMemlogSamplingRateName[] = |
| 1256 | "Heap profiling sampling interval (in bytes)."; |
| 1257 | const char kMemlogSamplingRateDescription[] = |
| 1258 | "Heap profiling service uses Poisson process to sample allocations. " |
Erik Chen | d0ec40e | 2021-09-17 22:43:56 | [diff] [blame] | 1259 | "Default value for the interval between samples is 1000000 (1MB). " |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1260 | "This results in low noise for large and/or frequent allocations " |
Erik Chen | d0ec40e | 2021-09-17 22:43:56 | [diff] [blame] | 1261 | "[size * frequency >> 1MB]. This means that aggregate numbers [e.g. " |
erikchen | 99bfce0 | 2018-02-14 20:29:22 | [diff] [blame] | 1262 | "total size of malloc-ed objects] and large and/or frequent allocations " |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1263 | "can be trusted with high fidelity. " |
| 1264 | "Lower intervals produce higher samples resolution, but come at a cost of " |
| 1265 | "higher performance overhead."; |
| 1266 | const char kMemlogSamplingRate10KB[] = "10KB"; |
| 1267 | const char kMemlogSamplingRate50KB[] = "50KB"; |
| 1268 | const char kMemlogSamplingRate100KB[] = "100KB"; |
| 1269 | const char kMemlogSamplingRate500KB[] = "500KB"; |
| 1270 | const char kMemlogSamplingRate1MB[] = "1MB"; |
| 1271 | const char kMemlogSamplingRate5MB[] = "5MB"; |
erikchen | 8bc20d8 | 2018-02-14 03:21:51 | [diff] [blame] | 1272 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1273 | const char kMemlogStackModeName[] = "Heap profiling stack traces type."; |
| 1274 | const char kMemlogStackModeDescription[] = |
| 1275 | "By default heap profiling service records native stacks. " |
| 1276 | "A post-processing step is required to symbolize the stacks. " |
| 1277 | "'Native with thread names' adds the thread name as the first frame of " |
| 1278 | "each native stack. It's also possible to record a pseudo stack using " |
| 1279 | "trace events as identifiers. It's also possible to do a mix of both."; |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 1280 | const char kMemlogStackModeNative[] = "Native"; |
| 1281 | const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names"; |
Erik Chen | 3303fd023 | 2018-01-11 20:29:05 | [diff] [blame] | 1282 | |
Anupam Snigdha | ecc5739e | 2022-02-14 18:35:58 | [diff] [blame] | 1283 | const char kEditContextName[] = "EditContext API"; |
| 1284 | const char kEditContextDescription[] = |
| 1285 | "Allows web pages to use the experimental EditContext API to better " |
| 1286 | "control text input."; |
| 1287 | |
Juan Mojica | 6ea85d07 | 2022-03-17 20:33:19 | [diff] [blame] | 1288 | const char kEnableLensStandaloneFlagId[] = "enable-lens-standalone"; |
| 1289 | const char kEnableLensStandaloneName[] = "Enable Lens features in Chrome."; |
| 1290 | const char kEnableLensStandaloneDescription[] = |
| 1291 | "Enables Lens image and region search to learn about the visual content " |
| 1292 | "you see while you browse and shop on the web."; |
Ali Stanfield | 980a749 | 2021-07-21 19:21:26 | [diff] [blame] | 1293 | |
Anatoliy Potapchuk | f096475c | 2021-04-06 15:51:59 | [diff] [blame] | 1294 | const char kEnableManagedConfigurationWebApiName[] = |
| 1295 | "Enable Managed Configuration Web API"; |
| 1296 | const char kEnableManagedConfigurationWebApiDescription[] = |
| 1297 | "Allows website to access a managed configuration provided by the device " |
| 1298 | "administrator for the origin."; |
| 1299 | |
Ben Goldberger | 2a1433a4 | 2021-04-21 18:37:15 | [diff] [blame] | 1300 | const char kEnablePenetratingImageSelectionName[] = |
| 1301 | "Penetrating Image Selection"; |
| 1302 | const char kEnablePenetratingImageSelectionDescription[] = |
| 1303 | "Enables image options to be surfaced in the context menu for nodes " |
| 1304 | "covered by transparent overlays."; |
| 1305 | |
F#m | 59d036e | 2017-09-13 07:22:17 | [diff] [blame] | 1306 | const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording"; |
| 1307 | const char kEnablePixelCanvasRecordingDescription[] = |
| 1308 | "Pixel canvas recording allows the compositor to raster contents aligned " |
| 1309 | "with the pixel and improves text rendering. This should be enabled when a " |
| 1310 | "device is using fractional scale factor."; |
| 1311 | |
Robert Flack | 55c53a41 | 2021-03-22 14:46:08 | [diff] [blame] | 1312 | const char kReduceHorizontalFlingVelocityName[] = |
| 1313 | "Reduce horizontal fling velocity"; |
| 1314 | const char kReduceHorizontalFlingVelocityDescription[] = |
Jeroen Dhollander | 9b816f05 | 2022-05-11 15:03:42 | [diff] [blame] | 1315 | "Reduces the velocity of horizontal flings to 20% of their original" |
Robert Flack | 55c53a41 | 2021-03-22 14:46:08 | [diff] [blame] | 1316 | "velocity."; |
| 1317 | |
Mehdi Kazemi | 4db00b9 | 2022-07-08 14:25:20 | [diff] [blame] | 1318 | extern const char kDropInputEventsBeforeFirstPaintName[] = |
| 1319 | "Drop Input Events Before First Paint"; |
| 1320 | extern const char kDropInputEventsBeforeFirstPaintDescription[] = |
| 1321 | "Before the user can see the first paint of a new page they cannot " |
| 1322 | "intentionally interact with elements on that page. By dropping the events " |
| 1323 | "we prevent accidental interaction with a page the user has not seen yet."; |
| 1324 | |
Mehdi Kazemi | f155bc9 | 2021-11-22 18:35:52 | [diff] [blame] | 1325 | const char kEnableCssSelectorFragmentAnchorName[] = |
| 1326 | "Enables CSS selector fragment anchors"; |
| 1327 | const char kEnableCssSelectorFragmentAnchorDescription[] = |
| 1328 | "Similar to text directives, CSS selector directives can be specified " |
| 1329 | "in a url which is to be scrolled into view and highlighted."; |
| 1330 | |
Mei Liang | 267ee248 | 2021-09-17 02:54:51 | [diff] [blame] | 1331 | const char kRetailCouponsName[] = "Enable to fetch for retail coupons"; |
| 1332 | const char kRetailCouponsDescription[] = |
| 1333 | "Allow to fetch retail coupons for consented users"; |
| 1334 | |
Ella Ge | bee81c9 | 2018-08-14 15:51:09 | [diff] [blame] | 1335 | const char kEnableResamplingInputEventsName[] = |
| 1336 | "Enable resampling input events"; |
| 1337 | const char kEnableResamplingInputEventsDescription[] = |
| 1338 | "Predicts mouse and touch inputs position at rAF time based on previous " |
| 1339 | "input"; |
| 1340 | const char kEnableResamplingScrollEventsName[] = |
| 1341 | "Enable resampling scroll events"; |
| 1342 | const char kEnableResamplingScrollEventsDescription[] = |
| 1343 | "Predicts the scroll amount at vsync time based on previous input"; |
Joao Victor Almeida | 371702c | 2021-01-08 18:41:56 | [diff] [blame] | 1344 | const char kEnableResamplingScrollEventsExperimentalPredictionName[] = |
| 1345 | "Enable experimental prediction for scroll events"; |
| 1346 | const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] = |
| 1347 | "Predicts the scroll amount after the vsync time to more closely match " |
| 1348 | "when the frame is visible."; |
Ella Ge | bee81c9 | 2018-08-14 15:51:09 | [diff] [blame] | 1349 | |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 1350 | const char kEnableRestrictedWebApisName[] = |
Felipe Andrade | 579b7fd | 2022-10-14 15:17:28 | [diff] [blame] | 1351 | "Enable the restricted web APIs for high-trusted apps."; |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 1352 | const char kEnableRestrictedWebApisDescription[] = |
Anqing Zhao | c7136af | 2021-01-20 05:52:39 | [diff] [blame] | 1353 | "Enable the restricted web APIs for dev trial. This will be replaced with " |
| 1354 | "permission policies to control the capabilities afterwards."; |
| 1355 | |
Yicheng Li | 0a78f46 | 2020-08-14 00:08:12 | [diff] [blame] | 1356 | const char kEnableWebAuthenticationChromeOSAuthenticatorName[] = |
| 1357 | "ChromeOS platform Web Authentication support"; |
| 1358 | const char kEnableWebAuthenticationChromeOSAuthenticatorDescription[] = |
| 1359 | "Enable the ChromeOS platform authenticator for the Web Authentication " |
| 1360 | "API."; |
| 1361 | |
Piotr Bialecki | 0fe1463 | 2022-03-09 00:49:24 | [diff] [blame] | 1362 | const char kEnableZeroCopyTabCaptureName[] = "Zero-copy tab capture"; |
| 1363 | const char kEnableZeroCopyTabCaptureDescription[] = |
| 1364 | "Enable zero-copy content tab for getDisplayMedia() APIs."; |
| 1365 | |
Jordan Bayles | a27db81 | 2022-07-19 22:37:05 | [diff] [blame] | 1366 | const char kEnableRegionCaptureExperimentalSubtypesName[] = |
| 1367 | "Region capture experimental subtypes"; |
| 1368 | const char kEnableRegionCaptureExperimentalSubtypesDescription[] = |
| 1369 | "Enables experiment support for CropTarget.fromElement to use other " |
| 1370 | "Element subtypes than just <div> and <iframe>."; |
| 1371 | |
Andreas Haas | b400d91 | 2019-08-28 18:54:10 | [diff] [blame] | 1372 | const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly"; |
| 1373 | const char kExperimentalWebAssemblyFeaturesDescription[] = |
| 1374 | "Enable web pages to use experimental WebAssembly features."; |
| 1375 | |
Francis McCabe | cfc1e47d | 2023-01-09 22:55:49 | [diff] [blame] | 1376 | const char kExperimentalWebAssemblyJSPIName[] = |
| 1377 | "Experimental WebAssembly JavaScript Promise Integration (JSPI)"; |
| 1378 | const char kExperimentalWebAssemblyJSPIDescription[] = |
| 1379 | "Enable web pages to use experimental WebAssembly JavaScript Promise " |
| 1380 | "Integration (JSPI) " |
| 1381 | "API."; |
Francis McCabe | f354883 | 2022-05-26 15:11:27 | [diff] [blame] | 1382 | |
Clemens Hammacher | 0c8a15a | 2018-04-27 13:45:32 | [diff] [blame] | 1383 | const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler"; |
| 1384 | const char kEnableWasmBaselineDescription[] = |
| 1385 | "Enables WebAssembly baseline compilation and tier up."; |
| 1386 | |
Clemens Backes | 50e0ecd | 2020-01-20 10:43:24 | [diff] [blame] | 1387 | const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation"; |
| 1388 | const char kEnableWasmLazyCompilationDescription[] = |
| 1389 | "Enables lazy (JIT on first call) compilation of WebAssembly modules."; |
| 1390 | |
Adam Klein | adbd0ef | 2022-12-15 00:07:15 | [diff] [blame] | 1391 | const char kEnableWasmGarbageCollectionName[] = |
| 1392 | "WebAssembly Garbage Collection"; |
| 1393 | const char kEnableWasmGarbageCollectionDescription[] = |
| 1394 | "Enables the experimental Garbage Collection (GC) extensions to " |
| 1395 | "WebAssembly."; |
| 1396 | |
Deepti Gandluri | 377ba8cc | 2022-11-11 18:09:38 | [diff] [blame] | 1397 | const char kEnableWasmRelaxedSimdName[] = "WebAssembly Relaxed SIMD"; |
| 1398 | const char kEnableWasmRelaxedSimdDescription[] = |
| 1399 | "Enables the use of WebAssembly vector operations with relaxed semantics"; |
| 1400 | |
Clemens Backes | 963eb37be | 2020-01-10 11:56:49 | [diff] [blame] | 1401 | const char kEnableWasmTieringName[] = "WebAssembly tiering"; |
| 1402 | const char kEnableWasmTieringDescription[] = |
| 1403 | "Enables tiered compilation of WebAssembly (will tier up to TurboFan if " |
Clemens Backes | 50e0ecd | 2020-01-20 10:43:24 | [diff] [blame] | 1404 | "#enable-webassembly-baseline is enabled)."; |
Clemens Backes | 963eb37be | 2020-01-10 11:56:49 | [diff] [blame] | 1405 | |
Christopher Thompson | f3ba2012 | 2019-06-06 22:01:01 | [diff] [blame] | 1406 | const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info."; |
| 1407 | const char kEvDetailsInPageInfoDescription[] = |
| 1408 | "Shows the EV certificate details in the Page Info bubble."; |
| 1409 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 1410 | const char kExperimentalWebPlatformFeaturesName[] = |
| 1411 | "Experimental Web Platform features"; |
| 1412 | const char kExperimentalWebPlatformFeaturesDescription[] = |
| 1413 | "Enables experimental Web Platform features that are in development."; |
| 1414 | |
| 1415 | const char kExtensionContentVerificationName[] = |
| 1416 | "Extension Content Verification"; |
| 1417 | const char kExtensionContentVerificationDescription[] = |
| 1418 | "This flag can be used to turn on verification that the contents of the " |
| 1419 | "files on disk for extensions from the webstore match what they're " |
| 1420 | "expected to be. This can be used to turn on this feature if it would not " |
| 1421 | "otherwise have been turned on, but cannot be used to turn it off (because " |
| 1422 | "this setting can be tampered with by malware)."; |
| 1423 | const char kExtensionContentVerificationBootstrap[] = |
| 1424 | "Bootstrap (get expected hashes, but do not enforce them)"; |
| 1425 | const char kExtensionContentVerificationEnforce[] = |
| 1426 | "Enforce (try to get hashes, and enforce them if successful)"; |
| 1427 | const char kExtensionContentVerificationEnforceStrict[] = |
| 1428 | "Enforce strict (hard fail if we can't get hashes)"; |
| 1429 | |
Devlin Cronin | 15608c3 | 2022-06-01 01:39:52 | [diff] [blame] | 1430 | #if BUILDFLAG(ENABLE_EXTENSIONS) |
Emilia Paz | d7cce42 | 2021-08-14 00:50:48 | [diff] [blame] | 1431 | const char kExtensionsMenuAccessControlName[] = |
| 1432 | "Extensions Menu Access Control"; |
| 1433 | const char kExtensionsMenuAccessControlDescription[] = |
| 1434 | "Enables a redesigned extensions menu that allows the user to control " |
| 1435 | "extensions site access."; |
Kevin McNee | 96b3a1b | 2023-02-02 20:24:50 | [diff] [blame] | 1436 | const char kWebViewTagMPArchBehaviorName[] = |
| 1437 | "MPArch behavior changes for <webview> tags"; |
| 1438 | const char kWebViewTagMPArchBehaviorDescription[] = |
| 1439 | "Enables a set of behavior changes associated with the migration of " |
| 1440 | "<webview> tags to MPArch. See https://crbug.com/1261928. Specifically, " |
| 1441 | "SSL errors result in error pages in lieu of interstitials and " |
| 1442 | "cross-WebContents newwindow event usage invalidates some window.open " |
| 1443 | "usage within <webview>s. For enterprise, the " |
| 1444 | "ChromeAppsWebViewPermissiveBehaviorAllowed policy serves as an escape " |
| 1445 | "hatch during the roll out of this change."; |
Devlin Cronin | 15608c3 | 2022-06-01 01:39:52 | [diff] [blame] | 1446 | #endif |
Emilia Paz | d7cce42 | 2021-08-14 00:50:48 | [diff] [blame] | 1447 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 1448 | const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs"; |
| 1449 | const char kExtensionsOnChromeUrlsDescription[] = |
| 1450 | "Enables running extensions on chrome:// URLs, where extensions explicitly " |
| 1451 | "request this permission."; |
galinap | ae72e15 | 2017-05-12 13:12:28 | [diff] [blame] | 1452 | |
Axel Antoine | 12df7118 | 2019-07-25 18:11:21 | [diff] [blame] | 1453 | const char kFilteringScrollPredictionName[] = "Filtering scroll prediction"; |
| 1454 | const char kFilteringScrollPredictionDescription[] = |
| 1455 | "Enable filtering of predicted scroll events"; |
| 1456 | |
David Bokan | 432978d | 2019-08-15 18:18:52 | [diff] [blame] | 1457 | const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets"; |
| 1458 | const char kFractionalScrollOffsetsDescription[] = |
| 1459 | "Enables fractional scroll offsets inside Blink, exposing non-integer " |
| 1460 | "offsets to web APIs."; |
| 1461 | |
Peter Kotwicz | 980079f | 2021-12-02 07:18:34 | [diff] [blame] | 1462 | const char kFedCmName[] = "FedCM"; |
| 1463 | const char kFedCmDescription[] = |
| 1464 | "Enables JavaScript API to intermediate federated identity requests."; |
| 1465 | |
Zachary Tan | 3a4144f | 2023-02-06 21:28:45 | [diff] [blame] | 1466 | const char kFedCmAutoReauthnName[] = "FedCmAutoReauthn"; |
| 1467 | const char kFedCmAutoReauthnDescription[] = |
| 1468 | "Enables auto re-authentication in the FedCM API. Requires FedCM to be " |
| 1469 | "enabled."; |
Zachary Tan | 517e7ebc | 2023-01-18 20:15:35 | [diff] [blame] | 1470 | |
Sam Goto | a0b477b | 2023-02-07 06:37:29 | [diff] [blame] | 1471 | const char kFedCmIdPRegistrationName[] = "FedCM with IdP Registration support"; |
| 1472 | const char kFedCmIdPRegistrationDescription[] = |
| 1473 | "Enables RPs to get identity credentials from registered IdPs."; |
| 1474 | |
Nicolás Peña Moreno | 47326738 | 2022-12-15 18:42:40 | [diff] [blame] | 1475 | const char kFedCmIframeSupportName[] = "FedCM with iframe support"; |
| 1476 | const char kFedCmIframeSupportDescription[] = |
| 1477 | "Enables the 'identity-credentials-get' Permissions-Policy for the FedCM " |
| 1478 | "API."; |
| 1479 | |
Nicolás Peña Moreno | 8e55856 | 2022-12-20 18:57:44 | [diff] [blame] | 1480 | const char kFedCmLoginHintName[] = "FedCmLoginHint"; |
| 1481 | const char kFedCmLoginHintDescription[] = |
| 1482 | "Allows the FedCM API to be used with a login hint which specifies a " |
| 1483 | "specific IDP account that needs to be displayed in the FedCM UI."; |
Zachary Tan | 3309272 | 2022-11-15 18:59:38 | [diff] [blame] | 1484 | |
Yi Gu | c164858 | 2022-10-13 19:45:24 | [diff] [blame] | 1485 | const char kFedCmMetricsEndpointName[] = "FedCmMetricsEndpoint"; |
| 1486 | const char kFedCmMetricsEndpointDescription[] = |
| 1487 | "Allows the FedCM API to send performance measurement to the metrics " |
| 1488 | "endpoint on the identity provider side. Requires FedCM to be enabled."; |
| 1489 | |
Nicolás Peña Moreno | 8e55856 | 2022-12-20 18:57:44 | [diff] [blame] | 1490 | const char kFedCmMultiIdpName[] = "FedCmMultiIdp"; |
| 1491 | const char kFedCmMultiIdpDescription[] = |
| 1492 | "Allows the FedCM API to request multiple identity providers " |
| 1493 | "simultaneously. Requires FedCM to be enabled as well."; |
| 1494 | |
Sam Goto | 2cff8a5 | 2022-12-21 00:50:34 | [diff] [blame] | 1495 | const char kFedCmSelectiveDisclosureName[] = "FedCmSelectiveDisclosure"; |
| 1496 | const char kFedCmSelectiveDisclosureDescription[] = |
| 1497 | "Allows a relying party to selectively request a set of identity " |
| 1498 | "attributes to be disclosed."; |
| 1499 | |
Yi Gu | 344f8a5 | 2022-12-12 21:11:23 | [diff] [blame] | 1500 | const char kFedCmUserInfoName[] = "FedCmUserInfo"; |
| 1501 | const char kFedCmUserInfoDescription[] = |
| 1502 | "Allows an identity provider to request user info instead of token from " |
| 1503 | "its own iframe. Requires FedCM to be enabled."; |
| 1504 | |
Nicolás Peña Moreno | 8e55856 | 2022-12-20 18:57:44 | [diff] [blame] | 1505 | const char kFedCmWithoutThirdPartyCookiesName[] = |
| 1506 | "FedCmWithoutThirdPartyCookies"; |
| 1507 | const char kFedCmWithoutThirdPartyCookiesDescription[] = |
| 1508 | "Allows the FedCM API to be enabled when third party cookies are disabled."; |
Nicolás Peña Moreno | 4f77c4b | 2022-09-06 22:16:54 | [diff] [blame] | 1509 | |
Zachary Tan | eb4b496 | 2023-01-12 03:08:42 | [diff] [blame] | 1510 | const char kFedCmRpContextName[] = "FedCmRpContext"; |
| 1511 | const char kFedCmRpContextDescription[] = |
| 1512 | "Allows relying parties to describe which context (e.g. sign-up vs " |
| 1513 | "sign-in) the FedCM is executing on."; |
| 1514 | |
Darwin Huang | 1473bc3 | 2021-06-18 01:56:23 | [diff] [blame] | 1515 | const char kFileHandlingIconsName[] = "File Handling Icons"; |
| 1516 | const char kFileHandlingIconsDescription[] = |
| 1517 | "Allows websites using the file handling API to also register file type " |
| 1518 | "icons. See https://github.com/WICG/file-handling/blob/main/explainer.md " |
| 1519 | "for more information."; |
| 1520 | |
Viktor Semeniuk | d5cfc26 | 2021-02-25 12:51:22 | [diff] [blame] | 1521 | const char kFillingAcrossAffiliatedWebsitesName[] = |
| 1522 | "Fill passwords across affiliated websites."; |
| 1523 | const char kFillingAcrossAffiliatedWebsitesDescription[] = |
| 1524 | "Enables filling password on a website when there is saved " |
| 1525 | "password on affiliated website."; |
| 1526 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1527 | const char kFillOnAccountSelectName[] = "Fill passwords on account selection"; |
| 1528 | const char kFillOnAccountSelectDescription[] = |
| 1529 | "Filling of passwords when an account is explicitly selected by the user " |
| 1530 | "rather than autofilling credentials on page load."; |
| 1531 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1532 | const char kForceTextDirectionName[] = "Force text direction"; |
| 1533 | const char kForceTextDirectionDescription[] = |
| 1534 | "Explicitly force the per-character directionality of UI text to " |
| 1535 | "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default " |
| 1536 | "direction of the character language."; |
| 1537 | const char kForceDirectionLtr[] = "Left-to-right"; |
| 1538 | const char kForceDirectionRtl[] = "Right-to-left"; |
| 1539 | |
| 1540 | const char kForceUiDirectionName[] = "Force UI direction"; |
| 1541 | const char kForceUiDirectionDescription[] = |
| 1542 | "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " |
| 1543 | "mode, overriding the default direction of the UI language."; |
| 1544 | |
Victor Tan | c6eab7e | 2022-02-02 21:00:24 | [diff] [blame] | 1545 | const char kFullUserAgentName[] = "Full User-Agent request header"; |
| 1546 | const char kFullUserAgentDescription[] = |
| 1547 | "If set, use the full (non-reduced) user agent string for the User-Agent " |
| 1548 | "request header and the JS APIs."; |
| 1549 | |
Yuki Awano | eeaad0f | 2022-11-22 22:44:59 | [diff] [blame] | 1550 | const char kGalleryAppPdfEditNotificationName[] = |
| 1551 | "Gallery App Pdf Edit Notification"; |
| 1552 | const char kGalleryAppPdfEditNotificationDescription[] = |
| 1553 | "Shows a notification to provide an option to open Gallery app for a " |
| 1554 | "downloaded pdf file"; |
| 1555 | |
Muyao Xu | 217663c | 2023-01-17 18:55:58 | [diff] [blame] | 1556 | const char kMediaRemotingWithoutFullscreenName[] = |
| 1557 | "Media Remoting without videos in fullscreen mode"; |
| 1558 | const char kMediaRemotingWithoutFullscreenDescription[] = |
| 1559 | "Starts Media Remoting from Global Media Controls without making the " |
| 1560 | "videos fullscreen."; |
| 1561 | |
Jazz Xu | 7b2047a | 2023-01-19 10:44:09 | [diff] [blame] | 1562 | #if BUILDFLAG(IS_CHROMEOS) |
| 1563 | const char kGlobalMediaControlsCrOSUpdatedUIName[] = |
| 1564 | "Global Media Controls CrOS updated UI"; |
| 1565 | const char kGlobalMediaControlsCrOSUpdatedUIDescription[] = |
| 1566 | "Show updated UI for Global Media Controls in CrOS."; |
| 1567 | #endif |
| 1568 | |
Noah Rose Ledesma | 1bbd071 | 2020-09-09 20:36:44 | [diff] [blame] | 1569 | const char kGlobalMediaControlsModernUIName[] = |
| 1570 | "Global Media Controls Modern UI"; |
Noah Rose Ledesma | 1bbd071 | 2020-09-09 20:36:44 | [diff] [blame] | 1571 | const char kGlobalMediaControlsModernUIDescription[] = |
| 1572 | "Use a redesigned version of the Global Media Controls UI. Requires " |
| 1573 | "#global-media-controls to also be enabled."; |
| 1574 | |
Yuki Awano | 6ac1a1dc | 2023-01-21 00:50:24 | [diff] [blame] | 1575 | const char kGoogleOneOfferFilesBannerName[] = "Google One offer Files banner"; |
| 1576 | const char kGoogleOneOfferFilesBannerDescription[] = |
| 1577 | "Shows a Files banner about Google One offer."; |
| 1578 | |
Jordan Bayles | b3160b26 | 2021-08-18 00:33:01 | [diff] [blame] | 1579 | const char kOpenscreenCastStreamingSessionName[] = |
| 1580 | "Enable Open Screen Library (libcast) as the Mirroring Service's Cast " |
Abraham Corea Diaz | e4c3abe | 2021-08-24 17:43:50 | [diff] [blame] | 1581 | "Streaming implementation"; |
Jordan Bayles | b3160b26 | 2021-08-18 00:33:01 | [diff] [blame] | 1582 | const char kOpenscreenCastStreamingSessionDescription[] = |
| 1583 | "Enables Open Screen Library's (libcast) Cast Streaming implementation to " |
Abraham Corea Diaz | e4c3abe | 2021-08-24 17:43:50 | [diff] [blame] | 1584 | "be used for negotiating and executing mirroring and remoting sessions."; |
| 1585 | |
Kennan Gumbs | df768ce9 | 2021-08-25 19:09:51 | [diff] [blame] | 1586 | const char kCastStreamingAv1Name[] = |
Jordan Bayles | ef6d025 | 2022-11-18 02:25:17 | [diff] [blame] | 1587 | "Enable AV1 video encoding for Cast Streaming"; |
Kennan Gumbs | df768ce9 | 2021-08-25 19:09:51 | [diff] [blame] | 1588 | const char kCastStreamingAv1Description[] = |
Jordan Bayles | ef6d025 | 2022-11-18 02:25:17 | [diff] [blame] | 1589 | "Offers the AV1 video codec when negotiating Cast Streaming, and uses AV1 " |
| 1590 | "if selected for the session."; |
| 1591 | |
| 1592 | const char kCastStreamingHardwareH264Name[] = |
| 1593 | "Toggle hardware accelerated H.264 video encoding for Cast Streaming"; |
| 1594 | const char kCastStreamingHardwareH264Description[] = |
| 1595 | "The default is to allow hardware H.264 encoding when recommended for the " |
| 1596 | "platform. If enabled, hardware H.264 encoding will always be allowed when " |
| 1597 | "supported by the platform. If disabled, hardware H.264 encoding will " |
| 1598 | "never be used."; |
| 1599 | |
| 1600 | const char kCastStreamingHardwareVp8Name[] = |
| 1601 | "Toggle hardware accelerated VP8 video encoding for Cast Streaming"; |
| 1602 | const char kCastStreamingHardwareVp8Description[] = |
| 1603 | "The default is to allow hardware VP8 encoding when recommended for the " |
| 1604 | "platform. If enabled, hardware VP8 encoding will always be allowed when " |
| 1605 | "supported by the platform (regardless of recommendation). If disabled, " |
| 1606 | "hardware VP8 encoding will never be used."; |
Kennan Gumbs | df768ce9 | 2021-08-25 19:09:51 | [diff] [blame] | 1607 | |
Abraham Corea Diaz | e4c3abe | 2021-08-24 17:43:50 | [diff] [blame] | 1608 | const char kCastStreamingVp9Name[] = |
Jordan Bayles | ef6d025 | 2022-11-18 02:25:17 | [diff] [blame] | 1609 | "Enable VP9 video encoding for Cast Streaming"; |
Abraham Corea Diaz | e4c3abe | 2021-08-24 17:43:50 | [diff] [blame] | 1610 | const char kCastStreamingVp9Description[] = |
Jordan Bayles | ef6d025 | 2022-11-18 02:25:17 | [diff] [blame] | 1611 | "Offers the VP9 video codec when negotiating Cast Streaming, and uses VP9 " |
| 1612 | "if selected for the session."; |
Jordan Bayles | b3160b26 | 2021-08-18 00:33:01 | [diff] [blame] | 1613 | |
Jordan Bayles | 5cbeb350 | 2023-02-09 03:30:45 | [diff] [blame] | 1614 | const char kCastEnableStreamingWithHiDPIName[] = |
| 1615 | "HiDPI tab capture support for Cast Streaming"; |
| 1616 | const char kCastEnableStreamingWithHiDPIDescription[] = |
| 1617 | "Enables HiDPI tab capture during Cast Streaming mirroring sessions. May " |
| 1618 | "reduce performance on some platforms and also improve quality of video " |
| 1619 | "frames."; |
| 1620 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1621 | const char kGpuRasterizationName[] = "GPU rasterization"; |
danakj | 51faabd | 2020-03-31 17:25:05 | [diff] [blame] | 1622 | const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1623 | |
Salvador Guerrero | cd7b24bb | 2022-07-20 00:32:48 | [diff] [blame] | 1624 | const char kContextualPageActionsName[] = "Contextual page actions"; |
| 1625 | const char kContextualPageActionsDescription[] = |
| 1626 | "Enables contextual page action feature."; |
| 1627 | |
Salvador Guerrero | 3ac349f | 2022-10-12 02:44:53 | [diff] [blame] | 1628 | const char kContextualPageActionsPriceTrackingName[] = |
| 1629 | "Contextual page actions - price tracking"; |
| 1630 | const char kContextualPageActionsPriceTrackingDescription[] = |
Shakti Sahu | 28a7601 | 2022-05-30 15:29:14 | [diff] [blame] | 1631 | "Enables price tracking as a contextual page action."; |
| 1632 | |
Salvador Guerrero | 3ac349f | 2022-10-12 02:44:53 | [diff] [blame] | 1633 | const char kContextualPageActionsReaderModeName[] = |
| 1634 | "Contextual page actions - reader mode"; |
| 1635 | const char kContextualPageActionsReaderModeDescription[] = |
| 1636 | "Enables reader mode as a contextual page action."; |
| 1637 | |
Hailey Wang | 0ed879a | 2023-01-10 21:17:36 | [diff] [blame] | 1638 | const char kContextualPageActionsShareModelName[] = |
| 1639 | "Contextual page actions - share model"; |
| 1640 | const char kContextualPageActionsShareModelDescription[] = |
| 1641 | "Enables share model data collection."; |
| 1642 | |
Dibyajyoti Pal | be5f001 | 2022-11-29 00:39:34 | [diff] [blame] | 1643 | const char kEnableOsIntegrationSubManagersName[] = |
| 1644 | "OS Integration sub managers"; |
| 1645 | const char kEnableOsIntegrationSubManagersDescription[] = |
| 1646 | "Enable OS integration sub managers to either just write new OS " |
| 1647 | "integration states to DB or execute on the OS integration states before " |
| 1648 | "writing to the DB"; |
| 1649 | |
Curtis McMullan | f2e45bf | 2020-08-26 09:51:39 | [diff] [blame] | 1650 | const char kHandwritingGestureEditingName[] = "Handwriting Gestures Editing"; |
| 1651 | const char kHandwritingGestureEditingDescription[] = |
| 1652 | "Enables editing with handwriting gestures within the virtual keyboard."; |
| 1653 | |
Curtis McMullan | 88e039e | 2021-07-27 08:06:31 | [diff] [blame] | 1654 | const char kHandwritingLegacyRecognitionName[] = |
| 1655 | "Handwriting Legacy Recognition"; |
| 1656 | const char kHandwritingLegacyRecognitionDescription[] = |
| 1657 | "Enables new on-device recognition for handwriting legacy paths."; |
| 1658 | |
Curtis McMullan | c35777c | 2021-11-02 20:14:30 | [diff] [blame] | 1659 | const char kHandwritingLegacyRecognitionAllLangName[] = |
| 1660 | "Handwriting Legacy Recognition All Languages"; |
| 1661 | const char kHandwritingLegacyRecognitionAllLangDescription[] = |
| 1662 | "Enables new on-device recognition for handwriting legacy paths in all " |
| 1663 | "supported languages."; |
| 1664 | |
Darren Shen | b42629a | 2022-08-17 02:52:31 | [diff] [blame] | 1665 | const char kHandwritingLibraryDlcName[] = |
| 1666 | "Handwriting recognition with library from DLC"; |
| 1667 | const char kHandwritingLibraryDlcDescription[] = |
| 1668 | "Enables new on-device recognition with the handwriting library installed " |
| 1669 | "from DLC"; |
| 1670 | |
Tommy Steimel | 1aadd7b | 2019-01-18 19:39:42 | [diff] [blame] | 1671 | const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling"; |
| 1672 | const char kHardwareMediaKeyHandlingDescription[] = |
| 1673 | "Enables using media keys to control the active media session. This " |
| 1674 | "requires MediaSessionService to be enabled too"; |
| 1675 | |
John Delaney | 521fe9f | 2020-04-29 22:18:19 | [diff] [blame] | 1676 | const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations"; |
| 1677 | const char kHeavyAdPrivacyMitigationsDescription[] = |
| 1678 | "Enables privacy mitigations for the heavy ad intervention. Disabling " |
| 1679 | "this makes the intervention deterministic. Defaults to enabled."; |
John Delaney | 782c7776 | 2019-10-28 15:53:56 | [diff] [blame] | 1680 | |
| 1681 | const char kHeavyAdInterventionName[] = "Heavy Ad Intervention"; |
| 1682 | const char kHeavyAdInterventionDescription[] = |
| 1683 | "Unloads ads that use too many device resources."; |
| 1684 | |
rudranshd | 65090389 | 2022-06-16 18:42:30 | [diff] [blame] | 1685 | const char kHiddenNetworkMigrationName[] = "Hidden Network Migration"; |
| 1686 | |
| 1687 | const char kHiddenNetworkMigrationDescription[] = |
| 1688 | "Enables a privacy improvement that removes wrongly configured hidden" |
| 1689 | "networks and mitigates the creation of these networks."; |
| 1690 | |
Duong Dac | d6770e8 | 2023-02-01 11:57:25 | [diff] [blame] | 1691 | const char kHideNonDisplayableAccountEmailName[] = |
| 1692 | "Hide non-displayable account email"; |
| 1693 | |
| 1694 | const char kHideNonDisplayableAccountEmailDescription[] = |
| 1695 | "Hide the Google account email that should not be displayed on various UI " |
| 1696 | "surfaces"; |
| 1697 | |
Jason Zhang | b9ee1ed | 2022-07-25 18:27:34 | [diff] [blame] | 1698 | extern const char kHotspotName[] = "Hotspot"; |
| 1699 | extern const char kHotspotDescription[] = |
| 1700 | "Enables the Chromebook to share its cellular internet connection to other " |
| 1701 | "devices through WiFi."; |
| 1702 | |
evliu | e454a13 | 2022-01-25 23:03:43 | [diff] [blame] | 1703 | const char kTabAudioMutingName[] = "Tab audio muting UI control"; |
| 1704 | const char kTabAudioMutingDescription[] = |
| 1705 | "When enabled, the audio indicators in the tab strip double as tab audio " |
| 1706 | "mute controls."; |
| 1707 | |
Calder Kitagawa | 621534c | 2022-09-20 19:12:51 | [diff] [blame] | 1708 | const char kTabSelectionEditorV2Name[] = "Tab selection editor V2"; |
| 1709 | const char kTabSelectionEditorV2Description[] = |
| 1710 | "Enable improved bulk tab editing capabilities."; |
| 1711 | |
Xi Han | 3dec578 | 2022-10-26 20:23:19 | [diff] [blame] | 1712 | const char kStartSurfaceReturnTimeName[] = "Start surface return time"; |
| 1713 | const char kStartSurfaceReturnTimeDescription[] = |
| 1714 | "Enable showing start surface at startup after specified time has elapsed"; |
| 1715 | |
Ayu Ishii | 1e06316f | 2022-12-14 14:54:50 | [diff] [blame] | 1716 | const char kStorageBucketsName[] = "Storage Buckets API"; |
| 1717 | const char kStorageBucketsDescription[] = |
| 1718 | "Enable experimental Storage Buckets API, allowing websites to create " |
| 1719 | "multiple buckets of storage to organize their data, allowing user agents " |
| 1720 | "to delete each bucket independently of other buckets."; |
| 1721 | |
Emily Stark | 70158ce | 2021-07-16 18:26:31 | [diff] [blame] | 1722 | const char kHttpsOnlyModeName[] = "HTTPS-First Mode Setting"; |
Chris Thompson | 8bc143b | 2021-06-28 19:20:32 | [diff] [blame] | 1723 | const char kHttpsOnlyModeDescription[] = |
Emily Stark | 70158ce | 2021-07-16 18:26:31 | [diff] [blame] | 1724 | "Adds a setting under chrome://settings/security to opt-in to HTTPS-First " |
Chris Thompson | 8bc143b | 2021-06-28 19:20:32 | [diff] [blame] | 1725 | "Mode."; |
| 1726 | |
Chris Thompson | 69d0901 | 2022-12-21 01:26:05 | [diff] [blame] | 1727 | const char kHttpsFirstModeV2Name[] = "HTTPS-First Mode V2"; |
| 1728 | const char kHttpsFirstModeV2Description[] = |
| 1729 | "Enable rearchitected version of HTTPS-First Mode."; |
| 1730 | |
Chris Thompson | de18f3d6 | 2022-12-08 01:23:27 | [diff] [blame] | 1731 | const char kHttpsUpgradesName[] = "HTTPS Upgrades"; |
| 1732 | const char kHttpsUpgradesDescription[] = |
| 1733 | "Enable automatically upgrading all top-level navigations to HTTPS with " |
| 1734 | "fast fallback to HTTP."; |
| 1735 | |
Corentin Wallez | e660b15 | 2020-07-15 16:07:54 | [diff] [blame] | 1736 | const char kIgnoreGpuBlocklistName[] = "Override software rendering list"; |
| 1737 | const char kIgnoreGpuBlocklistDescription[] = |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1738 | "Overrides the built-in software rendering list and enables " |
| 1739 | "GPU-acceleration on unsupported system configurations."; |
| 1740 | |
Victor Hugo Vianna Silva | 020f8dc | 2022-06-27 19:36:43 | [diff] [blame] | 1741 | const char kIgnoreSyncEncryptionKeysLongMissingName[] = |
| 1742 | "Ignore Chrome Sync encryption keys long missing"; |
| 1743 | const char kIgnoreSyncEncryptionKeysLongMissingDescription[] = |
| 1744 | "Drops pending encrypted updates if their key has been missing for a " |
| 1745 | "(configurable) number of consecutive GetUpdates. Restarting the browser " |
| 1746 | "resets the counter. The threshold is configurable via the " |
| 1747 | "MinGuResponsesToIgnoreKey feature parameter."; |
| 1748 | |
Jimmy Gong | 6de11b0 | 2021-02-04 21:35:01 | [diff] [blame] | 1749 | const char kImprovedKeyboardShortcutsName[] = |
| 1750 | "Enable improved keyboard shortcuts"; |
| 1751 | const char kImprovedKeyboardShortcutsDescription[] = |
| 1752 | "Ensure keyboard shortcuts work consistently with international keyboard " |
| 1753 | "layouts and deprecate legacy shortcuts."; |
| 1754 | |
Alex Ilasi | ab901f9 | 2021-09-13 09:27:27 | [diff] [blame] | 1755 | const char kIncognitoDownloadsWarningName[] = |
| 1756 | "Enable Incognito downloads warning"; |
| 1757 | const char kIncognitoDownloadsWarningDescription[] = |
| 1758 | "When enabled, users will be warned that downloaded files are saved on the " |
| 1759 | "device and might be seen by other users even if they are in Incognito."; |
| 1760 | |
Rohit Agarwal | 6e9b602 | 2021-08-10 19:44:37 | [diff] [blame] | 1761 | const char kIncognitoReauthenticationForAndroidName[] = |
| 1762 | "Enable device reauthentication for Incognito."; |
| 1763 | const char kIncognitoReauthenticationForAndroidDescription[] = |
| 1764 | "When enabled, a setting appears in Settings > Privacy and Security, to " |
| 1765 | "enable reauthentication for accessing your existing Incognito tabs."; |
| 1766 | |
Saba Khukhunashvili | f7a4f82 | 2021-07-23 10:59:21 | [diff] [blame] | 1767 | const char kIncognitoNtpRevampName[] = "Revamped Incognito New Tab Page"; |
| 1768 | const char kIncognitoNtpRevampDescription[] = |
| 1769 | "When enabled, Incognito new tab page will have an updated UI"; |
| 1770 | |
Ramin Halavati | df9668c | 2020-10-30 15:35:53 | [diff] [blame] | 1771 | const char kIncognitoScreenshotName[] = "Incognito Screenshot"; |
| 1772 | const char kIncognitoScreenshotDescription[] = |
| 1773 | "Enables Incognito screenshots on Android. It will also make Incognito " |
| 1774 | "thumbnails visible."; |
| 1775 | |
Lijin Shen | f3215dcd | 2022-08-30 00:34:14 | [diff] [blame] | 1776 | const char kInfobarScrollOptimizationName[] = "Infobar scroll optimiaztion"; |
| 1777 | const char kInfobarScrollOptimizationDescription[] = |
| 1778 | "Optimize Infobar scroll on Android."; |
| 1779 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1780 | const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode"; |
| 1781 | const char kInProductHelpDemoModeChoiceDescription[] = |
| 1782 | "Selects the In-Product Help demo mode."; |
| 1783 | |
Hailey Wang | a7607f0 | 2021-08-12 19:37:51 | [diff] [blame] | 1784 | const char kInProductHelpSnoozeName[] = "In-Product Help Snooze"; |
| 1785 | const char kInProductHelpSnoozeDescription[] = |
| 1786 | "Enables the snooze button on In-Product Help."; |
| 1787 | |
Hailey Wang | 5f048eb8 | 2021-10-27 01:29:13 | [diff] [blame] | 1788 | const char kInProductHelpUseClientConfigName[] = "IPH Use Client Config"; |
| 1789 | const char kInProductHelpUseClientConfigDescription[] = |
| 1790 | "Enable In-Product Help to use client side configuration."; |
| 1791 | |
Robbie McElrath | b66ff50 | 2022-10-12 01:50:59 | [diff] [blame] | 1792 | const char kInstallIsolatedWebAppFromUrl[] = |
| 1793 | "Install Isolated Web App from Proxy URL"; |
| 1794 | const char kInstallIsolatedWebAppFromUrlDescription[] = |
| 1795 | "Installs a new developer mode Isolated Web App whose contents are hosted " |
| 1796 | "at the provided HTTP(S) URL."; |
Dmitrii Kuragin | 053a3c60 | 2022-06-07 16:34:42 | [diff] [blame] | 1797 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1798 | const char kJavascriptHarmonyName[] = "Experimental JavaScript"; |
| 1799 | const char kJavascriptHarmonyDescription[] = |
| 1800 | "Enable web pages to use experimental JavaScript features."; |
| 1801 | |
| 1802 | const char kJavascriptHarmonyShippingName[] = |
| 1803 | "Latest stable JavaScript features"; |
| 1804 | const char kJavascriptHarmonyShippingDescription[] = |
| 1805 | "Some web pages use legacy or non-standard JavaScript extensions that may " |
| 1806 | "conflict with the latest JavaScript features. This flag allows disabling " |
| 1807 | "support of those features for compatibility with such pages."; |
| 1808 | |
Shu-yu Guo | b5461a5 | 2022-09-02 01:22:24 | [diff] [blame] | 1809 | const char kJavascriptExperimentalSharedMemoryName[] = |
| 1810 | "Experimental JavaScript shared memory features"; |
| 1811 | const char kJavascriptExperimentalSharedMemoryDescription[] = |
| 1812 | "Enable web pages to use non-standard, experimental JavaScript shared " |
| 1813 | "memory features. Their use requires the same HTTP headers required by " |
| 1814 | "cross-thread usage of SharedArrayBuffers (i.e. COOP and COEP)."; |
| 1815 | |
Tommy Li | a142e2c | 2021-09-29 20:35:16 | [diff] [blame] | 1816 | const char kJourneysName[] = "History Journeys"; |
| 1817 | const char kJourneysDescription[] = "Enables the History Journeys UI."; |
| 1818 | |
Sophie Chang | 19b579d | 2022-09-27 22:30:35 | [diff] [blame] | 1819 | const char kJourneysContentClusteringName[] = |
| 1820 | "History Journeys Content Clustering"; |
| 1821 | const char kJourneysContentClusteringDescription[] = |
| 1822 | "Enables clustering page loads using content annotations."; |
| 1823 | |
Tommy C. Li | e9977007 | 2022-10-26 23:24:16 | [diff] [blame] | 1824 | const char kJourneysImagesName[] = "History Journeys Images"; |
| 1825 | const char kJourneysImagesDescription[] = |
| 1826 | "Enables Images for the History Journeys UI."; |
| 1827 | |
Tommy C. Li | 1d8296b5 | 2022-04-27 22:12:17 | [diff] [blame] | 1828 | const char kJourneysLabelsName[] = "History Journeys Labels"; |
| 1829 | const char kJourneysLabelsDescription[] = |
| 1830 | "Enables labels for Journeys within the History Journeys UI."; |
| 1831 | |
Sophie Chang | 579c4199 | 2023-01-06 17:08:53 | [diff] [blame] | 1832 | const char kJourneysNavigationContextClusteringName[] = |
| 1833 | "History Journeys Navigation Context Clustering"; |
| 1834 | const char kJourneysNavigationContextClusteringDescription[] = |
| 1835 | "Enables context clustering to be done at navigation time"; |
| 1836 | |
Tommy Li | a142e2c | 2021-09-29 20:35:16 | [diff] [blame] | 1837 | const char kJourneysOmniboxActionName[] = "History Journeys Omnibox Action"; |
| 1838 | const char kJourneysOmniboxActionDescription[] = |
| 1839 | "Enables the History Journeys Omnibox Action."; |
| 1840 | |
manukh | 37c4875 | 2022-06-21 15:38:10 | [diff] [blame] | 1841 | const char kJourneysOmniboxHistoryClusterProviderName[] = |
| 1842 | "History Journeys Omnibox History Cluster Provider"; |
| 1843 | const char kJourneysOmniboxHistoryClusterProviderDescription[] = |
| 1844 | "Enables the History Journeys Omnibox History Cluster Provider to surface " |
| 1845 | "Journeys as a suggestion row instead of an action chip."; |
| 1846 | |
Sophie Chang | 579c4199 | 2023-01-06 17:08:53 | [diff] [blame] | 1847 | const char kJourneysPersistedClustersName[] = |
| 1848 | "History Journeys Persisted Clusters"; |
| 1849 | const char kJourneysPersistedClustersDescription[] = |
| 1850 | "Enables the persistence of clusters into the history database."; |
| 1851 | |
Sophie Chang | d30f4dc4f | 2022-10-18 16:10:17 | [diff] [blame] | 1852 | const char kJourneysShowAllClustersName[] = |
| 1853 | "History Journeys Show All Clusters"; |
| 1854 | const char kJourneysShowAllClustersDescription[] = |
| 1855 | "Enables all Journeys clusters to be shown on prominent UI surfaces"; |
| 1856 | |
Sophie Chang | 4b7eff7 | 2022-12-08 16:43:29 | [diff] [blame] | 1857 | const char kJourneysIncludeSyncedVisitsName[] = |
| 1858 | "History Journeys Include SyncedVisits"; |
| 1859 | const char kJourneysIncludeSyncedVisitsDescription[] = |
| 1860 | "Enabled synced visits to be included in History Journeys clusters."; |
| 1861 | |
Khalid Peer | 197c746 | 2022-11-28 21:20:36 | [diff] [blame] | 1862 | const char kExtractRelatedSearchesFromPrefetchedZPSResponseName[] = |
| 1863 | "Extract Related Searches from Prefetched ZPS Response"; |
| 1864 | const char kExtractRelatedSearchesFromPrefetchedZPSResponseDescription[] = |
| 1865 | "Enables page annotation logic to source related searches data from " |
| 1866 | "prefetched ZPS responses"; |
| 1867 | |
bttk | 90927fd | 2021-11-12 19:38:27 | [diff] [blame] | 1868 | const char kLargeFaviconFromGoogleName[] = "Large favicons from Google"; |
| 1869 | const char kLargeFaviconFromGoogleDescription[] = |
| 1870 | "Request large favicons from Google's favicon service"; |
| 1871 | |
Yu Su | c19bb6cc | 2021-02-25 06:38:29 | [diff] [blame] | 1872 | const char kLensCameraAssistedSearchName[] = |
| 1873 | "Google Lens in Omnibox and New Tab Page"; |
| 1874 | const char kLensCameraAssistedSearchDescription[] = |
| 1875 | "Enable an entry point to Google Lens to allow users to search what they " |
| 1876 | "see using their mobile camera."; |
| 1877 | |
Juan Mojica | a2c0648 | 2022-10-14 18:27:01 | [diff] [blame] | 1878 | const char kLensRegionSearchStaticPageName[] = |
| 1879 | "Use a static page with the Lens region search feature."; |
| 1880 | const char kLensRegionSearchStaticPageDescription[] = |
| 1881 | "Enables use of a static page in a new tab when using the Lens region " |
| 1882 | "search feature."; |
| 1883 | |
Duncan Mercer | 10a2000a | 2022-11-07 23:00:53 | [diff] [blame] | 1884 | const char kLensImageFormatOptimizationsName[] = "Lens Optimized Image Formats"; |
| 1885 | const char kLensImageFormatOptimizationsDescription[] = |
| 1886 | "Enables the use of either WebP or JPEG on all Lens quries to reduce " |
| 1887 | "network load and improve latency"; |
| 1888 | |
Hazem Ashmawy | f1cd7e4 | 2019-03-25 18:17:32 | [diff] [blame] | 1889 | const char kLogJsConsoleMessagesName[] = |
| 1890 | "Log JS console messages in system logs"; |
| 1891 | const char kLogJsConsoleMessagesDescription[] = |
| 1892 | "Enable logging JS console messages in system logs, please note that they " |
| 1893 | "may contain PII."; |
| 1894 | |
Etienne Pierre-doray | 247abce | 2022-03-08 18:45:48 | [diff] [blame] | 1895 | const char kUnthrottledNestedTimeoutName[] = |
| 1896 | "Increase the nesting threshold before which setTimeout(..., <4ms) start " |
| 1897 | "being clamped."; |
| 1898 | const char kUnthrottledNestedTimeoutDescription[] = |
| 1899 | "setTimeout(..., 0) is commonly used to break down long Javascript tasks. " |
| 1900 | "Under this flag, setTimeouts and setIntervals with an interval < 4ms are " |
| 1901 | "not clamped as aggressively. This improves short horizon performance, but " |
| 1902 | "websites abusing the API will still eventually have their setTimeouts " |
| 1903 | "clamped."; |
| 1904 | |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 1905 | const char kMediaRouterCastAllowAllIPsName[] = |
| 1906 | "Connect to Cast devices on all IP addresses"; |
| 1907 | const char kMediaRouterCastAllowAllIPsDescription[] = |
| 1908 | "Have the Media Router connect to Cast devices on all IP addresses, not " |
Nick Harper | d30507ca | 2018-08-16 20:24:31 | [diff] [blame] | 1909 | "just RFC1918/RFC4193 private addresses."; |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 1910 | |
Andrey Zaytsev | ad83cbc3 | 2020-09-30 15:43:18 | [diff] [blame] | 1911 | const char kMetricsSettingsAndroidName[] = "Metrics Settings on Android"; |
| 1912 | const char kMetricsSettingsAndroidDescription[] = |
| 1913 | "Enables the new design of metrics settings."; |
| 1914 | |
Brian Geffon | 12b581a | 2021-02-03 23:48:03 | [diff] [blame] | 1915 | const char kMojoLinuxChannelSharedMemName[] = |
| 1916 | "Enable Mojo Shared Memory Channel"; |
| 1917 | const char kMojoLinuxChannelSharedMemDescription[] = |
| 1918 | "If enabled Mojo on Linux based platforms can use shared memory as an " |
| 1919 | "alternate channel for most messages."; |
| 1920 | |
Ella Ge | 1282f55 | 2019-06-24 20:06:03 | [diff] [blame] | 1921 | const char kMouseSubframeNoImplicitCaptureName[] = |
| 1922 | "Disable mouse implicit capture for iframe"; |
| 1923 | const char kMouseSubframeNoImplicitCaptureDescription[] = |
| 1924 | "When enable, mouse down does not implicit capture for iframe."; |
| 1925 | |
Alisa Lin | 7925114 | 2021-06-15 20:22:12 | [diff] [blame] | 1926 | const char kCanvas2DLayersName[] = |
| 1927 | "Enables canvas 2D methods BeginLayer and EndLayer"; |
| 1928 | const char kCanvas2DLayersDescription[] = |
| 1929 | "Enables the canvas 2D methods BeginLayer and EndLayer."; |
| 1930 | |
Honglin Yu | a0a14fa | 2022-03-31 22:40:05 | [diff] [blame] | 1931 | const char kEnableMachineLearningModelLoaderWebPlatformApiName[] = |
| 1932 | "Enables Machine Learning Model Loader Web Platform API"; |
| 1933 | const char kEnableMachineLearningModelLoaderWebPlatformApiDescription[] = |
| 1934 | "Enables the Machine Learning Model Loader Web Platform API."; |
| 1935 | |
Andreea Costinas | 1e59214 | 2021-04-20 13:24:25 | [diff] [blame] | 1936 | const char kSystemProxyForSystemServicesName[] = |
| 1937 | "Enable system-proxy for selected system services"; |
| 1938 | const char kSystemProxyForSystemServicesDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 1939 | "Enabling this flag will allow ChromeOS system service which require " |
Andreea Costinas | 1e59214 | 2021-04-20 13:24:25 | [diff] [blame] | 1940 | "network connectivity to use the system-proxy daemon for authentication to " |
| 1941 | "remote HTTP web proxies."; |
| 1942 | |
Nicolas Ouellet-Payeur | a77464c | 2020-10-14 15:19:49 | [diff] [blame] | 1943 | const char kDestroyProfileOnBrowserCloseName[] = |
| 1944 | "Destroy Profile on browser close"; |
| 1945 | const char kDestroyProfileOnBrowserCloseDescription[] = |
| 1946 | "Release memory and other resources when a Profile's last browser window " |
| 1947 | "is closed, rather than when Chrome closes completely."; |
| 1948 | |
Nicolas Ouellet-Payeur | 4aff868 | 2022-01-26 16:03:16 | [diff] [blame] | 1949 | const char kDestroySystemProfilesName[] = "Destroy System Profile"; |
| 1950 | const char kDestroySystemProfilesDescription[] = |
| 1951 | "After you close the Profile Picker, release memory and other resources " |
| 1952 | "owned by the System Profile. This requires " |
| 1953 | "#destroy-profile-on-browser-close."; |
| 1954 | |
Side Yilmaz | d828f16 | 2022-10-11 00:05:24 | [diff] [blame] | 1955 | const char kNotificationInteractionHistoryName[] = |
| 1956 | "Notification Interaction History"; |
| 1957 | const char kNotificationInteractionHistoryDescription[] = |
| 1958 | "Enable recording notification count and interaction."; |
| 1959 | |
Xing Liu | b907026 | 2021-01-07 20:52:16 | [diff] [blame] | 1960 | const char kNotificationSchedulerName[] = "Notification scheduler"; |
| 1961 | const char kNotificationSchedulerDescription[] = |
| 1962 | "Enable notification scheduler feature."; |
| 1963 | |
Xing Liu | 1919ec23 | 2019-07-22 20:38:04 | [diff] [blame] | 1964 | const char kNotificationSchedulerDebugOptionName[] = |
| 1965 | "Notification scheduler debug options"; |
| 1966 | const char kNotificationSchedulerDebugOptionDescription[] = |
| 1967 | "Enable debugging mode to override certain behavior of notification " |
| 1968 | "scheduler system for easier manual testing."; |
| 1969 | const char kNotificationSchedulerImmediateBackgroundTaskDescription[] = |
| 1970 | "Show scheduled notification right away."; |
| 1971 | |
Peter Beverloo | c30c9ddf | 2021-02-24 19:56:03 | [diff] [blame] | 1972 | const char kNotificationsSystemFlagName[] = "Enable system notifications."; |
| 1973 | const char kNotificationsSystemFlagDescription[] = |
| 1974 | "Enable support for using the system notification toasts and notification " |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1975 | "center on platforms where these are available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1976 | |
momoka0122y | da18aeb | 2022-03-15 08:23:54 | [diff] [blame] | 1977 | const char kOmitCorsClientCertName[] = |
| 1978 | "Omit TLS client certificates if credential mode disallows"; |
| 1979 | const char kOmitCorsClientCertDescription[] = |
| 1980 | "Strictly conform the Fetch spec to omit TLS client certificates if " |
| 1981 | "credential mode disallows. Without this flag enabled, Chrome will always " |
| 1982 | "try sending client certificates regardless of the credential mode."; |
| 1983 | |
Tomasz Wiszkowski | 8a0e0dc4 | 2020-02-19 00:06:37 | [diff] [blame] | 1984 | const char kOmniboxAdaptiveSuggestionsCountName[] = |
| 1985 | "Adaptive Omnibox Suggestions count"; |
| 1986 | const char kOmniboxAdaptiveSuggestionsCountDescription[] = |
| 1987 | "Dynamically adjust number of presented Omnibox suggestions depending on " |
| 1988 | "available space. When enabled, this feature will increase (or decrease) " |
| 1989 | "amount of offered Omnibox suggestions to fill in the space between the " |
| 1990 | "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches " |
| 1991 | "flag to adjust the limit of offered suggestions. The number of shown " |
| 1992 | "suggestions will be no less than the platform default limit."; |
| 1993 | |
Brandon Wylie | 1299ff8 | 2020-01-23 02:13:37 | [diff] [blame] | 1994 | const char kOmniboxAssistantVoiceSearchName[] = |
| 1995 | "Omnibox Assistant Voice Search"; |
| 1996 | const char kOmniboxAssistantVoiceSearchDescription[] = |
| 1997 | "When enabled, use Assistant for omnibox voice query recognition instead of" |
| 1998 | " Android's built-in voice recognition service. Only works on Android."; |
| 1999 | |
manukh | 304e3f1 | 2021-10-06 16:40:33 | [diff] [blame] | 2000 | const char kOmniboxBookmarkPathsName[] = "Omnibox Bookmark Paths"; |
| 2001 | const char kOmniboxBookmarkPathsDescription[] = |
| 2002 | "Allows inputs to match with bookmark paths. E.g. 'planets jupiter' can " |
| 2003 | "suggest a bookmark titled 'Jupiter' with URL " |
| 2004 | "'en.wikipedia.org/wiki/Jupiter' located in a path containing 'planet.'"; |
| 2005 | |
manukh | 80d47668 | 2022-01-28 08:00:44 | [diff] [blame] | 2006 | const char kOmniboxClosePopupWithEscapeName[] = |
| 2007 | "Omnibox Close Popup with Escape"; |
| 2008 | const char kOmniboxClosePopupWithEscapeDescription[] = |
| 2009 | "When enabled, pressing escape when the omnibox popup is open and the " |
| 2010 | "default suggestion is selected will close the omnibox without removing " |
| 2011 | "its focus or clearing user input."; |
| 2012 | |
Orin Jaworski | 69f9b01 | 2022-11-14 21:15:45 | [diff] [blame] | 2013 | const char kOmniboxDefaultBrowserPedalName[] = "Omnibox Default Browser Pedal"; |
| 2014 | const char kOmniboxDefaultBrowserPedalDescription[] = |
| 2015 | "Enables a pedal that helps the user 'set default browser'."; |
| 2016 | |
Angela Yoeurng | 07a5adb | 2020-12-02 02:14:01 | [diff] [blame] | 2017 | const char kOmniboxDisableCGIParamMatchingName[] = |
| 2018 | "Disable CGI Param Name Matching"; |
| 2019 | const char kOmniboxDisableCGIParamMatchingDescription[] = |
| 2020 | "Disables using matches in CGI parameter names while scoring suggestions."; |
| 2021 | |
manukh | 6941c4c | 2021-07-20 00:18:34 | [diff] [blame] | 2022 | const char kOmniboxDocumentProviderAsoName[] = "Omnibox Document Provider ASO"; |
| 2023 | const char kOmniboxDocumentProviderAsoDescription[] = |
| 2024 | "If document suggestions are enabled, swaps the backend from cloudsearch " |
| 2025 | "to ASO (Apps Search Overlay) search."; |
| 2026 | |
manukh | 37b13bd3 | 2022-10-04 16:01:51 | [diff] [blame] | 2027 | const char kOmniboxDomainSuggestionsName[] = "Omnibox Domain Suggestions"; |
manukh | 918d8255 | 2022-10-11 01:12:22 | [diff] [blame] | 2028 | const char kOmniboxDomainSuggestionsDescription[] = |
manukh | 37b13bd3 | 2022-10-04 16:01:51 | [diff] [blame] | 2029 | "If enabled, history URL suggestions from hosts visited often bypass the " |
| 2030 | "per provider limit."; |
| 2031 | |
Justin Donnelly | f270348 | 2019-10-24 21:42:15 | [diff] [blame] | 2032 | const char kOmniboxExperimentalSuggestScoringName[] = |
| 2033 | "Omnibox Experimental Suggest Scoring"; |
| 2034 | const char kOmniboxExperimentalSuggestScoringDescription[] = |
| 2035 | "Enables an experimental scoring mode for suggestions when Google is the " |
| 2036 | "default search engine."; |
| 2037 | |
Orin Jaworski | 291b0a3 | 2022-05-17 17:29:05 | [diff] [blame] | 2038 | const char kOmniboxFuzzyUrlSuggestionsName[] = "Omnibox Fuzzy URL Suggestions"; |
| 2039 | const char kOmniboxFuzzyUrlSuggestionsDescription[] = |
| 2040 | "Enables URL suggestions for inputs that may contain typos."; |
| 2041 | |
manukh | 01e4719 | 2022-12-23 00:50:25 | [diff] [blame] | 2042 | const char kOmniboxGroupingFrameworkName[] = "Omnibox Grouping Framework"; |
| 2043 | const char kOmniboxGroupingFrameworkDescription[] = |
| 2044 | "Enables an alternative grouping implementation for omnibox " |
| 2045 | "autocompletion."; |
| 2046 | |
manukh | 918d8255 | 2022-10-11 01:12:22 | [diff] [blame] | 2047 | const char kOmniboxHistoryQuickProviderSpecificityScoreCountUniqueHostsName[] = |
| 2048 | "Omnibox HQP Specificity"; |
| 2049 | const char |
| 2050 | kOmniboxHistoryQuickProviderSpecificityScoreCountUniqueHostsDescription[] = |
| 2051 | "When enabled, HQP doesn't demote same-host suggestions."; |
| 2052 | |
Moe Ahmadi | d6159b2 | 2022-12-13 03:16:39 | [diff] [blame] | 2053 | const char kOmniboxKeepSecondaryZeroSuggestName[] = |
| 2054 | "Keeps all secondary zero-prefix suggestions."; |
| 2055 | const char kOmniboxKeepSecondaryZeroSuggestDescription[] = |
| 2056 | "Keeps all zero-prefix suggestions in the second column and does not count " |
| 2057 | "them toward the overall zero-suggest limit."; |
| 2058 | |
Rong Tan | 01c98990 | 2022-10-28 04:06:25 | [diff] [blame] | 2059 | const char kOmniboxMatchToolbarAndStatusBarColorName[] = |
| 2060 | "Omnibox Omnibox Match Toolbar And Status Bar Color"; |
| 2061 | const char kOmniboxMatchToolbarAndStatusBarColorDescription[] = |
| 2062 | "When enabled, the color of the toolbar and the status bar will be " |
| 2063 | "synchronized."; |
| 2064 | |
Gang Wu | 6784724 | 2022-06-30 06:18:51 | [diff] [blame] | 2065 | const char kOmniboxModernizeVisualUpdateName[] = |
| 2066 | "Omnibox Modernize Visual Update"; |
| 2067 | const char kOmniboxModernizeVisualUpdateDescription[] = |
| 2068 | "When enabled, Omnibox will show a new UI which is visually " |
| 2069 | "updated. This flag is for the step 1 in the Clank Omnibox revamp plan."; |
| 2070 | |
Filip Gorski | b116dee | 2020-08-20 14:12:10 | [diff] [blame] | 2071 | const char kOmniboxMostVisitedTilesName[] = "Omnibox Most Visited Tiles"; |
| 2072 | const char kOmniboxMostVisitedTilesDescription[] = |
manukh | d9801bfc | 2022-01-04 22:43:58 | [diff] [blame] | 2073 | "Display a list of frequently visited pages from history as a single row " |
Filip Gorski | b116dee | 2020-08-20 14:12:10 | [diff] [blame] | 2074 | "with a carousel instead of one URL per line."; |
| 2075 | |
Rong Tan | ef44d63 | 2022-11-18 19:02:31 | [diff] [blame] | 2076 | const char kOmniboxMostVisitedTilesAddRecycledViewPoolName[] = |
| 2077 | "Omnibox Most Visited Tiles Add Recycled View Pool"; |
| 2078 | const char kOmniboxMostVisitedTilesAddRecycledViewPoolDescription[] = |
| 2079 | "Add a recycled view pool to omnibox most visited tiles carousel to " |
| 2080 | "increase tile view reuse and reduce jackiness."; |
| 2081 | |
Rong Tan | 31bf608 | 2022-10-13 08:19:08 | [diff] [blame] | 2082 | const char kOmniboxRemoveExcessiveRecycledViewClearCallsName[] = |
| 2083 | "Omnibox Remove Excessive Recycled View Clear Calls"; |
| 2084 | const char kOmniboxRemoveExcessiveRecycledViewClearCallsDescription[] = |
| 2085 | "Remove excessive clear calls on RecycledViewPool in omnibox."; |
| 2086 | |
Moe Ahmadi | 7c889d8 | 2022-10-27 20:35:24 | [diff] [blame] | 2087 | const char kOmniboxReportAssistedQueryStatsName[] = |
| 2088 | "Omnibox Assisted Query Stats param"; |
| 2089 | const char kOmniboxReportAssistedQueryStatsDescription[] = |
| 2090 | "Enables reporting the Assisted Query Stats param in search destination " |
| 2091 | "URLs originated from the Omnibox."; |
| 2092 | |
| 2093 | const char kOmniboxReportSearchboxStatsName[] = |
| 2094 | "Omnibox Searchbox Stats proto param"; |
| 2095 | const char kOmniboxReportSearchboxStatsDescription[] = |
| 2096 | "Enables reporting the serialized Searchbox Stats proto param in search " |
| 2097 | "destination URLs originated from the Omnibox."; |
| 2098 | |
Moe Ahmadi | 4d6f27b | 2021-11-19 01:40:36 | [diff] [blame] | 2099 | const char kOmniboxZeroSuggestPrefetchingName[] = |
Khalid Peer | e26e696 | 2022-07-26 22:39:55 | [diff] [blame] | 2100 | "Omnibox Zero Prefix Suggestion Prefetching on NTP"; |
Moe Ahmadi | 4d6f27b | 2021-11-19 01:40:36 | [diff] [blame] | 2101 | const char kOmniboxZeroSuggestPrefetchingDescription[] = |
Khalid Peer | e26e696 | 2022-07-26 22:39:55 | [diff] [blame] | 2102 | "Enables prefetching of the zero prefix suggestions for eligible users " |
| 2103 | "on the New Tab page."; |
| 2104 | |
| 2105 | const char kOmniboxZeroSuggestPrefetchingOnSRPName[] = |
| 2106 | "Omnibox Zero Prefix Suggestion Prefetching on SRP"; |
| 2107 | const char kOmniboxZeroSuggestPrefetchingOnSRPDescription[] = |
| 2108 | "Enables prefetching of the zero prefix suggestions for eligible users " |
| 2109 | "on the Search Results page."; |
Moe Ahmadi | 4d6f27b | 2021-11-19 01:40:36 | [diff] [blame] | 2110 | |
Khalid Peer | 2854604 | 2022-08-12 23:18:08 | [diff] [blame] | 2111 | const char kOmniboxZeroSuggestPrefetchingOnWebName[] = |
| 2112 | "Omnibox Zero Prefix Suggestion Prefetching on the Web"; |
| 2113 | const char kOmniboxZeroSuggestPrefetchingOnWebDescription[] = |
| 2114 | "Enables prefetching of the zero prefix suggestions for eligible users " |
| 2115 | "on the Web (i.e. non-NTP and non-SRP URLs)."; |
| 2116 | |
Khalid Peer | 4bca7ea | 2022-08-26 22:51:29 | [diff] [blame] | 2117 | const char kOmniboxZeroSuggestInMemoryCachingName[] = |
| 2118 | "Omnibox Zero Prefix Suggestion in-memory caching"; |
| 2119 | const char kOmniboxZeroSuggestInMemoryCachingDescription[] = |
| 2120 | "Enables in-memory caching of zero prefix suggestions."; |
| 2121 | |
Ce Chen | 7762ef3 | 2022-06-17 14:34:17 | [diff] [blame] | 2122 | const char kOmniboxOnDeviceHeadSuggestionsName[] = |
| 2123 | "Omnibox on device head suggestions (non-incognito only)"; |
| 2124 | const char kOmniboxOnDeviceHeadSuggestionsDescription[] = |
| 2125 | "Google head non personalized search suggestions provided by a compact on " |
| 2126 | "device model for non-incognito. Turn off this feature if you have other " |
| 2127 | "apps running which affects local file access (e.g. anti-virus software) " |
| 2128 | "and are experiencing searchbox typing lags."; |
| 2129 | const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] = |
| 2130 | "Omnibox on device head suggestions (incognito only)"; |
| 2131 | const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] = |
| 2132 | "Google head non personalized search suggestions provided by a compact on " |
| 2133 | "device model for incognito. Turn off this feature if you have other " |
| 2134 | "apps running which affects local file access (e.g. anti-virus software) " |
| 2135 | "and are experiencing searchbox typing lags."; |
Ce Chen | bdfaed2 | 2022-10-20 16:08:35 | [diff] [blame] | 2136 | const char kOmniboxOnDeviceTailSuggestionsName[] = |
| 2137 | "Omnibox on device tail suggestions"; |
| 2138 | const char kOmniboxOnDeviceTailSuggestionsDescription[] = |
| 2139 | "Google tail non personalized search suggestions provided by a compact on " |
| 2140 | "device model."; |
Ce Chen | 7762ef3 | 2022-06-17 14:34:17 | [diff] [blame] | 2141 | |
manukh | 6b9c59c | 2020-08-28 19:29:25 | [diff] [blame] | 2142 | const char kOmniboxRichAutocompletionPromisingName[] = |
| 2143 | "Omnibox Rich Autocompletion Promising Combinations"; |
| 2144 | const char kOmniboxRichAutocompletionPromisingDescription[] = |
manukh | 6a6aeb8 | 2022-06-24 21:11:01 | [diff] [blame] | 2145 | "Allow autocompletion for titles and non-prefixes. Suggestions whose " |
| 2146 | "titles or URLs contain the user input as a continuous chunk, but not " |
| 2147 | "necessarily a prefix, can be the default suggestion. Otherwise, only " |
| 2148 | "suggestions whose URLs are prefixed by the user input can be."; |
manukh | f641451 | 2022-06-15 01:26:19 | [diff] [blame] | 2149 | |
Angela Yoeurng | 8f6731da | 2022-01-17 05:55:10 | [diff] [blame] | 2150 | const char kOmniboxSiteSearchStarterPackName[] = |
| 2151 | "Omnibox Site Search Starter Pack"; |
| 2152 | const char kOmniboxSiteSearchStarterPackDescription[] = |
Angela Yoeurng | 260f1835 | 2022-06-15 22:51:35 | [diff] [blame] | 2153 | "Enables @history, @bookmarks, and @tabs scopes in Omnibox Site " |
Angela Yoeurng | 8f6731da | 2022-01-17 05:55:10 | [diff] [blame] | 2154 | "Search/Keyword Mode"; |
Moe Ahmadi | 01028f2 | 2022-08-06 17:57:35 | [diff] [blame] | 2155 | |
| 2156 | const char kOmniboxLocalHistoryZeroSuggestBeyondNTPName[] = |
| 2157 | "Allow local history zero-prefix suggestions beyond NTP"; |
| 2158 | const char kOmniboxLocalHistoryZeroSuggestBeyondNTPDescription[] = |
| 2159 | "Enables local history zero-prefix suggestions in every context in which " |
| 2160 | "the remote zero-prefix suggestions are enabled."; |
| 2161 | |
Moe Ahmadi | 5022346 | 2022-06-30 22:37:27 | [diff] [blame] | 2162 | const char kOmniboxFocusTriggersSRPZeroSuggestName[] = |
Tomasz Wiszkowski | 8d44775 | 2021-07-20 02:58:26 | [diff] [blame] | 2163 | "Allow Omnibox contextual web on-focus suggestions on the SRP"; |
Moe Ahmadi | 5022346 | 2022-06-30 22:37:27 | [diff] [blame] | 2164 | const char kOmniboxFocusTriggersSRPZeroSuggestDescription[] = |
Tomasz Wiszkowski | 8d44775 | 2021-07-20 02:58:26 | [diff] [blame] | 2165 | "Enables on-focus suggestions on the Search Results page. " |
| 2166 | "Requires on-focus suggestions for the contextual web to be enabled. " |
| 2167 | "Will only work if user is signed-in and syncing."; |
| 2168 | |
Moe Ahmadi | 5022346 | 2022-06-30 22:37:27 | [diff] [blame] | 2169 | const char kOmniboxFocusTriggersContextualWebZeroSuggestName[] = |
Tommy Li | 5578402 | 2020-04-28 20:58:18 | [diff] [blame] | 2170 | "Omnibox on-focus suggestions for the contextual Web"; |
Moe Ahmadi | 5022346 | 2022-06-30 22:37:27 | [diff] [blame] | 2171 | const char kOmniboxFocusTriggersContextualWebZeroSuggestDescription[] = |
Tommy Li | 5578402 | 2020-04-28 20:58:18 | [diff] [blame] | 2172 | "Enables on-focus suggestions on the Open Web, that are contextual to the " |
| 2173 | "current URL. Will only work if user is signed-in and syncing, or is " |
| 2174 | "otherwise eligible to send the current page URL to the suggest server."; |
| 2175 | |
Jun Zou | d1e35932b | 2022-12-01 20:01:37 | [diff] [blame] | 2176 | const char kOmniboxMlLogUrlScoringSignalsName[] = |
| 2177 | "Log Omnibox URL Scoring Signals"; |
| 2178 | const char kOmniboxMlLogUrlScoringSignalsDescription[] = |
| 2179 | "Enables Omnibox to log scoring signals of URL suggestions."; |
| 2180 | |
Angela Yoeurng | d75d0dfe | 2023-01-12 23:17:09 | [diff] [blame] | 2181 | const char kOmniboxMlRelevanceScoringName[] = "Omnibox ML Relevance Scoring"; |
| 2182 | const char kOmniboxMlRelevanceScoringDescription[] = |
| 2183 | "Enables ML-based relevance scoring of Omnibox URL Suggestions."; |
| 2184 | |
Jun Zou | b695a0a | 2023-01-20 18:55:02 | [diff] [blame] | 2185 | const char kOmniboxMlUrlScoringModelName[] = |
| 2186 | "Omnibox autocomplete URL scoring model."; |
| 2187 | const char kOmniboxMlUrlScoringModelDescription[] = |
| 2188 | "Enables machine learning scoring model for Omnibox URL sugestions."; |
| 2189 | |
Moe Ahmadi | 3c2569e | 2022-10-06 23:41:39 | [diff] [blame] | 2190 | const char kOmniboxOnClobberFocusTypeOnContentName[] = |
| 2191 | "Omnibox On Clobber Focus Type On Content"; |
| 2192 | const char kOmniboxOnClobberFocusTypeOnContentDescription[] = |
Rong Tan | 390e219c | 2022-09-30 23:56:28 | [diff] [blame] | 2193 | "Send ON_CLOBBER focus type for zero-prefix requests with an empty input " |
Moe Ahmadi | 3c2569e | 2022-10-06 23:41:39 | [diff] [blame] | 2194 | "on Web/SRP."; |
Rong Tan | 390e219c | 2022-09-30 23:56:28 | [diff] [blame] | 2195 | |
manukh | d84f4275 | 2022-06-25 02:11:08 | [diff] [blame] | 2196 | const char kOmniboxShortBookmarkSuggestionsName[] = |
| 2197 | "Omnibox short bookmark suggestions"; |
| 2198 | const char kOmniboxShortBookmarkSuggestionsDescription[] = |
| 2199 | "Match very short input words to beginning of words in bookmark " |
| 2200 | "suggestions."; |
| 2201 | |
manukh | 453ab7e | 2023-02-02 21:09:57 | [diff] [blame] | 2202 | const char kOmniboxShortcutBoostName[] = "Omnibox shortcut boosting"; |
| 2203 | const char kOmniboxShortcutBoostDescription[] = |
| 2204 | "Promote shortcuts to be default when available."; |
| 2205 | |
manukh | d84f4275 | 2022-06-25 02:11:08 | [diff] [blame] | 2206 | const char kOmniboxShortcutExpandingName[] = "Omnibox shortcut expanding"; |
| 2207 | const char kOmniboxShortcutExpandingDescription[] = |
| 2208 | "Expand the last word in the shortcut text to be a complete word from the " |
| 2209 | "suggestion text."; |
| 2210 | |
Yohanes Shimelis | 53d0f6b | 2023-01-12 19:09:10 | [diff] [blame] | 2211 | const char kOmniboxSimplifiedUiUniformRowHeightName[] = |
| 2212 | "Omnibox Suggestion Row Height"; |
| 2213 | const char kOmniboxSimplifiedUiUniformRowHeightDescription[] = |
| 2214 | "Changes the row height of omnibox suggetions."; |
| 2215 | |
| 2216 | const char kOmniboxSimplifiedUiSquareSuggestIconName[] = |
| 2217 | "Omnibox Square Suggest Icons"; |
| 2218 | const char kOmniboxSimplifiedUiSquareSuggestIconDescription[] = |
| 2219 | "Adds a grey square background to suggestion icons, and makes the answer " |
| 2220 | "icon square."; |
| 2221 | |
manuk | fdd9740 | 2020-07-22 18:19:17 | [diff] [blame] | 2222 | const char kOmniboxMaxZeroSuggestMatchesName[] = |
| 2223 | "Omnibox Max Zero Suggest Matches"; |
| 2224 | const char kOmniboxMaxZeroSuggestMatchesDescription[] = |
| 2225 | "Changes the maximum number of autocomplete matches displayed when zero " |
| 2226 | "suggest is active (i.e. displaying suggestions without input)."; |
| 2227 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2228 | const char kOmniboxUIMaxAutocompleteMatchesName[] = |
| 2229 | "Omnibox UI Max Autocomplete Matches"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2230 | const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
| 2231 | "Changes the maximum number of autocomplete matches displayed in the " |
| 2232 | "Omnibox UI."; |
| 2233 | |
Mustafa Emre Acer | 0626cbb | 2021-07-14 20:35:04 | [diff] [blame] | 2234 | const char kOmniboxUpdatedConnectionSecurityIndicatorsName[] = |
| 2235 | "Omnibox Updated connection security indicators"; |
| 2236 | const char kOmniboxUpdatedConnectionSecurityIndicatorsDescription[] = |
| 2237 | "Use new connection security indicators for https pages in the omnibox."; |
| 2238 | |
Moe Ahmadi | 40e0eba5 | 2022-12-22 01:44:25 | [diff] [blame] | 2239 | const char kWebUIOmniboxPopupName[] = "WebUI Omnibox Popup"; |
| 2240 | const char kWebUIOmniboxPopupDescription[] = |
| 2241 | "If enabled, shows the omnibox suggestions popup in WebUI."; |
| 2242 | |
Kevin Bailey | cd688992 | 2019-05-30 17:22:55 | [diff] [blame] | 2243 | const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches"; |
| 2244 | const char kOmniboxMaxURLMatchesDescription[] = |
| 2245 | "The maximum number of URL matches to show, unless there are no " |
| 2246 | "replacements."; |
| 2247 | |
manuk | 4e2979d | 2020-07-08 23:29:28 | [diff] [blame] | 2248 | const char kOmniboxDynamicMaxAutocompleteName[] = |
| 2249 | "Omnibox Dynamic Max Autocomplete"; |
| 2250 | const char kOmniboxDynamicMaxAutocompleteDescription[] = |
| 2251 | "Configures the maximum number of autocomplete matches displayed in the " |
| 2252 | "Omnibox UI dynamically based on the number of URL matches."; |
| 2253 | |
Michael Checo | 91977f56 | 2023-01-25 01:02:22 | [diff] [blame] | 2254 | const char kOnlyShowNewShortcutsAppName[] = |
| 2255 | "Only show the new Shortcut Viewer app"; |
| 2256 | const char kOnlyShowNewShortcutsAppDescription[] = |
| 2257 | "If enabled, the existing Shortcut Viewer app will be hidden and only the " |
| 2258 | "new Shortcut Customization app will be discoverable."; |
| 2259 | |
rajendrant | 277b1ba | 2022-02-18 01:59:36 | [diff] [blame] | 2260 | const char kOptimizationGuideDebugLogsName[] = |
| 2261 | "Enable optimization guide debug logs"; |
| 2262 | const char kOptimizationGuideDebugLogsDescription[] = |
| 2263 | "Enables the optimization guide to log and save debug messages that can be " |
| 2264 | "shown in the internals page."; |
| 2265 | |
rajendrant | b6ef55fd | 2022-10-20 20:25:24 | [diff] [blame] | 2266 | const char kOptimizationGuideInstallWideModelStoreName[] = |
| 2267 | "Enables the new optimization guide install-wide model store"; |
| 2268 | const char kOptimizationGuideInstallWideModelStoreDescription[] = |
| 2269 | "Enables the new model store that is per Chrome installation and can " |
| 2270 | "share models across user profiles."; |
| 2271 | |
Tarun Bansal | ca4fae3d | 2022-04-05 21:17:34 | [diff] [blame] | 2272 | const char kOptimizationGuidePushNotificationName[] = |
Robert Ogden | 52285a5 | 2021-07-01 19:26:20 | [diff] [blame] | 2273 | "Enable optimization guide push notifications"; |
Tarun Bansal | ca4fae3d | 2022-04-05 21:17:34 | [diff] [blame] | 2274 | const char kOptimizationGuidePushNotificationDescription[] = |
Robert Ogden | 52285a5 | 2021-07-01 19:26:20 | [diff] [blame] | 2275 | "Enables the optimization guide to receive push notifications."; |
| 2276 | |
Moe Ahmadi | 359d072 | 2022-05-16 23:17:33 | [diff] [blame] | 2277 | const char kOrganicRepeatableQueriesName[] = |
| 2278 | "Organic repeatable queries in Most Visited tiles"; |
| 2279 | const char kOrganicRepeatableQueriesDescription[] = |
| 2280 | "Enables showing the most repeated queries, from the device browsing " |
| 2281 | "history, organically among the most visited sites in the MV tiles."; |
| 2282 | |
Daniel Vogelheim | 88d1ca9e | 2022-02-04 19:53:45 | [diff] [blame] | 2283 | const char kOriginAgentClusterDefaultName[] = |
| 2284 | "Origin-keyed Agent Clusters by default"; |
| 2285 | const char kOriginAgentClusterDefaultDescription[] = |
| 2286 | "Select the default behaviour for the Origin-Agent-Cluster http header. " |
| 2287 | "If enabled, an absent header will cause pages to be assigned to an " |
| 2288 | "origin-keyed agent cluster, and to a site-keyed agent cluster when " |
| 2289 | "disabled. Documents whose agent clusters are origin-keyed cannot set " |
| 2290 | "document.domain to relax the same-origin policy."; |
| 2291 | |
Ethan Mooney | 01e6f19 | 2021-06-10 13:14:07 | [diff] [blame] | 2292 | const char kOsSettingsAppNotificationsPageName[] = |
| 2293 | "CrOS Settings App Notifications Page"; |
| 2294 | const char kOsSettingsAppNotificationsPageDescription[] = |
| 2295 | "If enabled, a new App Notifications subpage will appear in the " |
| 2296 | "CrOS Settings Apps section."; |
| 2297 | |
Wez | 600f06c | 2021-03-05 20:32:30 | [diff] [blame] | 2298 | const char kOverlayScrollbarsName[] = "Overlay Scrollbars"; |
| 2299 | const char kOverlayScrollbarsDescription[] = |
| 2300 | "Enable the experimental overlay scrollbars implementation. You must also " |
| 2301 | "enable threaded compositing to have the scrollbars animate."; |
| 2302 | |
Daniele Castagna | 74ddb9c | 2018-06-21 22:59:02 | [diff] [blame] | 2303 | const char kOverlayStrategiesName[] = "Select HW overlay strategies"; |
| 2304 | const char kOverlayStrategiesDescription[] = |
| 2305 | "Select strategies used to promote quads to HW overlays."; |
| 2306 | const char kOverlayStrategiesDefault[] = "Default"; |
| 2307 | const char kOverlayStrategiesNone[] = "None"; |
| 2308 | const char kOverlayStrategiesUnoccludedFullscreen[] = |
| 2309 | "Unoccluded fullscreen buffers (single-fullscreen)"; |
| 2310 | const char kOverlayStrategiesUnoccluded[] = |
| 2311 | "Unoccluded buffers (single-fullscreen,single-on-top)"; |
| 2312 | const char kOverlayStrategiesOccludedAndUnoccluded[] = |
| 2313 | "Occluded and unoccluded buffers " |
| 2314 | "(single-fullscreen,single-on-top,underlay)"; |
| 2315 | |
Jinsuk Kim | 2e139e43 | 2021-02-26 03:46:56 | [diff] [blame] | 2316 | const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation"; |
| 2317 | const char kOverscrollHistoryNavigationDescription[] = |
| 2318 | "History navigation in response to horizontal overscroll."; |
| 2319 | |
minch | 1ad858c | 2021-06-24 20:30:01 | [diff] [blame] | 2320 | const char kOverviewButtonName[] = "Overview button at the status area"; |
| 2321 | const char kOverviewButtonDescription[] = |
| 2322 | "If enabled, always show the overview button at the status area."; |
| 2323 | |
Richard Chui | 9bb64918 | 2022-12-09 07:12:02 | [diff] [blame] | 2324 | const char kOverviewDeskNavigationName[] = |
| 2325 | "CrOS Labs: Overview Desk Navigation"; |
| 2326 | const char kOverviewDeskNavigationDescription[] = |
| 2327 | "Stay in overview when navigating between desks using a swipe gesture or " |
| 2328 | "keyboard shortcut."; |
| 2329 | |
Sophie Chang | 9081cb3 | 2021-09-28 22:39:10 | [diff] [blame] | 2330 | const char kPageContentAnnotationsName[] = "Page content annotations"; |
| 2331 | const char kPageContentAnnotationsDescription[] = |
| 2332 | "Enables page content to be annotated on-device."; |
| 2333 | |
Sophie Chang | 8d50067 | 2022-02-09 22:45:30 | [diff] [blame] | 2334 | const char kPageEntitiesPageContentAnnotationsName[] = |
| 2335 | "Page entities content annotations"; |
| 2336 | const char kPageEntitiesPageContentAnnotationsDescription[] = |
| 2337 | "Enables annotating the page entities model for each page load on-device."; |
| 2338 | |
Christian Dullweber | 77ae675 | 2022-12-14 18:58:38 | [diff] [blame] | 2339 | const char kPageInfoAboutThisSiteNonEnName[] = |
| 2340 | "'About this site' section in page info in all languages"; |
| 2341 | const char kPageInfoAboutThisSiteNonEnDescription[] = |
| 2342 | "Enable the 'About this site' section in the page info UI in languages " |
| 2343 | "other than English."; |
Olesia Marukhno | 0fc754b | 2021-09-17 15:05:06 | [diff] [blame] | 2344 | |
Filipa Senra | df8254a | 2023-02-03 10:29:38 | [diff] [blame] | 2345 | const char kPageInfoAboutThisSiteNonMsbbName[] = |
| 2346 | "'About this site' for non-MSBB users"; |
| 2347 | const char kPageInfoAboutThisSiteNonMsbbDescription[] = |
| 2348 | "Make 'About this site' section in Page Info available for non-MSBB users."; |
| 2349 | |
Christian Dullweber | 8fdeb5d | 2022-08-24 20:14:57 | [diff] [blame] | 2350 | const char kPageInfoboutThisPageDescriptionPlaceholderName[] = |
| 2351 | "AboutThisPage description placeholder"; |
| 2352 | const char kPageInfoboutThisPageDescriptionPlaceholderDescription[] = |
| 2353 | "Shows a placeholder when no description is availble instead of not " |
| 2354 | "showing an entry at all"; |
| 2355 | |
| 2356 | const char kPageInfoboutThisPagePersistentEntryName[] = |
| 2357 | "AboutThisPage persistent SidePanel entry"; |
| 2358 | const char kPageInfoboutThisPagePersistentEntryDescription[] = |
| 2359 | "Registers a SidePanel entry on pageload if 'AboutThisPage' info is " |
| 2360 | "available"; |
| 2361 | |
Zofia Salata | d830d4b | 2022-09-19 09:22:36 | [diff] [blame] | 2362 | const char kPageInfoCookiesSubpageName[] = "Cookies subpage in page info"; |
| 2363 | const char kPageInfoCookiesSubpageDescription[] = |
| 2364 | "Enable the Cookies subpage in page info for managing cookies and site " |
| 2365 | "data."; |
| 2366 | |
Christian Dullweber | ec4715a8 | 2022-04-28 17:12:01 | [diff] [blame] | 2367 | const char kPageInfoMoreAboutThisPageName[] = |
| 2368 | "'More about this page' link in page info"; |
| 2369 | const char kPageInfoMoreAboutThisPageDescription[] = |
| 2370 | "Enable the 'More about this page' link in the 'From the web' section of " |
| 2371 | "page info."; |
| 2372 | |
Zofia Salata | 1f9c6ae | 2022-07-21 16:23:31 | [diff] [blame] | 2373 | const char kPageInfoHideSiteSettingsName[] = "Page info hide site settings"; |
| 2374 | const char kPageInfoHideSiteSettingsDescription[] = |
| 2375 | "Hides site settings row in the page info menu."; |
| 2376 | |
Olesia Marukhno | 4f39c7fb | 2021-12-14 16:55:48 | [diff] [blame] | 2377 | const char kPageInfoHistoryDesktopName[] = "Page info history"; |
| 2378 | const char kPageInfoHistoryDesktopDescription[] = |
| 2379 | "Enable a history section in the page info."; |
| 2380 | |
Sophie Chang | 8d50067 | 2022-02-09 22:45:30 | [diff] [blame] | 2381 | const char kPageVisibilityPageContentAnnotationsName[] = |
| 2382 | "Page visibility content annotations"; |
| 2383 | const char kPageVisibilityPageContentAnnotationsDescription[] = |
| 2384 | "Enables annotating the page visibility model for each page load " |
| 2385 | "on-device."; |
| 2386 | |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 2387 | const char kParallelDownloadingName[] = "Parallel downloading"; |
| 2388 | const char kParallelDownloadingDescription[] = |
Yannic Bonenberger | a32f990 | 2017-11-20 18:47:06 | [diff] [blame] | 2389 | "Enable parallel downloading to accelerate download speed."; |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 2390 | |
Vaclav Brozek | d8a3f54 | 2017-11-16 14:21:13 | [diff] [blame] | 2391 | const char kPasswordImportName[] = "Password import"; |
| 2392 | const char kPasswordImportDescription[] = |
| 2393 | "Import functionality in password settings."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2394 | |
Maria Timbur | ddb9d42 | 2022-07-20 12:41:49 | [diff] [blame] | 2395 | const char kPasswordStrengthIndicatorName[] = "Password strength indicator"; |
| 2396 | const char kPasswordStrengthIndicatorDescription[] = |
| 2397 | "Enables password strength indicator when typing a password during a " |
| 2398 | "sign-up and password change flows."; |
| 2399 | |
Norge Vizcay | 81af880 | 2022-09-06 09:57:12 | [diff] [blame] | 2400 | const char kForceEnableFastCheckoutCapabilitiesName[] = |
| 2401 | "Force enable fast checkout capabilities"; |
| 2402 | const char kForceEnableFastCheckoutCapabilitiesDescription[] = |
| 2403 | "Force enables fast checkout capabilities for every domain, regardless " |
| 2404 | "of the server response."; |
| 2405 | |
Nektarios Paisios | 98906870 | 2022-03-02 09:06:56 | [diff] [blame] | 2406 | const char kPdfOcrName[] = "Performs OCR on inaccessible PDFs"; |
| 2407 | const char kPdfOcrDescription[] = |
| 2408 | "Enables a feature whereby inaccessible (i.e. untagged) PDFs are made " |
| 2409 | "accessible using an optical character recognition service."; |
| 2410 | |
Carlos IL | c5c2e270 | 2020-12-15 21:19:50 | [diff] [blame] | 2411 | const char kPdfXfaFormsName[] = "PDF XFA support"; |
| 2412 | const char kPdfXfaFormsDescription[] = |
| 2413 | "Enables support for XFA forms in PDFs. " |
| 2414 | "Has no effect if Chrome was not built with XFA support."; |
| 2415 | |
Max Lee | fb53d9c | 2022-09-01 00:23:34 | [diff] [blame] | 2416 | const char kVmPerBootShaderCacheName[] = "VM per-boot shader cache"; |
| 2417 | const char kVmPerBootShaderCacheDescription[] = |
Max Lee | 32406583 | 2022-09-08 07:15:24 | [diff] [blame] | 2418 | "If enabled, VM shader cache is refreshed per boot. If disabled, VM shader " |
| 2419 | "cache is refreshed per OS build."; |
Max Lee | fb53d9c | 2022-09-01 00:23:34 | [diff] [blame] | 2420 | |
Peter Beverloo | dcd5d965 | 2021-10-11 23:30:59 | [diff] [blame] | 2421 | const char kAutoWebContentsDarkModeName[] = "Auto Dark Mode for Web Contents"; |
| 2422 | const char kAutoWebContentsDarkModeDescription[] = |
Aran Gilman | 5e9672bed | 2019-08-02 19:07:49 | [diff] [blame] | 2423 | "Automatically render all web contents using a dark theme."; |
| 2424 | |
Alison Maher | c07a3fb | 2019-10-07 21:25:03 | [diff] [blame] | 2425 | const char kForcedColorsName[] = "Forced Colors"; |
| 2426 | const char kForcedColorsDescription[] = |
| 2427 | "Enables forced colors mode for web content."; |
| 2428 | |
Gaston Rodriguez Lopez | 8baf013 | 2022-07-13 18:58:24 | [diff] [blame] | 2429 | const char kWindowsScrollingPersonalityName[] = "Windows Scrolling Personality"; |
| 2430 | const char kWindowsScrollingPersonalityDescription[] = |
Matt Amert | ecf4bf3 | 2019-09-25 19:50:39 | [diff] [blame] | 2431 | "If enabled, mousewheel and keyboard scrolls will scroll by a percentage " |
Gaston Rodriguez Lopez | 8baf013 | 2022-07-13 18:58:24 | [diff] [blame] | 2432 | "of the scroller size and the default scroll animation is replaced with " |
| 2433 | "Impulse-style scroll animations."; |
Matt Amert | ecf4bf3 | 2019-09-25 19:50:39 | [diff] [blame] | 2434 | |
Olesia Marukhno | 16fdd647a | 2020-05-04 09:34:00 | [diff] [blame] | 2435 | const char kPermissionChipName[] = "Permissions Chip Experiment"; |
| 2436 | const char kPermissionChipDescription[] = |
| 2437 | "Enables an experimental permission prompt that uses a chip in the location" |
| 2438 | " bar."; |
| 2439 | |
Florian Jacky | ca9da17 | 2022-09-26 16:29:46 | [diff] [blame] | 2440 | const char kChipLocationBarIconOverrideName[] = |
| 2441 | "Chip Location Bar Icon Override Experiment."; |
| 2442 | const char kChipLocationBarIconOverrideDescription[] = |
| 2443 | "Enables an experimental location bar icon override while a chip is shown " |
| 2444 | "in the location bar. Takes effect when #permission-chip or " |
| 2445 | "#confirmation-chip are active."; |
| 2446 | |
| 2447 | const char kConfirmationChipName[] = "Confirmation Chip Experiment"; |
| 2448 | const char kConfirmationChipNameDescription[] = |
| 2449 | "Enables an experimental confirmation chip in the location bar after a " |
Florian Jacky | cb018cb | 2022-10-10 09:57:36 | [diff] [blame] | 2450 | "permission prompt shown has been decided by the user."; |
Florian Jacky | ca9da17 | 2022-09-26 16:29:46 | [diff] [blame] | 2451 | |
Andy Paicu | 204a1bb8 | 2020-11-12 21:50:14 | [diff] [blame] | 2452 | const char kPermissionPredictionsName[] = "Permission Predictions"; |
| 2453 | const char kPermissionPredictionsDescription[] = |
| 2454 | "Use the Permission Predictions Service to surface permission requests " |
| 2455 | "using a quieter UI when the likelihood of the user granting the " |
| 2456 | "permission is predicted to be low. Requires " |
Balazs Engedy | 6f94e1c | 2021-11-22 14:16:35 | [diff] [blame] | 2457 | "chrome://flags/#quiet-notification-prompts and `Safe Browsing` to be " |
| 2458 | "enabled."; |
Andy Paicu | 204a1bb8 | 2020-11-12 21:50:14 | [diff] [blame] | 2459 | |
Illia Klimov | df283b0 | 2021-07-07 17:33:25 | [diff] [blame] | 2460 | const char kPermissionQuietChipName[] = "Quiet Permission Chip Experiment"; |
| 2461 | const char kPermissionQuietChipDescription[] = |
Illia Klimov | 1b2ca40c | 2022-06-09 20:02:41 | [diff] [blame] | 2462 | "Enables a permission prompt that uses the quiet chip instead of the " |
| 2463 | "right-hand side address bar icon for quiet permission prompts. Requires " |
| 2464 | "chrome://flags/#quiet-notification-prompts to be enabled."; |
Illia Klimov | df283b0 | 2021-07-07 17:33:25 | [diff] [blame] | 2465 | |
Tom Van Goethem | 7ad67c08 | 2022-12-13 18:56:26 | [diff] [blame] | 2466 | const char kRecordPermissionExpirationTimestampsName[] = |
| 2467 | "Record permission expiration timestamps"; |
| 2468 | const char kRecordPermissionExpirationTimestampsDescription[] = |
| 2469 | "When enabled, permissions grants with a durable session model will have " |
| 2470 | "an expiration date set."; |
| 2471 | |
Ella Ge | b58eed1 | 2019-09-05 23:37:01 | [diff] [blame] | 2472 | const char kPointerLockOptionsName[] = "Enables pointer lock options"; |
| 2473 | const char kPointerLockOptionsDescription[] = |
| 2474 | "Enables pointer lock unadjustedMovement. When unadjustedMovement is set " |
| 2475 | "to true, pointer movements wil not be affected by the underlying platform " |
| 2476 | "modications such as mouse accelaration."; |
| 2477 | |
Emily Shack | 675ca99 | 2022-11-18 22:07:24 | [diff] [blame] | 2478 | const char kPowerBookmarksSidePanel[] = "Power bookmarks side panel"; |
| 2479 | const char kPowerBookmarksSidePanelDescription[] = |
| 2480 | "Enables the power bookmarks version of the bookmarks side panel content."; |
| 2481 | |
Brandon Wylie | 955a1694 | 2021-09-24 22:43:10 | [diff] [blame] | 2482 | const char kBookmarksImprovedSaveFlowName[] = "Improved bookmarks save flow"; |
| 2483 | const char kBookmarksImprovedSaveFlowDescription[] = |
| 2484 | "Enabled an improved save flow for bookmarks."; |
| 2485 | |
Brandon Wylie | f203eee | 2021-10-11 22:55:45 | [diff] [blame] | 2486 | const char kBookmarksRefreshName[] = "Bookmarks refresh"; |
Brandon Wylie | 9fe3758 | 2021-08-24 01:22:53 | [diff] [blame] | 2487 | const char kBookmarksRefreshDescription[] = |
Brandon Wylie | f203eee | 2021-10-11 22:55:45 | [diff] [blame] | 2488 | "Enable various changes to bookmarks."; |
Brandon Wylie | 9fe3758 | 2021-08-24 01:22:53 | [diff] [blame] | 2489 | |
Robert Lin | 4035ebb | 2021-10-08 12:23:41 | [diff] [blame] | 2490 | const char kOmniboxTriggerForPrerender2Name[] = |
| 2491 | "Omnibox trigger for Prerender2"; |
| 2492 | const char kOmniboxTriggerForPrerender2Description[] = |
| 2493 | "Enables the new omnibox trigger prerenderer implementation."; |
| 2494 | |
Lingqi Chi | 357fcda1 | 2022-02-18 03:34:15 | [diff] [blame] | 2495 | const char kSupportSearchSuggestionForPrerender2Name[] = |
| 2496 | "Prerender search suggestions"; |
| 2497 | const char kSupportSearchSuggestionForPrerender2Description[] = |
| 2498 | "Allows Prerender2 to prerender search suggestions provided by the default " |
Johann | 6299c23 | 2022-11-21 03:10:44 | [diff] [blame] | 2499 | "search engine."; |
Lingqi Chi | 357fcda1 | 2022-02-18 03:34:15 | [diff] [blame] | 2500 | |
Ryan Sturm | 0c7162f7 | 2022-09-16 15:13:41 | [diff] [blame] | 2501 | const char kEnableOmniboxSearchPrefetchName[] = "Omnibox prefetch Search"; |
| 2502 | const char kEnableOmniboxSearchPrefetchDescription[] = |
| 2503 | "Allows omnibox to prefetch likely search suggestions provided by the " |
| 2504 | "Default Search Engine"; |
| 2505 | |
| 2506 | const char kEnableOmniboxClientSearchPrefetchName[] = |
| 2507 | "Omnibox client prefetch Search"; |
| 2508 | const char kEnableOmniboxClientSearchPrefetchDescription[] = |
| 2509 | "Allows omnibox to prefetch search suggestions provided by the Default " |
| 2510 | "Search Engine that the client thinks are likely to be navigated. Requires " |
| 2511 | "chrome://flags/#omnibox-search-prefetch"; |
| 2512 | |
Andrey Zaytsev | 7c790c1 | 2022-05-23 13:07:30 | [diff] [blame] | 2513 | const char kPrivacyGuideAndroidName[] = "Privacy Guide on Android"; |
| 2514 | const char kPrivacyGuideAndroidDescription[] = |
| 2515 | "Shows a new subpage in Settings that helps the user to review various " |
| 2516 | "privacy settings."; |
| 2517 | |
John Delaney | 1d6e4b5c | 2022-03-25 02:19:22 | [diff] [blame] | 2518 | const char kPrivacySandboxAdsAPIsOverrideName[] = "Privacy Sandbox Ads APIs"; |
| 2519 | const char kPrivacySandboxAdsAPIsOverrideDescription[] = |
Nan Lin | 066a81a | 2022-04-20 18:46:54 | [diff] [blame] | 2520 | "Enables Privacy Sandbox APIs: Attribution Reporting, Fledge, Topics, " |
Alex Turner | 64f3bef | 2022-09-09 18:56:58 | [diff] [blame] | 2521 | "Fenced Frames, Shared Storage, Private Aggregation, and their associated " |
| 2522 | "features."; |
John Delaney | 1d6e4b5c | 2022-03-25 02:19:22 | [diff] [blame] | 2523 | |
Theodore Olsauskas-Warren | 474cdb5 | 2023-01-04 10:16:34 | [diff] [blame] | 2524 | const char kPrivacySandboxSettings4Name[] = "Privacy Sandbox Settings V4"; |
| 2525 | const char kPrivacySandboxSettings4Description[] = |
| 2526 | "Enables updated Privacy Sandbox UI"; |
| 2527 | |
Alex Turner | b6d89fa | 2022-10-12 18:33:57 | [diff] [blame] | 2528 | const char kPrivateAggregationDeveloperModeName[] = |
| 2529 | "Private Aggregation developer mode"; |
| 2530 | const char kPrivateAggregationDeveloperModeDescription[] = |
| 2531 | "Enables the developer mode for the Private Aggregation API. This removes " |
| 2532 | "all reporting delays. Only works if the Private Aggregation API is " |
| 2533 | "already enabled."; |
Alex Turner | 2d50495 | 2022-09-21 23:56:49 | [diff] [blame] | 2534 | |
Dana Fried | ac7b8ff | 2019-09-18 21:27:57 | [diff] [blame] | 2535 | const char kProminentDarkModeActiveTabTitleName[] = |
| 2536 | "Prominent Dark Mode Active Tab Titles"; |
| 2537 | const char kProminentDarkModeActiveTabTitleDescription[] = |
| 2538 | "Makes the active tab title in dark mode bolder so the active tab is " |
| 2539 | "easier " |
| 2540 | "to identify."; |
| 2541 | |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 2542 | const char kPullToRefreshName[] = "Pull-to-refresh gesture"; |
| 2543 | const char kPullToRefreshDescription[] = |
| 2544 | "Pull-to-refresh gesture in response to vertical overscroll."; |
Mohsen Izadi | 8c59ba5 | 2018-04-12 18:52:01 | [diff] [blame] | 2545 | const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only"; |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 2546 | |
Finnur Thorarinsson | fb625e1 | 2022-09-06 17:22:53 | [diff] [blame] | 2547 | const char kPWAsDefaultOfflinePageName[] = "Default offline page for PWAs"; |
| 2548 | const char kPWAsDefaultOfflinePageDescription[] = |
| 2549 | "Shows customised default offline page when web app is offline."; |
| 2550 | |
Finnur Thorarinsson | 52835574 | 2022-03-07 10:57:01 | [diff] [blame] | 2551 | const char kPwaUpdateDialogForAppIconName[] = |
| 2552 | "Enable PWA install update dialog for icon changes"; |
| 2553 | const char kPwaUpdateDialogForAppIconDescription[] = |
| 2554 | "Enable a confirmation dialog that shows up when a PWA changes its icon"; |
| 2555 | |
| 2556 | const char kPwaUpdateDialogForAppTitleName[] = |
| 2557 | "Enable PWA install update dialog for name changes"; |
| 2558 | const char kPwaUpdateDialogForAppTitleDescription[] = |
| 2559 | "Enable a confirmation dialog that shows up when a PWA changes its name"; |
Finnur Thorarinsson | 818e6c11 | 2021-05-19 13:06:46 | [diff] [blame] | 2560 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2561 | const char kQuicName[] = "Experimental QUIC protocol"; |
| 2562 | const char kQuicDescription[] = "Enable experimental QUIC protocol support."; |
| 2563 | |
Jiahe Zhang | c3577e33 | 2022-06-22 11:20:38 | [diff] [blame] | 2564 | const char kQuickIntensiveWakeUpThrottlingAfterLoadingName[] = |
| 2565 | "Quick intensive throttling after loading"; |
| 2566 | const char kQuickIntensiveWakeUpThrottlingAfterLoadingDescription[] = |
| 2567 | "For pages that are loaded when backgrounded, activates intensive " |
Jiahe Zhang | 49866985 | 2022-12-12 17:21:10 | [diff] [blame] | 2568 | "throttling after 1 minute instead of the default 5 minutes. Intensive " |
Jiahe Zhang | c3577e33 | 2022-06-22 11:20:38 | [diff] [blame] | 2569 | "throttling will limit wake ups, from setTimeout and setInterval tasks " |
| 2570 | "with a high nesting level and delayed scheduler.postTask tasks, to 1 per " |
| 2571 | "minute. See https://chromestatus.com/feature/5580139453743104 for more " |
| 2572 | "info."; |
| 2573 | |
Rohit Agarwal | 5e1c17fc | 2023-02-03 11:44:15 | [diff] [blame] | 2574 | extern const char kQuickDeleteForAndroidName[] = "Enable quick delete"; |
| 2575 | extern const char kQuickDeleteForAndroidDescription[] = |
| 2576 | "When enabled, a new quick delete option appears in the three dots menu, " |
| 2577 | "allowing users to quickly delete their last 15 mins of data."; |
| 2578 | |
Yulun Wu | c7439a65 | 2021-06-18 17:24:18 | [diff] [blame] | 2579 | const char kSettingsAppNotificationSettingsName[] = |
| 2580 | "Split notification permission settings"; |
| 2581 | const char kSettingsAppNotificationSettingsDescription[] = |
| 2582 | "Remove per-app notification permissions settings from the quick settings " |
| 2583 | "menu. Notification permission settings will be split between the " |
| 2584 | "lacros-chrome browser's notification permission page " |
| 2585 | "and the ChromeOS settings app."; |
| 2586 | |
Alan Cutter | 20fd08f | 2020-12-01 13:39:16 | [diff] [blame] | 2587 | const char kRecordWebAppDebugInfoName[] = "Record web app debug info"; |
| 2588 | const char kRecordWebAppDebugInfoDescription[] = |
| 2589 | "Enables recording additional web app related debugging data to be " |
Alan Cutter | 919b459 | 2021-07-08 05:50:44 | [diff] [blame] | 2590 | "displayed in: chrome://web-app-internals"; |
Alan Cutter | 20fd08f | 2020-12-01 13:39:16 | [diff] [blame] | 2591 | |
Victor Tan | 0e75ea5 | 2022-08-12 16:46:28 | [diff] [blame] | 2592 | const char kReduceAcceptLanguageName[] = |
| 2593 | "Reduce Accept-Language request header"; |
| 2594 | const char kReduceAcceptLanguageDescription[] = |
| 2595 | "Reduce the amount of information available in the Accept-Language request " |
| 2596 | "header. See https://github.com/Tanych/accept-language for more info."; |
| 2597 | |
Mike Taylor | cf239377 | 2021-05-25 16:35:41 | [diff] [blame] | 2598 | const char kReduceUserAgentName[] = "Reduce User-Agent request header"; |
| 2599 | const char kReduceUserAgentDescription[] = |
| 2600 | "Reduce (formerly, \"freeze\") the amount of information available in " |
| 2601 | "the User-Agent request header. " |
| 2602 | "See https://www.chromium.org/updates/ua-reduction for more info."; |
| 2603 | |
James Hollyer | 6e5f5c3 | 2020-07-27 21:18:10 | [diff] [blame] | 2604 | const char kRestrictGamepadAccessName[] = "Restrict gamepad access"; |
| 2605 | const char kRestrictGamepadAccessDescription[] = |
Charlie Hu | db284b3f | 2021-03-19 19:52:22 | [diff] [blame] | 2606 | "Enables Permissions Policy and Secure Context restrictions on the Gamepad " |
| 2607 | "API"; |
James Hollyer | 6e5f5c3 | 2020-07-27 21:18:10 | [diff] [blame] | 2608 | |
Zoraiz Naeem | 82fa0107 | 2022-06-14 20:13:09 | [diff] [blame] | 2609 | const char kRoundedDisplay[] = "Rounded display"; |
| 2610 | const char kRoundedDisplayDescription[] = |
| 2611 | "Enables rounded corners for the display"; |
| 2612 | |
Dominic Farolino | 0e1f9a1a | 2020-11-25 23:25:00 | [diff] [blame] | 2613 | const char kMBIModeName[] = "MBI Scheduling Mode"; |
| 2614 | const char kMBIModeDescription[] = |
| 2615 | "Enables independent agent cluster scheduling, via the " |
| 2616 | "AgentSchedulingGroup infrastructure."; |
| 2617 | |
Eduard Hez | 0141dce | 2022-09-22 11:46:50 | [diff] [blame] | 2618 | const char kSafetyCheckNotificationPermissionsName[] = |
| 2619 | "Permission Module for notifications in Safety Check"; |
| 2620 | const char kSafetyCheckNotificationPermissionsDescription[] = |
| 2621 | "When enabled, adds the notification permission module to Safety Check on " |
| 2622 | "desktop. The module will be shown depending on the browser state."; |
| 2623 | |
| 2624 | const char kSafetyCheckUnusedSitePermissionsName[] = |
| 2625 | "Permission Module for unused sites in Safety Check"; |
| 2626 | const char kSafetyCheckUnusedSitePermissionsDescription[] = |
| 2627 | "When enabled, adds the unused sites permission module to Safety Check on " |
| 2628 | "desktop. The module will be shown depending on the browser state."; |
Side Yilmaz | cdd69f78 | 2022-07-22 08:05:30 | [diff] [blame] | 2629 | |
Andrew Pantera | 67b07b4 | 2022-12-06 19:32:00 | [diff] [blame] | 2630 | const char kSameAppWindowCycleName[] = "Cros Labs: Same App Window Cycling"; |
| 2631 | const char kSameAppWindowCycleDescription[] = |
| 2632 | "Use Alt+` to cycle through the windows of the active application."; |
| 2633 | |
Dylan Cutler | c2988fe | 2021-08-05 14:24:37 | [diff] [blame] | 2634 | const char kPartitionedCookiesName[] = "Partitioned cookies"; |
| 2635 | const char kPartitionedCookiesDescription[] = |
| 2636 | "Controls if the Partitioned cookie attribute is enabled."; |
| 2637 | |
Dylan Cutler | 4ab423e | 2022-03-30 21:11:29 | [diff] [blame] | 2638 | const char kNoncedPartitionedCookiesName[] = "Nonced partitioned cookies only"; |
| 2639 | const char kNoncedPartitionedCookiesDescription[] = |
| 2640 | "When this flag is enabled, we allow partitioned cookies whose " |
| 2641 | "partition keys contain a nonce even if the \"Partitioned cookies\" " |
| 2642 | "feature is disabled. If \"Partitioned cookies\" are enabled, then " |
| 2643 | "enabling or disabling this feature does nothing."; |
| 2644 | |
Nathan Eliason | 320cf31 | 2022-07-26 23:02:32 | [diff] [blame] | 2645 | const char kThirdPartyStoragePartitioningName[] = |
| 2646 | "Experimental third-party storage partitioning."; |
| 2647 | const char kThirdPartyStoragePartitioningDescription[] = |
| 2648 | "Enables partitioning of third-party storage by top-level site. " |
| 2649 | "Note: this is under active development and may result in unexpected " |
| 2650 | "behavior. Please file bugs at https://bugs.chromium.org/p/chromium/issues/" |
| 2651 | "entry?labels=StoragePartitioning-trial-bugs&components=Blink%3EStorage."; |
| 2652 | |
Ilkin Safarli | 2692d5d1 | 2022-12-09 00:03:21 | [diff] [blame] | 2653 | const char kScreenSaverPreviewName[] = "Screen saver preview"; |
| 2654 | const char kScreenSaverPreviewDescription[] = |
| 2655 | "Enables the screen saver preview feature which allows the users to " |
| 2656 | "preview current screen saver."; |
| 2657 | |
Elaine Chien | 2b731c8 | 2021-01-28 17:50:56 | [diff] [blame] | 2658 | const char kScrollableTabStripFlagId[] = "scrollable-tabstrip"; |
Taylor Bergquist | 6e2cbe3 | 2021-02-03 21:46:14 | [diff] [blame] | 2659 | const char kScrollableTabStripName[] = "Tab Scrolling"; |
Charlene Yan | 0ccd7f5 | 2019-04-12 23:20:59 | [diff] [blame] | 2660 | const char kScrollableTabStripDescription[] = |
Taylor Bergquist | 6e2cbe3 | 2021-02-03 21:46:14 | [diff] [blame] | 2661 | "Enables tab strip to scroll left and right when full."; |
Charlene Yan | 0ccd7f5 | 2019-04-12 23:20:59 | [diff] [blame] | 2662 | |
David Pennington | 423db8f | 2022-10-24 22:30:04 | [diff] [blame] | 2663 | const char kTabScrollingButtonPositionFlagId[] = |
| 2664 | "tab-scrolling-button-position"; |
| 2665 | const char kTabScrollingButtonPositionName[] = "Tab Scrolling Buttons"; |
| 2666 | const char kTabScrollingButtonPositionDescription[] = |
| 2667 | "Enables buttons on the tab strip to scroll left and right when full"; |
| 2668 | |
Shibalik Mohapatra | 9a31f7d3 | 2022-10-26 23:53:59 | [diff] [blame] | 2669 | const char kScrollableTabStripWithDraggingFlagId[] = |
| 2670 | "scrollable-tabstrip-with-dragging"; |
| 2671 | const char kScrollableTabStripWithDraggingName[] = |
| 2672 | "Tab Scrolling With Dragging"; |
| 2673 | const char kScrollableTabStripWithDraggingDescription[] = |
| 2674 | "Scrolls the tabstrip while dragging tabs towards the end of the visible " |
| 2675 | "view."; |
| 2676 | |
David Pennington | 02c635e | 2022-11-18 01:03:45 | [diff] [blame] | 2677 | const char kScrollableTabStripOverflowFlagId[] = "scrollable-tabstrip-overflow"; |
| 2678 | const char kScrollableTabStripOverflowName[] = |
| 2679 | "Tab Scrolling Overflow Indicator"; |
| 2680 | const char kScrollableTabStripOverflowDescription[] = |
| 2681 | "Choices for overflow indicators shown when the tabstrip is in scrolling " |
| 2682 | "mode."; |
| 2683 | |
Taylor Bergquist | 9adeb29 | 2022-08-25 20:33:08 | [diff] [blame] | 2684 | const char kSplitTabStripName[] = "Split TabStrip"; |
| 2685 | const char kSplitTabStripDescription[] = |
| 2686 | "Splits pinned and unpinned tabs into separate TabStrips under the hood. " |
| 2687 | "Pure refactoring, no user-visible behavioral changes are included."; |
| 2688 | |
David Bokan | ebe23cc5 | 2020-05-11 18:20:46 | [diff] [blame] | 2689 | const char kScrollUnificationName[] = "Scroll Unification"; |
| 2690 | const char kScrollUnificationDescription[] = |
| 2691 | "Refactoring project that eliminates scroll handling code from Blink. " |
| 2692 | "Does not affect behavior or performance."; |
| 2693 | |
Yulun Wu | 0425551 | 2022-02-15 01:34:15 | [diff] [blame] | 2694 | extern const char kSearchResultInlineIconName[] = "Search Result Inline Icons"; |
| 2695 | extern const char kSearchResultInlineIconDescription[] = |
| 2696 | "Show iconified text and vector icons " |
| 2697 | "in launcher search results."; |
| 2698 | |
Yulun Wu | 1cd0faa | 2022-03-03 06:59:21 | [diff] [blame] | 2699 | extern const char kDynamicSearchUpdateAnimationName[] = |
| 2700 | "Dynamic Search Result Update Animation"; |
| 2701 | extern const char kDynamicSearchUpdateAnimationDescription[] = |
| 2702 | "Dynamically adjust the search result update animation when those update " |
| 2703 | "animations are preempted. Shortened animation durations configurable " |
| 2704 | "(unit: milliseconds)."; |
| 2705 | |
Rouslan Solomakhin | e73fa785 | 2020-08-28 10:33:46 | [diff] [blame] | 2706 | const char kSecurePaymentConfirmationDebugName[] = |
| 2707 | "Secure Payment Confirmation Debug Mode"; |
| 2708 | const char kSecurePaymentConfirmationDebugDescription[] = |
| 2709 | "This flag removes the restriction that PaymentCredential in WebAuthn and " |
| 2710 | "secure payment confirmation in PaymentRequest API must use user verifying " |
| 2711 | "platform authenticators."; |
| 2712 | |
Victor Hugo Vianna Silva | f0a4400 | 2022-02-16 10:38:00 | [diff] [blame] | 2713 | const char kSendTabToSelfSigninPromoName[] = "Send tab to self sign-in promo"; |
| 2714 | const char kSendTabToSelfSigninPromoDescription[] = |
| 2715 | "Enables a sign-in promo if the user attempts to share a tab while being " |
| 2716 | "signed out"; |
| 2717 | |
Marlon Facey | fce1a9e | 2022-03-31 23:48:06 | [diff] [blame] | 2718 | const char kSidePanelJourneysFlagId[] = "side-panel-journeys"; |
| 2719 | const char kSidePanelJourneysName[] = "Side panel journeys"; |
| 2720 | const char kSidePanelJourneysDescription[] = |
| 2721 | "Enables Journeys within the side panel."; |
| 2722 | |
Marlon Facey | 41373d72b | 2022-10-11 02:34:09 | [diff] [blame] | 2723 | const char kSidePanelJourneysQuerylessFlagId[] = |
| 2724 | "side-panel-journeys-queryless"; |
| 2725 | const char kSidePanelJourneysQuerylessName[] = "Side panel journeys queryless"; |
| 2726 | const char kSidePanelJourneysQuerylessDescription[] = |
| 2727 | "Enables Journeys queryless view within the side panel."; |
| 2728 | |
Elly Fong-Jones | fe05ca1 | 2022-09-09 23:38:47 | [diff] [blame] | 2729 | const char kSidePanelWebViewName[] = "Side panel webview"; |
| 2730 | const char kSidePanelWebViewDescription[] = |
| 2731 | "Adds a side panel option to load arbitrary web content, with a URL bar."; |
| 2732 | |
Kyle Milka | cf3aa6e1 | 2021-07-28 00:34:02 | [diff] [blame] | 2733 | const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots"; |
| 2734 | const char kSharingDesktopScreenshotsDescription[] = |
| 2735 | "Enables taking" |
| 2736 | " screenshots from the desktop sharing hub."; |
| 2737 | |
Toni Barzic | f630740ec | 2021-06-30 15:53:21 | [diff] [blame] | 2738 | const char kShelfDragToPinName[] = "Pin apps in shelf using drag"; |
| 2739 | |
| 2740 | const char kShelfDragToPinDescription[] = |
| 2741 | "Enables pinning unpinned items in shelf by dragging them to the part of " |
| 2742 | "the shelf that contains pinned apps."; |
| 2743 | |
Manu Cornet | d7ef7c5 | 2018-05-01 22:08:23 | [diff] [blame] | 2744 | const char kShelfHoverPreviewsName[] = |
| 2745 | "Show previews of running apps when hovering over the shelf."; |
| 2746 | const char kShelfHoverPreviewsDescription[] = |
| 2747 | "Shows previews of the open windows for a given running app when hovering " |
| 2748 | "over the shelf."; |
| 2749 | |
Yulun Wu | ee44426 | 2023-01-31 22:40:52 | [diff] [blame] | 2750 | const char kShelfStackedHotseatName[] = "Shelf Stacked Hotseat"; |
| 2751 | const char kShelfStackedHotseatDescription[] = |
| 2752 | "Stack the hotseat app bar above the shelf button panels/system tray when " |
| 2753 | "there is not enough space for the app bar."; |
| 2754 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2755 | const char kShowAutofillSignaturesName[] = "Show autofill signatures."; |
| 2756 | const char kShowAutofillSignaturesDescription[] = |
Maxim Kolosovskiy | e66f8cb | 2018-03-23 10:25:38 | [diff] [blame] | 2757 | "Annotates web forms with Autofill signatures as HTML attributes. Also " |
| 2758 | "marks password fields suitable for password generation."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2759 | |
| 2760 | const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions"; |
| 2761 | const char kShowAutofillTypePredictionsDescription[] = |
| 2762 | "Annotates web forms with Autofill field type predictions as placeholder " |
| 2763 | "text."; |
| 2764 | |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 2765 | const char kShowPerformanceMetricsHudName[] = "Show performance metrics in HUD"; |
| 2766 | const char kShowPerformanceMetricsHudDescription[] = |
Weiliang Chen | e39e765 | 2020-11-18 05:30:15 | [diff] [blame] | 2767 | "Display the performance metrics of current page in a heads up display on " |
| 2768 | "the page."; |
| 2769 | |
pwarren | 87867167 | 2019-12-13 19:18:16 | [diff] [blame] | 2770 | const char kShowOverdrawFeedbackName[] = "Show overdraw feedback"; |
| 2771 | const char kShowOverdrawFeedbackDescription[] = |
| 2772 | "Visualize overdraw by color-coding elements based on if they have other " |
| 2773 | "elements drawn underneath."; |
| 2774 | |
Regan Hsu | 444f954 | 2022-04-05 20:05:13 | [diff] [blame] | 2775 | extern const char kSimLockPolicyName[] = "SIM Lock Policy"; |
| 2776 | extern const char kSimLockPolicyDescription[] = |
| 2777 | "Enable the support for policy controlled enabling or disabling of PIN " |
| 2778 | "Locking SIMs on managed devices."; |
| 2779 | |
Lukasz Anforowicz | d2e16e6 | 2019-03-28 19:06:59 | [diff] [blame] | 2780 | const char kIsolateOriginsName[] = "Isolate additional origins"; |
| 2781 | const char kIsolateOriginsDescription[] = |
| 2782 | "Requires dedicated processes for an additional set of origins, " |
| 2783 | "specified as a comma-separated list."; |
| 2784 | |
Mike West | 6b2bd75 | 2020-12-02 06:36:59 | [diff] [blame] | 2785 | const char kIsolationByDefaultName[] = |
| 2786 | "Change web-facing behaviors that prevent origin-level isolation"; |
| 2787 | const char kIsolationByDefaultDescription[] = |
| 2788 | "Change several web APIs that make it difficult to isolate origins into " |
| 2789 | "distinct processes. While these changes will ideally become new default " |
| 2790 | "behaviors for the web, this flag is likely to break your experience on " |
| 2791 | "sites you visit today."; |
| 2792 | |
Alex Moshchuk | 1a4dd09 | 2022-05-26 19:55:26 | [diff] [blame] | 2793 | const char kWebViewTagSiteIsolationName[] = "Site isolation for <webview> tags"; |
| 2794 | const char kWebViewTagSiteIsolationDescription[] = |
| 2795 | "Enables site isolation for content rendered inside <webview> tags. This " |
| 2796 | "increases security for Chrome Apps and WebUI pages that use <webview>."; |
| 2797 | |
Lukasz Anforowicz | 738a88d | 2018-11-05 19:19:34 | [diff] [blame] | 2798 | const char kSiteIsolationOptOutName[] = "Disable site isolation"; |
| 2799 | const char kSiteIsolationOptOutDescription[] = |
| 2800 | "Disables site isolation " |
Nick Carter | 855bc49 | 2018-03-10 00:44:57 | [diff] [blame] | 2801 | "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that " |
| 2802 | "may be due to out-of-process iframes. Opt-out has no effect if site " |
Lukasz Anforowicz | 4284042 | 2018-11-05 21:49:22 | [diff] [blame] | 2803 | "isolation is force-enabled using a command line switch or using an " |
| 2804 | "enterprise policy. " |
| 2805 | "Caution: this disables important mitigations for the Spectre CPU " |
Nick Carter | 855bc49 | 2018-03-10 00:44:57 | [diff] [blame] | 2806 | "vulnerability affecting most computers."; |
Lukasz Anforowicz | 738a88d | 2018-11-05 19:19:34 | [diff] [blame] | 2807 | const char kSiteIsolationOptOutChoiceDefault[] = "Default"; |
| 2808 | const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2809 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2810 | const char kSmoothScrollingName[] = "Smooth Scrolling"; |
| 2811 | const char kSmoothScrollingDescription[] = |
| 2812 | "Animate smoothly when scrolling page content."; |
| 2813 | |
CJ Huang | 4ed8a7f3 | 2023-01-17 03:45:38 | [diff] [blame] | 2814 | const char kSpeakOnMuteName[] = "Enable Speak On Mute Detection"; |
| 2815 | const char kSpeakOnMuteDescription[] = |
| 2816 | "Enable the speak-on-mute detector in CRAS. Reboot is required to let the " |
| 2817 | "flag take effect"; |
| 2818 | |
shivanigithub | 75489e35 | 2021-02-22 19:24:30 | [diff] [blame] | 2819 | const char kSplitCacheByNetworkIsolationKeyName[] = "HTTP Cache Partitioning"; |
| 2820 | const char kSplitCacheByNetworkIsolationKeyDescription[] = |
| 2821 | "Partitions the HTTP Cache by (top-level site, current-frame site) to " |
| 2822 | "disallow cross-site tracking."; |
| 2823 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2824 | const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation"; |
| 2825 | const char kStrictOriginIsolationDescription[] = |
W. James MacLean | f79c97e | 2019-05-02 20:35:46 | [diff] [blame] | 2826 | "Experimental security mode that strengthens the site isolation policy. " |
| 2827 | "Controls whether site isolation should use origins instead of scheme and " |
| 2828 | "eTLD+1."; |
| 2829 | |
Brandon Maslen | da12cf8 | 2019-08-23 20:54:18 | [diff] [blame] | 2830 | const char kStorageAccessAPIName[] = "Storage Access API"; |
| 2831 | const char kStorageAccessAPIDescription[] = |
| 2832 | "Enables the Storage Access API, allowing websites to request storage " |
| 2833 | "access when it would otherwise be restricted."; |
| 2834 | |
Lexi Stavrakos | 094fd64 | 2020-06-17 23:26:43 | [diff] [blame] | 2835 | const char kStoragePressureEventName[] = "Enable storage pressure Event"; |
| 2836 | const char kStoragePressureEventDescription[] = |
| 2837 | "If enabled, Chrome will dispatch a DOM event, informing applications " |
| 2838 | "about storage pressure (low disk space)"; |
| 2839 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2840 | const char kSuggestionsWithSubStringMatchName[] = |
| 2841 | "Substring matching for Autofill suggestions"; |
| 2842 | const char kSuggestionsWithSubStringMatchDescription[] = |
| 2843 | "Match Autofill suggestions based on substrings (token prefixes) rather " |
| 2844 | "than just prefixes."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2845 | |
Irem Uguz | a8473792 | 2022-05-19 09:37:15 | [diff] [blame] | 2846 | const char kSupportTool[] = "Support Tool"; |
| 2847 | const char kSupportToolDescription[] = |
| 2848 | "Support Tool collects and exports logs to help debugging the issues. It's" |
| 2849 | " available in chrome://support-tool."; |
| 2850 | |
Yumin Su | 90c764de | 2022-09-28 19:56:15 | [diff] [blame] | 2851 | const char kSupportToolScreenshot[] = "Support Tool Screenshot"; |
| 2852 | const char kSupportToolScreenshotDescription[] = |
| 2853 | "Enables the Support Tool to capture and include a screenshot in the " |
| 2854 | "exported packet."; |
| 2855 | |
Patrick Noland | fa5abf9 | 2022-02-02 20:26:13 | [diff] [blame] | 2856 | const char kSuppressToolbarCapturesName[] = "Suppress Toolbar Captures"; |
| 2857 | const char kSuppressToolbarCapturesDescription[] = |
| 2858 | "Suppress Toolbar Captures except when certain properties change."; |
| 2859 | |
Alexander Tekle | 629b1be | 2022-12-05 23:55:12 | [diff] [blame] | 2860 | const char kSyncAutofillWalletUsageDataName[] = |
| 2861 | "Sync Autofill Wallet Usage Data"; |
| 2862 | const char kSyncAutofillWalletUsageDataDescription[] = |
| 2863 | "When enabled, allows syncing of the autofill wallet usage data type."; |
| 2864 | |
Marc Treib | b9d8ed80 | 2022-07-05 15:15:49 | [diff] [blame] | 2865 | const char kSyncEnableHistoryDataTypeName[] = "Enable History sync data type"; |
| 2866 | const char kSyncEnableHistoryDataTypeDescription[] = |
| 2867 | "Enables the History sync data type instead of TypedURLs"; |
| 2868 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2869 | const char kSyncSandboxName[] = "Use Chrome Sync sandbox"; |
| 2870 | const char kSyncSandboxDescription[] = |
| 2871 | "Connects to the testing server for Chrome Sync."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2872 | |
Mikel Astiz | 850b0fe | 2021-06-16 09:47:27 | [diff] [blame] | 2873 | const char kSyncTrustedVaultPassphrasePromoName[] = |
| 2874 | "Enable promos for sync trusted vault passphrase."; |
| 2875 | const char kSyncTrustedVaultPassphrasePromoDescription[] = |
| 2876 | "Enables promos for an experimental sync passphrase type, referred to as " |
| 2877 | "trusted vault."; |
| 2878 | |
Rushan Suleymanov | 72730960 | 2022-04-28 20:08:54 | [diff] [blame] | 2879 | const char kSyncInvalidationsName[] = "Use Sync standalone invalidations"; |
| 2880 | const char kSyncInvalidationsDescription[] = |
| 2881 | "If enabled, Sync will use standalone invalidations instead of topic based " |
| 2882 | "invalidations (Wallet and Offer data types are enabled by a dedicated " |
| 2883 | "flag)."; |
| 2884 | |
| 2885 | const char kSyncInvalidationsWalletAndOfferName[] = |
| 2886 | "Use Sync standalone invalidations for Wallet and Offer"; |
| 2887 | const char kSyncInvalidationsWalletAndOfferDescription[] = |
| 2888 | "If enabled, Sync will use standalone invalidations for Wallet and Offer " |
| 2889 | "data types. Takes effect only when Sync standalone invalidations are " |
| 2890 | "enabled."; |
| 2891 | |
Joe Downing | 8cbbc19 | 2018-05-14 17:37:07 | [diff] [blame] | 2892 | const char kSystemKeyboardLockName[] = "Experimental system keyboard lock"; |
| 2893 | const char kSystemKeyboardLockDescription[] = |
| 2894 | "Enables websites to use the keyboard.lock() API to intercept system " |
| 2895 | "keyboard shortcuts and have the events routed directly to the website " |
| 2896 | "when in fullscreen mode."; |
| 2897 | |
Hongyu Long | 3bd31e5 | 2022-11-21 20:08:30 | [diff] [blame] | 2898 | const char kSystemSoundsName[] = "Power Sounds"; |
| 2899 | const char kSystemSoundsDescription[] = |
| 2900 | "Enable device charging and low battery warning sounds."; |
| 2901 | |
Ahmed Mehfooz | f719a67 | 2020-12-17 23:32:52 | [diff] [blame] | 2902 | const char kStylusBatteryStatusName[] = |
| 2903 | "Show stylus battery stylus in the stylus tools menu"; |
| 2904 | const char kStylusBatteryStatusDescription[] = |
| 2905 | "Enables viewing the current stylus battery level in the stylus tools " |
| 2906 | "menu."; |
| 2907 | |
Matt Simmons | 1fd0c9f | 2019-04-15 19:08:22 | [diff] [blame] | 2908 | const char kTabEngagementReportingName[] = "Tab Engagement Metrics"; |
| 2909 | const char kTabEngagementReportingDescription[] = |
| 2910 | "Tracks tab engagement and lifetime metrics."; |
| 2911 | |
Yusuf Ozuysal | 67f05a0 | 2019-02-15 19:30:52 | [diff] [blame] | 2912 | const char kTabGridLayoutAndroidName[] = "Tab Grid Layout"; |
| 2913 | const char kTabGridLayoutAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 2914 | "Allows users to see their tabs in a grid layout in the tab switcher on " |
| 2915 | "phones."; |
Yusuf Ozuysal | 67f05a0 | 2019-02-15 19:30:52 | [diff] [blame] | 2916 | |
Wamia Said | 576448e | 2022-06-07 03:43:24 | [diff] [blame] | 2917 | const char kCommerceCouponsName[] = "Coupon Annotations"; |
| 2918 | const char kCommerceCouponsDescription[] = |
| 2919 | "Allows users to view annotations for available coupons in the Tab " |
| 2920 | "Switching UI and on the Tab itself when a known coupon in available"; |
| 2921 | |
Mei Liang | 6b29698 | 2021-10-06 22:49:04 | [diff] [blame] | 2922 | const char kCommerceDeveloperName[] = "Commerce developer mode"; |
| 2923 | const char kCommerceDeveloperDescription[] = |
| 2924 | "Allows users in the allowlist to enter the developer mode"; |
| 2925 | |
Ayman Almadhoun | 5a72fa74 | 2021-04-28 05:49:15 | [diff] [blame] | 2926 | const char kCommerceMerchantViewerAndroidName[] = "Merchant Viewer"; |
| 2927 | const char kCommerceMerchantViewerAndroidDescription[] = |
| 2928 | "Allows users to view merchant trust signals on eligible pages."; |
| 2929 | |
Yusuf Ozuysal | 436d90b8 | 2019-03-15 22:17:58 | [diff] [blame] | 2930 | const char kTabGroupsAndroidName[] = "Tab Groups"; |
| 2931 | const char kTabGroupsAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 2932 | "Allows users to create groups to better organize their tabs on phones."; |
Yusuf Ozuysal | 436d90b8 | 2019-03-15 22:17:58 | [diff] [blame] | 2933 | |
Yue Zhang | e561010 | 2019-11-01 19:46:39 | [diff] [blame] | 2934 | const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation"; |
| 2935 | const char kTabGroupsContinuationAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 2936 | "Allows users to access continuation features in Tab Group on phones."; |
Yue Zhang | e561010 | 2019-11-01 19:46:39 | [diff] [blame] | 2937 | |
Yue Zhang | 2834d6b | 2019-05-01 17:30:28 | [diff] [blame] | 2938 | const char kTabGroupsUiImprovementsAndroidName[] = "Tab Groups UI Improvements"; |
| 2939 | const char kTabGroupsUiImprovementsAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 2940 | "Allows users to access new features in Tab Group UI on phones."; |
Yue Zhang | 2834d6b | 2019-05-01 17:30:28 | [diff] [blame] | 2941 | |
Wei-Yin Chen (陳威尹) | 10222249 | 2019-05-22 19:27:09 | [diff] [blame] | 2942 | const char kTabToGTSAnimationAndroidName[] = "Enable Tab-to-GTS Animation"; |
| 2943 | const char kTabToGTSAnimationAndroidDescription[] = |
| 2944 | "Allows users to see an animation when entering or leaving the " |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 2945 | "Grid Tab Switcher on phones."; |
Wei-Yin Chen (陳威尹) | 10222249 | 2019-05-22 19:27:09 | [diff] [blame] | 2946 | |
Dana Fried | 7ecd0e0 | 2021-02-03 21:20:57 | [diff] [blame] | 2947 | const char kTabGroupsNewBadgePromoName[] = "Tab Groups 'New' Badge Promo"; |
| 2948 | const char kTabGroupsNewBadgePromoDescription[] = |
| 2949 | "Causes a 'New' badge to appear on the entry point for creating a tab " |
| 2950 | "group in the tab context menu."; |
| 2951 | |
Alyssa Frederick | ab694f2 | 2021-07-02 20:05:39 | [diff] [blame] | 2952 | const char kTabGroupsSaveName[] = "Tab Groups Save"; |
| 2953 | const char kTabGroupsSaveDescription[] = |
| 2954 | "Enables users to explicitly save and recall tab groups."; |
| 2955 | |
Dana Fried | acaa8ef5 | 2019-02-08 02:20:35 | [diff] [blame] | 2956 | const char kTabHoverCardImagesName[] = "Tab Hover Card Images"; |
| 2957 | const char kTabHoverCardImagesDescription[] = |
| 2958 | "Shows a preview image in tab hover cards, if tab hover cards are enabled."; |
| 2959 | |
Dana Fried | 07b03c6 | 2019-07-31 19:20:56 | [diff] [blame] | 2960 | const char kTabOutlinesInLowContrastThemesName[] = |
| 2961 | "Tab Outlines in Low Contrast Themes"; |
| 2962 | const char kTabOutlinesInLowContrastThemesDescription[] = |
| 2963 | "Expands the range of situations in which tab outline strokes are " |
| 2964 | "displayed, improving accessiblity in dark and incognito mode."; |
| 2965 | |
Yuheng Huang | 59d1d30 | 2021-10-29 21:21:14 | [diff] [blame] | 2966 | const char kTabSearchFuzzySearchName[] = "Fuzzy search for Tab Search"; |
| 2967 | const char kTabSearchFuzzySearchDescription[] = |
| 2968 | "Enable fuzzy search for Tab Search."; |
| 2969 | |
Wen-Chien Wang | e893a8d | 2022-10-05 16:53:25 | [diff] [blame] | 2970 | const char kTextInShelfName[] = "Internal test: text in shelf"; |
| 2971 | const char kTextInShelfDescription[] = |
| 2972 | "Extend text in shelf timeout to learn about user education"; |
| 2973 | |
Daniele Castagna | ac71d89 | 2020-07-07 17:30:37 | [diff] [blame] | 2974 | const char kTintCompositedContentName[] = "Tint composited content"; |
| 2975 | const char kTintCompositedContentDescription[] = |
| 2976 | "Tint contents composited using Viz with a shade of red to help debug and " |
Daniele Castagna | 0fead93e | 2018-01-10 20:40:29 | [diff] [blame] | 2977 | "study overlay support."; |
| 2978 | |
Peter Kasting | d7742835 | 2018-10-26 15:20:25 | [diff] [blame] | 2979 | const char kTopChromeTouchUiName[] = "Touch UI Layout"; |
| 2980 | const char kTopChromeTouchUiDescription[] = |
| 2981 | "Enables touch UI layout in the browser's top chrome."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2982 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2983 | const char kThreadedScrollingName[] = "Threaded scrolling"; |
| 2984 | const char kThreadedScrollingDescription[] = |
| 2985 | "Threaded handling of scroll-related input events. Disabling this will " |
| 2986 | "force all such scroll events to be handled on the main thread. Note that " |
| 2987 | "this can dramatically hurt scrolling performance of most websites and is " |
| 2988 | "intended for testing purposes only."; |
| 2989 | |
W. James MacLean | 17fc685 | 2021-05-06 18:29:29 | [diff] [blame] | 2990 | const char kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesName[] = |
| 2991 | "Throttle non-visible cross-origin iframes"; |
| 2992 | const char |
| 2993 | kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesDescription[] = |
| 2994 | "When enabled, all cross-origin iframes with zero visibility (either " |
W. James MacLean | 86b04de | 2022-03-25 15:00:03 | [diff] [blame] | 2995 | "display:none or zero viewport intersection with non-zero area) will be" |
| 2996 | " throttled, regardless of whether they are same-process or " |
| 2997 | "cross-process. When disabled, throttling for cross-process iframes is " |
| 2998 | "the same, but for same-process iframes throttling only occurs when " |
| 2999 | "the frame has zero viewport intersection, a non-zero area, and is " |
| 3000 | "not display:none."; |
W. James MacLean | 17fc685 | 2021-05-06 18:29:29 | [diff] [blame] | 3001 | |
Calder Kitagawa | e13c2391 | 2023-02-08 22:50:28 | [diff] [blame] | 3002 | const char kThumbnailCacheRefactorName[] = "Thumbnail Cache Refactor"; |
| 3003 | const char kThumbnailCacheRefactorDescription[] = |
| 3004 | "When enabled the thumbnail cache for Android is updated to improve " |
| 3005 | "memory usage and performance."; |
| 3006 | |
W. James MacLean | 853cd42 | 2022-10-17 14:08:58 | [diff] [blame] | 3007 | const char kNewBaseUrlInheritanceBehaviorName[] = |
| 3008 | "Enable new base url inheritance behaviors for srcdoc and about:blank"; |
| 3009 | const char kNewBaseUrlInheritanceBehaviorDescription[] = |
| 3010 | "When enabled, about:blank and srcdoc frames will use newly proposed " |
| 3011 | "behaviors around inheriting their base urls, as discussed on " |
| 3012 | "https://crbug.com/1356658. Note: this is automatically enabled when " |
| 3013 | "'isolate sandboxed iframes' is enabled."; |
| 3014 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3015 | const char kTouchDragDropName[] = "Touch initiated drag and drop"; |
| 3016 | const char kTouchDragDropDescription[] = |
| 3017 | "Touch drag and drop can be initiated through long press on a draggable " |
| 3018 | "element."; |
| 3019 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3020 | const char kTouchSelectionStrategyName[] = "Touch text selection strategy"; |
| 3021 | const char kTouchSelectionStrategyDescription[] = |
| 3022 | "Controls how text selection granularity changes when touch text selection " |
| 3023 | "handles are dragged. Non-default behavior is experimental."; |
| 3024 | const char kTouchSelectionStrategyCharacter[] = "Character"; |
| 3025 | const char kTouchSelectionStrategyDirection[] = "Direction"; |
| 3026 | |
Josh Simmons | 7a8e7a94 | 2021-06-19 01:08:56 | [diff] [blame] | 3027 | const char kTranslateAssistContentName[] = "Translate AssistContent"; |
| 3028 | const char kTranslateAssistContentDescription[] = |
| 3029 | "Enables populating translate details for the current page in " |
| 3030 | "AssistContent."; |
| 3031 | |
Anthony Vallee-Dubois | 265c569 | 2018-06-01 15:57:14 | [diff] [blame] | 3032 | const char kTranslateForceTriggerOnEnglishName[] = |
| 3033 | "Select which language model to use to trigger translate on English " |
| 3034 | "content"; |
| 3035 | const char kTranslateForceTriggerOnEnglishDescription[] = |
| 3036 | "Force the Translate Triggering on English pages experiment to be enabled " |
| 3037 | "with the selected language model active."; |
| 3038 | |
Josh Simmons | 8c9848487 | 2021-05-05 20:50:01 | [diff] [blame] | 3039 | const char kTranslateIntentName[] = "Translate intent"; |
| 3040 | const char kTranslateIntentDescription[] = |
| 3041 | "Enables an intent that allows Assistant to initiate a translation of the " |
| 3042 | "foreground tab."; |
Haohao Wang | 5b525f72 | 2019-05-18 15:37:52 | [diff] [blame] | 3043 | |
Mustafa Emre Acer | b3aa36a8 | 2018-05-22 21:44:05 | [diff] [blame] | 3044 | const char kTreatInsecureOriginAsSecureName[] = |
| 3045 | "Insecure origins treated as secure"; |
| 3046 | const char kTreatInsecureOriginAsSecureDescription[] = |
| 3047 | "Treat given (insecure) origins as secure origins. Multiple origins can be " |
Alan Cutter | 733ec9a | 2019-08-27 15:33:13 | [diff] [blame] | 3048 | "supplied as a comma-separated list. Origins must have their protocol " |
| 3049 | "specified e.g. \"http://example.com\". For the definition of secure " |
| 3050 | "contexts, see https://w3c.github.io/webappsec-secure-contexts/"; |
Mustafa Emre Acer | b3aa36a8 | 2018-05-22 21:44:05 | [diff] [blame] | 3051 | |
Sergey Kataev | c3be71f1 | 2022-11-18 20:11:55 | [diff] [blame] | 3052 | const char kPrivateStateTokensName[] = "Enable Private State Tokens"; |
| 3053 | const char kPrivateStateTokensDescription[] = |
| 3054 | "Enables the prototype Private State Token API " |
David Van Cleve | 08c5bc01 | 2020-03-26 17:31:46 | [diff] [blame] | 3055 | "(https://github.com/wicg/trust-token-api)."; |
| 3056 | |
Will Cassella | fd1edf0 | 2020-08-26 23:13:08 | [diff] [blame] | 3057 | const char kTurnOffStreamingMediaCachingOnBatteryName[] = |
| 3058 | "Turn off caching of streaming media to disk while on battery power."; |
| 3059 | const char kTurnOffStreamingMediaCachingOnBatteryDescription[] = |
| 3060 | "Reduces disk activity during media playback, which can result in " |
| 3061 | "power savings."; |
| 3062 | |
| 3063 | const char kTurnOffStreamingMediaCachingAlwaysName[] = |
Shawn Pickett | 0b47071 | 2019-08-15 00:43:45 | [diff] [blame] | 3064 | "Turn off caching of streaming media to disk."; |
Will Cassella | fd1edf0 | 2020-08-26 23:13:08 | [diff] [blame] | 3065 | const char kTurnOffStreamingMediaCachingAlwaysDescription[] = |
Shawn Pickett | 0b47071 | 2019-08-15 00:43:45 | [diff] [blame] | 3066 | "Reduces disk activity during media playback, which can result in " |
| 3067 | "power savings."; |
| 3068 | |
Vasilii Sukhanov | 3636543 | 2021-07-02 08:38:21 | [diff] [blame] | 3069 | const char kUnifiedPasswordManagerAndroidName[] = |
| 3070 | "Google Mobile Services for passwords"; |
Friedrich Horschig | 2683d83 | 2021-06-09 15:47:56 | [diff] [blame] | 3071 | const char kUnifiedPasswordManagerAndroidDescription[] = |
| 3072 | "Uses Google Mobile Services to store and retrieve passwords." |
| 3073 | "Warning: Highly experimental. May lead to loss of passwords and " |
| 3074 | "impact performance."; |
| 3075 | |
Ivana Žužić | b8eae11 | 2022-09-15 15:32:48 | [diff] [blame] | 3076 | const char kUnifiedPasswordManagerErrorMessagesName[] = |
| 3077 | "Error Messages when using Google Mobile Services for passwords"; |
| 3078 | const char kUnifiedPasswordManagerErrorMessagesDescription[] = |
| 3079 | "Enables showing error messages that offer signing in again to fix the " |
| 3080 | "auth errors."; |
| 3081 | |
Maria Kazinova | 3274835 | 2022-09-27 10:34:19 | [diff] [blame] | 3082 | const char kUnifiedPasswordManagerAndroidReenrollmentName[] = |
| 3083 | "Automatic reenrollement of users who were evicted from using Google " |
| 3084 | "Mobile Services after experiencing errors."; |
| 3085 | const char kUnifiedPasswordManagerAndroidReenrollmentDescription[] = |
| 3086 | "Requires UnifiedPasswordManagerAndroid flag enabled. Allows automatic " |
| 3087 | "reenrollment into Google Mobile Services if sync and backend " |
| 3088 | "communication work."; |
| 3089 | |
François Beaufort | db160c1 | 2019-05-01 06:28:14 | [diff] [blame] | 3090 | const char kUnsafeWebGPUName[] = "Unsafe WebGPU"; |
| 3091 | const char kUnsafeWebGPUDescription[] = |
Rafael Cintron | 9bce9f6e | 2019-12-19 04:05:05 | [diff] [blame] | 3092 | "Enables access to the experimental WebGPU API. Warning: As GPU sandboxing " |
François Beaufort | db160c1 | 2019-05-01 06:28:14 | [diff] [blame] | 3093 | "isn't implemented yet for the WebGPU API, it is possible to read GPU data " |
| 3094 | "for other processes."; |
| 3095 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3096 | const char kUiPartialSwapName[] = "Partial swap"; |
| 3097 | const char kUiPartialSwapDescription[] = "Sets partial swap behavior."; |
| 3098 | |
Maksim Sisov | dc5d70a | 2022-11-23 08:03:02 | [diff] [blame] | 3099 | const char kUIEnableSharedImageCacheForGpuName[] = "Shared GPUImageDecodeCache"; |
| 3100 | const char kUIEnableSharedImageCacheForGpuDescription[] = |
| 3101 | "Enables shared GPUImageDecodeCache for UI if gpu rasterization is " |
| 3102 | "enabled."; |
| 3103 | |
Momoka Yamamoto | f1accfce | 2022-10-13 10:00:19 | [diff] [blame] | 3104 | const char kUseNAT64ForIPv4LiteralName[] = |
| 3105 | "Use NAT64 translation for IPv4 literals"; |
| 3106 | const char kUseNAT64ForIPv4LiteralDescription[] = |
| 3107 | "Enables IPv4 to IPv6 address translation for IPv4 literals when chrome is " |
| 3108 | "on an IPv6 only network"; |
| 3109 | |
Maria Kazinova | 58cedc0 | 2021-08-02 17:15:11 | [diff] [blame] | 3110 | const char kUsernameFirstFlowFallbackCrowdsourcingName[] = |
| 3111 | "Username first flow fallback crowdsourcing"; |
| 3112 | const char kUsernameFirstFlowFallbackCrowdsourcingDescription[] = |
| 3113 | "Support of sending additional votes on username first flow i.e. login " |
| 3114 | "flows where a user has to type username first on one page and then " |
| 3115 | "password on another page. These votes are sent on single password forms " |
| 3116 | "and contain information whether a 1-password form follows a 1-text form " |
| 3117 | "and the value's type(or pattern) in the latter (e.g. email-like, " |
| 3118 | "phone-like, arbitrary string)."; |
Maria Kazinova | 85a2ece | 2021-06-14 19:24:28 | [diff] [blame] | 3119 | |
Zentaro Kavanagh | 892851f | 2019-05-29 15:13:31 | [diff] [blame] | 3120 | const char kUseSearchClickForRightClickName[] = |
| 3121 | "Use Search+Click for right click"; |
| 3122 | const char kUseSearchClickForRightClickDescription[] = |
| 3123 | "When enabled search+click will be remapped to right click, allowing " |
| 3124 | "webpages and apps to consume alt+click. When disabled the legacy " |
| 3125 | "behavior of remapping alt+click to right click will remain unchanged."; |
| 3126 | |
Guoxing Zhao | 7e12963 | 2023-01-25 03:58:55 | [diff] [blame] | 3127 | const char kVideoConferenceName[] = "Enable video conference features"; |
| 3128 | const char kVideoConferenceDescription[] = |
| 3129 | "Enables all features for ChromeOS built-in video conferencing UI."; |
Guoxing Zhao | 13538c6 | 2022-09-15 06:08:16 | [diff] [blame] | 3130 | |
Guoxing Zhao | 7e12963 | 2023-01-25 03:58:55 | [diff] [blame] | 3131 | const char kVcBackgroundReplaceName[] = "Enable vc background replacement"; |
| 3132 | const char kVcBackgroundReplaceDescription[] = |
Jim Pollock | c74e382 | 2022-10-17 03:56:50 | [diff] [blame] | 3133 | "Enables background replacement feature for video conferencing on " |
| 3134 | "chromebooks. THIS WILL OVERRIDE BACKGROUND BLUR."; |
| 3135 | |
Michael Hablich | 896d5266 | 2017-10-23 15:59:57 | [diff] [blame] | 3136 | const char kV8VmFutureName[] = "Future V8 VM features"; |
| 3137 | const char kV8VmFutureDescription[] = |
| 3138 | "This enables upcoming and experimental V8 VM features. " |
| 3139 | "This flag does not enable experimental JavaScript features."; |
| 3140 | |
Dominik Röttsches | ad865b5 | 2022-07-01 17:33:28 | [diff] [blame] | 3141 | const char kVariableCOLRV1Name[] = "Variable COLRv1 Fonts"; |
| 3142 | const char kVariableCOLRV1Description[] = |
| 3143 | "Enable rendering of COLRv1 glyphs with font variations applied. When this " |
| 3144 | "flag is off, variations to COLRv1 tables are ignored."; |
| 3145 | |
Jeff Chen | 64a0458a | 2022-01-13 17:12:17 | [diff] [blame] | 3146 | const char kGlobalVaapiLockName[] = "Global lock on the VA-API wrapper."; |
| 3147 | const char kGlobalVaapiLockDescription[] = |
| 3148 | "Enable or disable the global VA-API lock for platforms and paths that " |
| 3149 | "support controlling this."; |
| 3150 | |
Hirokazu Honda | 22eb73a | 2021-10-29 03:58:38 | [diff] [blame] | 3151 | const char kVp9kSVCHWDecodingName[] = |
| 3152 | "Hardware decode acceleration for k-SVC VP9"; |
| 3153 | const char kVp9kSVCHWDecodingDescription[] = |
| 3154 | "Enable or disable k-SVC VP9 hardware decode acceleration"; |
| 3155 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3156 | const char kWalletServiceUseSandboxName[] = |
| 3157 | "Use Google Payments sandbox servers"; |
| 3158 | const char kWalletServiceUseSandboxDescription[] = |
| 3159 | "For developers: use the sandbox service for Google Payments API calls."; |
| 3160 | |
Colin Kincaid | 292cfc4 | 2022-05-03 19:17:07 | [diff] [blame] | 3161 | const char kWallpaperFastRefreshName[] = |
| 3162 | "Enable shortened wallpaper daily refresh interval for manual testing"; |
| 3163 | const char kWallpaperFastRefreshDescription[] = |
| 3164 | "Allows developers to see a new wallpaper once every ten seconds rather " |
| 3165 | "than once per day when using the daily refresh feature."; |
| 3166 | |
Jerry Liu | a21b6162 | 2022-12-20 00:52:12 | [diff] [blame] | 3167 | const char kWallpaperGooglePhotosSharedAlbumsName[] = |
| 3168 | "Enable Google Photos shared albums for wallpaper"; |
| 3169 | const char kWallpaperGooglePhotosSharedAlbumsDescription[] = |
| 3170 | "Allow users to set shared Google Photos albums as the source for their " |
| 3171 | "wallpaper."; |
| 3172 | |
Sean Kau | 1d8791e3 | 2021-11-08 22:51:54 | [diff] [blame] | 3173 | const char kWallpaperPerDeskName[] = |
| 3174 | "Enable setting different wallpapers per desk"; |
| 3175 | const char kWallpaperPerDeskDescription[] = |
| 3176 | "Allow users to set different wallpapers on each of their active desks"; |
| 3177 | |
François Beaufort | 7aace81 | 2022-02-02 13:57:17 | [diff] [blame] | 3178 | const char kWebBluetoothName[] = "Web Bluetooth"; |
| 3179 | const char kWebBluetoothDescription[] = |
| 3180 | "Enables the Web Bluetooth API on platforms without official support"; |
| 3181 | |
Ovidio Henriquez | 3d729f6 | 2020-02-07 00:43:29 | [diff] [blame] | 3182 | const char kWebBluetoothNewPermissionsBackendName[] = |
| 3183 | "Use the new permissions backend for Web Bluetooth"; |
| 3184 | const char kWebBluetoothNewPermissionsBackendDescription[] = |
| 3185 | "Enables the new permissions backend for Web Bluetooth. This will enable " |
François Beaufort | 2b91675 | 2021-12-06 13:05:17 | [diff] [blame] | 3186 | "persistent storage of device permissions and Web Bluetooth features such " |
| 3187 | "as BluetoothDevice.watchAdvertisements() and Bluetooth.getDevices()"; |
Ovidio Henriquez | 3d729f6 | 2020-02-07 00:43:29 | [diff] [blame] | 3188 | |
Tsuyoshi Horo | abfb079d | 2019-10-17 02:09:06 | [diff] [blame] | 3189 | const char kWebBundlesName[] = "Web Bundles"; |
| 3190 | const char kWebBundlesDescription[] = |
| 3191 | "Enables experimental supports for Web Bundles (Bundled HTTP Exchanges) " |
| 3192 | "navigation."; |
| 3193 | |
Klaus Weidner | 90b7803 | 2022-06-01 22:48:33 | [diff] [blame] | 3194 | const char kWebContentsCaptureHiDpiName[] = "HiDPI Tab Capture"; |
| 3195 | const char kWebContentsCaptureHiDpiDescription[] = |
| 3196 | "Enables HiDPI rendering for tab capture if the displayed content's " |
| 3197 | "resolution is low compared to the capture size. This improves " |
| 3198 | "legibility for viewers with higher-resolution screens."; |
| 3199 | |
Reilly Grant | 679f59d | 2021-09-29 18:39:38 | [diff] [blame] | 3200 | const char kWebMidiName[] = "Web MIDI"; |
| 3201 | const char kWebMidiDescription[] = |
| 3202 | "Enables the implementation of the Web MIDI API. When disabled the " |
| 3203 | "interface will still be exposed by Blink."; |
| 3204 | |
Ayu Ishii | dbdd5c9 | 2020-03-20 23:40:52 | [diff] [blame] | 3205 | const char kWebOtpBackendName[] = "Web OTP"; |
| 3206 | const char kWebOtpBackendDescription[] = |
| 3207 | "Enables Web OTP API that uses the specified backend."; |
Yi Gu | 13cc724 | 2020-12-10 03:23:37 | [diff] [blame] | 3208 | const char kWebOtpBackendSmsVerification[] = "Code Browser API"; |
| 3209 | const char kWebOtpBackendUserConsent[] = "User Consent API"; |
| 3210 | const char kWebOtpBackendAuto[] = "Automatically select the backend"; |
Ayu Ishii | dbdd5c9 | 2020-03-20 23:40:52 | [diff] [blame] | 3211 | |
Kenneth Russell | 08c7dc3 | 2021-07-09 08:06:59 | [diff] [blame] | 3212 | const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions"; |
| 3213 | const char kWebglDeveloperExtensionsDescription[] = |
| 3214 | "Enabling this option allows web applications to access WebGL extensions " |
| 3215 | "intended only for use during development time."; |
| 3216 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3217 | const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions"; |
| 3218 | const char kWebglDraftExtensionsDescription[] = |
| 3219 | "Enabling this option allows web applications to access the WebGL " |
Kenneth Russell | 08c7dc3 | 2021-07-09 08:06:59 | [diff] [blame] | 3220 | "extensions that are still in draft status."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3221 | |
Brandon Jones | 2ebd9a6 | 2022-06-15 19:55:59 | [diff] [blame] | 3222 | const char kWebGpuDeveloperFeaturesName[] = "WebGPU Developer Features"; |
| 3223 | const char kWebGpuDeveloperFeaturesDescription[] = |
| 3224 | "Enables web applications to access WebGPU features intended only for use " |
| 3225 | "during development."; |
| 3226 | |
Danyao Wang | 47a0f31 | 2019-05-09 20:52:24 | [diff] [blame] | 3227 | const char kWebPaymentsExperimentalFeaturesName[] = |
| 3228 | "Experimental Web Payments API features"; |
| 3229 | const char kWebPaymentsExperimentalFeaturesDescription[] = |
| 3230 | "Enable experimental Web Payments API features"; |
| 3231 | |
Rouslan Solomakhin | 8c770f58 | 2023-01-03 22:23:51 | [diff] [blame] | 3232 | const char kIgnoreCSPInWebPaymentAPIName[] = "Ignore CSP in Web Payment API"; |
| 3233 | const char kIgnoreCSPInWebPaymentAPIDescription[] = |
| 3234 | "Temporarily disable enforcing Content Security Policy connect-src " |
| 3235 | "directive for Web Payment API when fetching manifest files, app icons, " |
| 3236 | "and service worker JavaScript files."; |
Rouslan Solomakhin | 6cc1108 | 2022-08-09 14:02:57 | [diff] [blame] | 3237 | |
Rouslan Solomakhin | 1b63d25 | 2023-01-04 15:36:33 | [diff] [blame] | 3238 | const char kAddIdentityInCanMakePaymentEventName[] = |
| 3239 | "Add identity to canmakepayment event"; |
| 3240 | const char kAddIdentityInCanMakePaymentEventDescription[] = |
| 3241 | "Temporarily re-enable the deprecated feature of sharing the merchant and " |
| 3242 | "user identity with the payment app when the merchant checks whether the " |
| 3243 | "payment app can make payments."; |
Rouslan Solomakhin | fb386b1 | 2022-06-24 01:41:20 | [diff] [blame] | 3244 | |
Liquan (Max) Gu | 8fcb919 | 2020-05-20 16:22:18 | [diff] [blame] | 3245 | const char kAppStoreBillingDebugName[] = |
| 3246 | "Web Payments App Store Billing Debug Mode"; |
| 3247 | const char kAppStoreBillingDebugDescription[] = |
| 3248 | "App-store purchases (e.g., Google Play Store) within a TWA can be " |
| 3249 | "requested using the Payment Request API. This flag removes the " |
| 3250 | "restriction that the TWA has to be installed from the app-store."; |
| 3251 | |
Qingsi Wang | ec2dbf94 | 2018-11-03 05:33:04 | [diff] [blame] | 3252 | const char kWebrtcHideLocalIpsWithMdnsName[] = |
| 3253 | "Anonymize local IPs exposed by WebRTC."; |
| 3254 | const char kWebrtcHideLocalIpsWithMdnsDecription[] = |
| 3255 | "Conceal local IP addresses with mDNS hostnames."; |
| 3256 | |
Alessio Bazzica | 570a4f6 | 2022-10-17 11:16:30 | [diff] [blame] | 3257 | const char kWebRtcAllowInputVolumeAdjustmentName[] = |
| 3258 | "Allow WebRTC to adjust the input volume."; |
| 3259 | const char kWebRtcAllowInputVolumeAdjustmentDescription[] = |
| 3260 | "Allow the Audio Processing Module in WebRTC to adjust the input volume " |
| 3261 | "during a real-time call. Disable if microphone muting or clipping issues " |
| 3262 | "are observed when the browser is running and used for a real-time call. " |
| 3263 | "This flag is experimental and may be removed at any time."; |
| 3264 | |
Alessio Bazzica | 76a4502 | 2022-12-06 17:13:17 | [diff] [blame] | 3265 | const char kWebRtcApmDownmixCaptureAudioMethodName[] = |
| 3266 | "WebRTC downmix capture audio method."; |
| 3267 | const char kWebRtcApmDownmixCaptureAudioMethodDescription[] = |
| 3268 | "Override the method that the Audio Processing Module in WebRTC uses to " |
| 3269 | "downmix the captured audio to mono (when needed) during a real-time call. " |
| 3270 | "This flag is experimental and may be removed at any time."; |
| 3271 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3272 | const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding"; |
| 3273 | const char kWebrtcHwDecodingDescription[] = |
| 3274 | "Support in WebRTC for decoding video streams using platform hardware."; |
| 3275 | |
| 3276 | const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding"; |
| 3277 | const char kWebrtcHwEncodingDescription[] = |
| 3278 | "Support in WebRTC for encoding video streams using platform hardware."; |
| 3279 | |
Elad Alon | 85e0d0be | 2018-06-26 10:38:37 | [diff] [blame] | 3280 | const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging"; |
| 3281 | const char kWebRtcRemoteEventLogDescription[] = |
| 3282 | "Allow collecting WebRTC event logs and uploading them to Crash. " |
| 3283 | "Please note that, even if enabled, this will still require " |
| 3284 | "a policy to be set, for it to have an effect."; |
| 3285 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3286 | const char kWebrtcSrtpAesGcmName[] = |
| 3287 | "Negotiation with GCM cipher suites for SRTP in WebRTC"; |
| 3288 | const char kWebrtcSrtpAesGcmDescription[] = |
| 3289 | "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP."; |
| 3290 | |
Sergey Silkin | c33244f | 2020-01-31 17:21:30 | [diff] [blame] | 3291 | const char kWebrtcUseMinMaxVEADimensionsName[] = |
| 3292 | "WebRTC Min/Max Video Encode Accelerator dimensions"; |
| 3293 | const char kWebrtcUseMinMaxVEADimensionsDescription[] = |
| 3294 | "When enabled, WebRTC will only use the Video Encode Accelerator for " |
| 3295 | "video resolutions inside those published as supported."; |
| 3296 | |
Reilly Grant | 3c560fa | 2021-09-25 01:27:25 | [diff] [blame] | 3297 | const char kWebUsbDeviceDetectionName[] = |
| 3298 | "Automatic detection of WebUSB-compatible devices"; |
| 3299 | const char kWebUsbDeviceDetectionDescription[] = |
| 3300 | "When enabled, the user will be notified when a device which advertises " |
| 3301 | "support for WebUSB is connected. Disable if problems with USB devices are " |
| 3302 | "observed when the browser is running."; |
| 3303 | |
Alex Cooper | 01f110e | 2020-01-08 02:24:16 | [diff] [blame] | 3304 | const char kWebXrForceRuntimeName[] = "Force WebXr Runtime"; |
| 3305 | const char kWebXrForceRuntimeDescription[] = |
| 3306 | "Force the browser to use a particular runtime, even if it would not " |
| 3307 | "usually be enabled or would otherwise not be selected based on the " |
| 3308 | "attached hardware."; |
| 3309 | |
| 3310 | const char kWebXrRuntimeChoiceNone[] = "No Runtime"; |
Alex Cooper | 01f110e | 2020-01-08 02:24:16 | [diff] [blame] | 3311 | const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR"; |
Alex Cooper | 01f110e | 2020-01-08 02:24:16 | [diff] [blame] | 3312 | |
Will Cassella | a1a4d111 | 2019-12-27 20:52:31 | [diff] [blame] | 3313 | const char kWebXrIncubationsName[] = "WebXR Incubations"; |
| 3314 | const char kWebXrIncubationsDescription[] = |
| 3315 | "Enables experimental features for WebXR."; |
Piotr Bialecki | d77fb9c | 2019-04-26 17:06:24 | [diff] [blame] | 3316 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 3317 | const char kZeroCopyName[] = "Zero-copy rasterizer"; |
| 3318 | const char kZeroCopyDescription[] = |
| 3319 | "Raster threads write directly to GPU memory associated with tiles."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3320 | |
Peng Huang | 7002168 | 2019-09-18 19:42:28 | [diff] [blame] | 3321 | const char kEnableVulkanName[] = "Vulkan"; |
Sean Gilhuly | ab1dbc6 | 2020-01-28 22:49:47 | [diff] [blame] | 3322 | const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend."; |
Peng Huang | 7002168 | 2019-09-18 19:42:28 | [diff] [blame] | 3323 | |
Cheick Cisse | b8f70603 | 2021-06-22 01:50:47 | [diff] [blame] | 3324 | const char kSharedHighlightingAmpName[] = "Shared Highlighting for AMP Viewers"; |
| 3325 | const char kSharedHighlightingAmpDescription[] = |
| 3326 | "Enables Shared Highlighting for AMP Viwers."; |
| 3327 | |
Cheick Cisse | 006ab4e1 | 2022-06-03 17:30:05 | [diff] [blame] | 3328 | const char kSharedHighlightingManagerName[] = "Refactoring Shared Highlighting"; |
| 3329 | const char kSharedHighlightingManagerDescription[] = |
| 3330 | "Refactors Shared Highlighting by centralizing the IPC calls in a Manager."; |
| 3331 | |
Jeffrey Cohen | c4d7361 | 2022-05-04 22:37:22 | [diff] [blame] | 3332 | const char kSharedHighlightingRefinedBlocklistName[] = |
| 3333 | "Shared Highlighting Blocklist Refinement"; |
| 3334 | const char kSharedHighlightingRefinedBlocklistDescription[] = |
| 3335 | "Narrow the Blocklist for enabling Shared Highlighting."; |
| 3336 | |
Wissem Gamra | cfd08da2 | 2022-05-20 00:33:59 | [diff] [blame] | 3337 | const char kSharedHighlightingRefinedMaxContextWordsName[] = |
| 3338 | "Shared Highlighting Max Context Words Refinement"; |
| 3339 | const char kSharedHighlightingRefinedMaxContextWordsDescription[] = |
| 3340 | "Experiment with different Max Context Words for Shared Highlighting."; |
| 3341 | |
Mario Bianucci | 3be046eb | 2021-02-26 18:41:48 | [diff] [blame] | 3342 | const char kDraw1PredictedPoint12Ms[] = "1 point 12ms ahead."; |
| 3343 | const char kDraw2PredictedPoints6Ms[] = "2 points, each 6ms ahead."; |
| 3344 | const char kDraw1PredictedPoint6Ms[] = "1 point 6ms ahead."; |
| 3345 | const char kDraw2PredictedPoints3Ms[] = "2 points, each 3ms ahead."; |
Mario Bianucci | 3be046eb | 2021-02-26 18:41:48 | [diff] [blame] | 3346 | const char kDrawPredictedPointsDescription[] = |
| 3347 | "Draw predicted points when using the delegated ink trails API. Requires " |
| 3348 | "experimental web platform features to be enabled."; |
| 3349 | const char kDrawPredictedPointsName[] = "Draw predicted delegated ink points"; |
| 3350 | |
Daniel Vogelheim | 236d9a8 | 2021-04-01 15:40:53 | [diff] [blame] | 3351 | const char kSanitizerApiName[] = "Sanitizer API"; |
| 3352 | const char kSanitizerApiDescription[] = |
| 3353 | "Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api"; |
| 3354 | |
Peng Huang | 723f26e | 2021-06-04 01:55:10 | [diff] [blame] | 3355 | const char kUsePassthroughCommandDecoderName[] = |
| 3356 | "Use passthrough command decoder"; |
| 3357 | const char kUsePassthroughCommandDecoderDescription[] = |
| 3358 | "Use chrome passthrough command decoder instead of validating command " |
| 3359 | "decoder."; |
| 3360 | |
Ali Beyad | 67fdee0 | 2022-02-12 23:54:51 | [diff] [blame] | 3361 | const char kDurableClientHintsCacheName[] = "Persistent client hints"; |
| 3362 | const char kDurableClientHintsCacheDescription[] = |
| 3363 | "Persist the client hints cache beyond browser restarts."; |
| 3364 | |
Ali Beyad | 1e3fc346 | 2022-02-23 20:11:40 | [diff] [blame] | 3365 | const char kReduceUserAgentMinorVersionName[] = |
| 3366 | "Reduce the minor version in the User-Agent string"; |
| 3367 | const char kReduceUserAgentMinorVersionDescription[] = |
| 3368 | "Reduce the minor, build, and patch versions in the User-Agent string. " |
| 3369 | "The Chrome version in the User-Agent string will be reported as " |
| 3370 | "Chrome/<major_version>.0.0.0."; |
| 3371 | |
Victor Tan | c3fc2d8 | 2022-07-12 14:58:37 | [diff] [blame] | 3372 | const char kReduceUserAgentPlatformOsCpuName[] = |
| 3373 | "Reduce the plaftform and oscpu in the desktop User-Agent string"; |
| 3374 | const char kReduceUserAgentPlatformOsCpuDescription[] = |
| 3375 | "Reduce the plaftform and oscpu in the desktop User-Agent string. " |
| 3376 | "The platform and oscpu in the User-Agent string will be reported as " |
| 3377 | "<unifiedPlatform>"; |
| 3378 | |
Yoshisato Yanagisawa | 577d8282 | 2022-08-17 01:51:10 | [diff] [blame] | 3379 | const char kSkipServiceWorkerFetchHandlerName[] = |
| 3380 | "Skip Service Worker Fetch Handler if skippable"; |
| 3381 | const char kSkipServiceWorkerFetchHandlerDescription[] = |
| 3382 | "Skips starting the service worker and run the fetch handler if the fetch " |
| 3383 | "handler is recognized as skippable."; |
| 3384 | |
Ari Chivukula | 8edcb69 | 2022-03-10 19:22:31 | [diff] [blame] | 3385 | const char kWebSQLAccessName[] = "Allows access to WebSQL APIs"; |
| 3386 | const char kWebSQLAccessDescription[] = |
| 3387 | "The WebSQL API is enabled by default, but can be disabled here."; |
| 3388 | |
Mustafa Emre Acer | c6b5135 | 2022-11-18 18:43:51 | [diff] [blame] | 3389 | const char kUseIDNA2008NonTransitionalName[] = |
| 3390 | "Enable IDNA 2008 Non-Transitional Mode"; |
| 3391 | const char kUseIDNA2008NonTransitionalDescription[] = |
| 3392 | "Enables IDNA 2008 in Non-Transitional Mode in URL processing, allowing " |
| 3393 | "deviation characters in domain names."; |
| 3394 | |
Igor Ruvinov | c0a8845 | 2022-06-03 15:26:14 | [diff] [blame] | 3395 | #if !BUILDFLAG(IS_CHROMEOS) |
| 3396 | const char kDmTokenDeletionName[] = "DMToken deletion"; |
| 3397 | const char kDmTokenDeletionDescription[] = |
| 3398 | "Delete the corresponding DMToken when a managed browser is deleted in " |
| 3399 | "Chrome Browser Cloud Management."; |
| 3400 | #endif // !BUILDFLAG(IS_CHROMEOS) |
| 3401 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 3402 | // Android --------------------------------------------------------------------- |
| 3403 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 3404 | #if BUILDFLAG(IS_ANDROID) |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 3405 | |
Amanda Lin Dietz | e847094 | 2023-02-06 19:47:03 | [diff] [blame] | 3406 | const char kAccessibilityFormControlsModeName[] = |
| 3407 | "Experimental Accessibility Mode for Form Controls only"; |
| 3408 | const char kAccessibilityFormControlsModeDescription[] = |
| 3409 | "Enable experimental accessibility mode to support password managers and " |
| 3410 | "form fillers when full assistive technology is not running."; |
| 3411 | |
Mark Schillaci | d9ce86c | 2021-09-30 16:37:53 | [diff] [blame] | 3412 | const char kAccessibilityPageZoomName[] = "Accessibility Page Zoom"; |
| 3413 | const char kAccessibilityPageZoomDescription[] = |
| 3414 | "Whether the UI and underlying code for page zoom should be enabled to" |
| 3415 | " allow a user to increase/decrease the web contents zoom factor."; |
| 3416 | |
Og Astorga | dd4f278d | 2021-12-11 13:27:45 | [diff] [blame] | 3417 | const char kActivateMetricsReportingEnabledPolicyAndroidName[] = |
| 3418 | "Activate MetricsReportingEnabled policy on Android"; |
| 3419 | const char kActivateMetricsReportingEnabledPolicyAndroidDescription[] = |
| 3420 | " Allows admins to block metrics reporting by using " |
| 3421 | " MetricsReportingEnabled policy."; |
| 3422 | |
Shakti Sahu | 1c04a287 | 2021-03-17 16:38:48 | [diff] [blame] | 3423 | const char kAddToHomescreenIPHName[] = "Add to homescreen IPH"; |
| 3424 | const char kAddToHomescreenIPHDescription[] = |
| 3425 | " Shows in-product-help messages educating users about add to homescreen " |
| 3426 | "option in chrome."; |
| 3427 | |
Vikas Soni | 5463f1a | 2020-08-17 22:47:30 | [diff] [blame] | 3428 | const char kAImageReaderName[] = "Android ImageReader"; |
| 3429 | const char kAImageReaderDescription[] = |
| 3430 | " Enables MediaPlayer and MediaCodec to use AImageReader on Android. " |
| 3431 | " This feature is only available for android P+ devices. Disabling it also " |
| 3432 | " disables SurfaceControl."; |
| 3433 | |
Trevor Perrier | c1384bb | 2021-06-04 23:54:03 | [diff] [blame] | 3434 | const char kAndroidForceAppLanguagePromptName[] = |
| 3435 | "Force second run app language prompt"; |
| 3436 | const char kAndroidForceAppLanguagePromptDescription[] = |
| 3437 | "When enabled the app language prompt to change the UI language will" |
| 3438 | "always be shown."; |
| 3439 | |
Finnur Thorarinsson | 7bd14e80 | 2022-07-07 22:10:47 | [diff] [blame] | 3440 | const char kAndroidMediaPickerSupportName[] = "Android Media Picker"; |
| 3441 | const char kAndroidMediaPickerSupportDescription[] = |
| 3442 | "When enabled the Android Media picker is used instead of the Chrome one."; |
| 3443 | |
Vikas Soni | f14e32c | 2020-08-15 06:17:22 | [diff] [blame] | 3444 | const char kAndroidSurfaceControlName[] = "Android SurfaceControl"; |
| 3445 | const char kAndroidSurfaceControlDescription[] = |
Vikas Soni | 5463f1a | 2020-08-17 22:47:30 | [diff] [blame] | 3446 | " Enables SurfaceControl to manage the buffer queue for the " |
| 3447 | " DisplayCompositor on Android. This feature is only available on " |
| 3448 | " android Q+ devices"; |
Vikas Soni | f14e32c | 2020-08-15 06:17:22 | [diff] [blame] | 3449 | |
Sky Malice | 300d5fc | 2023-01-12 19:37:33 | [diff] [blame] | 3450 | const char kAndroidImprovedBookmarksName[] = "Android Visual Bookmark Manager"; |
| 3451 | const char kAndroidImprovedBookmarksDescription[] = |
| 3452 | "More visual changes to the bookmarks surfaces, with more thumbnails and a " |
| 3453 | "focus on search instead of folders/hierarchy"; |
| 3454 | |
Shu Yang | 9550610 | 2023-01-11 19:16:32 | [diff] [blame] | 3455 | const char kAnimatedImageDragShadowName[] = |
| 3456 | "Enable animated image drag shadow on Android."; |
| 3457 | const char kAnimatedImageDragShadowDescription[] = |
| 3458 | "Animate the shadow image from its original bound to the touch point. " |
| 3459 | "Image drag on Android is available when flag touch-drag-and-context-menu " |
| 3460 | "is enabled."; |
| 3461 | |
Josh Simmons | 68325af | 2021-01-15 21:10:21 | [diff] [blame] | 3462 | const char kAssistantIntentTranslateInfoName[] = |
| 3463 | "Translate info in Assistant intent"; |
| 3464 | const char kAssistantIntentTranslateInfoDescription[] = |
| 3465 | "Include page translation details in the Assistant voice transcription " |
| 3466 | "intent. This includes the page's URL and its original, current, and " |
| 3467 | "default target language."; |
| 3468 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 3469 | const char kAutofillAccessoryViewName[] = |
| 3470 | "Autofill suggestions as keyboard accessory view"; |
| 3471 | const char kAutofillAccessoryViewDescription[] = |
| 3472 | "Shows Autofill suggestions on top of the keyboard rather than in a " |
| 3473 | "dropdown."; |
| 3474 | |
Caitlin Fischer | 43edd90a | 2019-05-01 13:24:30 | [diff] [blame] | 3475 | const char kAutofillUseMobileLabelDisambiguationName[] = |
| 3476 | "Autofill Uses Mobile Label Disambiguation"; |
| 3477 | const char kAutofillUseMobileLabelDisambiguationDescription[] = |
| 3478 | "When enabled, Autofill suggestions' labels are displayed using a " |
| 3479 | "mobile-friendly format."; |
| 3480 | |
Gang Wu | a7bfb5f4 | 2021-04-09 18:54:21 | [diff] [blame] | 3481 | const char kAppMenuMobileSiteOptionName[] = |
| 3482 | "Show Mobile Site option in app menu"; |
| 3483 | const char kAppMenuMobileSiteOptionDescription[] = |
| 3484 | "When enabled, app menu should show 'Mobile site' when showing desktop " |
| 3485 | "site, instead of showing 'Desktop Site' with checkbox"; |
| 3486 | |
Lijin Shen | 7c494d7 | 2023-01-17 23:54:55 | [diff] [blame] | 3487 | const char kBackGestureRefactorActivityAndroidName[] = |
| 3488 | "Back Gesture Refactor (Secondary Activities)"; |
| 3489 | const char kBackGestureRefactorActivityAndroidDescription[] = |
| 3490 | "Enable Back Gesture Refactor for Secondary Activities to support in-app " |
| 3491 | "activity-to-activity predictive back gestures"; |
| 3492 | |
Lijin Shen | ce2f572 | 2022-04-26 23:11:52 | [diff] [blame] | 3493 | const char kBackGestureRefactorAndroidName[] = "Back Gesture Refactor"; |
| 3494 | const char kBackGestureRefactorAndroidDescription[] = |
| 3495 | "Enable Back Gesture Refactor."; |
| 3496 | |
ckitagawa | f9abc39f | 2022-08-26 17:36:36 | [diff] [blame] | 3497 | const char kBindingManagerConnectionLimitName[] = |
| 3498 | "Binding manager connection limit"; |
| 3499 | const char kBindingManagerConnectionLimitDescription[] = |
| 3500 | "When enabled, limits the number of connections the binding manager can " |
| 3501 | "hold to background renderers. This results in lower priorities for the " |
| 3502 | "least important background renderers, which may cause them to be " |
| 3503 | "reclaimed by the OS if memory is needed."; |
| 3504 | |
ckitagawa | 6fd7b450 | 2022-08-15 19:25:57 | [diff] [blame] | 3505 | const char kBindingManagerUseNotPerceptibleBindingName[] = |
| 3506 | "Reduced background renderer binding"; |
| 3507 | const char kBindingManagerUseNotPerceptibleBindingDescription[] = |
| 3508 | "When enabled, uses a not perceptible binding for background renderers " |
| 3509 | "used in the current session if able."; |
| 3510 | |
Wenyu Fu | f929f73 | 2022-07-08 19:48:47 | [diff] [blame] | 3511 | const char kCCTBrandTransparencyName[] = |
| 3512 | "Chrome Custom Tabs Brand Transparency"; |
| 3513 | const char kCCTBrandTransparencyDescription[] = |
| 3514 | "When enabled, CCT will show more Chrome branding information when start, " |
| 3515 | "giving user more transparency that the web page is running in Chrome."; |
| 3516 | |
Ramin Halavati | ba7ddcc | 2019-11-13 06:19:28 | [diff] [blame] | 3517 | const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode"; |
| 3518 | const char kCCTIncognitoDescription[] = |
| 3519 | "Enables incognito mode for Chrome Custom Tabs, on Android."; |
| 3520 | |
Rohit Agarwal | c397331 | 2020-11-18 14:40:23 | [diff] [blame] | 3521 | const char kCCTIncognitoAvailableToThirdPartyName[] = |
| 3522 | "Allow third party to open Custom Tabs Incognito mode"; |
| 3523 | const char kCCTIncognitoAvailableToThirdPartyDescription[] = |
| 3524 | "Enabling it would allow third party apps to open incognito mode for " |
| 3525 | "Chrome Custom Tabs, on Android."; |
| 3526 | |
Shimi Zhang | dabb3c2 | 2021-09-16 22:10:25 | [diff] [blame] | 3527 | const char kCCTResizable90MaximumHeightName[] = |
| 3528 | "Bottom sheet Custom Tabs maximum height"; |
| 3529 | const char kCCTResizable90MaximumHeightDescription[] = |
| 3530 | "When enabled, the bottom sheet Custom Tabs will have maximum height 90% " |
| 3531 | "of the screen height, otherwise the maximum height is 100% of the screen " |
| 3532 | "height. In both cases, Custom Tabs will yield to the top status bar when " |
| 3533 | "at full stop"; |
Shimi Zhang | dabb3c2 | 2021-09-16 22:10:25 | [diff] [blame] | 3534 | const char kCCTResizableForThirdPartiesName[] = |
| 3535 | "Bottom sheet Custom Tabs (third party)"; |
| 3536 | const char kCCTResizableForThirdPartiesDescription[] = |
| 3537 | "Enable bottom sheet Custom Tabs for third party apps."; |
Kevin Grosu | 617332a | 2022-11-22 23:24:55 | [diff] [blame] | 3538 | const char kCCTResizableSideSheetName[] = "Side sheet Custom Tabs"; |
| 3539 | const char kCCTResizableSideSheetDescription[] = |
| 3540 | "Enable side sheet Custom Tabs"; |
Zach Katz | ec1cc2f | 2023-01-26 01:37:46 | [diff] [blame] | 3541 | const char kCCTResizableSideSheetForThirdPartiesName[] = |
| 3542 | "Side sheet Custom Tabs (third party)"; |
| 3543 | const char kCCTResizableSideSheetForThirdPartiesDescription[] = |
| 3544 | "Enable side sheet Custom Tabs for third party apps."; |
Kevin Grosu | 617332a | 2022-11-22 23:24:55 | [diff] [blame] | 3545 | |
Zach Katz | dc587ef | 2022-10-28 18:35:26 | [diff] [blame] | 3546 | const char kCCTRetainingStateInMemoryName[] = |
| 3547 | "Enable restoring of previous Custom Tab session"; |
| 3548 | const char kCCTRetainingStateInMemoryDescription[] = |
| 3549 | "Enables ability to fully restore a recently engaged with Custom Tab."; |
Sinan Sahin | c04b1c6 | 2022-07-01 18:14:02 | [diff] [blame] | 3550 | const char kCCTRealTimeEngagementSignalsName[] = |
| 3551 | "Enable CCT real-time engagement signals."; |
| 3552 | const char kCCTRealTimeEngagementSignalsDescription[] = |
| 3553 | "Enables sending real-time engagement signals (e.g. scroll) through " |
| 3554 | "CustomTabsCallback."; |
| 3555 | |
Xing Liu | 1e6b43d | 2021-03-15 19:26:45 | [diff] [blame] | 3556 | const char kChimeAlwaysShowNotificationDescription[] = |
| 3557 | "A debug flag to always show Chime notification after receiving a payload."; |
| 3558 | const char kChimeAlwaysShowNotificationName[] = |
| 3559 | "Always show Chime notification"; |
| 3560 | |
| 3561 | const char kChimeAndroidSdkDescription[] = |
| 3562 | "Enable Chime SDK to receive push notification."; |
| 3563 | const char kChimeAndroidSdkName[] = "Use Chime SDK"; |
| 3564 | |
Tanya Gupta | befbdb3 | 2020-10-28 19:36:55 | [diff] [blame] | 3565 | const char kChromeShareLongScreenshotName[] = "Chrome Share Long Screenshots"; |
| 3566 | const char kChromeShareLongScreenshotDescription[] = |
| 3567 | "Enables UI to edit and share long screenshots on Android"; |
| 3568 | |
Travis Skare | f97f1fd | 2022-09-01 01:26:43 | [diff] [blame] | 3569 | const char kChromeSharingCrowLaunchTabName[] = |
| 3570 | "Launch Thank Creator actions in standard tab"; |
| 3571 | const char kChromeSharingCrowLaunchTabDescription[] = |
| 3572 | "Launches Thank Creator actions in a traditional new tab; default is a " |
| 3573 | "custom tab. For internal debugging."; |
| 3574 | |
Travis Skare | edcee1564 | 2021-09-16 15:49:38 | [diff] [blame] | 3575 | const char kChromeSharingHubLaunchAdjacentName[] = |
| 3576 | "Launch new share hub actions in adjacent window"; |
| 3577 | const char kChromeSharingHubLaunchAdjacentDescription[] = |
| 3578 | "In multi-window mode, launches share hub actions in an adjacent window. " |
| 3579 | "For internal debugging."; |
| 3580 | |
David Maunder | 915c7ef | 2019-09-20 16:22:08 | [diff] [blame] | 3581 | const char kCloseTabSuggestionsName[] = "Suggest to close Tabs"; |
| 3582 | const char kCloseTabSuggestionsDescription[] = |
| 3583 | "Suggests to the user to close Tabs that haven't been used beyond a " |
| 3584 | "configurable threshold or where duplicates of Tabs exist. " |
| 3585 | "The threshold is configurable."; |
Richard Knoll | 368596e5 | 2019-08-14 09:16:28 | [diff] [blame] | 3586 | |
David Maunder | 8cf7fd8 | 2020-08-20 19:31:54 | [diff] [blame] | 3587 | const char kCriticalPersistedTabDataName[] = "Enable CriticalPersistedTabData"; |
| 3588 | const char kCriticalPersistedTabDataDescription[] = |
| 3589 | "A new method of persisting Tab data across restarts has been devised " |
| 3590 | "and implemented. This actives the new approach."; |
| 3591 | |
Wenyu Fu | 54672f4 | 2022-09-22 17:51:51 | [diff] [blame] | 3592 | const char kContextMenuPopupForAllScreenSizesName[] = |
| 3593 | "Context menu popup for all screen sizes"; |
| 3594 | const char kContextMenuPopupForAllScreenSizesDescription[] = |
| 3595 | "When disabled, context menu will be shown as pop-up window only for " |
| 3596 | "devices in tablet mode, while shown as a fullscreen dialog for mobile " |
| 3597 | "devices; when enabled, context menu will be shown as a pop-up window " |
| 3598 | "for all form factors regardless of the screen sizes."; |
| 3599 | |
Donn Denman | 19688bc | 2021-03-05 18:48:40 | [diff] [blame] | 3600 | const char kContextualSearchForceCaptionName[] = |
| 3601 | "Contextual Search force a caption"; |
| 3602 | const char kContextualSearchForceCaptionDescription[] = |
| 3603 | "Forces a caption to always be shown in the Touch to Search Bar."; |
Donn Denman | 4315f26 | 2019-03-02 02:47:41 | [diff] [blame] | 3604 | |
Donn Denman | 05a5b99b | 2022-07-27 23:38:44 | [diff] [blame] | 3605 | const char kContextualSearchSuppressShortViewName[] = |
| 3606 | "Contextual Search suppress short view"; |
| 3607 | const char kContextualSearchSuppressShortViewDescription[] = |
| 3608 | "Contextual Search suppress when the base page view is too short"; |
| 3609 | |
Fabio Tirelo | 918089a | 2018-10-22 21:24:08 | [diff] [blame] | 3610 | const char kAutofillManualFallbackAndroidName[] = |
| 3611 | "Enable Autofill manual fallback for Addresses and Payments (Android)"; |
| 3612 | const char kAutofillManualFallbackAndroidDescription[] = |
| 3613 | "If enabled, adds toggle for addresses and payments bottom sheet to the " |
| 3614 | "keyboard accessory."; |
| 3615 | |
Fabio Tirelo | 315e6592 | 2018-09-05 03:35:49 | [diff] [blame] | 3616 | const char kEnableAutofillRefreshStyleName[] = |
| 3617 | "Enable Autofill refresh style (Android)"; |
| 3618 | const char kEnableAutofillRefreshStyleDescription[] = |
| 3619 | "Enable modernized style for Autofill on Android"; |
| 3620 | |
Lei Tian | bd5a3bf | 2018-02-28 19:01:16 | [diff] [blame] | 3621 | const char kEnableCommandLineOnNonRootedName[] = |
| 3622 | "Enable command line on non-rooted devices"; |
| 3623 | const char kEnableCommandLineOnNoRootedDescription[] = |
| 3624 | "Enable reading command line file on non-rooted devices (DANGEROUS)."; |
| 3625 | |
Victor Hugo Vianna Silva | bb878dea | 2022-10-18 10:19:04 | [diff] [blame] | 3626 | const char kEnablePasswordsAccountStorageName[] = |
| 3627 | "Enable the account data storage for passwords"; |
| 3628 | const char kEnablePasswordsAccountStorageDescription[] = |
| 3629 | "Enables storing passwords in a second, Gaia-account-scoped storage for " |
| 3630 | "signed-in but not syncing users"; |
| 3631 | |
David Bokan | 764946d | 2022-10-11 17:48:33 | [diff] [blame] | 3632 | const char kEnableOskResizesVisualViewportByDefaultName[] = |
| 3633 | "Enable OSK resizes visual viewport by default"; |
| 3634 | const char kEnableOskResizesVisualViewportByDefaultDescription[] = |
| 3635 | "Unless explicitly overriden by the page author, the Android " |
| 3636 | "On-Screen-Keyboard (OSK) will avoid changing the page height, resizing " |
| 3637 | "only the visual viewport."; |
David Bokan | f1e9d03 | 2022-08-18 20:47:01 | [diff] [blame] | 3638 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 3639 | const char kExploreSitesName[] = "Explore websites"; |
| 3640 | const char kExploreSitesDescription[] = |
| 3641 | "Enables portal from new tab page to explore websites."; |
| 3642 | |
Michael Thiessen | 495a0d3 | 2022-08-24 17:58:19 | [diff] [blame] | 3643 | const char kExternalNavigationDebugLogsName[] = |
| 3644 | "External Navigation Debug Logs"; |
| 3645 | const char kExternalNavigationDebugLogsDescription[] = |
| 3646 | "Enables detailed logging to logcat about why Chrome is making decisions " |
| 3647 | "about whether to allow or block navigation to other apps"; |
| 3648 | |
Shakti Sahu | edcbaef | 2022-01-18 19:54:21 | [diff] [blame] | 3649 | const char kFeatureNotificationGuideName[] = "Feature notification guide"; |
| 3650 | const char kFeatureNotificationGuideDescription[] = |
| 3651 | "Enables notifications about chrome features."; |
| 3652 | |
Shakti Sahu | 6c4afcde | 2022-01-31 23:03:54 | [diff] [blame] | 3653 | const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersName[] = |
| 3654 | "Feature notification guide - Skip check for low engaged users"; |
| 3655 | const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersDescription[] = |
| 3656 | "Skips check for low engaged users."; |
| 3657 | |
Jian Li | c22a3ce | 2021-08-31 15:46:59 | [diff] [blame] | 3658 | const char kFeedBackToTopName[] = "Back to top of the feeds"; |
| 3659 | const char kFeedBackToTopDescription[] = |
| 3660 | "Enables showing a callout to help users return to the top of the feeds " |
| 3661 | "quickly."; |
| 3662 | |
Nick Birnie | 3e6ed41 | 2023-01-10 22:36:17 | [diff] [blame] | 3663 | const char kFeedBottomSyncBannerName[] = "Show Sync Promotion"; |
| 3664 | const char kFeedBottomSyncBannerDescription[] = |
| 3665 | "Enables the Sync promo banner to be" |
| 3666 | " shown at bottom of Chrome Feed."; |
| 3667 | |
Cathy Wei | e5c7d61 | 2022-10-14 18:55:07 | [diff] [blame] | 3668 | const char kFeedHeaderStickToTopName[] = "Feed header stick to top"; |
| 3669 | const char kFeedHeaderStickToTopDescription[] = |
| 3670 | "Stick feed header to top on scroll."; |
| 3671 | |
Justin DeWitt | 3eca437 | 2021-09-17 19:44:52 | [diff] [blame] | 3672 | const char kFeedLoadingPlaceholderName[] = "Feed loading placeholder"; |
| 3673 | const char kFeedLoadingPlaceholderDescription[] = |
| 3674 | "Enables a placeholder UI in " |
| 3675 | "the feed instead of the loading spinner at first load."; |
| 3676 | |
Jonathan Freed | aa862a54 | 2021-09-03 17:42:25 | [diff] [blame] | 3677 | const char kFeedStampName[] = "StAMP cards in the feed"; |
| 3678 | const char kFeedStampDescription[] = "Enables StAMP cards in the feed."; |
| 3679 | |
Ian Wells | 6cf75a8 | 2022-07-13 02:11:02 | [diff] [blame] | 3680 | const char kFeedCloseRefreshName[] = "Feed-close refresh"; |
| 3681 | const char kFeedCloseRefreshDescription[] = |
| 3682 | "Enables scheduling a background refresh of the feed following feed use."; |
| 3683 | |
Jian Li | 20f07f59 | 2022-08-23 22:21:55 | [diff] [blame] | 3684 | const char kFeedVideoInlinePlaybackName[] = "Feed video inline playback"; |
| 3685 | const char kFeedVideoInlinePlaybackDescription[] = |
| 3686 | "Enable playing feed video in inline playback mode."; |
| 3687 | |
Jonathan Freed | 4adf604f | 2022-08-31 17:06:14 | [diff] [blame] | 3688 | const char kFeedDiscoFeedEndpointName[] = |
| 3689 | "Feed using the DiscoFeed backend endpoint"; |
| 3690 | const char kFeedDiscoFeedEndpointDescription[] = |
| 3691 | "Uses the DiscoFeed endpoint for serving the feed instead of GWS."; |
| 3692 | |
Neil Coronado | 9e95d96 | 2021-12-01 01:51:48 | [diff] [blame] | 3693 | const char kGridTabSwitcherForTabletsName[] = "Grid tab switcher for tablets"; |
| 3694 | const char kGridTabSwitcherForTabletsDescription[] = |
| 3695 | "Enable grid tab switcher for tablets, replacing the tab strip."; |
| 3696 | |
Fabio Tirelo | 86429cb | 2022-10-25 22:25:19 | [diff] [blame] | 3697 | const char kHighlightManagedPrefDisclaimerAndroidName[] = |
| 3698 | "Highlight managed disclaimer for preferences"; |
| 3699 | const char kHighlightManagedPrefDisclaimerAndroidDescription[] = |
| 3700 | "Enables new Settings UI on Android that makes it more prominent that a " |
| 3701 | "preference is managed by the administrator or a custodian."; |
| 3702 | |
Jian Li | e41ddcb | 2022-05-04 01:11:56 | [diff] [blame] | 3703 | const char kInfoCardAcknowledgementTrackingName[] = |
| 3704 | "Info card acknowledgement tracking"; |
| 3705 | const char kInfoCardAcknowledgementTrackingDescription[] = |
| 3706 | "Enable acknowledgement tracking for info cards."; |
| 3707 | |
Jinsuk Kim | fa1b7eb | 2021-06-30 00:04:32 | [diff] [blame] | 3708 | const char kInstanceSwitcherName[] = "Enable instance switcher"; |
| 3709 | const char kInstanceSwitcherDescription[] = |
| 3710 | "Enable instance switcher dialog UI that helps users manage multiple " |
| 3711 | "instances of Chrome."; |
| 3712 | |
Wei-Yin Chen (陳威尹) | 8514944 | 2020-06-30 22:28:46 | [diff] [blame] | 3713 | const char kInstantStartName[] = "Instant start"; |
Wei-Yin Chen (陳威尹) | 50c2f46 | 2020-05-14 07:27:42 | [diff] [blame] | 3714 | const char kInstantStartDescription[] = |
| 3715 | "Show start surface before native library is loaded."; |
| 3716 | |
Ian Wells | 34ce148 | 2020-04-03 17:36:16 | [diff] [blame] | 3717 | const char kInterestFeedV2Name[] = "Interest Feed v2"; |
| 3718 | const char kInterestFeedV2Description[] = |
| 3719 | "Show content suggestions on the New Tab Page and Start Surface using the " |
| 3720 | "new Feed Component."; |
| 3721 | |
Dan Harrington | 4043b22 | 2021-01-15 18:33:42 | [diff] [blame] | 3722 | const char kInterestFeedV2HeartsName[] = "Interest Feed v2 Hearts"; |
| 3723 | const char kInterestFeedV2HeartsDescription[] = "Enable hearts on Feedv2."; |
| 3724 | |
Jian Li | fb04af7 | 2021-04-01 21:17:17 | [diff] [blame] | 3725 | const char kInterestFeedV2AutoplayName[] = "Interest Feed v2 Autoplay"; |
| 3726 | const char kInterestFeedV2AutoplayDescription[] = "Enable autoplay on Feedv2."; |
| 3727 | |
Aishwarya Rajesh | 0dd7192 | 2021-07-28 20:22:38 | [diff] [blame] | 3728 | const char kMessagesForAndroidAdsBlockedName[] = "Ads Blocked Messages UI"; |
| 3729 | const char kMessagesForAndroidAdsBlockedDescription[] = |
| 3730 | "When enabled, ads blocked message will use the new Messages UI."; |
| 3731 | |
Pavel Yatsuk | 35829175 | 2020-09-03 18:25:22 | [diff] [blame] | 3732 | const char kMessagesForAndroidInfrastructureName[] = "Messages infrastructure"; |
| 3733 | const char kMessagesForAndroidInfrastructureDescription[] = |
| 3734 | "When enabled, will initialize Messages UI infrastructure"; |
Pavel Yatsuk | b3a7475e | 2021-05-10 21:20:15 | [diff] [blame] | 3735 | |
Lijin Shen | 92af4f7 | 2021-08-06 20:47:22 | [diff] [blame] | 3736 | const char kMessagesForAndroidNotificationBlockedName[] = |
| 3737 | "Notification Blocked Messages UI"; |
| 3738 | const char kMessagesForAndroidNotificationBlockedDescription[] = |
| 3739 | "When enabled, notification blocked prompt will use the new Messages UI."; |
| 3740 | |
Vishwas Uppoor | 8031d64 | 2022-05-10 01:28:51 | [diff] [blame] | 3741 | extern const char kMessagesForAndroidOfferNotificationName[] = |
| 3742 | "Offer Notification Messages UI"; |
| 3743 | extern const char kMessagesForAndroidOfferNotificationDescription[] = |
| 3744 | "When enabled, offer notification will use the new Messages UI"; |
| 3745 | |
Lijin Shen | 2d61a0a3 | 2021-07-20 23:15:52 | [diff] [blame] | 3746 | const char kMessagesForAndroidPermissionUpdateName[] = |
| 3747 | "Permission Update Messages UI"; |
| 3748 | const char kMessagesForAndroidPermissionUpdateDescription[] = |
| 3749 | "When enabled, permission update prompt will use the new Messages UI."; |
| 3750 | |
Lijin Shen | ba9a6b0e | 2021-02-18 01:59:06 | [diff] [blame] | 3751 | const char kMessagesForAndroidPopupBlockedName[] = "Popup Blocked Messages UI"; |
| 3752 | const char kMessagesForAndroidPopupBlockedDescription[] = |
Pavel Yatsuk | b3a7475e | 2021-05-10 21:20:15 | [diff] [blame] | 3753 | "When enabled, popup blocked prompt will use the new Messages UI."; |
| 3754 | |
Pavel Yatsuk | b7307fa | 2021-09-15 18:02:30 | [diff] [blame] | 3755 | const char kMessagesForAndroidPWAInstallName[] = "PWA Installation Messages UI"; |
| 3756 | const char kMessagesForAndroidPWAInstallDescription[] = |
| 3757 | "When enabled, PWA Installation prompt will use the new Messages UI."; |
| 3758 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 3759 | const char kMessagesForAndroidSaveCardName[] = "Save Card Messages UI"; |
| 3760 | const char kMessagesForAndroidSaveCardDescription[] = |
Pavel Yatsuk | b3a7475e | 2021-05-10 21:20:15 | [diff] [blame] | 3761 | "When enabled, save card prompt will use the new Messages UI."; |
| 3762 | |
Lijin Shen | 0e049c43 | 2022-04-05 23:12:43 | [diff] [blame] | 3763 | const char kMessagesForAndroidStackingAnimationName[] = |
| 3764 | "Stacking Animation of Messages UI"; |
| 3765 | const char kMessagesForAndroidStackingAnimationDescription[] = |
| 3766 | "When enabled, Messages UI will use the new stacking animation."; |
| 3767 | |
Yutaka Hirano | 639d974 | 2022-05-13 12:35:16 | [diff] [blame] | 3768 | const char kNetworkServiceInProcessName[] = |
| 3769 | "Run the network service on the browser process"; |
| 3770 | const char kNetworkServiceInProcessDescription[] = |
| 3771 | "When enabled, the network service runs on the browser process. Otherwise, " |
| 3772 | "it runs on a dedicated process."; |
| 3773 | |
Salvador Guerrero | 4d5ff6e6 | 2022-03-24 00:03:20 | [diff] [blame] | 3774 | const char kNotificationPermissionRationaleName[] = |
| 3775 | "Notification Permission Rationale UI"; |
| 3776 | const char kNotificationPermissionRationaleDescription[] = |
| 3777 | "Configure the dialog shown before requesting notification permission. " |
| 3778 | "Only works with builds targeting Android T."; |
| 3779 | |
Salvador Guerrero | 0af3699 | 2023-01-23 20:46:47 | [diff] [blame] | 3780 | const char kNotificationPermissionRationaleBottomSheetName[] = |
| 3781 | "Notification Permission Rationale Bottom Sheet UI"; |
| 3782 | const char kNotificationPermissionRationaleBottomSheetDescription[] = |
| 3783 | "Enable the alternative bottom sheet UI for the notification permission " |
| 3784 | "flow. " |
| 3785 | "Only works with builds targeting Android T+."; |
| 3786 | |
Yafei Duan | 36b4b5b | 2018-08-07 00:40:03 | [diff] [blame] | 3787 | const char kOfflinePagesLivePageSharingName[] = |
| 3788 | "Enables live page sharing of offline pages"; |
| 3789 | const char kOfflinePagesLivePageSharingDescription[] = |
| 3790 | "Enables to share current loaded page as offline page by saving as MHTML " |
| 3791 | "first."; |
| 3792 | |
Jordan Oroshiba | 244e9ff | 2021-02-04 22:20:39 | [diff] [blame] | 3793 | const char kPageInfoHistoryName[] = "Page info history"; |
| 3794 | const char kPageInfoHistoryDescription[] = |
| 3795 | "Enable a history sub page to the page info menu, and a button to forget " |
| 3796 | "a site, removing all preferences and history."; |
| 3797 | |
Zhiyuan Cai | 9b83ba0 | 2021-10-07 16:26:30 | [diff] [blame] | 3798 | const char kPageInfoStoreInfoName[] = "Page info store info"; |
| 3799 | const char kPageInfoStoreInfoDescription[] = |
| 3800 | "Enable a store info row to the page info menu on eligible pages."; |
| 3801 | |
Zaina Al-Mashni | 2df0e5f | 2023-01-20 11:09:26 | [diff] [blame] | 3802 | const char kPageInfoAboutThisSiteImprovedBottomSheetName[] = |
| 3803 | "Page info 'About this site' improved bottomsheet"; |
| 3804 | const char kPageInfoAboutThisSiteImprovedBottomSheetDescription[] = |
| 3805 | "Enable an improved 'About this site' bottomsheet, which includes a " |
| 3806 | "less cluttered toolbar view and opening navigations in a new tab."; |
| 3807 | |
Salma Elmahallawy | dcdfa9e | 2023-01-30 18:42:24 | [diff] [blame] | 3808 | const char kPolicyLogsPageAndroidName[] = "Policy Logs Page on Android"; |
| 3809 | const char kPolicyLogsPageAndroidDescription[] = |
| 3810 | "Enable the new chrome://policy-logs page containing logs for debugging " |
| 3811 | "policy related issues on Android."; |
| 3812 | |
Shakti Sahu | 1f8a942 | 2020-03-12 05:50:50 | [diff] [blame] | 3813 | const char kQueryTilesName[] = "Show query tiles"; |
| 3814 | const char kQueryTilesDescription[] = "Shows query tiles in Chrome"; |
Shakti Sahu | cad2a0a | 2020-10-23 06:42:28 | [diff] [blame] | 3815 | const char kQueryTilesNTPName[] = "Show query tiles in NTP"; |
| 3816 | const char kQueryTilesNTPDescription[] = "Shows query tiles in NTP"; |
Min Qin | eb0c215 | 2022-08-26 19:13:12 | [diff] [blame] | 3817 | const char kQueryTilesOnStartName[] = "Query tiles on start"; |
| 3818 | const char kQueryTilesOnStartDescription[] = |
| 3819 | "Show query tiles on start surface"; |
Shakti Sahu | 8fe5edd | 2020-05-14 18:57:13 | [diff] [blame] | 3820 | const char kQueryTilesSingleTierName[] = "Show only one level of query tiles"; |
| 3821 | const char kQueryTilesSingleTierDescription[] = |
| 3822 | "Show only one level of query tiles"; |
Shakti Sahu | dfb4099 | 2020-05-12 14:54:54 | [diff] [blame] | 3823 | const char kQueryTilesEnableQueryEditingName[] = |
| 3824 | "Query Tiles - Enable query edit mode"; |
| 3825 | const char kQueryTilesEnableQueryEditingDescription[] = |
| 3826 | "When a query tile is tapped, the query text will be shown in the omnibox " |
| 3827 | "and user will have a chance to edit the text before submitting"; |
Min Qin | eac94ae | 2020-08-14 06:38:45 | [diff] [blame] | 3828 | const char kQueryTilesEnableTrendingName[] = |
| 3829 | "Query Tiles - Enable trending queries"; |
| 3830 | const char kQueryTilesEnableTrendingDescription[] = |
| 3831 | "Allow tiles of trending queries to show up in front of curated tiles"; |
Min Qin | db99e6f | 2020-04-29 06:37:26 | [diff] [blame] | 3832 | const char kQueryTilesCountryCode[] = "Country code for getting tiles"; |
| 3833 | const char kQueryTilesCountryCodeDescription[] = |
| 3834 | "When query tiles are enabled, this value determines tiles for which " |
| 3835 | "country should be displayed."; |
| 3836 | const char kQueryTilesCountryCodeUS[] = "US"; |
| 3837 | const char kQueryTilesCountryCodeIndia[] = "IN"; |
| 3838 | const char kQueryTilesCountryCodeBrazil[] = "BR"; |
| 3839 | const char kQueryTilesCountryCodeNigeria[] = "NG"; |
| 3840 | const char kQueryTilesCountryCodeIndonesia[] = "ID"; |
Shakti Sahu | 8fe5edd | 2020-05-14 18:57:13 | [diff] [blame] | 3841 | const char kQueryTilesInstantFetchName[] = "Query tile instant fetch"; |
Xing Liu | 06f2fa0 | 2020-04-30 02:45:19 | [diff] [blame] | 3842 | const char kQueryTilesInstantFetchDescription[] = |
| 3843 | "Immediately schedule background task to fetch query tiles"; |
Min Qin | be050b7 | 2021-06-26 01:32:39 | [diff] [blame] | 3844 | const char kQueryTilesRankTilesName[] = "Query Tiles - rank tiles on server"; |
| 3845 | const char kQueryTilesRankTilesDescription[] = |
| 3846 | "Rank tiles on server based on client context"; |
Min Qin | db78946 | 2021-08-26 04:00:11 | [diff] [blame] | 3847 | const char kQueryTilesSegmentationName[] = |
| 3848 | "Query Tiles - use segmentation rules"; |
| 3849 | const char kQueryTilesSegmentationDescription[] = |
| 3850 | "enable segmentation rules to decide whether to show query tiles"; |
Min Qin | 60ae5b8 | 2021-01-07 07:07:50 | [diff] [blame] | 3851 | const char kQueryTilesSwapTrendingName[] = |
| 3852 | "Query Tiles - Swap trending queries"; |
| 3853 | const char kQueryTilesSwapTrendingDescription[] = |
| 3854 | "Swap trending queries if user didn't click on them after several " |
| 3855 | "impressions"; |
Min Qin | db99e6f | 2020-04-29 06:37:26 | [diff] [blame] | 3856 | |
Caroline Rising | db7df18 | 2021-01-11 19:49:14 | [diff] [blame] | 3857 | const char kReadLaterFlagId[] = "read-later"; |
| 3858 | const char kReadLaterName[] = "Reading List"; |
| 3859 | const char kReadLaterDescription[] = |
| 3860 | "Allow users to save tabs for later. Enables a new button and menu for " |
| 3861 | "accessing tabs saved for later."; |
| 3862 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 3863 | const char kReaderModeHeuristicsName[] = "Reader Mode triggering"; |
| 3864 | const char kReaderModeHeuristicsDescription[] = |
| 3865 | "Determines what pages the Reader Mode infobar is shown on."; |
| 3866 | const char kReaderModeHeuristicsMarkup[] = "With article structured markup"; |
| 3867 | const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles"; |
| 3868 | const char kReaderModeHeuristicsAllArticles[] = "All articles"; |
| 3869 | const char kReaderModeHeuristicsAlwaysOff[] = "Never"; |
| 3870 | const char kReaderModeHeuristicsAlwaysOn[] = "Always"; |
| 3871 | |
Wei-Yin Chen (陳威尹) | 41b2241 | 2017-07-21 02:51:18 | [diff] [blame] | 3872 | const char kReaderModeInCCTName[] = "Reader Mode in CCT"; |
| 3873 | const char kReaderModeInCCTDescription[] = |
| 3874 | "Open Reader Mode in Chrome Custom Tabs."; |
| 3875 | |
Xing Liu | b907026 | 2021-01-07 20:52:16 | [diff] [blame] | 3876 | const char kReadLaterReminderNotificationName[] = |
| 3877 | "Read later reminder notification"; |
| 3878 | const char kReadLaterReminderNotificationDescription[] = |
| 3879 | "Enables read later weekly reminder notification."; |
| 3880 | |
Ioana Pandele | 9fc19b2f | 2020-01-23 22:16:50 | [diff] [blame] | 3881 | const char kRecoverFromNeverSaveAndroidName[] = |
| 3882 | "UI to recover from never save passwords on Android"; |
| 3883 | const char kRecoverFromNeverSaveAndroidDescription[] = |
| 3884 | "Enables showing UI which allows for easy reverting of the decision to " |
| 3885 | "never save passwords on a certain webiste"; |
| 3886 | |
Victor Tan | 5980f4e5 | 2022-11-11 20:21:45 | [diff] [blame] | 3887 | const char kReduceUserAgentAndroidVersionDeviceModelName[] = |
| 3888 | "Reduce the device model and Android version in the andriod User-Agent " |
| 3889 | "string"; |
| 3890 | const char kReduceUserAgentAndroidVersionDeviceModelDescription[] = |
| 3891 | "Enables reducing the device model and Android version in the andriod " |
| 3892 | "User-Agent string. The device model will be reported as `K` and the " |
| 3893 | "Android version will be reported as a static `10` string."; |
| 3894 | |
David Trainor | a38e60e | 2020-08-04 23:43:25 | [diff] [blame] | 3895 | const char kReengagementNotificationName[] = |
| 3896 | "Enable re-engagement notifications"; |
| 3897 | const char kReengagementNotificationDescription[] = |
| 3898 | "Enables Chrome to use the in-product help system to decide when " |
| 3899 | "to show re-engagement notifications."; |
| 3900 | |
Donn Denman | c42123c | 2020-03-19 01:44:24 | [diff] [blame] | 3901 | const char kRelatedSearchesName[] = |
| 3902 | "Enables an experiment for Related Searches on Android"; |
| 3903 | const char kRelatedSearchesDescription[] = |
Donn Denman | 15522f4 | 2021-02-09 22:49:49 | [diff] [blame] | 3904 | "Enables requesting related searches suggestions. These will be requested " |
| 3905 | "but not shown unless the UI flag is also enabled."; |
| 3906 | |
| 3907 | const char kRelatedSearchesUiName[] = |
| 3908 | "Forces showing of the Related Searches UI on Android"; |
| 3909 | const char kRelatedSearchesUiDescription[] = |
| 3910 | "Forces the Related Searches UI and underlying requests to be enabled " |
| 3911 | "regardless of whether they are safe or useful. This requires the Related " |
| 3912 | "Searches feature flag to also be enabled."; |
Donn Denman | c42123c | 2020-03-19 01:44:24 | [diff] [blame] | 3913 | |
Shu Yang | d1d8f6b8 | 2022-06-30 18:46:28 | [diff] [blame] | 3914 | const char kRequestDesktopSiteAdditionsName[] = |
| 3915 | "Secondary settings for request desktop site on Android."; |
| 3916 | const char kRequestDesktopSiteAdditionsDescription[] = |
| 3917 | "Secondary options in `Site settings` to request the desktop version of " |
| 3918 | "websites based on external display or peripheral."; |
| 3919 | |
Aishwarya Rajesh | 3d0bd21 | 2022-07-22 22:48:31 | [diff] [blame] | 3920 | const char kRequestDesktopSiteDefaultsName[] = |
| 3921 | "Default settings for request desktop site on Android."; |
| 3922 | const char kRequestDesktopSiteDefaultsDescription[] = |
| 3923 | "Request the desktop version of websites by default based on device " |
| 3924 | "conditions."; |
| 3925 | |
Aishwarya Rajesh | ed9865f8 | 2022-09-12 22:46:57 | [diff] [blame] | 3926 | const char kRequestDesktopSiteDefaultsDowngradeName[] = |
| 3927 | "Downgrade default settings for request desktop site on Android."; |
| 3928 | const char kRequestDesktopSiteDefaultsDowngradeDescription[] = |
| 3929 | "Disable the request desktop site global setting if it was enabled by " |
| 3930 | "default based on device conditions."; |
| 3931 | |
Aishwarya Rajesh | 63e60f7 | 2022-08-26 00:34:19 | [diff] [blame] | 3932 | const char kRequestDesktopSiteExceptionsDowngradeName[] = |
| 3933 | "Downgrade request desktop site exceptions on Android."; |
| 3934 | const char kRequestDesktopSiteExceptionsDowngradeDescription[] = |
| 3935 | "Downgrade request desktop site domain level settings to tab level " |
| 3936 | "settings."; |
| 3937 | |
Shu Yang | a2ec2d1 | 2021-11-15 22:13:15 | [diff] [blame] | 3938 | const char kRequestDesktopSiteExceptionsName[] = |
| 3939 | "Per-site setting to request desktop site on Android."; |
| 3940 | const char kRequestDesktopSiteExceptionsDescription[] = |
| 3941 | "An option in `Site settings` to request the desktop version of websites " |
Shu Yang | d1d8f6b8 | 2022-06-30 18:46:28 | [diff] [blame] | 3942 | "based on site level settings."; |
Shu Yang | a2ec2d1 | 2021-11-15 22:13:15 | [diff] [blame] | 3943 | |
Aishwarya Rajesh | a327b16 | 2023-01-06 01:34:42 | [diff] [blame] | 3944 | const char kRequestDesktopSitePerSiteIphName[] = |
| 3945 | "Contextual help for request desktop site site-level settings on Android."; |
| 3946 | const char kRequestDesktopSitePerSiteIphDescription[] = |
| 3947 | "Provide in-product help for desktop site site-level settings."; |
| 3948 | |
Aishwarya Rajesh | 7b43f26 | 2022-11-02 20:22:04 | [diff] [blame] | 3949 | const char kRequestDesktopSiteZoomName[] = |
| 3950 | "Default zoom for request desktop site on Android."; |
| 3951 | const char kRequestDesktopSiteZoomDescription[] = |
| 3952 | "Apply default page zoom on the desktop version of websites."; |
| 3953 | |
Illia Klimov | 352f34a | 2022-08-18 13:45:13 | [diff] [blame] | 3954 | const char kRevokeNotificationsPermissionIfDisabledOnAppLevelName[] = |
| 3955 | "Revoke site-level notification permission on Android"; |
| 3956 | const char kRevokeNotificationsPermissionIfDisabledOnAppLevelDescription[] = |
| 3957 | "Allow revoking site-level notification permission if Chrome has no " |
| 3958 | "app-level notification permission on Android."; |
| 3959 | |
Henrique Nakashima | aa6c314 | 2022-07-14 21:53:11 | [diff] [blame] | 3960 | const char kSafeModeForCachedFlagsName[] = "Safe Mode for Cached Flags"; |
| 3961 | const char kSafeModeForCachedFlagsDescription[] = |
| 3962 | "Attempts recovery from startup crash loops caused by a bad field trial " |
| 3963 | "by rolling back to previous known safe flag values."; |
| 3964 | |
Kenechi Okoye | ff5bd5f | 2022-06-13 20:47:53 | [diff] [blame] | 3965 | const char kScreenshotsForAndroidV2Name[] = "Screenshots for Android V2"; |
| 3966 | const char kScreenshotsForAndroidV2Description[] = |
| 3967 | "Adds functionality to the share screenshot panel within Chrome Browser" |
| 3968 | " on Android"; |
| 3969 | |
spdonghao | e4b5124 | 2022-03-14 23:06:18 | [diff] [blame] | 3970 | const char kShowScrollableMVTOnNTPAndroidName[] = "Show scrollable MVT on NTP"; |
| 3971 | const char kShowScrollableMVTOnNTPAndroidDescription[] = |
| 3972 | "Enable showing the scrollable most visited tiles on NTP."; |
| 3973 | |
Liquan (Max) Gu | f283461 | 2021-08-31 14:49:16 | [diff] [blame] | 3974 | const char kSecurePaymentConfirmationAndroidName[] = |
| 3975 | "Secure Payment Confirmation on Android"; |
| 3976 | const char kSecurePaymentConfirmationAndroidDescription[] = |
| 3977 | "Enables Secure Payment Confirmation on Android."; |
| 3978 | |
Elly Fong-Jones | 6fde14c | 2022-01-05 18:10:58 | [diff] [blame] | 3979 | const char kSendTabToSelfV2Name[] = "Send tab to self 2.0"; |
| 3980 | const char kSendTabToSelfV2Description[] = |
| 3981 | "Enables new received tab " |
| 3982 | "UI shown next to the profile icon instead of using system notifications."; |
| 3983 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 3984 | const char kSetMarketUrlForTestingName[] = "Set market URL for testing"; |
| 3985 | const char kSetMarketUrlForTestingDescription[] = |
| 3986 | "When enabled, sets the market URL for use in testing the update menu " |
| 3987 | "item."; |
| 3988 | |
Wenyu Fu | 2518c980 | 2023-02-08 23:52:26 | [diff] [blame] | 3989 | const char kShareSheetMigrationAndroidName[] = "Share sheet refactor Android"; |
| 3990 | const char kShareSheetMigrationAndroidDescription[] = |
| 3991 | "When enabled, use the Android OS share sheet."; |
| 3992 | |
Alex Moshchuk | 07e1bb4 | 2019-03-08 04:44:08 | [diff] [blame] | 3993 | const char kSiteIsolationForPasswordSitesName[] = |
| 3994 | "Site Isolation For Password Sites"; |
| 3995 | const char kSiteIsolationForPasswordSitesDescription[] = |
| 3996 | "Security mode that enables site isolation for sites based on " |
| 3997 | "password-oriented heuristics, such as a user typing in a password."; |
| 3998 | |
Hung Vu | c394db6 | 2020-08-21 21:26:52 | [diff] [blame] | 3999 | const char kSmartSuggestionForLargeDownloadsName[] = |
| 4000 | "Smart suggestion for large downloads"; |
| 4001 | const char kSmartSuggestionForLargeDownloadsDescription[] = |
| 4002 | "Smart suggestion that offers download locations for large files."; |
| 4003 | |
Ioana Pandele | 9fc19b2f | 2020-01-23 22:16:50 | [diff] [blame] | 4004 | const char kStartSurfaceAndroidName[] = "Start Surface"; |
| 4005 | const char kStartSurfaceAndroidDescription[] = |
| 4006 | "Enable showing the start surface when launching Chrome via the " |
| 4007 | "launcher."; |
| 4008 | |
Xi Han | 8e1b245 | 2022-05-26 15:43:16 | [diff] [blame] | 4009 | const char kFeedPositionAndroidName[] = "Feed Position"; |
| 4010 | const char kFeedPositionAndroidDescription[] = |
| 4011 | "Enable pushing down or pulling up of Feeds on NTP"; |
| 4012 | |
Xi Han | fe309c0 | 2022-06-07 16:57:26 | [diff] [blame] | 4013 | const char kSearchResumptionModuleAndroidName[] = "Search Resumption Module"; |
| 4014 | const char kSearchResumptionModuleAndroidDescription[] = |
| 4015 | "Enable showing search suggestions on NTP"; |
| 4016 | |
Andrey Zaytsev | 5794f89 | 2022-07-14 16:16:55 | [diff] [blame] | 4017 | const char kSiteDataImprovementsName[] = "Site data improvements"; |
| 4018 | const char kSiteDataImprovementsDescription[] = |
| 4019 | "Improved 'All sites' and 'Site settings' pages on Android."; |
| 4020 | |
spdonghao | 86345d5 | 2022-09-20 20:13:15 | [diff] [blame] | 4021 | const char kStartSurfaceDisabledFeedImprovementName[] = |
| 4022 | "Start Surface Disabled Feed Improvement"; |
| 4023 | const char kStartSurfaceDisabledFeedImprovementDescription[] = |
| 4024 | "Enable improving Start surface when Feed is disabled"; |
| 4025 | |
spdonghao | 921dbdf4 | 2022-07-12 19:02:34 | [diff] [blame] | 4026 | const char kStartSurfaceRefactorName[] = "Start Surface Refactor"; |
| 4027 | const char kStartSurfaceRefactorDescription[] = |
| 4028 | "Enable splitting Tab switcher from Start surface"; |
| 4029 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 4030 | const char kStrictSiteIsolationName[] = "Strict site isolation"; |
| 4031 | const char kStrictSiteIsolationDescription[] = |
| 4032 | "Security mode that enables site isolation for all sites (SitePerProcess). " |
| 4033 | "In this mode, each renderer process will contain pages from at most one " |
| 4034 | "site, using out-of-process iframes when needed. " |
| 4035 | "Check chrome://process-internals to see the current isolation mode. " |
| 4036 | "Setting this flag to 'Enabled' turns on site isolation regardless of the " |
| 4037 | "default. Here, 'Disabled' is a legacy value that actually means " |
| 4038 | "'Default,' in which case site isolation may be already enabled based on " |
| 4039 | "platform, enterprise policy, or field trial. See also " |
| 4040 | "#site-isolation-trial-opt-out for how to disable site isolation for " |
| 4041 | "testing."; |
| 4042 | |
Sirisha Kavuluru | 003e096 | 2021-12-08 21:40:30 | [diff] [blame] | 4043 | const char kTabGroupsForTabletsName[] = "Tab groups on tablets"; |
| 4044 | const char kTabGroupsForTabletsDescription[] = "Enable tab groups on tablets."; |
| 4045 | |
Sirisha Kavuluru | 0ccccae | 2022-01-27 21:37:59 | [diff] [blame] | 4046 | const char kTabStripImprovementsAndroidName[] = |
| 4047 | "Tab strip improvements for Android."; |
| 4048 | const char kTabStripImprovementsAndroidDescription[] = |
| 4049 | "Enables scrollable tab strip with tab group indicators."; |
| 4050 | |
Sirisha Kavuluru | 263350ba | 2022-09-08 21:40:21 | [diff] [blame] | 4051 | const char kDiscoverFeedMultiColumnAndroidName[] = |
| 4052 | "Multi-column Discover feed Android."; |
| 4053 | const char kDiscoverFeedMultiColumnAndroidDescription[] = |
Sirisha Kavuluru | e968d50 | 2022-10-27 19:37:40 | [diff] [blame] | 4054 | "Enables single or multi-column Discover feed based on screen width on " |
Sirisha Kavuluru | 263350ba | 2022-09-08 21:40:21 | [diff] [blame] | 4055 | "Android."; |
| 4056 | |
Zhe Li | 5d302c8 | 2022-10-12 16:56:54 | [diff] [blame] | 4057 | const char kTabStripRedesignAndroidName[] = "Tab Strip Redesign Android."; |
| 4058 | const char kTabStripRedesignAndroidDescription[] = |
| 4059 | "Enabled Tab Strip Redesign on Android - A visual redesign of Clank Tab " |
| 4060 | "Strip that is consistent with GM3."; |
| 4061 | |
Sirisha Kavuluru | e968d50 | 2022-10-27 19:37:40 | [diff] [blame] | 4062 | const char kFoldableJankFixAndroidName[] = "Fix for jank seen on foldables."; |
| 4063 | const char kFoldableJankFixAndroidDescription[] = |
| 4064 | "Enables fix for jank seen during fold to unfold transition on foldables " |
| 4065 | "with Android 12+"; |
| 4066 | |
Neil Coronado | 97e13551 | 2023-01-11 20:21:09 | [diff] [blame] | 4067 | const char kBaselineGM3SurfaceColorsName[] = "Baseline GM3 Surface Colors"; |
| 4068 | const char kBaselineGM3SurfaceColorsDescription[] = |
| 4069 | "Updates baseline surface colors to match the GM3 formula."; |
| 4070 | |
Mustaq Ahmed | a130fec | 2022-02-09 19:03:26 | [diff] [blame] | 4071 | const char kTouchDragAndContextMenuName[] = |
| 4072 | "Simultaneous touch drag and context menu"; |
| 4073 | const char kTouchDragAndContextMenuDescription[] = |
| 4074 | "Enables touch dragging and a context menu to start simultaneously, with" |
| 4075 | "the assumption that the menu is non-modal."; |
| 4076 | |
Scott Little | c0f9a47 | 2022-03-23 19:23:22 | [diff] [blame] | 4077 | const char kTranslateMessageUIName[] = "Translate Message UI"; |
| 4078 | const char kTranslateMessageUIDescription[] = |
| 4079 | "Controls whether the Translate Message UI will be shown instead of the " |
| 4080 | "Translate InfoBar."; |
| 4081 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 4082 | const char kUpdateMenuBadgeName[] = "Force show update menu badge"; |
| 4083 | const char kUpdateMenuBadgeDescription[] = |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 4084 | "When enabled, a badge will be shown on the app menu button if the update " |
| 4085 | "type is Update Available or Unsupported OS Version."; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 4086 | |
| 4087 | const char kUpdateMenuItemCustomSummaryDescription[] = |
| 4088 | "When this flag and the force show update menu item flag are enabled, a " |
| 4089 | "custom summary string will be displayed below the update menu item."; |
| 4090 | const char kUpdateMenuItemCustomSummaryName[] = |
| 4091 | "Update menu item custom summary"; |
| 4092 | |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 4093 | const char kUpdateMenuTypeName[] = |
| 4094 | "Forces the update menu type to a specific type"; |
| 4095 | const char kUpdateMenuTypeDescription[] = |
| 4096 | "When set, forces the update type to be a specific one, which impacts " |
Tommy Nyquist | b0f8692e | 2021-10-15 19:13:05 | [diff] [blame] | 4097 | "the app menu badge and menu item for updates."; |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 4098 | const char kUpdateMenuTypeNone[] = "None"; |
| 4099 | const char kUpdateMenuTypeUpdateAvailable[] = "Update Available"; |
| 4100 | const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 4101 | |
Tommy Nyquist | 5b7ac1a0 | 2022-08-16 16:56:00 | [diff] [blame] | 4102 | const char kOmahaMinSdkVersionAndroidName[] = |
| 4103 | "Forces the minumum Android SDK version to a particular value."; |
| 4104 | const char kOmahaMinSdkVersionAndroidDescription[] = |
| 4105 | "When set, the minimum Android minimum SDK version is set to a particular " |
| 4106 | "value which impact the app menu badge, menu items, and settings about " |
| 4107 | "screen regarding whether Chrome can be updated."; |
| 4108 | const char kOmahaMinSdkVersionAndroidMinSdk1Description[] = "Minimum SDK = 1"; |
| 4109 | const char kOmahaMinSdkVersionAndroidMinSdk1000Description[] = |
| 4110 | "Minimum SDK = 1000"; |
| 4111 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 4112 | const char kUseRealColorSpaceForAndroidVideoName[] = |
Vasiliy Telezhnikov | 3ec05cf | 2021-10-08 13:59:42 | [diff] [blame] | 4113 | "Use color space from MediaCodec"; |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 4114 | const char kUseRealColorSpaceForAndroidVideoDescription[] = |
Vasiliy Telezhnikov | 3ec05cf | 2021-10-08 13:59:42 | [diff] [blame] | 4115 | "When enabled video will use real color space instead of srgb."; |
| 4116 | |
Shakti Sahu | 2741f8d | 2020-08-14 03:38:36 | [diff] [blame] | 4117 | const char kVideoTutorialsName[] = "Enable video tutorials"; |
| 4118 | const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome"; |
Shakti Sahu | 607d9cd | 2020-10-22 01:10:10 | [diff] [blame] | 4119 | const char kVideoTutorialsInstantFetchName[] = |
| 4120 | "Video tutorials fetch on startup"; |
| 4121 | const char kVideoTutorialsInstantFetchDescription[] = |
| 4122 | "Fetch video tutorials on startup"; |
Shakti Sahu | 2741f8d | 2020-08-14 03:38:36 | [diff] [blame] | 4123 | |
bttk | 8031f3fb | 2021-02-25 20:21:24 | [diff] [blame] | 4124 | const char kAdaptiveButtonInTopToolbarName[] = "Adaptive button in top toolbar"; |
| 4125 | const char kAdaptiveButtonInTopToolbarDescription[] = |
| 4126 | "Enables showing an adaptive action button in the top toolbar"; |
bttk | 74acf1b | 2021-05-19 20:20:59 | [diff] [blame] | 4127 | const char kAdaptiveButtonInTopToolbarCustomizationName[] = |
| 4128 | "Adaptive button in top toolbar customization"; |
| 4129 | const char kAdaptiveButtonInTopToolbarCustomizationDescription[] = |
| 4130 | "Enables UI for customizing the adaptive action button in the top toolbar"; |
Josh Simmons | 68941d12 | 2020-11-11 02:49:04 | [diff] [blame] | 4131 | const char kVoiceButtonInTopToolbarName[] = "Voice button in top toolbar"; |
| 4132 | const char kVoiceButtonInTopToolbarDescription[] = |
bttk | 8031f3fb | 2021-02-25 20:21:24 | [diff] [blame] | 4133 | "Enables showing the voice search button in the top toolbar. Enabling " |
| 4134 | "Adaptive Button overrides this."; |
Josh Simmons | 68941d12 | 2020-11-11 02:49:04 | [diff] [blame] | 4135 | |
Carlos Knippschild | 0cf5a07 | 2020-12-01 00:15:53 | [diff] [blame] | 4136 | const char kWebFeedName[] = "Web Feed"; |
| 4137 | const char kWebFeedDescription[] = |
| 4138 | "Allows users to keep up with and consume web content."; |
| 4139 | |
Pete Williamson | 55cbb16 | 2022-04-09 02:41:52 | [diff] [blame] | 4140 | const char kWebFeedAwarenessName[] = "Web Feed Awareness"; |
| 4141 | const char kWebFeedAwarenessDescription[] = |
| 4142 | "Helps the user discover the web feed."; |
| 4143 | |
Pete Williamson | 06a50ba | 2022-03-10 02:08:53 | [diff] [blame] | 4144 | const char kWebFeedOnboardingName[] = "Web Feed Onboarding"; |
| 4145 | const char kWebFeedOnboardingDescription[] = |
Pete Williamson | 55cbb16 | 2022-04-09 02:41:52 | [diff] [blame] | 4146 | "Helps the user understand how to use the web feed."; |
Pete Williamson | 06a50ba | 2022-03-10 02:08:53 | [diff] [blame] | 4147 | |
Cathy Li | e949b3c | 2021-09-10 20:15:45 | [diff] [blame] | 4148 | const char kWebFeedSortName[] = "Web Feed Sort"; |
| 4149 | const char kWebFeedSortDescription[] = |
| 4150 | "Allows users to sort their web content in the web feed. " |
| 4151 | "Only works if Web Feed is also enabled."; |
| 4152 | |
Justin DeWitt | 83faf9d1 | 2020-12-17 23:18:03 | [diff] [blame] | 4153 | const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting"; |
| 4154 | const char kXsurfaceMetricsReportingDescription[] = |
| 4155 | "Allows metrics reporting state to be passed to Xsurface"; |
| 4156 | |
SebSG | 9cfb03f | 2021-07-20 22:07:14 | [diff] [blame] | 4157 | const char kWebNotesPublishName[] = "WebNotes Publish"; |
| 4158 | const char kWebNotesPublishDescription[] = |
| 4159 | "Allows users to save their created notes."; |
| 4160 | |
Grayson LaFleur | a13fcab | 2022-02-18 17:42:39 | [diff] [blame] | 4161 | const char kWebNotesDynamicTemplatesName[] = "Dynamic Templates"; |
| 4162 | const char kWebNotesDynamicTemplatesDescription[] = |
| 4163 | "Allows templates to be modified remotely on short notice."; |
| 4164 | |
Anna Tsvirchkova | 94fecb5f | 2022-04-14 10:34:04 | [diff] [blame] | 4165 | const char kPasswordEditDialogWithDetailsName[] = |
| 4166 | "Password edit dialog with details UI"; |
| 4167 | const char kPasswordEditDialogWithDetailsDescription[] = |
| 4168 | "Enables UI which shows the dialog after clicking on save/update password" |
| 4169 | " with the functionality to choose user account and edit the password."; |
| 4170 | |
liyanbo.monster | 41ebdd1 | 2022-06-30 04:32:32 | [diff] [blame] | 4171 | const char kEnableAndroidGamepadVibrationName[] = "Gamepad vibration"; |
| 4172 | const char kEnableAndroidGamepadVibrationDescription[] = |
| 4173 | "Enables the ability to play vibration effects on supported gamepads."; |
| 4174 | |
Wissem Gamra | 2a91d86 | 2022-08-17 18:17:22 | [diff] [blame] | 4175 | const char kCormorantName[] = "Cormorant"; |
| 4176 | const char kCormorantDescription[] = "Enables the experimental Cormorant UI."; |
| 4177 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4178 | // Non-Android ----------------------------------------------------------------- |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 4179 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4180 | #else // BUILDFLAG(IS_ANDROID) |
brettw | 5f9c164 | 2017-05-14 17:12:48 | [diff] [blame] | 4181 | |
echo linker | b7f4338 | 2022-02-10 23:20:34 | [diff] [blame] | 4182 | const char kAppManagementAppDetailsName[] = |
| 4183 | "Enable App Details in App Management."; |
| 4184 | const char kAppManagementAppDetailsDescription[] = |
| 4185 | "Show app details on an app's App Management page."; |
| 4186 | |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 4187 | const char kAllowAllSitesToInitiateMirroringName[] = |
Takumi Fujimoto | bf466ac | 2020-08-18 20:55:15 | [diff] [blame] | 4188 | "Allow all sites to initiate mirroring"; |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 4189 | const char kAllowAllSitesToInitiateMirroringDescription[] = |
Takumi Fujimoto | bf466ac | 2020-08-18 20:55:15 | [diff] [blame] | 4190 | "When enabled, allows all websites to request to initiate tab mirroring " |
| 4191 | "via Presentation API. Requires #cast-media-route-provider to also be " |
| 4192 | "enabled"; |
| 4193 | |
Charles Meng | 17ba75d | 2022-08-23 18:45:28 | [diff] [blame] | 4194 | extern const char kBatterySaverModeAvailableName[] = |
| 4195 | "Enable the battery saver mode feature in the settings"; |
| 4196 | extern const char kBatterySaverModeAvailableDescription[] = |
| 4197 | "When enabled, shows the battery section in the performance settings page"; |
| 4198 | |
Anthony Cui | e410985 | 2022-07-27 19:01:01 | [diff] [blame] | 4199 | const char kCopyLinkToTextName[] = "Copy Link To Text"; |
| 4200 | const char kCopyLinkToTextDescription[] = |
| 4201 | "Adds an item to the context menu to allow a user to copy a link to the " |
| 4202 | "page with the selected text highlighted."; |
| 4203 | |
| 4204 | const char kDesktopPartialTranslateName[] = "Desktop Partial Translate"; |
| 4205 | const char kDesktopPartialTranslateDescription[] = |
| 4206 | "Enables the Partial Translate feature on Desktop, which allows users to " |
| 4207 | "translate text selections on the page through the right click context " |
| 4208 | "menu."; |
| 4209 | |
evliu | 467c11b8 | 2020-11-17 01:29:30 | [diff] [blame] | 4210 | const char kEnableAccessibilityLiveCaptionName[] = "Live Caption"; |
| 4211 | const char kEnableAccessibilityLiveCaptionDescription[] = |
| 4212 | "Enables the live caption feature which generates captions for " |
Katie D | f558c1a | 2020-04-21 20:33:59 | [diff] [blame] | 4213 | "media playing in Chrome. Turn the feature on in " |
| 4214 | "chrome://settings/accessibility."; |
| 4215 | |
Abigail Klein | cef6948 | 2023-01-24 22:14:37 | [diff] [blame] | 4216 | const char kReadAnythingName[] = "Read Anything"; |
| 4217 | const char kReadAnythingDescription[] = |
| 4218 | "Enables the Read Anything feature which generates a reader-friendly view " |
| 4219 | "of web pages. Open the side panel and select Read Anything to try the " |
| 4220 | "feature."; |
| 4221 | |
| 4222 | const char kReadAnythingWithScreen2xName[] = "Read Anything with Screen2x"; |
| 4223 | const char kReadAnythingWithScreen2xDescription[] = |
| 4224 | "Have Read Anything use a local machine learning model for web page" |
| 4225 | "distillation."; |
| 4226 | |
Yann Dago | 716d1de | 2022-02-07 18:49:30 | [diff] [blame] | 4227 | const char kEnableUserCloudSigninRestrictionPolicyName[] = |
| 4228 | "Cloud User level Signin Restrictions Policy"; |
| 4229 | const char kEnableUserCloudSigninRestrictionPolicyDescription[] = |
| 4230 | "Enable the ManagedAccountsSigninRestrictions policy to be set at a cloud " |
| 4231 | "user level"; |
| 4232 | |
Jack Hsieh | 1e6d84a | 2022-07-01 16:18:57 | [diff] [blame] | 4233 | const char kEnableWebHidOnExtensionServiceWorkerName[] = |
| 4234 | "Enable WebHID on extension service workers"; |
| 4235 | const char kEnableWebHidOnExtensionServiceWorkerDescription[] = |
| 4236 | "When enabled, WebHID API is available on extension service workers."; |
| 4237 | |
John Williams | e5a683b | 2020-07-28 03:01:48 | [diff] [blame] | 4238 | const char kGlobalMediaControlsCastStartStopName[] = |
| 4239 | "Global media controls control Cast start/stop"; |
| 4240 | const char kGlobalMediaControlsCastStartStopDescription[] = |
| 4241 | "Allows global media controls to control when a Cast session is started " |
| 4242 | "or stopped instead of relying on the Cast dialog."; |
| 4243 | |
Charles Meng | 17ba75d | 2022-08-23 18:45:28 | [diff] [blame] | 4244 | extern const char kHighEfficiencyModeAvailableName[] = |
| 4245 | "Enable the high efficiency mode feature in the settings"; |
| 4246 | extern const char kHighEfficiencyModeAvailableDescription[] = |
| 4247 | "When enabled, shows the performance section in the performance settings " |
| 4248 | "page"; |
| 4249 | |
Richard Knoll | 7b29356 | 2021-07-08 08:49:06 | [diff] [blame] | 4250 | const char kMuteNotificationSnoozeActionName[] = |
| 4251 | "Snooze action for mute notifications"; |
| 4252 | const char kMuteNotificationSnoozeActionDescription[] = |
| 4253 | "Adds a Snooze action to mute notifications shown while sharing a screen."; |
| 4254 | |
Esmael El-Moslimany | f85849d | 2021-01-15 02:18:10 | [diff] [blame] | 4255 | const char kNtpCacheOneGoogleBarName[] = "Cache OneGoogleBar"; |
| 4256 | const char kNtpCacheOneGoogleBarDescription[] = |
| 4257 | "Enables using the OneGoogleBar cached response in chrome://new-tab-page, " |
| 4258 | "when available."; |
| 4259 | |
Paul Adedeji | 1ed5300 | 2022-06-13 20:15:30 | [diff] [blame] | 4260 | const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module"; |
| 4261 | const char kNtpChromeCartModuleDescription[] = |
| 4262 | "Shows the chrome cart module on the New Tab Page."; |
Tibor Goldschwendt | 16a63cb | 2020-08-04 19:08:15 | [diff] [blame] | 4263 | |
Roman Arora | 201df09 | 2022-10-20 16:53:51 | [diff] [blame] | 4264 | const char kNtpComprehensiveThemeRealboxName[] = |
| 4265 | "NTP Comprehensive Theme Realbox"; |
| 4266 | const char kNtpComprehensiveThemeRealboxDescription[] = |
| 4267 | "Applies theme based colors to the NTP Realbox element"; |
| 4268 | |
Roman Arora | 32162da | 2022-10-19 22:26:15 | [diff] [blame] | 4269 | const char kNtpComprehensiveThemingName[] = "NTP Comprehensive Theming"; |
| 4270 | const char kNtpComprehensiveThemingDescription[] = |
| 4271 | "Applies theme based colors across various NTP elements"; |
| 4272 | |
Yo Wakita | dcd3880 | 2022-10-12 17:27:07 | [diff] [blame] | 4273 | const char kNtpDesktopLensName[] = "NTP Desktop Lens Entrypoint"; |
| 4274 | const char kNtpDesktopLensDescription[] = |
| 4275 | "Shows a Lens entrypoint and upload dialog in desktop NTP when enabled."; |
| 4276 | |
Andre Vincent | 60a5c5d | 2020-12-24 02:53:01 | [diff] [blame] | 4277 | const char kNtpDriveModuleName[] = "NTP Drive Module"; |
| 4278 | const char kNtpDriveModuleDescription[] = |
| 4279 | "Shows the Google Drive module on the New Tab Page"; |
| 4280 | |
Paul Adedeji | 68046694 | 2022-01-13 22:10:50 | [diff] [blame] | 4281 | #if !defined(OFFICIAL_BUILD) |
| 4282 | const char kNtpDummyModulesName[] = "NTP Dummy Modules"; |
| 4283 | const char kNtpDummyModulesDescription[] = |
| 4284 | "Adds dummy modules to New Tab Page when 'NTP Modules Redesigned' is " |
| 4285 | "enabled."; |
| 4286 | #endif |
| 4287 | |
Paul Adedeji | 1ed5300 | 2022-06-13 20:15:30 | [diff] [blame] | 4288 | const char kNtpMiddleSlotPromoDismissalName[] = |
| 4289 | "NTP Middle Slot Promo Dismissal"; |
| 4290 | const char kNtpMiddleSlotPromoDismissalDescription[] = |
| 4291 | "Allows middle slot promo to be dismissed from New Tab Page until " |
| 4292 | "new promo message is populated."; |
Rohit Bhatia | 3418936 | 2021-09-04 03:55:20 | [diff] [blame] | 4293 | |
Lydia Lam | 44eea14 | 2021-06-10 01:19:00 | [diff] [blame] | 4294 | const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop"; |
| 4295 | const char kNtpModulesDragAndDropDescription[] = |
| 4296 | "Enables modules to be reordered via dragging and dropping on the " |
| 4297 | "New Tab Page."; |
| 4298 | |
Paul Adedeji | d25542d3 | 2022-03-09 03:06:37 | [diff] [blame] | 4299 | const char kNtpModulesFirstRunExperienceName[] = |
| 4300 | "NTP Modules First Run Experience"; |
| 4301 | const char kNtpModulesFirstRunExperienceDescription[] = |
| 4302 | "Shows first run experience for Modular NTP Desktop v1."; |
| 4303 | |
Paul Adedeji | 57933b8 | 2021-12-07 02:19:04 | [diff] [blame] | 4304 | const char kNtpModulesRedesignedLayoutName[] = "Ntp Modules Redesigned Layout"; |
| 4305 | const char kNtpModulesRedesignedLayoutDescription[] = |
| 4306 | "Changes the layout of modules on New Tab Page"; |
| 4307 | |
Paul Adedeji | 1ed5300 | 2022-06-13 20:15:30 | [diff] [blame] | 4308 | const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned"; |
| 4309 | const char kNtpModulesRedesignedDescription[] = |
| 4310 | "Shows the redesigned modules on the New Tab Page."; |
| 4311 | |
| 4312 | const char kNtpPhotosModuleName[] = "NTP Photos Module"; |
| 4313 | const char kNtpPhotosModuleDescription[] = |
| 4314 | "Shows the Google Photos module on the New Tab Page"; |
| 4315 | |
| 4316 | const char kNtpPhotosModuleOptInArtWorkName[] = |
| 4317 | "NTP Photos Module Opt In ArtWork"; |
| 4318 | const char kNtpPhotosModuleOptInArtWorkDescription[] = |
| 4319 | "Determines the art work in the NTP Photos Opt-In card"; |
| 4320 | |
| 4321 | const char kNtpPhotosModuleOptInTitleName[] = "NTP Photos Module Opt In Title"; |
| 4322 | const char kNtpPhotosModuleOptInTitleDescription[] = |
| 4323 | "Determines the title of the NTP Photos Opt-In card"; |
| 4324 | |
| 4325 | const char kNtpPhotosModuleSoftOptOutName[] = "NTP Photos Module Soft Opt-Out"; |
| 4326 | const char kNtpPhotosModuleSoftOptOutDescription[] = |
| 4327 | "Enables soft opt-out option in Photos opt-in card"; |
| 4328 | |
Marlon Facey | 86f57948 | 2021-12-15 00:05:19 | [diff] [blame] | 4329 | const char kNtpRealboxMatchOmniboxThemeName[] = |
| 4330 | "NTP Realbox Matches Omnibox Theme"; |
| 4331 | const char kNtpRealboxMatchOmniboxThemeDescription[] = |
| 4332 | "NTP Realbox matches the Omnibox theme when enabled."; |
| 4333 | |
Marlon Facey | a00e2f9 | 2022-01-27 23:04:09 | [diff] [blame] | 4334 | const char kNtpRealboxMatchSearchboxThemeName[] = |
| 4335 | "NTP Realbox Matches Searchbox Theme"; |
| 4336 | const char kNtpRealboxMatchSearchboxThemeDescription[] = |
Marlon Facey | 4a2c207 | 2022-09-26 23:24:53 | [diff] [blame] | 4337 | "Makes NTP Realbox drop shadow match that of the Searchbox when enabled."; |
Marlon Facey | a00e2f9 | 2022-01-27 23:04:09 | [diff] [blame] | 4338 | |
Marlon Facey | 904d1244 | 2021-09-02 23:02:24 | [diff] [blame] | 4339 | const char kNtpRealboxPedalsName[] = "NTP Realbox Pedals"; |
| 4340 | const char kNtpRealboxPedalsDescription[] = |
| 4341 | "Shows pedals in the NTP Realbox when enabled."; |
| 4342 | |
Marlon Facey | 4a2c207 | 2022-09-26 23:24:53 | [diff] [blame] | 4343 | const char kNtpRealboxRoundedCornersName[] = "NTP Realbox Rounded Corners"; |
| 4344 | const char kNtpRealboxRoundedCornersDescription[] = |
| 4345 | "Make NTP realbox dropdown corners match that of the Searchbox."; |
| 4346 | |
Marlon Facey | 94eac62a0 | 2021-12-15 01:16:37 | [diff] [blame] | 4347 | const char kNtpRealboxUseGoogleGIconName[] = "NTP Realbox Google G Icon"; |
| 4348 | const char kNtpRealboxUseGoogleGIconDescription[] = |
| 4349 | "Shows Google G icon " |
| 4350 | "instead of Search Loupe in realbox when enabled"; |
| 4351 | |
Paul Adedeji | 1ed5300 | 2022-06-13 20:15:30 | [diff] [blame] | 4352 | const char kNtpRecipeTasksModuleName[] = "NTP Recipe Tasks Module"; |
| 4353 | const char kNtpRecipeTasksModuleDescription[] = |
| 4354 | "Shows the recipe tasks module on the New Tab Page."; |
| 4355 | |
| 4356 | const char kNtpSafeBrowsingModuleName[] = "NTP Safe Browsing Module"; |
| 4357 | const char kNtpSafeBrowsingModuleDescription[] = |
| 4358 | "Shows the safe browsing module on the New Tab Page."; |
| 4359 | |
Aran Gilman | 766c2ad | 2019-04-18 00:15:41 | [diff] [blame] | 4360 | const char kEnableReaderModeName[] = "Enable Reader Mode"; |
| 4361 | const char kEnableReaderModeDescription[] = |
| 4362 | "Allows viewing of simplified web pages by selecting 'Customize and " |
| 4363 | "control Chrome'>'Distill page'"; |
| 4364 | |
Wei Li | 2946b35 | 2019-08-19 21:49:54 | [diff] [blame] | 4365 | const char kHappinessTrackingSurveysForDesktopDemoName[] = |
| 4366 | "Happiness Tracking Surveys Demo"; |
| 4367 | const char kHappinessTrackingSurveysForDesktopDemoDescription[] = |
| 4368 | "Enable showing Happiness Tracking Surveys Demo to users on Desktop"; |
| 4369 | |
Ramin Halavati | 7935b62 | 2022-11-16 08:11:46 | [diff] [blame] | 4370 | const char kLayoutExtractionName[] = "Layout Extraction"; |
| 4371 | const char kLayoutExtractionDescription[] = |
| 4372 | "Enables Layout Extraction local machine intelligence library to use " |
| 4373 | "screen snapshots to add metadata for accessibility tools."; |
| 4374 | |
Travis Skare | bcdb5ed3 | 2018-08-17 01:49:40 | [diff] [blame] | 4375 | const char kOmniboxDriveSuggestionsName[] = |
| 4376 | "Omnibox Google Drive Document suggestions"; |
manukh | 918d8255 | 2022-10-11 01:12:22 | [diff] [blame] | 4377 | const char kOmniboxDriveSuggestionsDescription[] = |
Travis Skare | bcdb5ed3 | 2018-08-17 01:49:40 | [diff] [blame] | 4378 | "Display suggestions for Google Drive documents in the omnibox when Google " |
| 4379 | "is the default search engine."; |
| 4380 | |
Kevin Bailey | 9ec0553 | 2019-01-31 23:01:33 | [diff] [blame] | 4381 | const char kOmniboxExperimentalKeywordModeName[] = |
| 4382 | "Omnibox Experimental Keyword Mode"; |
| 4383 | const char kOmniboxExperimentalKeywordModeDescription[] = |
| 4384 | "Enables various experimental features related to keyword mode, its " |
Justin Donnelly | f270348 | 2019-10-24 21:42:15 | [diff] [blame] | 4385 | "suggestions and layout."; |
Kevin Bailey | 9ec0553 | 2019-01-31 23:01:33 | [diff] [blame] | 4386 | |
Viktor Semeniuk | 083adff2 | 2022-11-16 16:15:47 | [diff] [blame] | 4387 | const char kPasswordsGroupingName[] = "Passwords grouping"; |
| 4388 | const char kPasswordsGroupingDescription[] = |
| 4389 | "Enables displaying passwords grouped together using information from " |
| 4390 | "the affiliation service."; |
| 4391 | |
Viktor Semeniuk | e4aa5bc | 2022-08-17 07:22:59 | [diff] [blame] | 4392 | const char kPasswordManagerRedesignName[] = "Password Manager new UI"; |
| 4393 | const char kPasswordManagerRedesignDescription[] = |
| 4394 | "Enables new Password Manager UI on Desktop"; |
| 4395 | |
Chris Thompson | 657d5c8 | 2020-10-08 23:04:10 | [diff] [blame] | 4396 | const char kSCTAuditingName[] = "SCT auditing"; |
| 4397 | const char kSCTAuditingDescription[] = |
| 4398 | "Enables SCT auditing for users who have opted in to Safe Browsing " |
| 4399 | "Extended Reporting."; |
| 4400 | |
Elly Fong-Jones | af0a33b | 2022-04-05 15:30:47 | [diff] [blame] | 4401 | const char kSharingDesktopSharePreviewName[] = "Desktop share hub preview"; |
| 4402 | const char kSharingDesktopSharePreviewDescription[] = |
| 4403 | "Adds a preview section to the desktop sharing hub to make it clearer what " |
| 4404 | "is about to be shared."; |
| 4405 | |
Matthew Hatem | 61e89492 | 2022-07-22 16:18:37 | [diff] [blame] | 4406 | const char kSharingDesktopShareToGoogleCollectionsName[] = |
| 4407 | "Share to Google Collections"; |
| 4408 | const char kSharingDesktopShareToGoogleCollectionsDescription[] = |
| 4409 | "Adds an item to the sharing hub to allow sharing to Google Collections."; |
| 4410 | |
Alan Cutter | 9aa158b | 2023-01-20 16:12:14 | [diff] [blame] | 4411 | const char kWebAppManifestImmediateUpdatingName[] = |
| 4412 | "Web App Manifest Immediate Updating"; |
| 4413 | const char kWebAppManifestImmediateUpdatingDescription[] = |
| 4414 | "Enables web app manifest updates to apply to running web app windows as " |
| 4415 | "soon as a change has been detected instead of waiting for all app windows " |
| 4416 | "to be closed."; |
| 4417 | |
Paul Adedeji | 1ed5300 | 2022-06-13 20:15:30 | [diff] [blame] | 4418 | const char kWebAuthenticationPermitEnterpriseAttestationName[] = |
| 4419 | "Web Authentication Enterprise Attestation"; |
| 4420 | const char kWebAuthenticationPermitEnterpriseAttestationDescription[] = |
| 4421 | "Permit a set of origins to request a uniquely identifying enterprise " |
| 4422 | "attestation statement from a security key when creating a Web " |
| 4423 | "Authentication credential."; |
| 4424 | |
Danil Somsikov | 0d20614 | 2022-11-28 23:37:20 | [diff] [blame] | 4425 | const char kDevToolsTabTargetLiteralName[] = "DevTools using Tab Target"; |
| 4426 | const char kDevToolsTabTargetLiteralDescription[] = |
| 4427 | "Makes DevTools use an experimental CDP Tab target."; |
| 4428 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4429 | #endif // BUILDFLAG(IS_ANDROID) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4430 | |
| 4431 | // Windows --------------------------------------------------------------------- |
| 4432 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4433 | #if BUILDFLAG(IS_WIN) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4434 | |
Bill Carr | 49f4608 | 2022-02-28 17:54:41 | [diff] [blame] | 4435 | const char kCalculateNativeWinOcclusionName[] = |
| 4436 | "Calculate window occlusion on Windows"; |
| 4437 | const char kCalculateNativeWinOcclusionDescription[] = |
| 4438 | "Calculate window occlusion on Windows will be used in the future " |
| 4439 | "to throttle and potentially unload foreground tabs in occluded windows"; |
| 4440 | |
Igor Ruvinov | b1f7bea | 2022-11-08 23:20:50 | [diff] [blame] | 4441 | const char kCloudApAuthName[] = "CloudAP authentication"; |
| 4442 | const char kCloudApAuthDescription[] = |
| 4443 | "Enables ambient authentication into supported identity providers using " |
| 4444 | "the CloudAP framework. Credentials are retrieved from accounts signed " |
| 4445 | "into the operating system."; |
| 4446 | |
Armando Miraglia | d2e6fc9e | 2020-03-06 09:23:09 | [diff] [blame] | 4447 | const char kEnableMediaFoundationVideoCaptureName[] = |
| 4448 | "MediaFoundation Video Capture"; |
| 4449 | const char kEnableMediaFoundationVideoCaptureDescription[] = |
| 4450 | "Enable/Disable the usage of MediaFoundation for video capture. Fall back " |
| 4451 | "to DirectShow if disabled."; |
| 4452 | |
Xiaohan Wang | 9c9e5d35c | 2021-09-02 17:36:09 | [diff] [blame] | 4453 | const char kHardwareSecureDecryptionName[] = "Hardware Secure Decryption"; |
| 4454 | const char kHardwareSecureDecryptionDescription[] = |
| 4455 | "Enable/Disable the use of hardware secure Content Decryption Module (CDM) " |
| 4456 | "for protected content playback."; |
| 4457 | |
Xiaohan Wang | 2d58883 | 2021-11-16 00:57:07 | [diff] [blame] | 4458 | const char kHardwareSecureDecryptionExperimentName[] = |
| 4459 | "Hardware Secure Decryption Experiment"; |
| 4460 | const char kHardwareSecureDecryptionExperimentDescription[] = |
| 4461 | "Enable/Disable the use of hardware secure Content Decryption Module (CDM) " |
| 4462 | "for experimental protected content playback."; |
| 4463 | |
Xiaohan Wang | 9040929 | 2022-03-26 09:06:28 | [diff] [blame] | 4464 | const char kHardwareSecureDecryptionFallbackName[] = |
| 4465 | "Hardware Secure Decryption Fallback"; |
| 4466 | const char kHardwareSecureDecryptionFallbackDescription[] = |
| 4467 | "Allows automatically disabling hardware secure Content Decryption Module " |
| 4468 | "(CDM) after failures or crashes. Subsequent playback may use software " |
| 4469 | "secure CDMs. If this feature is disabled, the fallback will never happen " |
| 4470 | "and users could be stuck with playback failures."; |
| 4471 | |
Bill Carr | c2abb922 | 2021-11-07 22:02:56 | [diff] [blame] | 4472 | const char kMediaFoundationClearName[] = "MediaFoundation for Clear"; |
| 4473 | const char kMediaFoundationClearDescription[] = |
| 4474 | "Enable/Disable the use of MediaFoundation for non-protected content " |
| 4475 | "playback on supported systems."; |
| 4476 | |
henrika | c66d101 | 2021-01-19 13:59:18 | [diff] [blame] | 4477 | const char kRawAudioCaptureName[] = "Raw audio capture"; |
| 4478 | const char kRawAudioCaptureDescription[] = |
| 4479 | "Enable/Disable the usage of WASAPI raw audio capture. When enabled, the " |
| 4480 | "audio stream is a 'raw' stream that bypasses all signal processing except " |
| 4481 | "for endpoint specific, always-on processing in the Audio Processing Object" |
| 4482 | " (APO), driver, and hardware."; |
| 4483 | |
henrika | c79c7a4 | 2022-09-06 16:29:52 | [diff] [blame] | 4484 | const char kFakeAudioCaptureTimestamps[] = "Fake audio capture timestamps"; |
| 4485 | const char kFakeAudioCaptureTimestampsDescription[] = |
| 4486 | "Emulates audio capture timestamps instead of using timestamps from the " |
| 4487 | "actual audio device. Can be used as a temporary workaround in situations " |
| 4488 | "where the selected audio device generates invalid timestamp sequences."; |
| 4489 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 4490 | const char kRunVideoCaptureServiceInBrowserProcessName[] = |
| 4491 | "Run video capture service in browser"; |
| 4492 | const char kRunVideoCaptureServiceInBrowserProcessDescription[] = |
| 4493 | "Run the video capture service in the browser process."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4494 | |
Jonah Ryan-Davis | 90ae332 | 2021-09-21 17:34:48 | [diff] [blame] | 4495 | const char kUseAngleDescriptionWindows[] = |
Olli Etuaho | 12232119 | 2018-09-07 10:15:29 | [diff] [blame] | 4496 | "Choose the graphics backend for ANGLE. D3D11 is used on most Windows " |
| 4497 | "computers by default. Using the OpenGL driver as the graphics backend may " |
| 4498 | "result in higher performance in some graphics-heavy applications, " |
| 4499 | "particularly on NVIDIA GPUs. It can increase battery and memory usage of " |
| 4500 | "video playback."; |
| 4501 | |
Olli Etuaho | 12232119 | 2018-09-07 10:15:29 | [diff] [blame] | 4502 | const char kUseAngleD3D11[] = "D3D11"; |
| 4503 | const char kUseAngleD3D9[] = "D3D9"; |
Nathan Zabriskie | 70c046f | 2019-10-16 01:19:02 | [diff] [blame] | 4504 | const char kUseAngleD3D11on12[] = "D3D11on12"; |
Olli Etuaho | 12232119 | 2018-09-07 10:15:29 | [diff] [blame] | 4505 | |
Alex Forrence | b4250489 | 2022-07-20 21:50:07 | [diff] [blame] | 4506 | const char kUseWaitableSwapChainName[] = "Use waitable swap chains"; |
| 4507 | const char kUseWaitableSwapChainDescription[] = |
| 4508 | "Use waitable swap chains to reduce presentation latency (effective only " |
| 4509 | "Windows 8.1 or later). If enabled, specify the maximum number of frames " |
| 4510 | "that can be queued, ranging from 1-3. 1 has the lowest delay but is most " |
| 4511 | "likely to drop frames, while 3 has the highest delay but is least likely " |
| 4512 | "to drop frames."; |
| 4513 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4514 | const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API"; |
| 4515 | const char kUseWinrtMidiApiDescription[] = |
| 4516 | "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or " |
| 4517 | "later)."; |
| 4518 | |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 4519 | #if BUILDFLAG(ENABLE_PRINTING) |
Lei Zhang | 1419cab | 2021-09-09 17:04:44 | [diff] [blame] | 4520 | const char kPrintWithPostScriptType42FontsName[] = |
| 4521 | "Print with PostScript Type 42 fonts"; |
| 4522 | const char kPrintWithPostScriptType42FontsDescription[] = |
| 4523 | "When using PostScript level 3 printing, render text with Type 42 fonts if " |
| 4524 | "possible."; |
| 4525 | |
Lei Zhang | a6a8a49 | 2020-05-14 03:55:03 | [diff] [blame] | 4526 | const char kPrintWithReducedRasterizationName[] = |
| 4527 | "Print with reduced rasterization"; |
| 4528 | const char kPrintWithReducedRasterizationDescription[] = |
| 4529 | "When using GDI printing, avoid rasterization if possible."; |
| 4530 | |
Cuc Doan | 074d8ed | 2022-03-14 22:03:34 | [diff] [blame] | 4531 | const char kReadPrinterCapabilitiesWithXpsName[] = |
| 4532 | "Read printer capabilities with XPS"; |
| 4533 | extern const char kReadPrinterCapabilitiesWithXpsDescription[] = |
| 4534 | "When enabled, utilize XPS interface to read printer capabilities."; |
| 4535 | |
Alan Screen | 574ffd66 | 2019-11-21 22:38:53 | [diff] [blame] | 4536 | const char kUseXpsForPrintingName[] = "Use XPS for printing"; |
| 4537 | const char kUseXpsForPrintingDescription[] = |
| 4538 | "When enabled, use XPS printing API instead of the GDI print API."; |
| 4539 | |
Alan Screen | 4938811 | 2019-12-13 23:34:21 | [diff] [blame] | 4540 | const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF"; |
| 4541 | const char kUseXpsForPrintingFromPdfDescription[] = |
| 4542 | "When enabled, use XPS printing API instead of the GDI print API when " |
| 4543 | "printing PDF documents."; |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 4544 | #endif // BUILDFLAG(ENABLE_PRINTING) |
Alan Screen | 4938811 | 2019-12-13 23:34:21 | [diff] [blame] | 4545 | |
Tom | 5efa14f1 | 2021-06-30 00:37:32 | [diff] [blame] | 4546 | const char kWin10TabSearchCaptionButtonName[] = |
| 4547 | "Windows 10 Tab Search Caption Button"; |
| 4548 | const char kWin10TabSearchCaptionButtonDescription[] = |
| 4549 | "Move the Tab Search entrypoint besides the window caption buttons on " |
| 4550 | "Windows 10 platforms."; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4551 | #endif // BUILDFLAG(IS_WIN) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4552 | |
| 4553 | // Mac ------------------------------------------------------------------------- |
| 4554 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4555 | #if BUILDFLAG(IS_MAC) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4556 | |
Karol Sygiet | 901acb4 | 2022-08-08 16:00:04 | [diff] [blame] | 4557 | const char kBiometricAuthenticationInSettingsName[] = |
| 4558 | "Biometric authentication in settings"; |
| 4559 | const char kBiometricAuthenticationInSettingsDescription[] = |
| 4560 | "Enables biometric authentication in settings to view/edit/copy a password"; |
| 4561 | |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 4562 | #if BUILDFLAG(ENABLE_PRINTING) |
| 4563 | const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend"; |
| 4564 | const char kCupsIppPrintingBackendDescription[] = |
| 4565 | "Use the CUPS IPP printing backend instead of the original CUPS backend " |
| 4566 | "that calls the PPD API."; |
| 4567 | #endif // BUILDFLAG(ENABLE_PRINTING) |
| 4568 | |
Avi Drissman | 0095f55 | 2021-11-05 19:58:53 | [diff] [blame] | 4569 | const char kEnableUniversalLinksName[] = "Universal Links"; |
| 4570 | const char kEnableUniversalLinksDescription[] = |
| 4571 | "Include Universal Links in the intent picker."; |
| 4572 | |
Sidney San Martín | 678fd411 | 2019-03-30 00:13:05 | [diff] [blame] | 4573 | const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar"; |
| 4574 | const char kImmersiveFullscreenDescription[] = |
| 4575 | "Automatically hide and show the toolbar in fullscreen."; |
| 4576 | |
Greg Kerr | f46f3187 | 2019-08-08 20:22:44 | [diff] [blame] | 4577 | const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox"; |
| 4578 | const char kMacSyscallSandboxDescription[] = |
| 4579 | "Controls whether the macOS sandbox filters syscalls."; |
| 4580 | |
Leonard Grey | 2e90921c | 2021-12-02 22:46:13 | [diff] [blame] | 4581 | const char kScreenTimeName[] = "Screen Time"; |
| 4582 | const char kScreenTimeDescription[] = |
| 4583 | "Integrate with the macOS Screen Time system. Only enabled on macOS 12.1 " |
| 4584 | "and later."; |
| 4585 | |
Jonah Ryan-Davis | 90ae332 | 2021-09-21 17:34:48 | [diff] [blame] | 4586 | const char kUseAngleDescriptionMac[] = |
| 4587 | "Choose the graphics backend for ANGLE. The OpenGL backend is soon to be " |
| 4588 | "deprecated on Mac, and may contain driver bugs that are not planned to be " |
| 4589 | "fixed. The Metal backend is still experimental, and may contain bugs that " |
| 4590 | "are still being worked on. The Metal backend should be more performant, " |
| 4591 | "but may still be behind the OpenGL backend until fully released."; |
| 4592 | |
| 4593 | const char kUseAngleMetal[] = "Metal"; |
| 4594 | |
Tom Burgin | 5c3fde0 | 2022-06-23 18:24:07 | [diff] [blame] | 4595 | const char kSystemColorChooserName[] = "System Color Chooser"; |
| 4596 | const char kSystemColorChooserDescription[] = |
| 4597 | "Enables a button that launches the macOS native color chooser."; |
| 4598 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4599 | #endif |
| 4600 | |
Jonah Ryan-Davis | 90ae332 | 2021-09-21 17:34:48 | [diff] [blame] | 4601 | // Windows and Mac ------------------------------------------------------------- |
| 4602 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4603 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) |
Jonah Ryan-Davis | 90ae332 | 2021-09-21 17:34:48 | [diff] [blame] | 4604 | |
| 4605 | const char kUseAngleName[] = "Choose ANGLE graphics backend"; |
| 4606 | const char kUseAngleDefault[] = "Default"; |
| 4607 | const char kUseAngleGL[] = "OpenGL"; |
Karol Sygiet | 901acb4 | 2022-08-08 16:00:04 | [diff] [blame] | 4608 | |
Karol Sygiet | c5e3da65 | 2022-08-02 15:47:50 | [diff] [blame] | 4609 | const char kBiometricAuthenticationForFillingName[] = |
| 4610 | "Biometric authentication reauth before filling"; |
| 4611 | const char kBiometricAuthenticationForFillingDescription[] = |
| 4612 | "Enables biometric authentication before filling form data"; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 4613 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) |
Jonah Ryan-Davis | 90ae332 | 2021-09-21 17:34:48 | [diff] [blame] | 4614 | |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4615 | // ChromeOS ------------------------------------------------------------------- |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 4616 | |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 4617 | #if BUILDFLAG(IS_CHROMEOS_ASH) |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 4618 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4619 | const char kAcceleratedMjpegDecodeName[] = |
| 4620 | "Hardware-accelerated mjpeg decode for captured frame"; |
| 4621 | const char kAcceleratedMjpegDecodeDescription[] = |
| 4622 | "Enable hardware-accelerated mjpeg decode for captured frame where " |
| 4623 | "available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 4624 | |
Thanh Nguyen | 6b4c585 | 2022-05-26 22:03:25 | [diff] [blame] | 4625 | const char kAdaptiveChargingForTestingName[] = |
| 4626 | "Show adaptive charging notifications for testing"; |
| 4627 | const char kAdaptiveChargingForTestingDescription[] = |
| 4628 | "Show adaptive charging notifications and nudges for testing. This is " |
| 4629 | "meant to be used by developers to test the feature UI only. The " |
| 4630 | "notifications will be shown after the device is plugged in to the " |
| 4631 | "charger. Please DO NOT enable this if you're not a developer who wants to " |
| 4632 | "test the UI of the adaptive charging feature."; |
| 4633 | |
Thanh Nguyen | 730ac8a3 | 2022-05-19 08:50:46 | [diff] [blame] | 4634 | const char kAdaptiveChargingName[] = "Enable adaptive charging feature"; |
| 4635 | const char kAdaptiveChargingDescription[] = |
| 4636 | "Show settings to enable/disable adaptive charging feature."; |
| 4637 | |
Vyshu | 9ea9e18 | 2021-02-04 17:53:06 | [diff] [blame] | 4638 | const char kAllowRepeatedUpdatesName[] = |
| 4639 | "Continue checking for updates before reboot and after initial update."; |
| 4640 | const char kAllowRepeatedUpdatesDescription[] = |
| 4641 | "Continues checking to see if there is a more recent update, even if user" |
| 4642 | "has not rebooted to apply the previous update."; |
| 4643 | |
Kyle Horimoto | 734f075 | 2020-03-20 20:46:54 | [diff] [blame] | 4644 | const char kAllowScrollSettingsName[] = |
| 4645 | "Allow changes to scroll acceleration/sensitivity for mice/touchpads."; |
| 4646 | const char kAllowScrollSettingsDescription[] = |
| 4647 | "Shows settings to enable/disable scroll acceleration and to adjust the " |
| 4648 | "sensitivity for scrolling."; |
| 4649 | |
Jeffrey Kardatzke | a686ded2 | 2022-03-28 18:28:46 | [diff] [blame] | 4650 | const char kAlwaysEnableHdcpName[] = "Always enable HDCP for external displays"; |
| 4651 | const char kAlwaysEnableHdcpDescription[] = |
| 4652 | "Enables the specified type for HDCP whenever an external display is " |
| 4653 | "connected. By default, HDCP is only enabled when required."; |
| 4654 | const char kAlwaysEnableHdcpDefault[] = "Default"; |
| 4655 | const char kAlwaysEnableHdcpType0[] = "Type 0"; |
| 4656 | const char kAlwaysEnableHdcpType1[] = "Type 1"; |
| 4657 | |
Jerry Liu | 14ec85e | 2023-01-31 06:00:52 | [diff] [blame] | 4658 | const char kPersonalizationJellyName[] = "Jelly design for Personalization App"; |
| 4659 | const char kPersonalizationJellyDescription[] = |
Jeffrey Young | d01036a | 2023-02-03 02:50:38 | [diff] [blame] | 4660 | "Feature to enable the Jelly design in Personalization App. Requires " |
| 4661 | "jelly-colors flag to be enabled."; |
Jerry Liu | a600ab9 | 2022-10-28 01:12:28 | [diff] [blame] | 4662 | |
Eric Sum | 2971b95 | 2022-10-20 04:55:37 | [diff] [blame] | 4663 | const char kAmbientModeThrottleAnimationName[] = |
| 4664 | "Throttle the frame rate of Lottie animations in ambient mode"; |
| 4665 | const char kAmbientModeThrottleAnimationDescription[] = |
| 4666 | "The throttled frame rate and when to throttle are embedded within the " |
| 4667 | "Lottie animation file itself. It is chosen by the motion designer and " |
| 4668 | "varies depending on how much motion there is in the animation. This is " |
| 4669 | "done in the hopes of improving power consumption while maintaining the " |
| 4670 | "same user-visible smoothness. This flag applies to all ambient Lottie " |
| 4671 | "animations that have throttling specified in the file."; |
| 4672 | |
Antoni Dikov | b348750 | 2022-09-21 15:24:21 | [diff] [blame] | 4673 | const char kApnRevampName[] = "APN Revamp"; |
| 4674 | const char kApnRevampDescription[] = |
| 4675 | "Enables the ChromeOS APN Revamp, which updates cellular network APN " |
| 4676 | "system UI and related infrastructure."; |
| 4677 | |
Ryo Hashimoto | 8f4b30ced | 2019-04-08 12:14:19 | [diff] [blame] | 4678 | const char kArcCustomTabsExperimentName[] = |
| 4679 | "Enable Custom Tabs experiment for ARC"; |
| 4680 | const char kArcCustomTabsExperimentDescription[] = |
| 4681 | "Allow Android apps to use Custom Tabs." |
| 4682 | "This feature only works on the Canary and Dev channels."; |
| 4683 | |
Alexander Bolodurin | 4e0a465c | 2021-03-31 23:14:03 | [diff] [blame] | 4684 | const char kArcDocumentsProviderUnknownSizeName[] = |
| 4685 | "Enable ARC DocumentsProvider unknown file size handling"; |
| 4686 | const char kArcDocumentsProviderUnknownSizeDescription[] = |
| 4687 | "Allow opening DocumentsProvider files where size is not reported."; |
| 4688 | |
Satoshi Niwa | 8b1d528 | 2018-10-24 04:53:03 | [diff] [blame] | 4689 | const char kArcFilePickerExperimentName[] = |
| 4690 | "Enable file picker experiment for ARC"; |
| 4691 | const char kArcFilePickerExperimentDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4692 | "Enables using ChromeOS file picker in ARC."; |
Satoshi Niwa | 8b1d528 | 2018-10-24 04:53:03 | [diff] [blame] | 4693 | |
Shengsong Tan | 61924b6 | 2022-09-13 03:05:11 | [diff] [blame] | 4694 | extern const char kArcFixupWindowName[] = |
| 4695 | "Enable ARC Ghost Window for ARC App fixup"; |
| 4696 | extern const char kArcFixupWindowDescription[] = |
| 4697 | "Popup ARC Ghost Window app launching before fixup finishes."; |
| 4698 | |
Shengsong Tan | 3cdcea24 | 2022-10-27 06:32:59 | [diff] [blame] | 4699 | extern const char kArcGhostWindowNewStyleName[] = |
| 4700 | "Enable new UI for ARC Ghost Window"; |
| 4701 | extern const char kArcGhostWindowNewStyleDescription[] = |
| 4702 | "Allow use new UI for ARC Ghost Window if corresponding launch source " |
| 4703 | "request it."; |
| 4704 | |
Rachel Wong | ec3b8c4 | 2022-07-08 03:11:22 | [diff] [blame] | 4705 | const char kArcGameModeName[] = "Enable Game Mode for ARC"; |
Matthew DeVore | b8bdedd | 2022-06-28 15:17:46 | [diff] [blame] | 4706 | const char kArcGameModeDescription[] = |
| 4707 | "ARC Fullscreen Games will request accomodation from ChromeOS for " |
| 4708 | "sustained performance."; |
| 4709 | |
Charles William Dick | a0a0f97 | 2023-01-27 02:12:32 | [diff] [blame] | 4710 | const char kArcIdleManagerName[] = "Enable ARC Idle Manager"; |
| 4711 | const char kArcIdleManagerDescription[] = |
| 4712 | "ARC will turn on Android's doze mode when idle."; |
| 4713 | |
Shengsong Tan | 6cb8859 | 2022-11-09 01:57:35 | [diff] [blame] | 4714 | extern const char kArcInstantResponseWindowOpenName[] = |
| 4715 | "Enable Instance Response for ARC app window open"; |
| 4716 | extern const char kArcInstantResponseWindowOpenDescription[] = |
| 4717 | "In some devices the placeholder window will popup immediately after the " |
| 4718 | "user attempts to launch apps."; |
| 4719 | |
Tetsui Ohkubo | 4c6d7f4 | 2021-07-07 16:47:37 | [diff] [blame] | 4720 | const char kArcKeyboardShortcutHelperIntegrationName[] = |
| 4721 | "Enable keyboard shortcut helper integration for ARC"; |
| 4722 | const char kArcKeyboardShortcutHelperIntegrationDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4723 | "Shows keyboard shortcuts from Android apps in ChromeOS Shortcut Viewer"; |
Tetsui Ohkubo | 4c6d7f4 | 2021-07-07 16:47:37 | [diff] [blame] | 4724 | |
Lev Rumyantsev | 6eddc80 | 2019-08-27 19:41:21 | [diff] [blame] | 4725 | const char kArcNativeBridgeToggleName[] = |
| 4726 | "Toggle between native bridge implementations for ARC"; |
| 4727 | const char kArcNativeBridgeToggleDescription[] = |
| 4728 | "Toggle between native bridge implementations for ARC."; |
Lev Rumyantsev | 7a854431 | 2017-08-18 19:26:51 | [diff] [blame] | 4729 | |
Tim Sergeant | b2f5dc0 | 2022-09-14 08:07:17 | [diff] [blame] | 4730 | const char kArcNearbyShareFuseBoxName[] = "ARC Nearby Sharing through FuseBox"; |
| 4731 | const char kArcNearbyShareFuseBoxDescription[] = |
| 4732 | "When enabled, files shared through ARC Nearby Sharing will be shared " |
| 4733 | "through the ChromeOS FuseBox Service."; |
| 4734 | |
Yusuke Sato | 4717d178 | 2021-03-12 23:27:17 | [diff] [blame] | 4735 | const char kArcRtVcpuDualCoreName[] = |
| 4736 | "Enable ARC real time vcpu on a device with 2 logical cores online."; |
| 4737 | const char kArcRtVcpuDualCoreDesc[] = |
| 4738 | "Enable ARC real time vcpu on a device with 2 logical cores online to " |
| 4739 | "reduce media playback glitch."; |
| 4740 | |
| 4741 | const char kArcRtVcpuQuadCoreName[] = |
| 4742 | "Enable ARC real time vcpu on a device with 3+ logical cores online."; |
| 4743 | const char kArcRtVcpuQuadCoreDesc[] = |
| 4744 | "Enable ARC real time vcpu on a device with 3+ logical cores online to " |
| 4745 | "reduce media playback glitch."; |
| 4746 | |
Toshiki Kikuchi | 00337ca | 2022-10-28 02:44:39 | [diff] [blame] | 4747 | const char kArcUpdateO4CListViaA2C2Name[] = "Update the O4C list via A2C2"; |
| 4748 | const char kArcUpdateO4CListViaA2C2Desc[] = |
| 4749 | "When enabled, the O4C list is allowed to be updated via A2C2."; |
| 4750 | |
Shengsong Tan | 19da8d10 | 2023-02-02 13:29:53 | [diff] [blame] | 4751 | const char kArcVmmSwapName[] = "Vmm swap support for ARCVM"; |
| 4752 | const char kArcVmmSwapDesc[] = |
| 4753 | "When enabled, the ARCVM will be launched with vmm swap feature."; |
| 4754 | |
Shengsong Tan | 4cc0257 | 2023-02-06 05:25:24 | [diff] [blame] | 4755 | const char kArcVmmSwapKBShortcutName[] = |
| 4756 | "Keyboard shortcut trigger for ARCVM" |
| 4757 | " vmm swap feature"; |
| 4758 | const char kArcVmmSwapKBShortcutDesc[] = |
| 4759 | "Alt + Ctrl + Shift + O/P to enable / disable ARCVM vmm swap. Only for " |
| 4760 | "experimental usage."; |
| 4761 | |
Pattara Teerapong | 425077a | 2023-01-12 15:21:40 | [diff] [blame] | 4762 | const char kArcEnableAAudioMMAPName[] = "Enable ARCVM AAudio MMAP"; |
| 4763 | const char kArcEnableAAudioMMAPDescription[] = |
| 4764 | "Enable AAudio MMAP support for ARCVM which provides low latency audio " |
| 4765 | "for supported apps."; |
| 4766 | |
Mustafa Camurcu | 32cfc59 | 2021-02-10 19:00:40 | [diff] [blame] | 4767 | const char kArcEnableUsapName[] = |
| 4768 | "Enable ARC Unspecialized Application Processes"; |
| 4769 | const char kArcEnableUsapDesc[] = |
| 4770 | "Enable ARC Unspecialized Application Processes when applicable for " |
| 4771 | "high-memory devices."; |
| 4772 | |
Satoshi Niwa | 4e1c996 | 2022-03-01 00:23:57 | [diff] [blame] | 4773 | const char kArcEnableVirtioBlkForDataName[] = |
| 4774 | "Enable virtio-blk for ARCVM /data"; |
| 4775 | const char kArcEnableVirtioBlkForDataDesc[] = |
| 4776 | "If enabled, ARCVM uses virtio-blk for /data in Android storage."; |
| 4777 | |
Andrew Moylan | 2db11cd | 2019-05-22 14:25:15 | [diff] [blame] | 4778 | const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode"; |
| 4779 | const char kAshEnableUnifiedDesktopDescription[] = |
| 4780 | "Enable unified desktop mode which allows a window to span multiple " |
| 4781 | "displays."; |
| 4782 | |
Li-Yu Yu | 7610f008 | 2023-01-04 08:36:29 | [diff] [blame] | 4783 | const char kAudioFlexibleLoopbackName[] = |
| 4784 | "ChromeOS flexible loopback API support"; |
| 4785 | const char kAudioFlexibleLoopbackDescription[] = |
| 4786 | "Enable flexible loopback API support in ChromeOS."; |
| 4787 | |
Chih-Yang Hsia | 540cf37 | 2022-08-04 08:10:22 | [diff] [blame] | 4788 | const char kAudioHFPMicSRName[] = |
| 4789 | "Audio super-resolution Bluetooth HFP microphone"; |
| 4790 | const char kAudioHFPMicSRDescription[] = |
| 4791 | "Enable super-resolution Bluetooth HFP microphone recording."; |
| 4792 | |
Owen Zhang | bbb45a5c | 2022-05-24 01:38:04 | [diff] [blame] | 4793 | const char kAudioSettingsPageName[] = "Audio Settings Page"; |
| 4794 | const char kAudioSettingsPageDescription[] = |
| 4795 | "Enables the dedicated Audio Settings Page in system settings, which " |
| 4796 | "allows for greater audio configuration."; |
| 4797 | |
En-Shuo Hsu | 23db6bc | 2021-08-26 15:07:23 | [diff] [blame] | 4798 | const char kAudioUrlName[] = "Enable chrome://audio"; |
| 4799 | const char kAudioUrlDescription[] = |
| 4800 | "Enable chrome://audio that is designed for debugging ChromeOS audio " |
| 4801 | "issues"; |
| 4802 | |
Ren-Pei Zeng | 61605a5 | 2021-12-06 13:07:48 | [diff] [blame] | 4803 | const char kAutoFramingOverrideName[] = "Auto-framing control override"; |
| 4804 | const char kAutoFramingOverrideDescription[] = |
| 4805 | "Overrides the default to forcibly enable or disable the auto-framing " |
| 4806 | "feature"; |
| 4807 | |
Yulun Wu | fad5377 | 2022-06-22 22:56:35 | [diff] [blame] | 4808 | const char kAutocompleteExtendedSuggestionsName[] = |
| 4809 | "Extended suggestions for CrOS autocomplete"; |
| 4810 | const char kAutocompleteExtendedSuggestionsDescription[] = |
| 4811 | "Enables extended autocomplete suggestions experiment on ChromeOS."; |
| 4812 | |
Curtis McMullan | f135180 | 2022-12-02 05:23:02 | [diff] [blame] | 4813 | const char kAutocorrectByDefaultName[] = "CrOS autocorrect by default"; |
| 4814 | const char kAutocorrectByDefaultDescription[] = |
| 4815 | "Enables autocorrect by default experiment on ChromeOS"; |
| 4816 | |
Bao-Duy Tran | 395c169c7 | 2022-02-14 06:57:34 | [diff] [blame] | 4817 | const char kAutocorrectParamsTuningName[] = "CrOS autocorrect params tuning"; |
| 4818 | const char kAutocorrectParamsTuningDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4819 | "Enables params tuning experiment for autocorrect on ChromeOS."; |
Bao-Duy Tran | 395c169c7 | 2022-02-14 06:57:34 | [diff] [blame] | 4820 | |
Zac Partridge | efc2ec0 | 2022-11-21 06:28:45 | [diff] [blame] | 4821 | const char kAutocorrectToggleName[] = "CrOS autocorrect toggle"; |
| 4822 | const char kAutocorrectToggleDescription[] = |
| 4823 | "Enables using a toggle for enabling autocorrect on ChromeOS."; |
| 4824 | |
Yue Li | 1c349641 | 2022-08-10 23:37:14 | [diff] [blame] | 4825 | const char kAvatarsCloudMigrationName[] = |
| 4826 | "Loading CrOS avatar images from the cloud"; |
| 4827 | const char kAvatarsCloudMigrationDescription[] = |
| 4828 | "Enables loading avatar images from the cloud on ChromeOS."; |
| 4829 | |
Michael Sun | 1b15a30 | 2020-04-07 02:57:29 | [diff] [blame] | 4830 | const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size"; |
| 4831 | const char kBluetoothFixA2dpPacketSizeDescription[] = |
| 4832 | "Fixes Bluetooth A2DP packet size to a smaller default value to improve " |
| 4833 | "audio quality and may fix audio stutter."; |
| 4834 | |
Joseph Hwang | c0c68e6 | 2022-08-12 16:52:16 | [diff] [blame] | 4835 | const char kBluetoothQualityReportName[] = "Bluetooth Quality Report"; |
| 4836 | const char kBluetoothQualityReportDescription[] = |
| 4837 | "Enables the Bluetooth Quality Report feature on Bluetooth controllers " |
| 4838 | "which will send the Bluetooth link quality statistics such as the " |
| 4839 | "signal strength, the lost packet count, etc. to the host."; |
| 4840 | |
Hsin-Yu Chao | 6f2cfd6a | 2020-11-16 04:37:34 | [diff] [blame] | 4841 | const char kBluetoothWbsDogfoodName[] = "Bluetooth WBS dogfood"; |
| 4842 | const char kBluetoothWbsDogfoodDescription[] = |
| 4843 | "Enables Bluetooth wideband speech mic as default audio option. " |
| 4844 | "Note that flipping this flag makes no difference on most of the " |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4845 | "ChromeOS models, because Bluetooth WBS is either unsupported " |
Hsin-Yu Chao | 6f2cfd6a | 2020-11-16 04:37:34 | [diff] [blame] | 4846 | "or fully launched. Only on the few models that Bluetooth WBS is " |
| 4847 | "still stablizing this flag will take effect."; |
| 4848 | |
Manish Mandlik | dd93b61 | 2022-08-12 01:08:19 | [diff] [blame] | 4849 | const char kBluetoothCoredumpName[] = "Enable Bluetooth Device Coredump"; |
| 4850 | const char kBluetoothCoredumpDescription[] = |
| 4851 | "Enable Bluetooth coredump collection if supported. Please note that " |
| 4852 | "coredumps are only collected when hardware exceptions occur and are " |
| 4853 | "used for debugging such exceptions."; |
| 4854 | |
mingxuanshi | a43a7ce | 2022-08-25 07:46:36 | [diff] [blame] | 4855 | const char kRobustAudioDeviceSelectLogicName[] = |
| 4856 | "Robust Audio Device Select Logic"; |
| 4857 | const char kRobustAudioDeviceSelectLogicDescription[] = |
| 4858 | "A more robust logic for automatic audio device selection which is more " |
| 4859 | "capable of remembering the user's preferences of audio devices."; |
| 4860 | |
Sonny Sasaka | 9472521 | 2021-12-17 01:37:30 | [diff] [blame] | 4861 | const char kBluetoothUseFlossName[] = "Use Floss instead of BlueZ"; |
| 4862 | const char kBluetoothUseFlossDescription[] = |
| 4863 | "Enables using Floss (also known as Fluoride, Android's Bluetooth stack) " |
| 4864 | "instead of Bluez. This is meant to be used by developers and is not " |
| 4865 | "guaranteed to be stable"; |
| 4866 | |
Zhengping Jiang | 706c227 | 2022-07-13 05:50:34 | [diff] [blame] | 4867 | const char kBluetoothUseLLPrivacyName[] = "Enable LL Privacy in BlueZ"; |
| 4868 | const char kBluetoothUseLLPrivacyDescription[] = |
| 4869 | "Enable address resolution offloading to Bluetooth Controller if " |
| 4870 | "supported. Modifying this flag will cause Bluetooth Controller to reset."; |
| 4871 | |
Sam Cackett | 2891ad8 | 2022-12-08 19:45:55 | [diff] [blame] | 4872 | const char kCalendarJellyName[] = "Enable Calendar Jelly features"; |
| 4873 | const char kCalendarJellyDescription[] = |
| 4874 | "Enables Jelly changes for the sys tray Calendar views."; |
| 4875 | |
Jiaming Cheng | a809132 | 2021-08-05 04:30:45 | [diff] [blame] | 4876 | const char kCalendarViewName[] = |
| 4877 | "Productivity experiment: Monthly Calendar View"; |
| 4878 | const char kCalendarViewDescription[] = |
| 4879 | "Show Monthly Calendar View with Google Calendar events to increase " |
| 4880 | "productivity by helping users view their schedules more quickly."; |
| 4881 | |
Michele Fan | b0c93e4 | 2023-01-03 16:08:00 | [diff] [blame] | 4882 | const char kCaptureModeDemoToolsName[] = |
| 4883 | "Enable demo tools feature in screen capture"; |
| 4884 | const char kCaptureModeDemoToolsDescription[] = |
| 4885 | "Enables the ability to show clicks and keys during video recordings to " |
| 4886 | "enhance demo experience."; |
| 4887 | |
Roger Tinkoff | 64dbbb51 | 2022-05-12 03:07:43 | [diff] [blame] | 4888 | const char kCalendarModelDebugModeName[] = "Monthly Calendar Model Debug Mode"; |
| 4889 | const char kCalendarModelDebugModeDescription[] = |
| 4890 | "Debug mode for Monthly Calendar Model. This helps a lot in diagnosing any " |
| 4891 | "bugs in the calendar's event fetching/caching functionality. WARNING: DO " |
| 4892 | "NOT enable this flag unless you're OK with information about your " |
| 4893 | "calendar events, such as start/end times and summaries, being dumped to " |
| 4894 | "the system logs, where they are potentially visible to all users of the " |
| 4895 | "device."; |
| 4896 | |
Daniel Andersson | a34c86e | 2022-10-13 00:16:29 | [diff] [blame] | 4897 | extern const char kDesks16Name[] = "Enable up to 16 virtual desks"; |
| 4898 | extern const char kDesks16Description[] = |
| 4899 | "When enabled, up to 16 virtual desks are allowed."; |
| 4900 | |
Daniel Andersson | 3e213ab | 2022-04-18 22:43:54 | [diff] [blame] | 4901 | const char kDesksSaveAndRecallName[] = "Desks Save and Recall"; |
| 4902 | const char kDesksSaveAndRecallDescription[] = |
| 4903 | "Save a desk and its applications so that they can be recalled at a later " |
| 4904 | "time."; |
| 4905 | |
Richard Chui | 1b614177 | 2022-03-04 01:28:58 | [diff] [blame] | 4906 | const char kDesksTemplatesName[] = "Desk Templates"; |
Richard Chui | f823bf6 | 2021-10-29 21:06:01 | [diff] [blame] | 4907 | const char kDesksTemplatesDescription[] = |
| 4908 | "Streamline workflows by saving a group of applications and windows as a " |
Richard Chui | 1b614177 | 2022-03-04 01:28:58 | [diff] [blame] | 4909 | "launchable template in a new desk"; |
Richard Chui | f823bf6 | 2021-10-29 21:06:01 | [diff] [blame] | 4910 | |
Andreea Costinas | 81bed8a | 2022-11-23 16:03:38 | [diff] [blame] | 4911 | extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyName[] = |
| 4912 | "Experiment: Allows using identifiers in the DoH template URI"; |
| 4913 | extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyDescription[] = |
| 4914 | "Enables early testing of the DoH template URI with identifiers by " |
| 4915 | "evaluating user identifiers in the existing policy DnsOverHttpsTemplates " |
| 4916 | "and hashing them using a hardcoded salt."; |
| 4917 | |
Wei Lee | 4fe8718 | 2020-12-22 09:32:44 | [diff] [blame] | 4918 | const char kPreferConstantFrameRateName[] = "Prefer Constant Frame Rate"; |
| 4919 | const char kPreferConstantFrameRateDescription[] = |
| 4920 | "Enables this flag to prefer using constant frame rate for camera when " |
| 4921 | "streaming"; |
| 4922 | |
Wei Lee | 585fa1b | 2022-05-15 20:26:25 | [diff] [blame] | 4923 | const char kMoreVideoCaptureBuffersName[] = "More Video Capture Buffers"; |
| 4924 | const char kMoreVideoCaptureBuffersDescription[] = |
| 4925 | "This flag enables using a larger amount Chrome-allocated buffers for " |
| 4926 | "video capture. This larger amount is needed for deeper pipelines, e.g. " |
| 4927 | "sophisticated camera effects."; |
| 4928 | |
mojahsu | 3144bf3 | 2021-05-26 10:14:46 | [diff] [blame] | 4929 | const char kForceControlFaceAeName[] = "Force control face AE"; |
| 4930 | const char kForceControlFaceAeDescription[] = |
| 4931 | "Control this flag to force enable or disable face AE for camera"; |
mojahsu | 11ea38ae | 2021-05-06 03:30:11 | [diff] [blame] | 4932 | |
Ricky Liang | a3e6a16 | 2021-08-16 07:43:14 | [diff] [blame] | 4933 | const char kHdrNetOverrideName[] = "HDRnet control override"; |
| 4934 | const char kHdrNetOverrideDescription[] = |
| 4935 | "Overrides the default to forcibly enable or disable the HDRnet feature"; |
| 4936 | |
Jason Zhang | 9ec87775 | 2021-10-29 18:10:50 | [diff] [blame] | 4937 | const char kCellularBypassESimInstallationConnectivityCheckName[] = |
| 4938 | "Bypass eSIM installation connectivity check"; |
| 4939 | const char kCellularBypassESimInstallationConnectivityCheckDescription[] = |
| 4940 | "Bypass the non-cellular internet connectivity check during eSIM " |
| 4941 | "installation."; |
| 4942 | |
Jason Zhang | 26cacea | 2022-04-04 18:55:04 | [diff] [blame] | 4943 | const char kCellularUseSecondEuiccName[] = "Use second Euicc"; |
| 4944 | const char kCellularUseSecondEuiccDescription[] = |
| 4945 | "When enabled Cellular Setup and Settings UI will use the second available " |
| 4946 | "Euicc that's exposed by Hermes."; |
Azeem Arshad | 43b191b | 2021-01-15 23:59:56 | [diff] [blame] | 4947 | |
Colin Kincaid | 0dcc3b02 | 2022-05-26 15:51:57 | [diff] [blame] | 4948 | const char kClipboardHistoryReorderName[] = |
| 4949 | "Keep the most recently pasted item at the top of clipboard history"; |
| 4950 | const char kClipboardHistoryReorderDescription[] = |
| 4951 | "Enables an experimental behavior change where each time a clipboard " |
| 4952 | "history item is pasted, that item shifts to the top of the list."; |
| 4953 | |
Roman Arora | 595d571 | 2021-09-24 18:06:05 | [diff] [blame] | 4954 | const char kComponentUpdaterTestRequestName[] = |
| 4955 | "Enable the component updater check 'test-request' parameter"; |
| 4956 | const char kComponentUpdaterTestRequestDescription[] = |
| 4957 | "Enables the 'test-request' parameter for component updater check requests." |
| 4958 | " Overrides any other component updater check request parameters that may " |
| 4959 | "have been specified."; |
| 4960 | |
Yulun Wu | 1e35513 | 2020-02-11 20:12:22 | [diff] [blame] | 4961 | const char kContextualNudgesName[] = |
| 4962 | "Contextual nudges for user gesture education"; |
| 4963 | const char kContextualNudgesDescription[] = |
| 4964 | "Enables contextual nudges, periodically showing the user a label " |
| 4965 | "explaining how to interact with a particular UI element using gestures."; |
| 4966 | |
Jing Wang | 859fb1a | 2020-11-27 00:26:48 | [diff] [blame] | 4967 | const char kCrosOnDeviceGrammarCheckName[] = "On-device Grammar Check"; |
| 4968 | const char kCrosOnDeviceGrammarCheckDescription[] = |
| 4969 | "Enable new on-device grammar check component."; |
| 4970 | |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4971 | const char kSystemExtensionsName[] = "ChromeOS System Extensions"; |
Christopher Lam | d8708c3 | 2021-10-29 04:31:47 | [diff] [blame] | 4972 | const char kSystemExtensionsDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 4973 | "Enable the ChromeOS System Extension platform."; |
Christopher Lam | d8708c3 | 2021-10-29 04:31:47 | [diff] [blame] | 4974 | |
Giovanni Ortuño Urquidi | feb77d2 | 2022-04-08 05:40:23 | [diff] [blame] | 4975 | const char kEnableServiceWorkersForChromeUntrustedName[] = |
| 4976 | "Enable chrome-untrusted:// Service Workers"; |
| 4977 | const char kEnableServiceWorkersForChromeUntrustedDescription[] = |
| 4978 | "When enabled, allows chrome-untrusted:// WebUIs to use service workers."; |
| 4979 | |
Tyler Garrett | 86f698b3 | 2023-01-25 22:01:41 | [diff] [blame] | 4980 | const char kEnterpriseReportingUIName[] = |
| 4981 | "Enable chrome://enterprise-reporting"; |
| 4982 | const char kEnterpriseReportingUIDescription[] = |
| 4983 | "When enabled, allows for chrome://enterprise-reporting to be visited"; |
| 4984 | |
Fergus Dall | 9d0e95a | 2021-07-30 08:10:11 | [diff] [blame] | 4985 | const char kCrostiniContainerInstallName[] = |
| 4986 | "Debian version for new Crostini containers"; |
| 4987 | const char kCrostiniContainerInstallDescription[] = |
| 4988 | "New Crostini containers will use this debian version"; |
David Munro | 3728ef7 | 2019-10-30 07:22:15 | [diff] [blame] | 4989 | |
Ben Wells | 7238dd0 | 2019-05-02 08:20:32 | [diff] [blame] | 4990 | const char kCrostiniGpuSupportName[] = "Crostini GPU Support"; |
| 4991 | const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support."; |
| 4992 | |
David Munro | 9fce777c | 2020-10-07 03:55:54 | [diff] [blame] | 4993 | const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch"; |
| 4994 | const char kCrostiniResetLxdDbDescription[] = |
| 4995 | "Recreates the LXD database every time we launch it"; |
| 4996 | |
Nicholas Verne | 6eb340a8 | 2021-10-19 05:55:38 | [diff] [blame] | 4997 | const char kCrostiniMultiContainerName[] = "Allow multiple Crostini containers"; |
| 4998 | const char kCrostiniMultiContainerDescription[] = |
| 4999 | "Experimental UI for creating and managing multiple Crostini containers"; |
| 5000 | |
Timothy Loh | 05b4d59f | 2021-11-08 05:05:52 | [diff] [blame] | 5001 | const char kCrostiniImeSupportName[] = "Crostini IME support"; |
| 5002 | const char kCrostiniImeSupportDescription[] = |
| 5003 | "Experimental support for IMEs (excluding VK) on Crostini."; |
| 5004 | |
| 5005 | const char kCrostiniVirtualKeyboardSupportName[] = |
| 5006 | "Crostini Virtual Keyboard Support"; |
| 5007 | const char kCrostiniVirtualKeyboardSupportDescription[] = |
| 5008 | "Experimental support for the Virtual Keyboard on Crostini."; |
| 5009 | |
David Munro | 762bf32 | 2022-02-03 02:21:46 | [diff] [blame] | 5010 | const char kBruschettaName[] = "Enable the third party VMs feature"; |
| 5011 | const char kBruschettaDescription[] = |
| 5012 | "Enables UI support for third party/generic VMs"; |
| 5013 | |
Fergus Dall | db66df3 | 2022-08-19 02:54:44 | [diff] [blame] | 5014 | const char kBruschettaAlphaMigrateName[] = "Migration for Bruschetta Alpha"; |
| 5015 | const char kBruschettaAlphaMigrateDescription[] = |
| 5016 | "Enable this flag to migrate a Bruschetta installed during the alpha. " |
| 5017 | "Requires the bruschetta flag to be enabled."; |
| 5018 | |
Kam Kwankajornkiet | 3fcc30ef | 2022-12-02 00:54:12 | [diff] [blame] | 5019 | extern const char kCameraAppLowStorageWarningName[] = |
| 5020 | "Camera App Low Storage Warning"; |
| 5021 | extern const char kCameraAppLowStorageWarningDescription[] = |
| 5022 | "Enable this flag to show warning and handle the video recording when " |
| 5023 | "device storage is running low"; |
| 5024 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 5025 | const char kCryptAuthV2DedupDeviceLastActivityTimeName[] = |
Pu Shi | be74a57 | 2021-11-30 21:40:11 | [diff] [blame] | 5026 | "Dedup devices by last activity time"; |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 5027 | const char kCryptAuthV2DedupDeviceLastActivityTimeDescription[] = |
Pu Shi | be74a57 | 2021-11-30 21:40:11 | [diff] [blame] | 5028 | "Deduplicates phones in multi-device setup drop-down list by last " |
| 5029 | "activity time"; |
| 5030 | |
Pilar Molina Lopez | d5b78751 | 2020-11-19 00:21:48 | [diff] [blame] | 5031 | const char kDisableBufferBWCompressionName[] = |
| 5032 | "Disable buffer bandwidth compression"; |
| 5033 | const char kDisableBufferBWCompressionDescription[] = |
| 5034 | "Disable bandwidth compression when allocating buffers"; |
| 5035 | |
Ricky Liang | 8df4337 | 2020-07-09 09:41:09 | [diff] [blame] | 5036 | const char kDisableCameraFrameRotationAtSourceName[] = |
| 5037 | "Disable camera frame rotation at source"; |
| 5038 | const char kDisableCameraFrameRotationAtSourceDescription[] = |
| 5039 | "Disable camera frame rotation to the upright display orientation in the " |
| 5040 | "video capture device"; |
| 5041 | |
Thanh Nguyen | a4c93344 | 2019-05-11 03:43:55 | [diff] [blame] | 5042 | const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()"; |
| 5043 | const char kDisableCancelAllTouchesDescription[] = |
| 5044 | "If enabled, a canceled touch will not force all other touches to be " |
| 5045 | "canceled."; |
| 5046 | |
Daniele Castagna | 893d822e | 2019-03-08 21:37:11 | [diff] [blame] | 5047 | const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences"; |
| 5048 | const char kDisableExplicitDmaFencesDescription[] = |
| 5049 | "Always rely on implicit syncrhonization between GPU and display " |
| 5050 | "controller instead of using dma-fences explcitily when available."; |
| 5051 | |
Bailey Berro | 01f0974 | 2020-07-21 05:40:59 | [diff] [blame] | 5052 | const char kDisplayAlignmentAssistanceName[] = |
| 5053 | "Enable Display Alignment Assistance"; |
| 5054 | const char kDisplayAlignmentAssistanceDescription[] = |
| 5055 | "Show indicators on shared edges of the displays when user is " |
| 5056 | "attempting to move their mouse over to another display. Show preview " |
| 5057 | "indicators when the user is moving a display in display layouts."; |
| 5058 | |
Harry Cutts | 932c80a | 2021-10-07 15:00:38 | [diff] [blame] | 5059 | const char kEnableLibinputToHandleTouchpadName[] = |
| 5060 | "Enable libinput to handle touchpad."; |
| 5061 | const char kEnableLibinputToHandleTouchpadDescription[] = |
| 5062 | "Use libinput instead of the gestures library to handle touchpad." |
| 5063 | "Libgesures works very well on modern devices but fails on legacy" |
| 5064 | "devices. Use libinput if an input device doesn't work or is not working" |
| 5065 | "well."; |
| 5066 | |
William Mahon | 9d1605f | 2022-04-22 23:54:59 | [diff] [blame] | 5067 | const char kEnableFakeKeyboardHeuristicName[] = |
| 5068 | "Enable Fake Keyboard Heuristic"; |
| 5069 | const char kEnableFakeKeyboardHeuristicDescription[] = |
| 5070 | "Enable heuristic to prevent non-keyboard devices from pretending " |
| 5071 | "to be keyboards. Primarily assists in preventing the virtual keyboard " |
| 5072 | "from being disabled unintentionally."; |
| 5073 | |
Jon Mann | 8e44814 | 2021-07-29 19:31:30 | [diff] [blame] | 5074 | const char kFastPairName[] = "Enable Fast Pair"; |
| 5075 | const char kFastPairDescription[] = |
| 5076 | "Enables Google Fast Pair service which uses BLE to discover supported " |
Josh Graydus | 84ef1a37 | 2022-05-10 21:40:51 | [diff] [blame] | 5077 | "nearby Bluetooth devices and surfaces a notification for quick pairing."; |
Jon Mann | 8e44814 | 2021-07-29 19:31:30 | [diff] [blame] | 5078 | |
Alex Kingsborough | 31acba6e | 2023-01-17 21:47:45 | [diff] [blame] | 5079 | const char kFastPairHandshakeRefactorName[] = |
| 5080 | "Enable Fast Pair Handshake Refactor"; |
| 5081 | const char kFastPairHandshakeRefactorDescription[] = |
| 5082 | "Enables refactored handshake logic for Google Fast Pair service."; |
| 5083 | |
Shane Fitzpatrick | ea88229 | 2022-01-24 20:30:15 | [diff] [blame] | 5084 | const char kFastPairLowPowerName[] = "Enable Fast Pair Low Power mode"; |
| 5085 | const char kFastPairLowPowerDescription[] = |
| 5086 | "Enables Fast Pair Low Power mode, which doesn't scan for devices " |
| 5087 | "continously. This results in lower power usage, but also higher latency " |
| 5088 | "for device discovery."; |
| 5089 | |
Jon Mann | 022bd352 | 2022-01-19 22:11:51 | [diff] [blame] | 5090 | const char kFastPairSoftwareScanningName[] = |
| 5091 | "Enable Fast Pair Software Scanning"; |
| 5092 | const char kFastPairSoftwareScanningDescription[] = |
| 5093 | "Allow using Fast Pair on devices which don't support hardware offloading " |
| 5094 | "of BLE scans. For development use."; |
| 5095 | |
Juliet Levesque | aa230e0 | 2022-04-19 18:11:14 | [diff] [blame] | 5096 | const char kFastPairSavedDevicesName[] = "Enable Fast Pair Saved Devices"; |
| 5097 | const char kFastPairSavedDevicesDescription[] = |
| 5098 | "Enables the Fast Pair \"Saved Devices\" page to display a list of the " |
| 5099 | "user's devices and provide the option to opt in or out of saving devices " |
| 5100 | "to their account."; |
| 5101 | |
Ashutosh Singhal | ab30b18e | 2022-06-24 15:09:27 | [diff] [blame] | 5102 | const char kFrameSinkDesktopCapturerInCrdName[] = |
| 5103 | "Enable FrameSinkDesktopCapturer in CRD"; |
| 5104 | const char kFrameSinkDesktopCapturerInCrdDescription[] = |
| 5105 | "Enables the use of FrameSinkDesktopCapturer in the video streaming for " |
| 5106 | "CRD, " |
| 5107 | "replacing the use of AuraDesktopCapturer"; |
| 5108 | |
Miguel Casas | 8821b098 | 2020-07-02 12:28:49 | [diff] [blame] | 5109 | const char kUseHDRTransferFunctionName[] = |
| 5110 | "Monitor/Display HDR transfer function"; |
| 5111 | const char kUseHDRTransferFunctionDescription[] = |
| 5112 | "Allows using the HDR transfer functions of any connected monitor that " |
| 5113 | "supports it"; |
Ahmed Fakhry | 4f567e69 | 2018-10-16 15:51:08 | [diff] [blame] | 5114 | const char kDoubleTapToZoomInTabletModeName[] = |
| 5115 | "Double-tap to zoom in tablet mode"; |
| 5116 | const char kDoubleTapToZoomInTabletModeDescription[] = |
| 5117 | "If Enabled, double tapping in webpages while in tablet mode will zoom the " |
| 5118 | "page."; |
| 5119 | |
Yulun Wu | b88a920 | 2021-07-13 19:44:56 | [diff] [blame] | 5120 | const char kQuickSettingsPWANotificationsName[] = |
| 5121 | "Enable setting of PWA notification permissions in quick settings "; |
| 5122 | const char kQuickSettingsPWANotificationsDescription[] = |
| 5123 | "Replace website notification permissions with PWA notification " |
| 5124 | "permissions in the quick settings menu. Website notification permissions " |
| 5125 | "settings will be migrated to the lacros - chrome browser."; |
| 5126 | |
Travis Lane | 636a4ac | 2022-05-24 16:28:55 | [diff] [blame] | 5127 | const char kDriveFsChromeNetworkingName[] = |
| 5128 | "Enable the DriveFS / Chrome Network Service bridge"; |
| 5129 | const char kDriveFsChromeNetworkingDescription[] = |
| 5130 | "Enable the bridge bewteen DriveFS and the Chrome Network Service for " |
| 5131 | "communication with the Drive backend."; |
| 5132 | |
Andrew Moylan | 2db11cd | 2019-05-22 14:25:15 | [diff] [blame] | 5133 | const char kEnableAppReinstallZeroStateName[] = |
| 5134 | "Enable Zero State App Reinstall Suggestions."; |
| 5135 | const char kEnableAppReinstallZeroStateDescription[] = |
| 5136 | "Enable Zero State App Reinstall Suggestions feature in launcher, which " |
| 5137 | "will show app reinstall recommendations at end of zero state list."; |
| 5138 | |
Cassie Wang | 0a701fa | 2022-11-09 01:19:04 | [diff] [blame] | 5139 | const char kEnableArcHostVpnName[] = |
| 5140 | "Enable ArcHostVpn for builtin VPN clients"; |
| 5141 | const char kEnableArcHostVpnDescription[] = |
| 5142 | "When a builtin VPN client is started, also start the ArcHostVpn service " |
| 5143 | "to reflect the builtin VPN config and VPN network inside ARC."; |
| 5144 | |
Xiao Yang | f59e693 | 2019-07-19 00:18:13 | [diff] [blame] | 5145 | const char kEnableAssistantRoutinesName[] = "Assistant Routines"; |
| 5146 | const char kEnableAssistantRoutinesDescription[] = "Enable Assistant Routines."; |
| 5147 | |
Alex Newcomer | e5a362c | 2019-05-02 19:31:35 | [diff] [blame] | 5148 | const char kEnableBackgroundBlurName[] = "Enable background blur."; |
| 5149 | const char kEnableBackgroundBlurDescription[] = |
minch | ab2ded5ce | 2019-09-06 18:32:28 | [diff] [blame] | 5150 | "Enables background blur for the Launcher, Shelf, Unified System Tray etc."; |
Alex Newcomer | e5a362c | 2019-05-02 19:31:35 | [diff] [blame] | 5151 | |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 5152 | const char kEnhancedClipboardNudgeSessionResetName[] = |
Matthew Mourgos | dfd6d85 | 2020-10-22 03:15:28 | [diff] [blame] | 5153 | "Enable resetting enhanced clipboard nudge data"; |
Lei Zhang | 1a6fd01b | 2021-03-24 17:03:48 | [diff] [blame] | 5154 | const char kEnhancedClipboardNudgeSessionResetDescription[] = |
Matthew Mourgos | dfd6d85 | 2020-10-22 03:15:28 | [diff] [blame] | 5155 | "When enabled, this will reset the clipboard nudge shown data on every new " |
| 5156 | "user session, allowing the nudge to be shown again."; |
| 5157 | |
Garrick Evans | e6f9f25 | 2023-01-19 05:43:08 | [diff] [blame] | 5158 | const char kDisableDnsProxyName[] = "Disable DNS proxy service for ChromeOS"; |
| 5159 | const char kDisableDnsProxyDescription[] = |
| 5160 | "Turns off DNS proxying and SecureDNS for ChromeOS (only). Does not impact " |
| 5161 | "Chrome browser."; |
| 5162 | |
Gil Dekel | 43a1458 | 2022-12-02 05:50:28 | [diff] [blame] | 5163 | const char kEnableEdidBasedDisplayIdsName[] = "Enable EDID-based display IDs"; |
| 5164 | const char kEnableEdidBasedDisplayIdsDescription[] = |
| 5165 | "When enabled, a display's ID will be produced by hashing certain values " |
| 5166 | "in the display's EDID blob. EDID-based display IDs allow ChromeOS to " |
| 5167 | "consistently identify previously connected displays, regardless of the " |
| 5168 | "physical port they were connected to, and load user display layouts more " |
| 5169 | "accurately."; |
| 5170 | |
Harry Cutts | 6deecd8 | 2022-04-08 01:30:23 | [diff] [blame] | 5171 | const char kEnableExternalKeyboardsInDiagnosticsAppName[] = |
| 5172 | "Enable external keyboards in the Diagnostics App"; |
| 5173 | const char kEnableExternalKeyboardsInDiagnosticsAppDescription[] = |
| 5174 | "Shows external keyboards in the Diagnostics App's input section. Requires " |
| 5175 | "#enable-input-in-diagnostics-app to be enabled."; |
| 5176 | |
James Hawkins | a9fefa8d | 2020-10-08 00:24:03 | [diff] [blame] | 5177 | const char kEnableHostnameSettingName[] = "Enable setting the device hostname"; |
| 5178 | const char kEnableHostnameSettingDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5179 | "Enables the ability to set the ChromeOS hostname, the name of the device " |
James Hawkins | a9fefa8d | 2020-10-08 00:24:03 | [diff] [blame] | 5180 | "that is exposed to the local network"; |
| 5181 | |
Harry Cutts | cfe6d934f | 2019-06-05 21:45:55 | [diff] [blame] | 5182 | const char kEnableGesturePropertiesDBusServiceName[] = |
| 5183 | "Enable gesture properties D-Bus service"; |
| 5184 | const char kEnableGesturePropertiesDBusServiceDescription[] = |
| 5185 | "Enable a D-Bus service for accessing gesture properties, which are used " |
| 5186 | "to configure input devices."; |
| 5187 | |
Xiaohui Chen | f4283f3 | 2018-11-26 20:02:50 | [diff] [blame] | 5188 | const char kEnableGoogleAssistantDspName[] = |
| 5189 | "Enable Google Assistant with hardware-based hotword"; |
| 5190 | const char kEnableGoogleAssistantDspDescription[] = |
| 5191 | "Enable an experimental feature that uses hardware-based hotword detection " |
| 5192 | "for Assistant. Only a limited number of devices have this type of " |
| 5193 | "hardware support."; |
| 5194 | |
Xiaohui Chen | c3baca4 | 2018-11-30 19:29:37 | [diff] [blame] | 5195 | const char kEnableGoogleAssistantStereoInputName[] = |
| 5196 | "Enable Google Assistant with stereo audio input"; |
| 5197 | const char kEnableGoogleAssistantStereoInputDescription[] = |
| 5198 | "Enable an experimental feature that uses stereo audio input for hotword " |
| 5199 | "and voice to text detection in Google Assistant."; |
| 5200 | |
Xiaohui Chen | 3f3a5bf1 | 2019-09-28 00:29:45 | [diff] [blame] | 5201 | const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC"; |
| 5202 | const char kEnableGoogleAssistantAecDescription[] = |
| 5203 | "Enable an experimental feature that removes local feedback from audio " |
| 5204 | "input to help hotword and ASR when background audio is playing."; |
| 5205 | |
Rob Schonberger | 11bb281 | 2019-07-31 23:41:00 | [diff] [blame] | 5206 | const char kEnableHeuristicStylusPalmRejectionName[] = |
| 5207 | "Enable Heuristic for Stylus/Palm Rejection."; |
| 5208 | const char kEnableHeuristicStylusPalmRejectionDescription[] = |
| 5209 | "Enable additional heuristic palm rejection logic when interacting with " |
| 5210 | "stylus usage. Not intended for all devices."; |
| 5211 | |
Harry Cutts | 8b445de | 2021-06-10 02:25:55 | [diff] [blame] | 5212 | const char kEnableInputEventLoggingName[] = "Enable input event logging"; |
| 5213 | const char kEnableInputEventLoggingDescription[] = |
| 5214 | "Enable detailed logging of input events from touchscreens, touchpads, and " |
| 5215 | "mice. These events include the locations of all touches as well as " |
| 5216 | "relative pointer movements, and so may disclose sensitive data. They " |
| 5217 | "will be included in feedback reports and system logs, so DO NOT ENTER " |
| 5218 | "SENSITIVE INFORMATION with this flag enabled."; |
| 5219 | |
Harry Cutts | f7435671 | 2021-05-14 02:13:38 | [diff] [blame] | 5220 | const char kEnableInputInDiagnosticsAppName[] = |
| 5221 | "Enable input device cards in the Diagnostics App"; |
| 5222 | const char kEnableInputInDiagnosticsAppDescription[] = |
| 5223 | "Enable input device cards in the Diagnostics App"; |
| 5224 | |
Roger Tinkoff | 6c1bed2 | 2022-01-07 14:52:01 | [diff] [blame] | 5225 | const char kEnableKeyboardBacklightToggleName[] = |
| 5226 | "Enable Keyboard Backlight Toggle."; |
| 5227 | const char kEnableKeyboardBacklightToggleDescription[] = |
| 5228 | "Enable toggling of the keyboard backlight. By " |
| 5229 | "default, this flag is enabled."; |
| 5230 | |
Ashley Prasad | 6fb42c2e | 2022-03-21 16:07:07 | [diff] [blame] | 5231 | const char kEnableLogControllerForDiagnosticsAppName[] = |
| 5232 | "Enable DiagnosticsLogController for Diagnostics App"; |
| 5233 | const char kEnableLogControllerForDiagnosticsAppDescription[] = |
| 5234 | "Uses DiagnosticsLogController to manage the lifetime of Diagnostics App " |
| 5235 | "logs. Enables creation of combined diagnostics log after Diagnostics " |
| 5236 | "App is closed."; |
| 5237 | |
alanlxl | 43ddc208 | 2022-02-01 00:24:16 | [diff] [blame] | 5238 | const char kEnableNeuralPalmAdaptiveHoldName[] = "Palm Rejection Adaptive Hold"; |
| 5239 | const char kEnableNeuralPalmAdaptiveHoldDescription[] = |
| 5240 | "Enable adaptive hold in palm rejection. Not compatible with all devices."; |
| 5241 | |
Rob Schonberger | c258473f | 2019-11-08 05:09:35 | [diff] [blame] | 5242 | const char kEnableNeuralStylusPalmRejectionName[] = |
| 5243 | "Enable Neural Palm Detection"; |
| 5244 | const char kEnableNeuralStylusPalmRejectionDescription[] = |
| 5245 | "Experimental: Enable Neural Palm detection. Not compatible with all " |
| 5246 | "devices."; |
| 5247 | |
Xiangdong Kong | ec5a077 | 2021-05-03 21:53:01 | [diff] [blame] | 5248 | const char kEnableOsFeedbackName[] = "Enable updated Feedback Tool App"; |
| 5249 | const char kEnableOsFeedbackDescription[] = |
| 5250 | "Enable the feedback tool with new UX design that helps users mitigate " |
| 5251 | "the issues while writing feedback and makes the UI easier to use."; |
| 5252 | |
Mitsuru Oshima | daf5457 | 2020-04-07 14:47:59 | [diff] [blame] | 5253 | const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping"; |
| 5254 | const char kEnableNewShortcutMappingDescription[] = |
| 5255 | "Enables experimental new shortcut mapping"; |
| 5256 | |
Rob Schonberger | ba23578 | 2020-03-11 05:01:14 | [diff] [blame] | 5257 | const char kEnablePalmOnMaxTouchMajorName[] = |
| 5258 | "Enable Palm when Touch is Maximum"; |
| 5259 | const char kEnablePalmOnMaxTouchMajorDescription[] = |
| 5260 | "Experimental: Enable Palm detection when the touchscreen reports max " |
| 5261 | "size. Not compatible with all devices."; |
| 5262 | |
| 5263 | const char kEnablePalmOnToolTypePalmName[] = |
| 5264 | "Enable Palm when Tool Type is Palm"; |
| 5265 | const char kEnablePalmOnToolTypePalmDescription[] = |
| 5266 | "Experimental: Enable palm detection when touchscreen reports " |
| 5267 | "TOOL_TYPE_PALM. Not compatible with all devices."; |
| 5268 | |
Rob Schonberger | e0a8e3c | 2020-04-21 03:04:39 | [diff] [blame] | 5269 | const char kEnablePalmSuppressionName[] = |
| 5270 | "Enable Palm Suppression with Stylus."; |
| 5271 | const char kEnablePalmSuppressionDescription[] = |
| 5272 | "If enabled, suppresses touch when a stylus is on a touchscreen."; |
| 5273 | |
Daniel Andersson | 3a71e98 | 2022-11-17 02:34:07 | [diff] [blame] | 5274 | const char kEnablePerDeskZOrderName[] = |
| 5275 | "Enable per-desk Z-order for all-desk windows."; |
| 5276 | const char kEnablePerDeskZOrderDescription[] = |
| 5277 | "The Z-order of all-desk windows is maintained on a per-desk basis. This " |
| 5278 | "means that all-desk windows will not keep popping to the front when " |
| 5279 | "switching desks."; |
| 5280 | |
Drew Davenport | ef72571 | 2022-07-13 21:05:08 | [diff] [blame] | 5281 | const char kEnableSeamlessRefreshRateSwitchingName[] = |
| 5282 | "Seamless Refresh Rate Switching"; |
| 5283 | const char kEnableSeamlessRefreshRateSwitchingDescription[] = |
| 5284 | "This option enables seamlessly changing the refresh rate based on power " |
| 5285 | "state on devices with supported hardware and drivers."; |
| 5286 | |
Harry Cutts | bc694180 | 2022-04-07 22:57:47 | [diff] [blame] | 5287 | const char kEnableTouchpadsInDiagnosticsAppName[] = |
| 5288 | "Enable touchpad cards in the Diagnostics App"; |
| 5289 | const char kEnableTouchpadsInDiagnosticsAppDescription[] = |
| 5290 | "Shows touchpad cards in the Diagnostics App's input section. Requires " |
| 5291 | "#enable-input-in-diagnostics-app to be enabled."; |
| 5292 | |
| 5293 | const char kEnableTouchscreensInDiagnosticsAppName[] = |
| 5294 | "Enable touchscreen cards in the Diagnostics App"; |
| 5295 | const char kEnableTouchscreensInDiagnosticsAppDescription[] = |
| 5296 | "Shows touchscreen cards in the Diagnostics App's input section. Requires " |
| 5297 | "#enable-input-in-diagnostics-app to be enabled."; |
| 5298 | |
Brian Geffon | 297843f | 2022-06-27 16:33:43 | [diff] [blame] | 5299 | const char kEnableZramWriteback[] = "Enable Zram Writeback"; |
| 5300 | const char kEnableZramWritebackDescription[] = |
| 5301 | "If enabled zram swap will be able to write back to disk increasing " |
| 5302 | "overall swap capacity"; |
| 5303 | |
Andrew Wolfers | a051f74 | 2022-03-03 21:08:22 | [diff] [blame] | 5304 | const char kEnableVariableRefreshRateName[] = "Enable Variable Refresh Rate"; |
| 5305 | const char kEnableVariableRefreshRateDescription[] = |
| 5306 | "Enable the variable refresh rate (Adaptive Sync) setting for capable " |
| 5307 | "displays."; |
| 5308 | |
Nathan Muggli | ef871180 | 2022-11-03 18:16:27 | [diff] [blame] | 5309 | const char kEnableViewPpdName[] = "Enable View PPD link."; |
| 5310 | const char kEnableViewPpdDescription[] = |
| 5311 | "Enable View PPD link in the edit printer dialog allowing the " |
| 5312 | "user to request to view the PPD for a specific printer."; |
| 5313 | |
Kyle Horimoto | 2d3b6b4 | 2022-05-13 02:12:16 | [diff] [blame] | 5314 | const char kEapGtcWifiAuthenticationName[] = "EAP-GTC WiFi Authentication"; |
| 5315 | const char kEapGtcWifiAuthenticationDescription[] = |
| 5316 | "Allows configuration of WiFi networks using EAP-GTC authentication"; |
| 5317 | |
whalechang | f06b6ea7 | 2022-08-26 01:13:11 | [diff] [blame] | 5318 | const char kAudioPeripheralVolumeGranularityName[] = |
| 5319 | "Audio Peripheral Volume Granularity"; |
| 5320 | const char kAudioPeripheralVolumeGranularityDescription[] = |
| 5321 | "Change audio peripheral volume granularity as close as peripheral " |
| 5322 | "reported. " |
| 5323 | "If the reported volume granularity are too small or too big. use 25 steps " |
| 5324 | "instead."; |
| 5325 | |
Abbas Nayebi | 6263f19 | 2022-05-13 21:10:41 | [diff] [blame] | 5326 | const char kEcheSWAName[] = "Enable Eche feature"; |
| 5327 | const char kEcheSWADescription[] = "This is the main flag for enabling Eche."; |
paulzhchen | 26343e9 | 2021-02-09 05:43:05 | [diff] [blame] | 5328 | |
Jon Mann | df97fa5 | 2022-11-28 23:01:16 | [diff] [blame] | 5329 | const char kEcheLauncherName[] = "Enable the Eche launcher"; |
| 5330 | const char kEcheLauncherDescription[] = |
| 5331 | "Enables the launcher for all apps for Eche."; |
| 5332 | |
Pu Shi | 9379343 | 2022-12-20 20:34:57 | [diff] [blame] | 5333 | const char kEcheLauncherListViewName[] = "Enable Eche launcher list view"; |
| 5334 | const char kEcheLauncherListViewDescription[] = |
| 5335 | "Convert Eche launcher from grid view to list view"; |
| 5336 | |
Joe Antonetti | b56b820 | 2023-01-18 20:42:08 | [diff] [blame] | 5337 | const char kEcheLauncherIconsInMoreAppsButtonName[] = |
| 5338 | "Enable app icons in the Eche launcher more apps button"; |
| 5339 | const char kEcheLauncherIconsInMoreAppsButtonDescription[] = |
| 5340 | "Show app icons in the Eche launcher more apps button"; |
| 5341 | |
paulzhchen | fac2819 | 2021-10-08 08:14:18 | [diff] [blame] | 5342 | const char kEcheSWADebugModeName[] = "Enable Eche Debug Mode"; |
Abbas Nayebi | 6263f19 | 2022-05-13 21:10:41 | [diff] [blame] | 5343 | const char kEcheSWADebugModeDescription[] = |
paulzhchen | 7c5907f5 | 2022-09-03 17:46:48 | [diff] [blame] | 5344 | "Save console logs of Eche in the system log"; |
| 5345 | |
| 5346 | const char kEcheSWAMeasureLatencyName[] = "Measure Eche E2E Latency"; |
| 5347 | const char kEcheSWAMeasureLatencyDescription[] = |
| 5348 | "Measure Eche E2E Latency and print all E2E latency logs of Eche in " |
| 5349 | "Console"; |
paulzhchen | fac2819 | 2021-10-08 08:14:18 | [diff] [blame] | 5350 | |
mavishsu | c3dcafaac | 2022-09-28 06:27:42 | [diff] [blame] | 5351 | const char kEcheSWASendStartSignalingName[] = |
| 5352 | "Enable Eche Send Start Signaling"; |
| 5353 | const char kEcheSWASendStartSignalingDescription[] = |
| 5354 | "Allows sending start signaling action to establish Eche's WebRTC " |
| 5355 | "connection"; |
| 5356 | |
mavishsu | 1ebe64a | 2022-09-29 12:52:24 | [diff] [blame] | 5357 | const char kEcheSWADisableStunServerName[] = "Disable Eche STUN server"; |
| 5358 | const char kEcheSWADisableStunServerDescription[] = |
| 5359 | "Allows disabling the stun servers when establishing a WebRTC connection " |
| 5360 | "to Eche"; |
| 5361 | |
Denalex Orakwue | 44a47a4 | 2022-12-07 08:56:08 | [diff] [blame] | 5362 | const char kEcheSWACheckAndroidNetworkInfoName[] = "Check Android network info"; |
| 5363 | const char kEcheSWACheckAndroidNetworkInfoDescription[] = |
| 5364 | "Allows CrOS to analyze Android network information to provide more " |
| 5365 | "context on connection errors"; |
| 5366 | |
Pranav Batra | 96b8eba | 2021-07-02 21:17:21 | [diff] [blame] | 5367 | const char kEnableOAuthIppName[] = |
| 5368 | "Enable OAuth when printing via the IPP protocol"; |
| 5369 | const char kEnableOAuthIppDescription[] = |
| 5370 | "Enable OAuth when printing via the IPP protocol"; |
| 5371 | |
Jenny Zhang | 0c298e4 | 2022-01-12 03:09:26 | [diff] [blame] | 5372 | const char kEnforceAshExtensionKeeplistName[] = |
| 5373 | "Enforce Ash extension keeplist"; |
| 5374 | const char kEnforceAshExtensionKeeplistDescription[] = |
| 5375 | "Enforce the Ash extension keeplist. Only the extensions and Chrome apps on" |
| 5376 | " the keeplist are enabled in Ash."; |
| 5377 | |
Prabir Pradhan | 67677e8 | 2020-09-11 18:26:52 | [diff] [blame] | 5378 | const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients"; |
| 5379 | const char kExoGamepadVibrationDescription[] = |
| 5380 | "Allow Exo clients like Android to request vibration events for gamepads " |
| 5381 | "that support it."; |
| 5382 | |
Nicholas Hollingum | 4cbff26 | 2020-09-08 04:02:15 | [diff] [blame] | 5383 | const char kExoOrdinalMotionName[] = |
| 5384 | "Raw (unaccelerated) motion for Linux applications"; |
| 5385 | const char kExoOrdinalMotionDescription[] = |
| 5386 | "Send unaccelerated values as raw motion events to linux applications."; |
| 5387 | |
Akihiro Ota | 6645221 | 2022-02-18 02:23:45 | [diff] [blame] | 5388 | const char kExperimentalAccessibilityDictationWithPumpkinName[] = |
| 5389 | "Experimental accessibility dictation using the pumpkin semantic parser."; |
| 5390 | const char kExperimentalAccessibilityDictationWithPumpkinDescription[] = |
| 5391 | "Enables the pumpkin semantic parser for the accessibility dictation " |
| 5392 | "feature."; |
| 5393 | |
Jeeva Murugan | 64d2bb2 | 2022-09-16 05:11:02 | [diff] [blame] | 5394 | const char kExperimentalAccessibilityDictationMoreCommandsName[] = |
| 5395 | "Additional experimental accessibility dictation commands."; |
| 5396 | const char kExperimentalAccessibilityDictationMoreCommandsDescription[] = |
| 5397 | "Enables experimental dictation commands."; |
| 5398 | |
Jeeva Murugan | 0c7d43a8 | 2022-11-07 01:10:27 | [diff] [blame] | 5399 | const char kExperimentalAccessibilityDictationContextCheckingName[] = |
| 5400 | "Experimental accessibility dictation using context checking."; |
| 5401 | const char kExperimentalAccessibilityDictationContextCheckingDescription[] = |
| 5402 | "Enables experimental dictation context checking."; |
| 5403 | |
Akihiro Ota | 445f94f | 2022-10-14 16:11:03 | [diff] [blame] | 5404 | const char kExperimentalAccessibilitySelectToSpeakVoiceSwitchingName[] = |
| 5405 | "Experimental accessibility Select-to-Speak voice switching."; |
| 5406 | const char kExperimentalAccessibilitySelectToSpeakVoiceSwitchingDescription[] = |
| 5407 | "Enables Select-to-Speak voice switching, which will change the " |
| 5408 | "text-to-speech voice depending on the language it encounters."; |
| 5409 | |
Josiah K | cb91cd1 | 2022-03-22 19:27:06 | [diff] [blame] | 5410 | const char kExperimentalAccessibilityGoogleTtsLanguagePacksName[] = |
| 5411 | "Experimental accessibility Google TTS Langauge Packs."; |
| 5412 | const char kExperimentalAccessibilityGoogleTtsLanguagePacksDescription[] = |
| 5413 | "Enables downloading Google TTS voices using Langauge Packs."; |
| 5414 | |
Rose Garcia | 26e2ae3 | 2019-06-25 00:57:54 | [diff] [blame] | 5415 | const char kExperimentalAccessibilitySwitchAccessTextName[] = |
| 5416 | "Enable enhanced Switch Access text input."; |
| 5417 | const char kExperimentalAccessibilitySwitchAccessTextDescription[] = |
| 5418 | "Enable experimental or in-progress Switch Access features for improved " |
| 5419 | "text input"; |
| 5420 | |
Steffen Seckler | c95470d | 2022-08-12 07:26:00 | [diff] [blame] | 5421 | const char kFileTransferEnterpriseConnectorName[] = |
| 5422 | "Enable Files Transfer Enterprise Connector."; |
| 5423 | const char kFileTransferEnterpriseConnectorDescription[] = |
| 5424 | "Enable the File Transfer Enterprise Connector."; |
| 5425 | |
Luciano Pacheco | a2f314ee | 2022-06-02 14:22:14 | [diff] [blame] | 5426 | const char kFilesAppExperimentalName[] = |
| 5427 | "Experimental UI features for Files app"; |
| 5428 | const char kFilesAppExperimentalDescription[] = |
| 5429 | "Enable experimental UI features for Files app. Experimental features are " |
| 5430 | "expected to be non functional to end users."; |
| 5431 | |
Noel Gordon | 5c5a49e6 | 2023-01-16 06:14:00 | [diff] [blame] | 5432 | const char kFilesConflictDialogName[] = "Files app conflict dialog"; |
| 5433 | const char kFilesConflictDialogDescription[] = |
| 5434 | "When enabled, the conflict dialog will be shown during file transfers " |
| 5435 | "if a file entry in the transfer exists at the destination."; |
| 5436 | |
Ben Reich | 2caaccf | 2023-02-06 23:17:50 | [diff] [blame] | 5437 | const char kFilesDriveShortcutsName[] = "Files app Google Drive shortcut icons"; |
| 5438 | const char kFilesDriveShortcutsDescription[] = |
| 5439 | "When enabled, shows an icon for files in Google Drive that are shortcuts"; |
| 5440 | |
Alex Danilo | 22b6b9c | 2021-11-18 06:44:44 | [diff] [blame] | 5441 | const char kFilesExtractArchiveName[] = "Extract archive in Files app"; |
| 5442 | const char kFilesExtractArchiveDescription[] = |
| 5443 | "Enable the simplified archive extraction feature in Files app"; |
| 5444 | |
Marcello Salomao | dd0e6de | 2022-09-14 00:28:47 | [diff] [blame] | 5445 | const char kFilesInlineSyncStatusName[] = |
| 5446 | "Enable inline sync status in Files app."; |
| 5447 | const char kFilesInlineSyncStatusDescription[] = |
| 5448 | "Enable displaying the sync status of each file next to its name in Files " |
| 5449 | "app."; |
| 5450 | |
Bo Majewski | 24757cb | 2022-09-20 06:42:18 | [diff] [blame] | 5451 | const char kFilesSearchV2Name[] = "V2 generation of file search."; |
| 5452 | const char kFilesSearchV2Description[] = "Enable V2 generation of file search."; |
| 5453 | |
Omid Tourzan | bf2a0dcf | 2020-09-10 08:53:55 | [diff] [blame] | 5454 | const char kFilesSinglePartitionFormatName[] = |
| 5455 | "Enable Partitioning of Removable Disks."; |
| 5456 | const char kFilesSinglePartitionFormatDescription[] = |
| 5457 | "Enable partitioning of removable disks into single partition."; |
| 5458 | |
Joel Hockey | a4865f1f | 2020-10-09 00:41:27 | [diff] [blame] | 5459 | const char kFilesTrashName[] = "Enable Files Trash."; |
| 5460 | const char kFilesTrashDescription[] = |
| 5461 | "Enable trash for My files volume in Files App."; |
| 5462 | |
Ricky Liang | 3bd2754b5 | 2020-10-07 02:50:32 | [diff] [blame] | 5463 | const char kForceSpectreVariant2MitigationName[] = |
| 5464 | "Force Spectre variant 2 mitigagtion"; |
| 5465 | const char kForceSpectreVariant2MitigationDescription[] = |
| 5466 | "Forces Spectre variant 2 mitigation. Setting this to enabled will " |
| 5467 | "override #spectre-variant2-mitigation and any system-level setting that " |
| 5468 | "disables Spectre variant 2 mitigation."; |
| 5469 | |
jhtin | c1f43aa | 2022-11-10 03:27:04 | [diff] [blame] | 5470 | const char kFirstPartyVietnameseInputName[] = |
| 5471 | "First party Vietnamese Input Method"; |
| 5472 | const char kFirstPartyVietnameseInputDescription[] = |
| 5473 | "Use first party input method for Vietnamese VNI and Telex"; |
| 5474 | |
Daniel Andersson | a36c4bc | 2021-06-04 22:09:43 | [diff] [blame] | 5475 | const char kFocusFollowsCursorName[] = "Focus follows cursor"; |
| 5476 | const char kFocusFollowsCursorDescription[] = |
| 5477 | "Enable window focusing by moving the cursor."; |
| 5478 | |
Cassy Chun-Crogan | 26d8e14 | 2023-01-25 02:00:53 | [diff] [blame] | 5479 | const char kForceReSyncDriveName[] = "Force resync drive"; |
| 5480 | const char kForceReSyncDriveDescription[] = |
| 5481 | "Enable Drive to forcibly resync office files."; |
| 5482 | |
yjliu | 8f78e8b | 2020-07-22 20:51:21 | [diff] [blame] | 5483 | const char kFrameThrottleFpsName[] = "Set frame throttling fps."; |
| 5484 | const char kFrameThrottleFpsDescription[] = |
| 5485 | "Set the throttle fps for compositor frame submission."; |
| 5486 | const char kFrameThrottleFpsDefault[] = "Default"; |
| 5487 | const char kFrameThrottleFps5[] = "5 fps"; |
| 5488 | const char kFrameThrottleFps10[] = "10 fps"; |
| 5489 | const char kFrameThrottleFps15[] = "15 fps"; |
| 5490 | const char kFrameThrottleFps20[] = "20 fps"; |
| 5491 | const char kFrameThrottleFps25[] = "25 fps"; |
| 5492 | const char kFrameThrottleFps30[] = "30 fps"; |
| 5493 | |
Nancy Wang | ea75f7f | 2021-12-29 05:11:36 | [diff] [blame] | 5494 | const char kFullRestoreForLacrosName[] = "Full restore lacros support"; |
| 5495 | const char kFullRestoreForLacrosDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5496 | "ChromeOS full restore lacros support"; |
Nancy Wang | ea75f7f | 2021-12-29 05:11:36 | [diff] [blame] | 5497 | |
Nigel Tao | 03c6903 | 2022-04-23 03:10:47 | [diff] [blame] | 5498 | const char kFuseBoxDebugName[] = "Debugging UI for ChromeOS FuseBox service"; |
| 5499 | const char kFuseBoxDebugDescription[] = |
| 5500 | "Show additional debugging UI for ChromeOS FuseBox service."; |
| 5501 | |
Callistus | 4352dba | 2021-06-10 11:37:45 | [diff] [blame] | 5502 | const char kHelpAppBackgroundPageName[] = "Help App Background Page"; |
| 5503 | const char kHelpAppBackgroundPageDescription[] = |
| 5504 | "Enables the Background page in the help app. The background page is used " |
| 5505 | "to initialize the Help App Launcher search index and show the Discover " |
| 5506 | "tab notification."; |
| 5507 | |
Zufeng Wang | 9d3362eb82 | 2021-03-11 00:23:29 | [diff] [blame] | 5508 | const char kHelpAppLauncherSearchName[] = "Help App launcher search"; |
| 5509 | const char kHelpAppLauncherSearchDescription[] = |
| 5510 | "Enables showing search results from the help app in the launcher."; |
| 5511 | |
jhtin | 2c880810 | 2022-02-21 08:53:35 | [diff] [blame] | 5512 | const char kDiacriticsOnPhysicalKeyboardLongpressName[] = |
| 5513 | "Enable diacritics and variant character selection on PK longpress."; |
| 5514 | const char kDiacriticsOnPhysicalKeyboardLongpressDescription[] = |
| 5515 | "Enable diacritics and other varient character selection on physical " |
| 5516 | "keyboard longpress."; |
| 5517 | |
David Black | 6fca0bc | 2022-10-08 00:35:17 | [diff] [blame] | 5518 | const char kHoldingSpacePredictabilityName[] = |
| 5519 | "Enable holding space predictability"; |
| 5520 | const char kHoldingSpacePredictabilityDescription[] = |
| 5521 | "Increases predictability of holding space by being ever present in the " |
| 5522 | "shelf and always reserving space for downloads and screen captures."; |
| 5523 | |
| 5524 | const char kHoldingSpaceRefreshName[] = "Enable holding space refresh"; |
| 5525 | const char kHoldingSpaceRefreshDescription[] = |
| 5526 | "Enables a refresh of holding space which better conveys the relationship " |
| 5527 | "with the Files app."; |
| 5528 | |
| 5529 | const char kHoldingSpaceSuggestionsName[] = "Enable holding space suggestions"; |
| 5530 | const char kHoldingSpaceSuggestionsDescription[] = |
| 5531 | "Enables pinned file suggestions in holding space to help the user " |
| 5532 | "understand and discover the ability to pin."; |
| 5533 | |
Curtis McMullan | a190006 | 2021-06-28 01:13:25 | [diff] [blame] | 5534 | const char kImeAssistEmojiEnhancedName[] = "Enable enhanced assistive emojis"; |
| 5535 | const char kImeAssistEmojiEnhancedDescription[] = |
| 5536 | "Enable enhanced assistive emoji suggestion features for native IME"; |
| 5537 | |
Curtis McMullan | 35800d2 | 2020-11-26 06:45:19 | [diff] [blame] | 5538 | const char kImeAssistMultiWordName[] = |
| 5539 | "Enable assistive multi word suggestions"; |
| 5540 | const char kImeAssistMultiWordDescription[] = |
| 5541 | "Enable assistive multi word suggestions for native IME"; |
| 5542 | |
Curtis McMullan | 6f6526d | 2021-07-09 04:22:45 | [diff] [blame] | 5543 | const char kImeAssistMultiWordExpandedName[] = |
| 5544 | "Enable expanded assistive multi word suggestions"; |
| 5545 | const char kImeAssistMultiWordExpandedDescription[] = |
| 5546 | "Enable expanded assistive multi word suggestions for native IME"; |
| 5547 | |
Jing Wang | 1c45fe39 | 2020-03-05 01:10:23 | [diff] [blame] | 5548 | const char kImeAssistPersonalInfoName[] = "Enable assistive personal info"; |
| 5549 | const char kImeAssistPersonalInfoDescription[] = |
| 5550 | "Enable auto-complete suggestions on personal infomation for native IME."; |
| 5551 | |
Grey Wang | 8896c88 | 2022-09-02 00:21:55 | [diff] [blame] | 5552 | const char kImeTrayHideVoiceButtonName[] = |
| 5553 | "Hides redudant voice button in IME tray"; |
| 5554 | const char kImeTrayHideVoiceButtonDescription[] = |
| 5555 | "Hides voice button in IME tray when mic icon is shown in the shelf"; |
| 5556 | |
John Palmer | b4e42c0 | 2022-02-11 07:25:16 | [diff] [blame] | 5557 | const char kVirtualKeyboardNewHeaderName[] = |
| 5558 | "Enable new header for virtual keyboard"; |
| 5559 | const char kVirtualKeyboardNewHeaderDescription[] = |
| 5560 | "Enable new header for virtual keyboard to improve navigation."; |
| 5561 | |
John Palmer | 77ce928 | 2021-07-15 09:23:09 | [diff] [blame] | 5562 | const char kImeSystemEmojiPickerClipboardName[] = |
| 5563 | "System emoji picker clipboard"; |
| 5564 | const char kImeSystemEmojiPickerClipboardDescription[] = |
| 5565 | "Emoji picker will insert emoji into clipboard if they can't be inserted " |
| 5566 | "into a text field"; |
Chuong Ho | a3217d5 | 2021-12-08 06:36:14 | [diff] [blame] | 5567 | |
| 5568 | const char kImeSystemEmojiPickerExtensionName[] = |
| 5569 | "System emoji picker extension"; |
| 5570 | const char kImeSystemEmojiPickerExtensionDescription[] = |
| 5571 | "Emoji picker extension allows users to select emoticons and symbols to " |
| 5572 | "input."; |
| 5573 | |
Kaiqi Liang | 5ddd91b | 2022-12-01 23:14:53 | [diff] [blame] | 5574 | const char kImeSystemEmojiPickerGIFSupportName[] = |
| 5575 | "System emoji picker gif support"; |
| 5576 | const char kImeSystemEmojiPickerGIFSupportDescription[] = |
| 5577 | "Emoji picker gif support allows users to select gifs to input."; |
| 5578 | |
Chuong Ho | 7a578183 | 2022-02-09 06:47:26 | [diff] [blame] | 5579 | const char kImeSystemEmojiPickerSearchExtensionName[] = |
| 5580 | "System emoji picker search extension"; |
| 5581 | const char kImeSystemEmojiPickerSearchExtensionDescription[] = |
| 5582 | "Emoji picker search extension enhances current emoji search by " |
| 5583 | "introducing multi-word prefix search."; |
| 5584 | |
John Palmer | 90a3221 | 2021-08-03 08:49:13 | [diff] [blame] | 5585 | const char kImeStylusHandwritingName[] = "Stylus Handwriting"; |
| 5586 | const char kImeStylusHandwritingDescription[] = |
| 5587 | "Enable VK UI for stylus in text fields"; |
John Palmer | 77ce928 | 2021-07-15 09:23:09 | [diff] [blame] | 5588 | |
Sean Kau | d5d0fc7 | 2023-01-30 19:08:26 | [diff] [blame] | 5589 | const char kJellyColorsName[] = "Jelly Colors"; |
| 5590 | const char kJellyColorsDescription[] = "Enable Jelly coloring"; |
| 5591 | |
Erik Chen | d7082ec | 2021-06-25 01:04:12 | [diff] [blame] | 5592 | const char kLacrosAvailabilityIgnoreName[] = |
| 5593 | "Ignore lacros-availability policy"; |
| 5594 | const char kLacrosAvailabilityIgnoreDescription[] = |
| 5595 | "Makes the lacros-availability policy have no effect. Instead Lacros " |
| 5596 | "availability will be controlled by experiment and/or user flags."; |
| 5597 | |
Hidehiko Abe | a7217c9 | 2022-02-01 05:54:57 | [diff] [blame] | 5598 | const char kLacrosOnlyName[] = "Lacros is the only browser"; |
| 5599 | const char kLacrosOnlyDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5600 | "Use Lacros-chrome as the only web browser on ChromeOS. " |
Hidehiko Abe | a7217c9 | 2022-02-01 05:54:57 | [diff] [blame] | 5601 | "This flag is ignored if Lacros support or primary is disabled."; |
| 5602 | |
Hidehiko Abe | 9f190d1 | 2021-03-18 12:55:20 | [diff] [blame] | 5603 | const char kLacrosPrimaryName[] = "Lacros as the primary browser"; |
| 5604 | const char kLacrosPrimaryDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5605 | "Use Lacros-chrome as the primary web browser on ChromeOS. " |
Hidehiko Abe | 9f190d1 | 2021-03-18 12:55:20 | [diff] [blame] | 5606 | "This flag is ignored if Lacros support is disabled."; |
| 5607 | |
Erik Chen | 601a5d6 | 2020-12-07 20:05:12 | [diff] [blame] | 5608 | const char kLacrosStabilityName[] = "Lacros stability"; |
Roman Arora | c36aeeb9 | 2021-10-04 20:35:58 | [diff] [blame] | 5609 | const char kLacrosStabilityDescription[] = "Lacros update channel."; |
Erik Chen | 601a5d6 | 2020-12-07 20:05:12 | [diff] [blame] | 5610 | |
Jae Hoon Kim | 94e1cfd | 2021-05-19 20:52:52 | [diff] [blame] | 5611 | const char kLacrosSelectionName[] = "Lacros selection"; |
| 5612 | const char kLacrosSelectionDescription[] = |
| 5613 | "Choosing between rootfs or stateful Lacros."; |
| 5614 | |
| 5615 | const char kLacrosSelectionRootfsDescription[] = "Rootfs"; |
| 5616 | const char kLacrosSelectionStatefulDescription[] = "Stateful"; |
| 5617 | |
Artem Sumaneev | 1f3555a | 2023-01-30 12:48:27 | [diff] [blame] | 5618 | const char kLacrosSelectionPolicyIgnoreName[] = |
| 5619 | "Ignore lacros-selection policy"; |
| 5620 | const char kLacrosSelectionPolicyIgnoreDescription[] = |
| 5621 | "Makes the lacros-selection policy have no effect. Instead Lacros " |
| 5622 | "selection will be controlled by experiment and/or user flags."; |
| 5623 | |
James Cook | 2fe5ca7b | 2020-10-09 02:54:17 | [diff] [blame] | 5624 | const char kLacrosSupportName[] = "Lacros support"; |
James Cook | ac2473be | 2020-04-28 00:54:18 | [diff] [blame] | 5625 | const char kLacrosSupportDescription[] = |
Yuta Hijikata | 45214bc | 2021-04-27 16:36:38 | [diff] [blame] | 5626 | "Support for the experimental lacros-chrome browser. Please note that the " |
| 5627 | "first restart can take some time to setup lacros-chrome. Please DO NOT " |
| 5628 | "attempt to turn off the device during the restart."; |
James Cook | ac2473be | 2020-04-28 00:54:18 | [diff] [blame] | 5629 | |
Erik Chen | 5d686e2a0 | 2022-11-01 23:11:31 | [diff] [blame] | 5630 | const char kLacrosWaylandLoggingName[] = "Lacros wayland logging"; |
| 5631 | const char kLacrosWaylandLoggingDescription[] = |
| 5632 | "Enables wayland logging for Lacros. This generates a significant amount " |
| 5633 | "of logs on disk. Logs are cleared after two restarts."; |
| 5634 | |
Yuta Hijikata | 67d3ac8 | 2021-12-20 03:43:48 | [diff] [blame] | 5635 | const char kLacrosProfileMigrationForAnyUserName[] = |
| 5636 | "Lacros profile migration for any user"; |
| 5637 | const char kLacrosProfileMigrationForAnyUserDescription[] = |
| 5638 | "Enables lacros profile migration that are currently only enabled for " |
| 5639 | "certain users. Please enable with CAUTION. Enabling profile migration " |
| 5640 | "means that any pre-existing lacros data will be wiped and replaced with " |
| 5641 | "data migrated from ash. It also has a side effect that lacros will be " |
| 5642 | "disbled until profile migration is completed."; |
| 5643 | |
Yuta Hijikata | ad79442 | 2022-04-15 17:33:12 | [diff] [blame] | 5644 | const char kLacrosMoveProfileMigrationName[] = "Enforce profile move migration"; |
| 5645 | const char kLacrosMoveProfileMigrationDescription[] = |
| 5646 | "Enforce Lacros profile move migration which moves files from Ash profile " |
| 5647 | "directory to Lacros profile directory instead of copying. Please note " |
| 5648 | "that disabling Lacros and falling back to Ash after move migration is not " |
| 5649 | "supported."; |
| 5650 | |
Yuta Hijikata | 6a575d4 | 2022-01-11 04:09:07 | [diff] [blame] | 5651 | const char kLacrosProfileMigrationForceOffName[] = "Disable profile migration"; |
| 5652 | const char kLacrosProfileMigrationForceOffDescription[] = |
| 5653 | "Disables lacros profile migration. Lacros profile migration is being " |
| 5654 | "rolled out to internal users first. Once lacros profile migration becomes " |
| 5655 | "available to the user, the completion of profile migration becomes a " |
| 5656 | "requirement to use lacros i.e. if profile migration gets rolled out to " |
| 5657 | "the user and the migration fails, then lacros becomes unavailable until " |
| 5658 | "the migration is completed. By enabling this flag, even if profile " |
| 5659 | "migration is rolled out to the user, the migration will not run and the " |
| 5660 | "user can continue to use lacros without profile migration."; |
| 5661 | |
Rachel Wong | bde90d7 | 2022-07-11 06:18:27 | [diff] [blame] | 5662 | const char kLauncherItemSuggestName[] = "Launcher ItemSuggest"; |
| 5663 | const char kLauncherItemSuggestDescription[] = |
| 5664 | "Allows configuration of experiment parameters for ItemSuggest in the " |
| 5665 | "launcher."; |
| 5666 | |
Ahmed Fakhry | 039882f | 2020-06-16 21:56:21 | [diff] [blame] | 5667 | const char kLimitShelfItemsToActiveDeskName[] = |
| 5668 | "Limit Shelf items to active desk"; |
| 5669 | const char kLimitShelfItemsToActiveDeskDescription[] = |
| 5670 | "Limits items on the shelf to the ones associated with windows on the " |
| 5671 | "active desk"; |
| 5672 | |
Ahmed Fakhry | 15d707e | 2019-02-22 23:54:21 | [diff] [blame] | 5673 | const char kListAllDisplayModesName[] = "List all display modes"; |
| 5674 | const char kListAllDisplayModesDescription[] = |
| 5675 | "Enables listing all external displays' modes in the display settings."; |
| 5676 | |
Gil Dekel | 11cbdfb | 2020-12-23 21:43:27 | [diff] [blame] | 5677 | const char kEnableHardwareMirrorModeName[] = "Enable Hardware Mirror Mode"; |
| 5678 | const char kEnableHardwareMirrorModeDescription[] = |
| 5679 | "Enables hardware support when multiple displays are set to mirror mode."; |
| 5680 | |
Jungshik Shin | 1c8c488 | 2022-09-14 05:35:26 | [diff] [blame] | 5681 | const char kHindiInscriptLayoutName[] = "Hindi Inscript Layout on CrOS"; |
| 5682 | const char kHindiInscriptLayoutDescription[] = |
| 5683 | "Enables Hindi Inscript Layout on ChromeOS."; |
| 5684 | |
Megumi Hattori | 5a0d418 | 2018-03-06 11:09:50 | [diff] [blame] | 5685 | const char kLockScreenNotificationName[] = "Lock screen notification"; |
| 5686 | const char kLockScreenNotificationDescription[] = |
| 5687 | "Enable notifications on the lock screen."; |
| 5688 | |
Steven Bennetts | 66bc354 | 2020-06-25 23:05:28 | [diff] [blame] | 5689 | const char kMeteredShowToggleName[] = "Show Metered Toggle"; |
| 5690 | const char kMeteredShowToggleDescription[] = |
| 5691 | "Shows a Metered toggle in the Network settings UI for WiFI and Cellular. " |
| 5692 | "The toggle allows users to set whether a network should be considered " |
| 5693 | "metered for purposes of bandwith usage (e.g. for automatic updates)."; |
| 5694 | |
Toni Barzic | 5cf7da9 | 2021-05-19 21:07:40 | [diff] [blame] | 5695 | const char kMicrophoneMuteNotificationsName[] = "Microphone Mute Notifications"; |
| 5696 | const char kMicrophoneMuteNotificationsDescription[] = |
| 5697 | "Enables notifications that are shown when an app tries to use microphone " |
| 5698 | "while audio input is muted."; |
| 5699 | |
| 5700 | const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device"; |
| 5701 | const char kMicrophoneMuteSwitchDeviceDescription[] = |
| 5702 | "Support for detecting the state of hardware microphone mute toggle. Only " |
| 5703 | "effective on devices that have a microphone mute toggle. Enabling the " |
| 5704 | "flag does not affect the toggle functionality, it only affects how the " |
| 5705 | "System UI handles the mute toggle state."; |
| 5706 | |
Jason Thai | 7036e64e | 2023-01-23 23:14:39 | [diff] [blame] | 5707 | const char kMultiZoneRgbKeyboardName[] = |
| 5708 | "Enable multi-zone RGB keyboard customization"; |
| 5709 | const char kMultiZoneRgbKeyboardDescription[] = |
| 5710 | "Enable multi-zone RGB keyboard customization on supported devices."; |
| 5711 | |
Bao-Duy Tran | aa329d6 | 2020-11-27 05:40:58 | [diff] [blame] | 5712 | const char kMultilingualTypingName[] = "Multilingual typing on CrOS"; |
| 5713 | const char kMultilingualTypingDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5714 | "Enables support for multilingual assistive typing on ChromeOS."; |
Bao-Duy Tran | aa329d6 | 2020-11-27 05:40:58 | [diff] [blame] | 5715 | |
Michael Hansen | c318dec | 2022-04-01 22:19:01 | [diff] [blame] | 5716 | const char kNearbySharingSelfShareAutoAcceptName[] = |
| 5717 | "Nearby Sharing Self Share Auto-Accept"; |
| 5718 | const char kNearbySharingSelfShareAutoAcceptDescription[] = |
| 5719 | "Enables auto-accept functionality when sharing between a user's own " |
| 5720 | "devices."; |
| 5721 | |
| 5722 | const char kNearbySharingSelfShareUIName[] = "Nearby Sharing Self Share UI"; |
| 5723 | const char kNearbySharingSelfShareUIDescription[] = |
| 5724 | "Enables UI features for Self Share to allow seamless sharing between a " |
| 5725 | "user's own devices."; |
Michael Hansen | f59f974b | 2022-01-14 17:40:02 | [diff] [blame] | 5726 | |
Gordon Seto | 2c79d044 | 2022-02-22 22:33:06 | [diff] [blame] | 5727 | const char kOobeHidDetectionRevampName[] = "OOBE HID Detection Revamp"; |
| 5728 | const char kOobeHidDetectionRevampDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5729 | "Enables the ChromeOS HID Detection Revamp, which updates OOBE HID " |
Gordon Seto | 2c79d044 | 2022-02-22 22:33:06 | [diff] [blame] | 5730 | "detection screen UI and related infrastructure."; |
| 5731 | |
Wes Okuhara | 7237367 | 2022-10-14 16:38:19 | [diff] [blame] | 5732 | const char kOsSettingsAppBadgingToggleName[] = |
| 5733 | "ChromeOS Settings App Badging Toggle"; |
| 5734 | const char kOsSettingsAppBadgingToggleDescription[] = |
| 5735 | "Enables app badging toggle to be displayed in app notification page in" |
| 5736 | "ChromeOS Settings."; |
| 5737 | |
Wes Okuhara | 71ae17c | 2022-10-10 19:46:56 | [diff] [blame] | 5738 | const char kOsSettingsSearchFeedbackName[] = |
| 5739 | "ChromeOS Settings Search Feedback"; |
| 5740 | const char kOsSettingsSearchFeedbackDescription[] = |
| 5741 | "Enables search result feedback in ChromeOS Settings when no search " |
| 5742 | "results are returned."; |
| 5743 | |
Jimmy Gong | 3509448 | 2021-10-06 23:14:28 | [diff] [blame] | 5744 | const char kPcieBillboardNotificationName[] = "Pcie billboard notification"; |
| 5745 | const char kPcieBillboardNotificationDescription[] = |
| 5746 | "Enable Pcie peripheral billboard notification."; |
| 5747 | |
Daniel Andersson | 9bfdde4 | 2021-07-15 20:59:14 | [diff] [blame] | 5748 | const char kPerformantSplitViewResizing[] = "Performant Split View Resizing"; |
| 5749 | const char kPerformantSplitViewResizingDescription[] = |
| 5750 | "If enabled, windows may be moved instead of scaled when resizing split " |
| 5751 | "view in tablet mode."; |
| 5752 | |
Sam Chiu | 1dee4a1 | 2021-10-12 18:21:27 | [diff] [blame] | 5753 | const char kPhoneHubCallNotificationName[] = |
| 5754 | "Incoming call notification in Phone Hub"; |
| 5755 | const char kPhoneHubCallNotificationDescription[] = |
| 5756 | "Enables the incoming/ongoing call feature in Phone Hub."; |
| 5757 | |
Jason Sun | 1d94791 | 2021-06-21 16:54:23 | [diff] [blame] | 5758 | const char kPhoneHubCameraRollName[] = "Camera Roll in Phone Hub"; |
| 5759 | const char kPhoneHubCameraRollDescription[] = |
| 5760 | "Enables the Camera Roll feature in Phone Hub, which allows users to " |
| 5761 | "access recent photos and videos taken on a connected Android device."; |
| 5762 | |
Pu Shi | 1306f64 | 2022-07-29 00:58:34 | [diff] [blame] | 5763 | const char kPhoneHubFeatureSetupErrorHandlingName[] = |
| 5764 | "Error handling during Phone Hub feature setup"; |
| 5765 | const char kPhoneHubFeatureSetupErrorHandlingDescription[] = |
| 5766 | "Enable the error handling during Phone Hub feature setup. It allows" |
| 5767 | "users to see result on Chromebook when the setup failed on connected" |
| 5768 | "remote phone device."; |
| 5769 | |
Jennifer Serrano | f65bc54 | 2023-01-11 01:00:56 | [diff] [blame] | 5770 | const char kPhoneHubNudgeName[] = "Phone Hub nudge"; |
| 5771 | const char kPhoneHubNudgeDescription[] = |
| 5772 | "Enables a nudge to direct eligible users to open Phone Hub."; |
| 5773 | |
Peter Boström | 6324b79 | 2022-09-28 23:15:56 | [diff] [blame] | 5774 | const char kPreferDcheckName[] = "Prefer DCHECK-enabled build"; |
| 5775 | const char kPreferDcheckDescription[] = |
| 5776 | "Use a DCHECK-enabled build when available."; |
| 5777 | |
Piotr Pawliczek | 49732c9 | 2022-12-12 18:10:58 | [diff] [blame] | 5778 | const char kPrintingPpdChannelName[] = "Printing PPD channel"; |
| 5779 | const char kPrintingPpdChannelDescription[] = |
| 5780 | "The channel from which PPD index " |
| 5781 | "is loaded when matching PPD files during printer setup."; |
| 5782 | |
James Cook | b661f380 | 2021-09-30 21:43:20 | [diff] [blame] | 5783 | const char kProductivityLauncherName[] = |
| 5784 | "Productivity experiment: App Launcher"; |
| 5785 | const char kProductivityLauncherDescription[] = |
| 5786 | "To evaluate an enhanced Launcher experience that aims to improve app " |
| 5787 | "workflows by optimizing access to apps, app content, and app actions."; |
| 5788 | |
Yulun Wu | 2f559799 | 2022-08-12 23:57:20 | [diff] [blame] | 5789 | const char kProductivityLauncherImageSearchName[] = |
| 5790 | "Productivity Launcher experiment: Launcher Image Search"; |
| 5791 | const char kProductivityLauncherImageSearchDescription[] = |
| 5792 | "To evaluate the viability of image search as part of Productivity " |
| 5793 | "Launcher Search."; |
| 5794 | |
Ana Salazar | 30ae8e4 | 2022-09-15 00:13:44 | [diff] [blame] | 5795 | const char kQuickActionShowBubbleLauncherName[] = |
| 5796 | "Swipe to show bubble launcher"; |
| 5797 | const char kQuickActionShowBubbleLauncherDescription[] = |
| 5798 | "Enables a fling gesture or mouse scroll from the shelf to show the bubble " |
| 5799 | "launcher."; |
| 5800 | |
Ana Salazar | bb287bcc4 | 2023-01-11 00:34:20 | [diff] [blame] | 5801 | const char kAppListDragAndDropRefactorName[] = |
| 5802 | "Drag and drop refactor in launcher"; |
| 5803 | const char kAppListDragAndDropRefactorDescription[] = |
| 5804 | "Enables app list drag and drop refactor to use views drag and drop APIs. " |
| 5805 | "No user visible changes are expected."; |
| 5806 | |
Li Lin | 122b785 | 2022-03-10 02:46:39 | [diff] [blame] | 5807 | const char kProjectorName[] = "Enable Projector"; |
| 5808 | const char kProjectorDescription[] = |
| 5809 | "Enables Projects SWA and associated recording tools"; |
| 5810 | |
| 5811 | const char kProjectorAnnotatorName[] = "Enable Projector annotator"; |
| 5812 | const char kProjectorAnnotatorDescription[] = |
Toby Huang | 6a77193f2 | 2022-08-12 18:07:30 | [diff] [blame] | 5813 | "Turns on annotator tools when recording a screen capture using Projector"; |
Li Lin | 122b785 | 2022-03-10 02:46:39 | [diff] [blame] | 5814 | |
| 5815 | const char kProjectorExcludeTranscriptName[] = |
| 5816 | "Enable Projector exclude transcript feature"; |
| 5817 | const char kProjectorExcludeTranscriptDescription[] = |
Toby Huang | 6a77193f2 | 2022-08-12 18:07:30 | [diff] [blame] | 5818 | "Supports excluding segment of Projector recording by excluding transcript"; |
| 5819 | |
| 5820 | const char kProjectorLocalPlaybackName[] = "Enable Projector local playback"; |
| 5821 | const char kProjectorLocalPlaybackDescription[] = |
| 5822 | "Supports streaming screencast videos from DriveFS instead of Drive before " |
| 5823 | "they have finished transcoding"; |
| 5824 | |
| 5825 | const char kProjectorAppDebugName[] = "Enable Projector app debug"; |
| 5826 | const char kProjectorAppDebugDescription[] = |
| 5827 | "Adds more informative error messages to the Projector app for debugging"; |
Li Lin | 122b785 | 2022-03-10 02:46:39 | [diff] [blame] | 5828 | |
Jiaming Cheng | e04b3b5 | 2022-08-09 02:46:59 | [diff] [blame] | 5829 | const char kQsRevampName[] = "Quick Settings Revamp"; |
| 5830 | const char kQsRevampDescription[] = |
| 5831 | "Enable QS UI revamp with separated message center."; |
| 5832 | |
Rachel Carpenter | 57c8523c | 2020-09-23 01:11:22 | [diff] [blame] | 5833 | const char kReleaseNotesNotificationAllChannelsName[] = |
| 5834 | "Release Notes Notification All Channels"; |
| 5835 | const char kReleaseNotesNotificationAllChannelsDescription[] = |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 5836 | "Enables the release notes notification for all ChromeOS channels"; |
Rachel Carpenter | 57c8523c | 2020-09-23 01:11:22 | [diff] [blame] | 5837 | |
Roger Tinkoff | 31579eab | 2022-07-26 00:18:22 | [diff] [blame] | 5838 | const char kReleaseTrackUiName[] = "Release track system tray UI"; |
| 5839 | const char kReleaseTrackUiDescription[] = |
| 5840 | "Enables the release track UI in the system tray"; |
| 5841 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 5842 | const char kArcWindowPredictorName[] = "Enable ARC window predictor"; |
| 5843 | const char kArcWindowPredictorDescription[] = |
Shengsong Tan | 8133897 | 2021-12-22 05:27:50 | [diff] [blame] | 5844 | "Enables the window state and bounds predictor for ARC task windows"; |
| 5845 | |
Cici Ruan | 846b671 | 2022-08-12 21:08:18 | [diff] [blame] | 5846 | const char kArcInputOverlayNameBeta[] = "Enable ARC Input Overlay Beta"; |
| 5847 | const char kArcInputOverlayDescriptionBeta[] = |
Cici Ruan | 2374f1b0 | 2022-12-07 01:19:58 | [diff] [blame] | 5848 | "Enable full editor feature for Gaming Input Overlay including features in " |
| 5849 | "Alpha V2, so users can add and remove actions."; |
Joseph Pang | a61e7db | 2022-11-29 21:23:38 | [diff] [blame] | 5850 | |
Cici Ruan | 2374f1b0 | 2022-12-07 01:19:58 | [diff] [blame] | 5851 | const char kArcInputOverlayNameAlphaV2[] = "Enable ARC Input Overlay Alpha V2"; |
| 5852 | const char kArcInputOverlayDescriptionAlphaV2[] = |
Joseph Pang | a61e7db | 2022-11-29 21:23:38 | [diff] [blame] | 5853 | "Enable menu and action reposition feature for Gaming Input Overlay based " |
| 5854 | "on Alpha."; |
Cici Ruan | 846b671 | 2022-08-12 21:08:18 | [diff] [blame] | 5855 | |
Elliot Tuck | 5551fdd | 2022-07-25 21:10:14 | [diff] [blame] | 5856 | const char kShelfAutoHideSeparationName[] = |
| 5857 | "Enable separate shelf auto-hide preferences."; |
| 5858 | const char kShelfAutoHideSeparationDescription[] = |
| 5859 | "Allows for the shelf's auto-hide preference to be specified separately " |
| 5860 | "for clamshell and tablet mode."; |
| 5861 | |
Joon Ahn | 74cda73 | 2021-04-08 19:58:10 | [diff] [blame] | 5862 | const char kShimlessRMAFlowName[] = "Enable shimless RMA flow"; |
| 5863 | const char kShimlessRMAFlowDescription[] = "Enable shimless RMA flow"; |
| 5864 | |
Anton Swifton | 1917b87 | 2022-05-26 06:27:43 | [diff] [blame] | 5865 | const char kShimlessRMAOsUpdateName[] = "Enable OS updates in shimless RMA"; |
| 5866 | const char kShimlessRMAOsUpdateDescription[] = |
| 5867 | "Turns on OS updating in Shimless RMA"; |
| 5868 | |
wenyu zhang | 9800016 | 2022-06-16 17:02:53 | [diff] [blame] | 5869 | const char kShimlessRMADisableDarkModeName[] = |
| 5870 | "Disable dark mode in Shimless RMA"; |
| 5871 | const char kShimlessRMADisableDarkModeDescription[] = |
| 5872 | "Disable dark mode and only allow light mode in Shimless RMA"; |
| 5873 | |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 5874 | const char kSchedulerConfigurationName[] = "Scheduler Configuration"; |
| 5875 | const char kSchedulerConfigurationDescription[] = |
| 5876 | "Instructs the OS to use a specific scheduler configuration setting."; |
Greg Kerr | 33cd466 | 2019-06-17 07:03:01 | [diff] [blame] | 5877 | const char kSchedulerConfigurationConservative[] = |
| 5878 | "Disables Hyper-Threading on relevant CPUs."; |
| 5879 | const char kSchedulerConfigurationPerformance[] = |
| 5880 | "Enables Hyper-Threading on relevant CPUs."; |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 5881 | |
Erin Park | bbb5decc | 2022-07-21 21:37:13 | [diff] [blame] | 5882 | const char kMediaDynamicCgroupName[] = "Media Dynamic Cgroup"; |
| 5883 | const char kMediaDynamicCgroupDescription[] = |
| 5884 | "Dynamic Cgroup allows tasks from media workload to be consolidated on " |
| 5885 | "limited cpuset"; |
| 5886 | |
Kyle Horimoto | 63a6bd4 | 2019-09-16 23:47:52 | [diff] [blame] | 5887 | const char kShowBluetoothDebugLogToggleName[] = |
| 5888 | "Show Bluetooth debug log toggle"; |
| 5889 | const char kShowBluetoothDebugLogToggleDescription[] = |
| 5890 | "Enables a toggle which can enable debug (i.e., verbose) logs for " |
| 5891 | "Bluetooth"; |
| 5892 | |
Yu Liu | 9d01d34 | 2021-03-12 20:05:16 | [diff] [blame] | 5893 | const char kBluetoothSessionizedMetricsName[] = |
| 5894 | "Enable Bluetooth sessionized metrics"; |
| 5895 | const char kBluetoothSessionizedMetricsDescription[] = |
| 5896 | "Enables collecting and processing Bluetooth sessionized metrics."; |
| 5897 | |
James Cook | 0ba192bf | 2017-12-01 20:53:11 | [diff] [blame] | 5898 | const char kShowTapsName[] = "Show taps"; |
| 5899 | const char kShowTapsDescription[] = |
| 5900 | "Draws a circle at each touch point, which makes touch points more obvious " |
| 5901 | "when projecting or mirroring the display. Similar to the Android OS " |
| 5902 | "developer option."; |
| 5903 | |
| 5904 | const char kShowTouchHudName[] = "Show HUD for touch points"; |
| 5905 | const char kShowTouchHudDescription[] = |
| 5906 | "Shows a trail of colored dots for the last few touch points. Pressing " |
| 5907 | "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps " |
| 5908 | "debug hardware issues that generate spurious touch events."; |
| 5909 | |
Ricky Liang | 3bd2754b5 | 2020-10-07 02:50:32 | [diff] [blame] | 5910 | const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation"; |
| 5911 | const char kSpectreVariant2MitigationDescription[] = |
| 5912 | "Controls whether Spectre variant 2 mitigation is enabled when " |
| 5913 | "bootstrapping the Seccomp BPF sandbox. Can be overridden by " |
| 5914 | "#force-spectre-variant2-mitigation."; |
| 5915 | |
Keith Lee | 8b2131fe | 2021-10-11 05:11:06 | [diff] [blame] | 5916 | const char kSystemJapanesePhysicalTypingName[] = |
| 5917 | "Use system IME for Japanese typing"; |
| 5918 | const char kSystemJapanesePhysicalTypingDescription[] = |
| 5919 | "Use the system input engine instead of the Chrome extension for physical " |
Keith Lee | 6dfc28e | 2022-10-25 07:20:46 | [diff] [blame] | 5920 | "typing in Japanese. This also replaces the Japanese extension settings " |
| 5921 | "page with one built into the UI and migrates the data to a new location."; |
Keith Lee | 8b2131fe | 2021-10-11 05:11:06 | [diff] [blame] | 5922 | |
Michael Martis | d3a46a87 | 2023-02-08 05:27:50 | [diff] [blame] | 5923 | const char kSystemLiveCaptionName[] = "System Live Caption"; |
| 5924 | const char kSystemLiveCaptionDescription[] = |
| 5925 | "Enables the live caption feature for non-Chrome (e.g. Android, linux) " |
| 5926 | "audio."; |
| 5927 | |
Steven Bennetts | 2038c6c | 2022-12-02 20:06:09 | [diff] [blame] | 5928 | const char kCaptivePortalErrorPageName[] = |
| 5929 | "Enables Captive Portal error page suggestions."; |
| 5930 | const char kCaptivePortalErrorPageDescription[] = |
| 5931 | "Enables Captive Portal error page suggestions when a page fails to load " |
| 5932 | "and ChromeOS has detected a captive portal."; |
| 5933 | |
Jason Lin | 30ea2619c | 2022-07-27 06:40:29 | [diff] [blame] | 5934 | const char kTerminalAlternativeEmulatorName[] = "Terminal alternative emulator"; |
| 5935 | const char kTerminalAlternativeEmulatorDescription[] = |
| 5936 | "Enable the alternative emulator for the Terminal app. You will also get " |
| 5937 | "an option in Terminal settings to change the default emulator."; |
Jason Lin | 193ef78 | 2022-06-21 02:12:03 | [diff] [blame] | 5938 | |
Joel Hockey | 6bc7d9b | 2022-04-28 00:36:05 | [diff] [blame] | 5939 | const char kTerminalDevName[] = "Terminal dev"; |
| 5940 | const char kTerminalDevDescription[] = |
| 5941 | "Enables Terminal System App to load from Downloads for developer testing. " |
| 5942 | "Only works in dev and canary channels."; |
| 5943 | |
Joel Hockey | 3109dbe9 | 2022-05-30 08:42:26 | [diff] [blame] | 5944 | const char kTerminalMultiProfileName[] = "Terminal multi-profiles for settings"; |
| 5945 | const char kTerminalMultiProfileDescription[] = |
| 5946 | "Enables Terminal System App to set multiple profiles in the settings page " |
| 5947 | "and configure which profile to use for each Linux or SSH connection."; |
| 5948 | |
Joel Hockey | 599b6e4 | 2022-10-17 01:35:26 | [diff] [blame] | 5949 | const char kTerminalSftpName[] = "Terminal SFTP / mount"; |
| 5950 | const char kTerminalSftpDescription[] = |
| 5951 | "Enables Terminal System App to do SFTP and mount remote hosts."; |
| 5952 | |
Emil Mikulic | 61a351f | 2021-12-15 23:45:58 | [diff] [blame] | 5953 | const char kTerminalTmuxIntegrationName[] = "Terminal tmux integration"; |
| 5954 | const char kTerminalTmuxIntegrationDescription[] = |
| 5955 | "Enables integration with tmux control mode (tmux -CC) in the Terminal " |
| 5956 | "System App."; |
| 5957 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 5958 | const char kTetherName[] = "Instant Tethering"; |
| 5959 | const char kTetherDescription[] = |
| 5960 | "Enables Instant Tethering. Instant Tethering allows your nearby Google " |
| 5961 | "phone to share its Internet connection with this device."; |
stanisc | 14bed0b13 | 2017-05-10 17:46:37 | [diff] [blame] | 5962 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 5963 | const char kTouchscreenCalibrationName[] = |
| 5964 | "Enable/disable touchscreen calibration option in material design settings"; |
| 5965 | const char kTouchscreenCalibrationDescription[] = |
| 5966 | "If enabled, the user can calibrate the touch screen displays in " |
| 5967 | "chrome://settings/display."; |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 5968 | |
Steven Bennetts | 9b695dc | 2022-04-12 17:10:27 | [diff] [blame] | 5969 | const char kTrafficCountersEnabledName[] = "Traffic counters enabled"; |
| 5970 | const char kTrafficCountersEnabledDescription[] = |
| 5971 | "If enabled, data usage will be visible in the Cellular Settings UI and " |
| 5972 | "traffic counters will be automatically reset if that setting is enabled."; |
Kartik Hegde | 5af7093 | 2021-08-12 23:04:20 | [diff] [blame] | 5973 | |
Jérémie Boulic | 8c1c3fc | 2022-06-20 05:35:55 | [diff] [blame] | 5974 | const char kUploadOfficeToCloudName[] = "Enable Office files upload workflow."; |
| 5975 | const char kUploadOfficeToCloudDescription[] = |
| 5976 | "Some file handlers for Microsoft Office files are only available on the " |
| 5977 | "the cloud. Enables the cloud upload workflow for Office file handling."; |
| 5978 | |
Miguel Casas-Sanchez | dcd6915 | 2019-09-04 21:22:36 | [diff] [blame] | 5979 | const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device"; |
| 5980 | const char kUseFakeDeviceForMediaStreamDescription[] = |
| 5981 | "Forces Chrome to use a fake video capture device (a rolling pacman with a " |
| 5982 | "timestamp) instead of the system audio/video devices, for debugging " |
| 5983 | "purposes."; |
| 5984 | |
Erik Chen | 366873d6 | 2022-03-08 23:11:38 | [diff] [blame] | 5985 | const char kUXStudy1Name[] = "UX Study 1"; |
| 5986 | const char kUXStudy1Description[] = "Opt into a group for UX Study"; |
| 5987 | |
Qiang Xu | 045aff22 | 2018-05-21 23:21:01 | [diff] [blame] | 5988 | const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 5989 | const char kUiDevToolsDescription[] = |
| 5990 | "Enables inspection of native UI elements. For local inspection use " |
| 5991 | "chrome://inspect#other"; |
| 5992 | |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 5993 | const char kUiSlowAnimationsName[] = "Slow UI animations"; |
| 5994 | const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow."; |
Mattias Nissler | 6bb633f | 2019-02-13 23:41:46 | [diff] [blame] | 5995 | |
Andres Calderon Jaramillo | 43c0e8a | 2018-08-21 02:46:23 | [diff] [blame] | 5996 | const char kVaapiJpegImageDecodeAccelerationName[] = |
| 5997 | "VA-API JPEG decode acceleration for images"; |
| 5998 | const char kVaapiJpegImageDecodeAccelerationDescription[] = |
| 5999 | "Enable or disable decode acceleration of JPEG images (as opposed to camera" |
| 6000 | " captures) using the VA-API."; |
| 6001 | |
Gil Dekel | 8f4b564 | 2019-07-27 05:27:40 | [diff] [blame] | 6002 | const char kVaapiWebPImageDecodeAccelerationName[] = |
| 6003 | "VA-API WebP decode acceleration for images"; |
| 6004 | const char kVaapiWebPImageDecodeAccelerationDescription[] = |
| 6005 | "Enable or disable decode acceleration of WebP images using the VA-API."; |
| 6006 | |
Jing Wang | 1293e3a | 2021-02-17 00:56:44 | [diff] [blame] | 6007 | const char kVirtualKeyboardName[] = "Virtual Keyboard"; |
| 6008 | const char kVirtualKeyboardDescription[] = |
| 6009 | "Always show virtual keyboard regardless of having a physical keyboard " |
| 6010 | "present"; |
| 6011 | |
My Nguyen | 0bc9add | 2020-12-03 21:21:25 | [diff] [blame] | 6012 | const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard"; |
| 6013 | const char kVirtualKeyboardDisabledDescription[] = |
| 6014 | "Always disable virtual keyboard regardless of device mode. Workaround for " |
| 6015 | "virtual keyboard showing with some external keyboards."; |
| 6016 | |
Michelle | 1569cf3 | 2022-03-24 06:34:48 | [diff] [blame] | 6017 | const char kVirtualKeyboardMultitouchName[] = "Virtual Keyboard Multitouch"; |
| 6018 | const char kVirtualKeyboardMultitouchDescription[] = |
| 6019 | "Enables multitouch on the virtual keyboard."; |
| 6020 | |
John Palmer | 489eda92 | 2022-05-13 05:40:41 | [diff] [blame] | 6021 | const char kVirtualKeyboardRoundCornersName[] = |
| 6022 | "Virtual Keyboard Round Corners"; |
| 6023 | const char kVirtualKeyboardRoundCornersDescription[] = |
| 6024 | "Enables round corners on the virtual keyboard."; |
| 6025 | |
Yen-lin Lai | f458f801 | 2021-03-29 10:18:20 | [diff] [blame] | 6026 | const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features"; |
| 6027 | const char kWakeOnWifiAllowedDescription[] = |
| 6028 | "Allows wake on WiFi features in shill to be enabled."; |
| 6029 | |
Maggie Cai | 6dd6b55 | 2021-04-27 08:40:32 | [diff] [blame] | 6030 | const char kWebAppsCrosapiName[] = "Web Apps Crosapi"; |
| 6031 | const char kWebAppsCrosapiDescription[] = |
| 6032 | "Support web apps publishing from Lacros browser."; |
| 6033 | |
James Cook | 49358cc | 2022-08-30 20:30:26 | [diff] [blame] | 6034 | const char kWelcomeScreenName[] = |
| 6035 | "Productivity Experiment: Reorient with welcome screen"; |
| 6036 | const char kWelcomeScreenDescription[] = |
| 6037 | "When a user is about to start a new task, provide them with relevant " |
| 6038 | "information and tools to help them orient and get started."; |
| 6039 | |
Jacek Siuda | 7ed81c9 | 2021-11-24 10:39:44 | [diff] [blame] | 6040 | const char kWifiConnectMacAddressRandomizationName[] = |
| 6041 | "MAC address randomization"; |
| 6042 | const char kWifiConnectMacAddressRandomizationDescription[] = |
| 6043 | "Randomize MAC address when connecting to unmanaged (non-enterprise) " |
| 6044 | "WiFi networks."; |
| 6045 | |
tby | e50bce9a | 2022-03-31 03:32:54 | [diff] [blame] | 6046 | const char kLauncherGameSearchName[] = "Enable launcher game search"; |
| 6047 | const char kLauncherGameSearchDescription[] = |
| 6048 | "Enables cloud game search results in the launcher."; |
| 6049 | |
Rebecca Hsu | 1d63391 | 2022-12-14 06:09:33 | [diff] [blame] | 6050 | const char kLauncherKeywordExtractionScoring[] = |
| 6051 | "Query keyword extraction and scoring in launcher"; |
| 6052 | const char kLauncherKeywordExtractionScoringDescription[] = |
| 6053 | "Enables extraction of keywords from query then calculate score from " |
| 6054 | "extracted keyword in the launcher."; |
| 6055 | |
Lauren Commeignes | 9f0db8f | 2022-12-21 00:03:47 | [diff] [blame] | 6056 | const char kLauncherFuzzyMatchForOmniboxName[] = |
| 6057 | "Omnibox Results Fuzzy match experiment"; |
| 6058 | const char kLauncherFuzzyMatchForOmniboxDescription[] = |
| 6059 | "To evaluate the viability of a Fuzzy match on Omnibox results to " |
| 6060 | "downweight search sugestions"; |
| 6061 | |
Lauren Commeignes | 33aea8b | 2023-01-03 02:38:28 | [diff] [blame] | 6062 | const char kLauncherSystemInfoAnswerCardsName[] = |
| 6063 | "System Info Answer Cards in launcher"; |
| 6064 | const char kLauncherSystemInfoAnswerCardsDescription[] = |
| 6065 | "Enables System info answer cards in the launcher to provide system " |
| 6066 | "performance metrics"; |
| 6067 | |
Chad Duffin | cdab936 | 2022-07-29 18:31:38 | [diff] [blame] | 6068 | const char kMacAddressRandomizationName[] = "MAC address randomization"; |
| 6069 | const char kMacAddressRandomizationDescription[] = |
| 6070 | "Feature to allow MAC address randomization to be enabled for WiFi " |
| 6071 | "networks."; |
| 6072 | |
Simon Ziegltrum | 55f69bc | 2022-12-22 16:05:51 | [diff] [blame] | 6073 | const char kOobeJellyName[] = "Jelly design for OOBE"; |
| 6074 | const char kOobeJellyDescription[] = |
| 6075 | "Feature to enable the Jelly design in out of box experience."; |
Simon Ziegltrum | c23cb6c5 | 2022-09-22 19:43:44 | [diff] [blame] | 6076 | |
Tao Wu | 4b5d816 | 2022-11-10 19:58:07 | [diff] [blame] | 6077 | const char kLibAssistantV2MigrationName[] = "LibAssistant V2 migration"; |
| 6078 | const char kLibAssistantV2MigrationDescription[] = |
| 6079 | "Enables loading LibAssistant V2 for Assistant on ChromeOS."; |
| 6080 | |
Markus Handell | abf6c781 | 2020-12-15 18:14:35 | [diff] [blame] | 6081 | // Prefer keeping this section sorted to adding new definitions down here. |
| 6082 | |
| 6083 | #endif // BUILDFLAG(IS_CHROMEOS_ASH) |
| 6084 | |
Simon Hangl | 05d1f6a | 2023-01-13 15:33:59 | [diff] [blame] | 6085 | #if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) |
| 6086 | const char kGetDisplayMediaSetName[] = "GetDisplayMediaSet API"; |
| 6087 | const char kGetDisplayMediaSetDescription[] = |
| 6088 | "When enabled, the getDisplayMediaSet API for capturing multiple surfaces " |
| 6089 | "at once is available."; |
| 6090 | |
| 6091 | const char kGetDisplayMediaSetAutoSelectAllScreensName[] = |
| 6092 | "autoSelectAllScreens attribute for GetDisplayMediaSet"; |
| 6093 | const char kGetDisplayMediaSetAutoSelectAllScreensDescription[] = |
| 6094 | "When enabled, the autoSelectAllScreens attribute is available for usage " |
| 6095 | "with the GetDisplayMediaSet API."; |
| 6096 | |
| 6097 | #endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) |
| 6098 | |
Jan Krcal | d11ad89 | 2022-01-17 12:37:02 | [diff] [blame] | 6099 | #if BUILDFLAG(IS_CHROMEOS_LACROS) |
Alex Cooper | 9ec625a | 2022-02-11 23:17:22 | [diff] [blame] | 6100 | const char kDesktopCaptureLacrosV2Name[] = "Enable Lacros Desktop Capture V2"; |
| 6101 | const char kDesktopCaptureLacrosV2Description[] = |
| 6102 | "Enables the improved desktop/window capturer for doing screen/window " |
| 6103 | "sharing on Lacros"; |
| 6104 | |
Alex Cooper | dad8fb69 | 2022-10-03 22:42:41 | [diff] [blame] | 6105 | const char kLacrosAuraCaptureName[] = "Enable Lacros Aura Capture"; |
| 6106 | const char kLacrosAuraCaptureDescription[] = |
| 6107 | "Enables LaCrOS to perform an in-process capture of it's own windows " |
| 6108 | "rather than needing to delegate the capture to Ash"; |
| 6109 | |
Andrea Orru | e14d8fd8 | 2022-02-24 16:47:51 | [diff] [blame] | 6110 | const char kLacrosMergeIcuDataFileName[] = |
| 6111 | "Enable merging of icudtl.dat in Lacros"; |
| 6112 | const char kLacrosMergeIcuDataFileDescription[] = |
| 6113 | "Enables sharing common areas of icudtl.dat between Ash and Lacros."; |
| 6114 | |
Mitsuru Oshima | 857191b | 2022-03-15 22:03:40 | [diff] [blame] | 6115 | const char kLacrosScreenCoordinatesEnabledName[] = |
| 6116 | "Enable screen coordinates system in lacros-chrome"; |
| 6117 | const char kLacrosScreenCoordinatesEnabledDescription[] = |
| 6118 | "Enabling this will allow lacros to control the window position in screen " |
| 6119 | "coordinates. This is required for features such as the Javascript APIs " |
| 6120 | "moveBy, moveTo or session restore."; |
Jan Krcal | d11ad89 | 2022-01-17 12:37:02 | [diff] [blame] | 6121 | #endif // #if BUILDFLAG(IS_CHROMEOS_LACROS) |
| 6122 | |
Eric Willigers | 02f80aa | 2022-04-29 01:29:32 | [diff] [blame] | 6123 | #if BUILDFLAG(IS_CHROMEOS) |
Hsin-Yu Chao | e46eb599 | 2022-03-18 13:34:27 | [diff] [blame] | 6124 | const char kCrOSDspBasedAecAllowedName[] = |
| 6125 | "Allow CRAS to use a DSP-based AEC if available"; |
| 6126 | const char kCrOSDspBasedAecAllowedDescription[] = |
| 6127 | "Allows the system variant of the AEC in CRAS to be run on DSP "; |
| 6128 | |
| 6129 | const char kCrOSDspBasedNsAllowedName[] = |
| 6130 | "Allow CRAS to use a DSP-based NS if available"; |
| 6131 | const char kCrOSDspBasedNsAllowedDescription[] = |
| 6132 | "Allows the system variant of the NS in CRAS to be run on DSP "; |
| 6133 | |
| 6134 | const char kCrOSDspBasedAgcAllowedName[] = |
| 6135 | "Allow CRAS to use a DSP-based AGC if available"; |
| 6136 | const char kCrOSDspBasedAgcAllowedDescription[] = |
| 6137 | "Allows the system variant of the AGC in CRAS to be run on DSP "; |
| 6138 | |
| 6139 | const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS"; |
| 6140 | const char kCrOSEnforceSystemAecDescription[] = |
| 6141 | "Enforces using the system variant in CrAS of the AEC"; |
| 6142 | |
| 6143 | const char kCrOSEnforceSystemAecAgcName[] = |
| 6144 | "Enforce using the system AEC and AGC in CrAS"; |
| 6145 | const char kCrOSEnforceSystemAecAgcDescription[] = |
| 6146 | "Enforces using the system variants in CrAS of the AEC and AGC."; |
| 6147 | |
| 6148 | const char kCrOSEnforceSystemAecNsName[] = |
| 6149 | "Enforce using the system AEC and NS in CrAS"; |
| 6150 | const char kCrOSEnforceSystemAecNsDescription[] = |
| 6151 | "Enforces using the system variants in CrAS of the AEC and NS."; |
| 6152 | |
| 6153 | const char kCrOSEnforceSystemAecNsAgcName[] = |
| 6154 | "Enforce using the system AEC, NS and AGC in CrAS"; |
| 6155 | const char kCrOSEnforceSystemAecNsAgcDescription[] = |
| 6156 | "Enforces using the system variants in CrAS of the AEC, NS and AGC."; |
| 6157 | |
Jan Lanik | 1812e688 | 2022-05-24 18:43:35 | [diff] [blame] | 6158 | const char kCrosPrivacyHubName[] = "Enable ChromeOS Privacy Hub"; |
| 6159 | const char kCrosPrivacyHubDescription[] = "Enables ChromeOS Privacy Hub."; |
| 6160 | |
Jan Lanik | 3f59233 | 2022-10-06 21:08:00 | [diff] [blame] | 6161 | const char kCrosPrivacyHubV0Name[] = |
| 6162 | "Enable ChromeOS Privacy Hub without the location switch."; |
| 6163 | const char kCrosPrivacyHubV0Description[] = |
| 6164 | "Enables ChromeOS Privacy Hub without the location switch."; |
Jan Lanik | 4aa0d0f1 | 2022-08-08 20:50:47 | [diff] [blame] | 6165 | |
Pavol Marko | 798ffdb4 | 2022-06-23 13:22:42 | [diff] [blame] | 6166 | const char kDisableIdleSocketsCloseOnMemoryPressureName[] = |
| 6167 | "Disable closing idle sockets on memory pressure"; |
| 6168 | const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] = |
| 6169 | "If enabled, idle sockets will not be closed when chrome detects memory " |
| 6170 | "pressure. This applies to web pages only and not to internal requests."; |
| 6171 | |
Jenny Zhang | 0f8cb4fc | 2022-05-27 00:03:50 | [diff] [blame] | 6172 | const char kDisableOfficeEditingComponentAppName[] = |
| 6173 | "Disable Office Editing for Docs, Sheets & Slides"; |
| 6174 | const char kDisableOfficeEditingComponentAppDescription[] = |
| 6175 | "Disables Office Editing for Docs, Sheets & Slides component app so " |
| 6176 | "handlers won't be registered, making it possible to install another " |
| 6177 | "version for testing."; |
| 6178 | |
Tim Sergeant | e9c45c4 | 2022-03-17 21:53:52 | [diff] [blame] | 6179 | const char kIntentChipSkipsPickerName[] = |
| 6180 | "Link capturing intent chip skips the intent picker bubble"; |
| 6181 | const char kIntentChipSkipsPickerDescription[] = |
| 6182 | "When enabled, clicking the intent chip in the Omnibox will skip the " |
| 6183 | "intent picker bubble and launch directly into the app. If multiple apps " |
| 6184 | "are installed for a URL, the intent picker will still be shown for " |
| 6185 | "disambigation."; |
| 6186 | |
Tim Sergeant | b1ba003d | 2022-03-21 07:09:10 | [diff] [blame] | 6187 | const char kIntentChipAppIconName[] = |
| 6188 | "Show app icons in the link capturing intent chip"; |
| 6189 | const char kIntentChipAppIconDescription[] = |
| 6190 | "When enabled, the intent chip in the Omnibox will show the app icon for " |
| 6191 | "the app which can handle the current URL."; |
| 6192 | |
Yi Xie | ac082b4 | 2022-08-03 09:58:37 | [diff] [blame] | 6193 | const char kKioskEnableAppServiceName[] = "Enable App Service in Kiosk."; |
| 6194 | const char kKioskEnableAppServiceDescription[] = |
| 6195 | "Uses App Service to install web apps and launch both Chrome apps and web " |
| 6196 | "apps in Kiosk sessions."; |
| 6197 | |
Femi Adegunloye | c22dc3e | 2022-09-08 15:25:58 | [diff] [blame] | 6198 | const char kLacrosColorManagementName[] = "Enable Chrome Color Management."; |
| 6199 | const char kLacrosColorManagementDescription[] = |
| 6200 | "Uses chrome-color-management wayland protocol to manage color spaces " |
| 6201 | "for lacros."; |
| 6202 | |
Tim Sergeant | a596e2f | 2022-07-06 05:27:30 | [diff] [blame] | 6203 | const char kLinkCapturingAutoDisplayIntentPickerName[] = |
| 6204 | "Enable auto-display of intent picker bubble"; |
| 6205 | const char kLinkCapturingAutoDisplayIntentPickerDescription[] = |
| 6206 | "When enabled, the intent picker bubble will automatically display when " |
| 6207 | "clicking a link which can be opened in installed apps. Only applies when " |
| 6208 | "'Enable updated link capturing UI' is enabled."; |
| 6209 | |
Tim Sergeant | e9c45c4 | 2022-03-17 21:53:52 | [diff] [blame] | 6210 | const char kLinkCapturingInfoBarName[] = "Enable link capturing info bar"; |
| 6211 | const char kLinkCapturingInfoBarDescription[] = |
| 6212 | "Enables an info bar which appears when launching a web app through the " |
| 6213 | "Omnibox intent chip, prompting to update the link capturing setting for " |
| 6214 | "that app."; |
| 6215 | |
Lei Zhang | 44abd5d2 | 2022-01-11 00:32:34 | [diff] [blame] | 6216 | const char kLinkCapturingUiUpdateName[] = "Enable updated link capturing UI"; |
| 6217 | const char kLinkCapturingUiUpdateDescription[] = |
Tim Sergeant | e47c0ad5 | 2021-12-19 23:43:57 | [diff] [blame] | 6218 | "Enables updated UI for link capturing flows from the browser to apps, " |
| 6219 | "including the intent picker and an in-app link capturing prompt."; |
Jon Mann | f67d2fb | 2022-02-28 06:26:22 | [diff] [blame] | 6220 | |
| 6221 | const char kMessagesPreinstallName[] = "Preinstall Messages PWA"; |
| 6222 | const char kMessagesPreinstallDescription[] = |
| 6223 | "Enables preinstallation of the Messages for Web PWA for unmanaged users."; |
Maksim Moskvitin | 70a77cb | 2022-04-06 12:26:40 | [diff] [blame] | 6224 | |
Alan Cutter | 2fc3ff93 | 2022-09-28 09:44:57 | [diff] [blame] | 6225 | const char kMicrosoftOfficeWebAppExperimentName[] = |
| 6226 | "Microsoft Office web app experiment"; |
| 6227 | const char kMicrosoftOfficeWebAppExperimentDescription[] = |
| 6228 | "A ChromeOS experiment on the Microsoft Office web app that overrides the " |
| 6229 | "scope and theme color. Not intended for public release; this is testing " |
| 6230 | "capabilites that will be available to websites at a later date."; |
| 6231 | |
Youssef Esmat | c732bf8 | 2022-05-27 00:47:19 | [diff] [blame] | 6232 | const char kOneGroupPerRendererName[] = |
| 6233 | "Use one cgroup for each foreground renderer"; |
| 6234 | const char kOneGroupPerRendererDescription[] = |
| 6235 | "Places each Chrome foreground renderer into its own cgroup"; |
| 6236 | |
Yue Li | 806e5d8 | 2022-09-14 00:16:02 | [diff] [blame] | 6237 | const char kDisableQuickAnswersV2TranslationName[] = |
| 6238 | "Disable Quick Answers Translation"; |
| 6239 | const char kDisableQuickAnswersV2TranslationDescription[] = |
| 6240 | "Disable translation services of the Quick Answers."; |
| 6241 | |
Maksim Moskvitin | 70a77cb | 2022-04-06 12:26:40 | [diff] [blame] | 6242 | const char kSyncChromeOSExplicitPassphraseSharingName[] = |
| 6243 | "Sync passphrase sharing"; |
| 6244 | const char kSyncChromeOSExplicitPassphraseSharingDescription[] = |
| 6245 | "Allows sharing custom sync passphrase between OS and Browser on ChromeOS"; |
Michelle | 724c6bfb2 | 2022-12-15 04:55:38 | [diff] [blame] | 6246 | |
Jason Rhee | 7fba0eb | 2023-01-17 02:21:08 | [diff] [blame] | 6247 | const char kChromeOSSyncedSessionSharingName[] = |
| 6248 | "Synced session sharing on ChromeOS"; |
| 6249 | const char kChromeOSSyncedSessionSharingDescription[] = |
| 6250 | "Allows sharing synced sessions between OS and Browser on ChromeOS"; |
| 6251 | |
Michelle | 724c6bfb2 | 2022-12-15 04:55:38 | [diff] [blame] | 6252 | const char kTouchTextEditingRedesignName[] = "Touch Text Editing Redesign"; |
| 6253 | const char kTouchTextEditingRedesignDescription[] = |
| 6254 | "Enables new touch text editing features."; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6255 | #endif // BUILDFLAG(IS_CHROMEOS) |
Pilar Molina Lopez | 40a3e2d | 2021-03-04 21:01:08 | [diff] [blame] | 6256 | |
Pilar Molina Lopez | ae61dfc | 2022-01-21 21:04:45 | [diff] [blame] | 6257 | #if defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS) |
Miguel Casas | b93a0e35 | 2021-07-16 04:07:21 | [diff] [blame] | 6258 | const char kVaapiVP9kSVCEncoderName[] = |
| 6259 | "VA-API encode acceleration for k-SVC VP9"; |
| 6260 | const char kVaapiVP9kSVCEncoderDescription[] = |
| 6261 | "Enable or disable k-SVC VP9 encode acceleration using VA-API."; |
Pilar Molina Lopez | ae61dfc | 2022-01-21 21:04:45 | [diff] [blame] | 6262 | #endif // defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS) |
Miguel Casas | b93a0e35 | 2021-07-16 04:07:21 | [diff] [blame] | 6263 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6264 | #if BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION) |
Pilar Molina Lopez | fb5103b7 | 2021-02-26 23:35:52 | [diff] [blame] | 6265 | const char kChromeOSDirectVideoDecoderName[] = "ChromeOS Direct Video Decoder"; |
| 6266 | const char kChromeOSDirectVideoDecoderDescription[] = |
| 6267 | "Enables the hardware-accelerated ChromeOS direct media::VideoDecoder " |
| 6268 | "implementation. Note that this might be entirely disallowed by the " |
| 6269 | "--platform-disallows-chromeos-direct-video-decoder command line switch " |
| 6270 | "which is added for platforms where said direct VideoDecoder does not work " |
| 6271 | "or is not well tested (see the disable_cros_video_decoder USE flag in " |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 6272 | "ChromeOS)"; |
Hirokazu Honda | 5a3450c | 2022-06-17 14:16:25 | [diff] [blame] | 6273 | const char kChromeOSHWVBREncodingName[] = |
| 6274 | "ChromeOS Hardware Variable Bitrate Encoding"; |
| 6275 | const char kChromeOSHWVBREncodingDescription[] = |
| 6276 | "Enables the hardware-accelerated variable bitrate (VBR) encoding on " |
| 6277 | "ChromeOS. If the hardware encoder supports VBR for a specified codec, a " |
| 6278 | "video is recorded in VBR encoding in MediaRecoder API automatically and " |
| 6279 | "WebCodecs API if configured so."; |
Fritz Koenig | a0770f5c | 2022-04-06 18:17:55 | [diff] [blame] | 6280 | #if defined(ARCH_CPU_ARM_FAMILY) |
Justin Green | 0b5c4899 | 2022-10-10 22:16:04 | [diff] [blame] | 6281 | const char kPreferGLImageProcessorName[] = "Prefer GL image processor"; |
| 6282 | const char kPreferGLImageProcessorDescription[] = |
| 6283 | "Prefers the GL image processor for format conversion of video frames over" |
| 6284 | " both the libYUV and hardware implementations"; |
Fritz Koenig | a0770f5c | 2022-04-06 18:17:55 | [diff] [blame] | 6285 | #endif // defined(ARCH_CPU_ARM_FAMILY) |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6286 | #endif // BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION) |
Pilar Molina Lopez | fb5103b7 | 2021-02-26 23:35:52 | [diff] [blame] | 6287 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6288 | #if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) |
Hirokazu Honda | 8ef07cd | 2020-04-17 03:36:38 | [diff] [blame] | 6289 | const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture"; |
| 6290 | const char kZeroCopyVideoCaptureDescription[] = |
| 6291 | "Camera produces a gpu friendly buffer on capture and, if there is, " |
| 6292 | "hardware accelerated video encoder consumes the buffer"; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6293 | #endif // BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 6294 | |
Collin Baker | 75a2946 | 2019-03-13 19:57:31 | [diff] [blame] | 6295 | // All views-based platforms -------------------------------------------------- |
| 6296 | |
| 6297 | #if defined(TOOLKIT_VIEWS) |
| 6298 | |
Mohamed Amir Yosef | 4d5d526b | 2022-11-10 11:05:25 | [diff] [blame] | 6299 | const char kRevampedPasswordManagementBubbleName[] = |
| 6300 | "Revamped Password Managment Bubble (Desktop)"; |
| 6301 | const char kRevampedPasswordManagementBubbleDescription[] = |
| 6302 | "Enable the new password managment bubble triggered by clicking the key " |
| 6303 | "icon in the omnibox."; |
| 6304 | |
Pengchao Cai | 74b3379d | 2022-09-09 18:55:18 | [diff] [blame] | 6305 | const char kSearchWebInSidePanelName[] = "Search web in side panel"; |
| 6306 | const char kSearchWebInSidePanelDescription[] = |
| 6307 | "Displays right-click search results of a highlighted text in side panel"; |
| 6308 | |
Collin Baker | 75a2946 | 2019-03-13 19:57:31 | [diff] [blame] | 6309 | #endif // defined(TOOLKIT_VIEWS) |
| 6310 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 6311 | // Random platform combinations ----------------------------------------------- |
| 6312 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6313 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \ |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6314 | BUILDFLAG(IS_FUCHSIA) |
Leonard Grey | e2b8fe9 | 2022-03-04 20:36:01 | [diff] [blame] | 6315 | const char kQuickCommandsName[] = "Quick Commands"; |
| 6316 | const char kQuickCommandsDescription[] = |
| 6317 | "Enable a text interface to browser features. Invoke with Ctrl-Space."; |
| 6318 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6319 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || |
| 6320 | // BUILDFLAG(IS_FUCHSIA) |
Josh Santana | 0863d704 | 2021-02-04 20:56:45 | [diff] [blame] | 6321 | |
Jonathan Freed | 4d92f28 | 2022-08-12 19:01:05 | [diff] [blame] | 6322 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \ |
| 6323 | BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS) |
| 6324 | const char kFollowingFeedSidepanelName[] = "Following feed in the sidepanel"; |
| 6325 | const char kFollowingFeedSidepanelDescription[] = |
| 6326 | "Enables the following feed in the sidepanel."; |
| 6327 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || |
| 6328 | // BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS) |
| 6329 | |
James Lee | 89b449e5 | 2022-12-13 18:14:52 | [diff] [blame] | 6330 | #if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_ANDROID) |
| 6331 | const char kLocalWebApprovalsName[] = "Local web approvals"; |
| 6332 | const char kLocalWebApprovalsDescription[] = |
| 6333 | "Enable local web approvals for Family Link users. Web filter interstitial " |
| 6334 | "refresh needs to also be enabled."; |
| 6335 | #endif |
| 6336 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6337 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) |
Hoch Hochkeppel | 6695ffa | 2020-08-17 18:10:27 | [diff] [blame] | 6338 | const char kWebShareName[] = "Web Share"; |
| 6339 | const char kWebShareDescription[] = |
| 6340 | "Enables the Web Share (navigator.share) APIs on experimentally supported " |
| 6341 | "platforms."; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6342 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) |
Hoch Hochkeppel | 6695ffa | 2020-08-17 18:10:27 | [diff] [blame] | 6343 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6344 | #if BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS) |
Alexander Dunaev | 43cfb2f | 2021-10-19 06:08:06 | [diff] [blame] | 6345 | const char kOzonePlatformHintChoiceDefault[] = "Default"; |
| 6346 | const char kOzonePlatformHintChoiceAuto[] = "Auto"; |
| 6347 | const char kOzonePlatformHintChoiceX11[] = "X11"; |
| 6348 | const char kOzonePlatformHintChoiceWayland[] = "Wayland"; |
| 6349 | |
| 6350 | const char kOzonePlatformHintName[] = "Preferred Ozone platform"; |
| 6351 | const char kOzonePlatformHintDescription[] = |
| 6352 | "Selects the preferred platform backend used on Linux. The default one is " |
| 6353 | "\"X11\". \"Auto\" selects Wayland if possible, X11 otherwise. "; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6354 | #endif // BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS) |
Alexander Dunaev | 43cfb2f | 2021-10-19 06:08:06 | [diff] [blame] | 6355 | |
Alvin Ji | 3443b9b | 2022-06-17 19:57:47 | [diff] [blame] | 6356 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) |
| 6357 | const char kWebBluetoothConfirmPairingSupportName[] = |
| 6358 | "Web Bluetooth confirm pairing support"; |
| 6359 | const char kWebBluetoothConfirmPairingSupportDescription[] = |
| 6360 | "Enable confirm-only and confirm-pin pairing mode support for Web " |
| 6361 | "Bluetooth"; |
| 6362 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) |
| 6363 | |
Adem Derinel | 64bdf05 | 2022-02-02 08:14:23 | [diff] [blame] | 6364 | #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) |
| 6365 | const char kSkipUndecryptablePasswordsName[] = |
| 6366 | "Skip undecryptable passwords to use the available decryptable " |
| 6367 | "passwords."; |
| 6368 | const char kSkipUndecryptablePasswordsDescription[] = |
| 6369 | "Makes the decryptable passwords available in the password manager when " |
| 6370 | "there are undecryptable ones."; |
Adem Derinel | 7237657 | 2022-12-06 10:42:54 | [diff] [blame] | 6371 | const char kForcePasswordInitialSyncWhenDecryptionFailsName[] = |
| 6372 | "Force initial sync to clean local undecryptable passwords during startup"; |
| 6373 | const char kForcePasswordInitialSyncWhenDecryptionFailsDescription[] = |
| 6374 | "During startup checks if there are undecryptable passwords in the local " |
| 6375 | "storage and requests initial sync."; |
Adem Derinel | 64bdf05 | 2022-02-02 08:14:23 | [diff] [blame] | 6376 | #endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) |
| 6377 | |
David Benjamin | 371481f | 2022-06-15 15:57:40 | [diff] [blame] | 6378 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) |
| 6379 | const char kAsyncDnsName[] = "Async DNS resolver"; |
| 6380 | const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver."; |
| 6381 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) |
| 6382 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 6383 | // Feature flags -------------------------------------------------------------- |
| 6384 | |
Sam Zackrisson | b49345a | 2022-03-25 11:15:04 | [diff] [blame] | 6385 | #if BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION) |
| 6386 | extern const char kChromeWideEchoCancellationName[] = |
| 6387 | "Chrome-wide echo cancellation"; |
| 6388 | extern const char kChromeWideEchoCancellationDescription[] = |
| 6389 | "Run WebRTC capture audio processing in the audio process instead of the " |
| 6390 | "renderer processes, thereby cancelling echoes from more audio sources."; |
| 6391 | #endif // BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION) |
| 6392 | |
Wez | 02cedeba | 2022-07-26 12:48:38 | [diff] [blame] | 6393 | #if BUILDFLAG(DCHECK_IS_CONFIGURABLE) |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 6394 | const char kDcheckIsFatalName[] = "DCHECKs are fatal"; |
| 6395 | const char kDcheckIsFatalDescription[] = |
| 6396 | "By default Chrome will evaluate in this build, but only log failures, " |
| 6397 | "rather than crashing. If enabled, DCHECKs will crash the calling process."; |
Wez | 02cedeba | 2022-07-26 12:48:38 | [diff] [blame] | 6398 | #endif // BUILDFLAG(DCHECK_IS_CONFIGURABLE) |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 6399 | |
Alex Cooper | bdd9a76 | 2023-01-24 23:29:54 | [diff] [blame] | 6400 | #if BUILDFLAG(ENABLE_CARDBOARD) |
| 6401 | extern const char kEnableCardboardName[] = "Enable Cardboard VR WebXR Runtime"; |
| 6402 | extern const char kEnableCardboardDescription[] = |
| 6403 | "Enables the use of the Cardboard SDK runtime for WebXR instead of the" |
| 6404 | "Google VR Services (or GVR) runtime to start a WebXR-based immersive-vr" |
| 6405 | "session."; |
| 6406 | #endif // ENABLE_CARDBOARD |
| 6407 | |
Derek Schuff | 71d9a92 | 2019-04-24 21:36:00 | [diff] [blame] | 6408 | #if BUILDFLAG(ENABLE_NACL) |
| 6409 | const char kNaclName[] = "Native Client"; |
| 6410 | const char kNaclDescription[] = |
| 6411 | "Support Native Client for all web applications, even those that were not " |
| 6412 | "installed from the Chrome Web Store."; |
Fabian Sommer | 0d6568b | 2022-01-05 16:58:34 | [diff] [blame] | 6413 | const char kVerboseLoggingInNaclName[] = "Verbose logging in Native Client"; |
| 6414 | const char kVerboseLoggingInNaclDescription[] = |
| 6415 | "Control the level of verbose logging in Native Client modules for " |
| 6416 | "debugging purposes."; |
| 6417 | const char kVerboseLoggingInNaclChoiceDefault[] = "Default"; |
| 6418 | const char kVerboseLoggingInNaclChoiceLow[] = "Low"; |
| 6419 | const char kVerboseLoggingInNaclChoiceMedium[] = "Medium"; |
| 6420 | const char kVerboseLoggingInNaclChoiceHigh[] = "High"; |
| 6421 | const char kVerboseLoggingInNaclChoiceHighest[] = "Highest"; |
| 6422 | const char kVerboseLoggingInNaclChoiceDisabled[] = "Disabled"; |
Derek Schuff | 71d9a92 | 2019-04-24 21:36:00 | [diff] [blame] | 6423 | #endif // ENABLE_NACL |
| 6424 | |
Alan Screen | ed2fdda | 2021-09-15 17:24:46 | [diff] [blame] | 6425 | #if BUILDFLAG(ENABLE_OOP_PRINTING) |
| 6426 | const char kEnableOopPrintDriversName[] = |
| 6427 | "Enables Out-of-Process Printer Drivers"; |
| 6428 | const char kEnableOopPrintDriversDescription[] = |
| 6429 | "Enables printing interactions with the operating system to be performed " |
| 6430 | "out-of-process."; |
| 6431 | #endif // BUILDFLAG(ENABLE_OOP_PRINTING) |
| 6432 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6433 | #if BUILDFLAG(ENABLE_PAINT_PREVIEW) && BUILDFLAG(IS_ANDROID) |
Mehran Mahmoudi | b8d0b7c | 2020-03-14 18:10:56 | [diff] [blame] | 6434 | const char kPaintPreviewDemoName[] = "Paint Preview Demo"; |
| 6435 | const char kPaintPreviewDemoDescription[] = |
| 6436 | "If enabled a menu item is added to the Android main menu to demo paint " |
ckitagawa | 8dad53d | 2020-01-07 16:03:35 | [diff] [blame] | 6437 | "previews."; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6438 | #endif // ENABLE_PAINT_PREVIEW && BUILDFLAG(IS_ANDROID) |
ckitagawa | 8dad53d | 2020-01-07 16:03:35 | [diff] [blame] | 6439 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 6440 | #if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) |
Yuheng Huang | 4d0b941fc | 2021-10-12 05:30:36 | [diff] [blame] | 6441 | const char kWebUITabStripFlagId[] = "webui-tab-strip"; |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 6442 | const char kWebUITabStripName[] = "WebUI tab strip"; |
| 6443 | const char kWebUITabStripDescription[] = |
| 6444 | "When enabled makes use of a WebUI-based tab strip."; |
Tom | bae38894 | 2021-08-17 02:44:00 | [diff] [blame] | 6445 | |
| 6446 | const char kWebUITabStripContextMenuAfterTapName[] = |
| 6447 | "WebUI tab strip context menu after tap"; |
| 6448 | const char kWebUITabStripContextMenuAfterTapDescription[] = |
| 6449 | "Enables the context menu to appear after a tap gesture rather than " |
| 6450 | "following a press gesture."; |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 6451 | #endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) |
| 6452 | |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 6453 | #if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH) |
Collin Baker | 0b940c8e | 2020-08-07 18:53:48 | [diff] [blame] | 6454 | const char kWebUITabStripTabDragIntegrationName[] = |
| 6455 | "ChromeOS drag-drop extensions for WebUI tab strip"; |
| 6456 | const char kWebUITabStripTabDragIntegrationDescription[] = |
| 6457 | "Enables special handling in ash for WebUI tab strip tab drags. Allows " |
| 6458 | "dragging tabs out to new windows."; |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 6459 | #endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH) |
Collin Baker | 0b940c8e | 2020-08-07 18:53:48 | [diff] [blame] | 6460 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6461 | #if defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 6462 | |
| 6463 | const char kAutofillCreditCardUploadName[] = |
| 6464 | "Enable offering upload of Autofilled credit cards"; |
| 6465 | const char kAutofillCreditCardUploadDescription[] = |
| 6466 | "Enables a new option to upload credit cards to Google Payments for sync " |
| 6467 | "to all Chrome devices."; |
| 6468 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6469 | #endif // defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 6470 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6471 | #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID) |
Robert Flack | d69659f | 2021-06-02 22:32:33 | [diff] [blame] | 6472 | const char kElasticOverscrollName[] = "Elastic Overscroll"; |
| 6473 | const char kElasticOverscrollDescription[] = |
| 6474 | "Enables Elastic Overscrolling on touchscreens and precision touchpads."; |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6475 | #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID) |
Robert Flack | d69659f | 2021-06-02 22:32:33 | [diff] [blame] | 6476 | |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 6477 | #if BUILDFLAG(IS_WIN) || \ |
| 6478 | (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || \ |
| 6479 | BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA) |
Wei Li | 51e9c16 | 2021-02-01 19:53:35 | [diff] [blame] | 6480 | const char kUIDebugToolsName[] = "Debugging tools for UI"; |
| 6481 | const char kUIDebugToolsDescription[] = |
| 6482 | "Enables additional keyboard shortcuts to help debugging."; |
Andrea Gomez | 6536254b | 2022-08-03 09:07:59 | [diff] [blame] | 6483 | |
| 6484 | const char kDesktopDetailedLanguageSettingsName[] = |
| 6485 | "Detailed Language Settings (Desktop)"; |
| 6486 | const char kDesktopDetailedLanguageSettingsDescription[] = |
| 6487 | "Enable the new detailed language settings page"; |
Gabriel Oliveira | c1792c8 | 2022-08-17 17:31:41 | [diff] [blame] | 6488 | |
| 6489 | const char kSyncPromoAfterSigninInterceptName[] = |
| 6490 | "Sync Promo After Sign-in Intercept"; |
| 6491 | const char kSyncPromoAfterSigninInterceptDescription[] = |
| 6492 | "Enable updates in the first run experience for a new profile in the " |
| 6493 | "Sign-in Intercept, such as a Sync Promo step and an updated Profile " |
| 6494 | "Customization UI, which is also used for local profile creation."; |
| 6495 | |
| 6496 | const char kSigninInterceptBubbleV2Name[] = "Sign-in Intercept Bubble V2"; |
| 6497 | const char kSigninInterceptBubbleV2Description[] = |
| 6498 | "Enable visual updates to the sign-in intercept bubble, such as updated " |
| 6499 | "illustration, strings and an enterprise disclaimer."; |
Wei Li | 51e9c16 | 2021-02-01 19:53:35 | [diff] [blame] | 6500 | #endif |
| 6501 | |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 6502 | #if defined(WEBRTC_USE_PIPEWIRE) |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 6503 | const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support"; |
| 6504 | const char kWebrtcPipeWireCapturerDescription[] = |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 6505 | "When enabled the WebRTC will use the PipeWire multimedia server for " |
| 6506 | "capturing the desktop content on the Wayland display server."; |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 6507 | #endif // #if defined(WEBRTC_USE_PIPEWIRE) |
| 6508 | |
ananubis | ff476b0 | 2021-07-27 07:09:58 | [diff] [blame] | 6509 | #if BUILDFLAG(IS_CHROMEOS_ASH) |
Ben Franz | 441a84c | 2022-04-05 08:44:55 | [diff] [blame] | 6510 | const char kChromeKioskEnableLacrosName[] = |
| 6511 | "Enables Lacros in the chrome app Kiosk"; |
| 6512 | const char kChromeKioskEnableLacrosDescription[] = |
| 6513 | "Uses Lacros-chrome as the web browser in the chrome app Kiosk session on " |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 6514 | "ChromeOS. When disabled, the Ash-chrome will be used"; |
Ben Franz | 441a84c | 2022-04-05 08:44:55 | [diff] [blame] | 6515 | |
ananubis | ff476b0 | 2021-07-27 07:09:58 | [diff] [blame] | 6516 | const char kWebKioskEnableLacrosName[] = |
| 6517 | "Enables Lacros in the web (PWA) Kiosk"; |
| 6518 | const char kWebKioskEnableLacrosDescription[] = |
| 6519 | "Uses Lacros-chrome as the web browser in the web (PWA) Kiosk session on " |
Richard Chui | a9ed7be1 | 2022-04-13 21:30:35 | [diff] [blame] | 6520 | "ChromeOS. When disabled, the Ash-chrome will be used"; |
Jenny Zhang | 6bdaa16 | 2022-07-14 01:22:30 | [diff] [blame] | 6521 | |
| 6522 | const char kDisableLacrosTtsSupportName[] = "Disable lacros tts support"; |
| 6523 | const char kDisableLacrosTtsSupportDescription[] = |
| 6524 | "Disable lacros support for text to speech."; |
| 6525 | |
Vivian Pao | fc22288b | 2022-12-07 03:00:11 | [diff] [blame] | 6526 | const char kPromiseIconsName[] = "Promise Icons"; |
| 6527 | const char kPromiseIconsDescription[] = |
| 6528 | "Enables promise icons in the Launcher and Shelf (if the app is pinned) " |
| 6529 | "for app installations."; |
| 6530 | |
ananubis | ff476b0 | 2021-07-27 07:09:58 | [diff] [blame] | 6531 | #endif // BUILDFLAG(IS_CHROMEOS_ASH) |
| 6532 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 6533 | // ============================================================================ |
| 6534 | // Don't just add flags to the end, put them in the right section in |
| 6535 | // alphabetical order just like the header file. |
| 6536 | // ============================================================================ |
| 6537 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 6538 | } // namespace flag_descriptions |