blob: 2158d8ab1b494f7bf990bfed7736759010c84232 [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2017 The Chromium Authors
vabr0215a8e2017-03-28 12:47:342// 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 Wang55ae2c012022-01-20 21:49:117#include "build/build_config.h"
Yuta Hijikata235fc62b2020-12-08 03:48:328#include "build/chromeos_buildflags.h"
Colin Blundell120bc902023-01-12 15:33:279#include "flag_descriptions.h"
David Dorwin7d75ca92022-03-10 21:59:5610#include "pdf/buildflags.h"
Yuta Hijikata235fc62b2020-12-08 03:48:3211
Brett Wilson7b44537e2017-08-18 01:38:2812// Keep in identical order as the header file, see the comment at the top
13// for formatting rules.
14
vabr0215a8e2017-03-28 12:47:3415namespace flag_descriptions {
16
Brett Wilsonf27ff602017-07-07 22:28:4717const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
18const char kAccelerated2dCanvasDescription[] =
19 "Enables the use of the GPU to perform 2d canvas rendering instead of "
20 "using software rendering.";
horodb71a5a2017-06-09 16:08:2421
Justin Novosad8faf6952021-08-20 22:36:4922const char kCanvasOopRasterizationName[] =
23 "Out-of-process 2D canvas rasterization.";
24const 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 Wilsonf27ff602017-07-07 22:28:4728const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
29const char kAcceleratedVideoDecodeDescription[] =
30 "Hardware-accelerated video decode where available.";
31
Hirokazu Honda732d3e622019-06-12 01:13:4432const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode";
33const char kAcceleratedVideoEncodeDescription[] =
34 "Hardware-accelerated video encode where available.";
35
David Dorwin7d75ca92022-03-10 21:59:5636#if BUILDFLAG(ENABLE_PDF)
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3037const char kAccessiblePDFFormName[] = "Accessible PDF Forms";
38const char kAccessiblePDFFormDescription[] =
39 "Enables accessibility support for PDF forms.";
Hui Yingst058c23702022-11-06 18:59:2240
41const char kPdfUseSkiaRendererName[] = "Use Skia Renderer";
42const char kPdfUseSkiaRendererDescription[] = "Use Skia as the PDF renderer.";
David Dorwin7d75ca92022-03-10 21:59:5643#endif
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3044
Liza Bipina0d7fcf2022-12-28 14:38:5045extern const char kAddEduAccountFromAccountSettingsForSupervisedUsersName[] =
46 "Add Edu Account From Account Settings For Supervised Users";
47extern const char
48 kAddEduAccountFromAccountSettingsForSupervisedUsersDescription[] =
49 "Enables supervised users to add additional Edu accounts and "
50 "simplifies settings UI";
Mihai Sardarescua69193742019-12-06 17:31:3351
Nikki Fang32bf6282023-01-04 05:28:4152const char kAppDeduplicationServiceFondueName[] =
53 "Identify duplicate app groups.";
54const char kAppDeduplicationServiceFondueDescription[] =
55 "Enables pulling app duplicate data from a Google server to allow clients "
56 "to determine app duplicates.";
57
Etienne Pierre-dorayb6e0b672022-07-06 17:17:3658const char kAlignWakeUpsName[] = "Align delayed wake ups at 125 Hz";
59const 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 Wilsonf27ff602017-07-07 22:28:4763const char kAllowInsecureLocalhostName[] =
64 "Allow invalid certificates for resources loaded from localhost.";
65const char kAllowInsecureLocalhostDescription[] =
66 "Allows requests to localhost over HTTPS even when an invalid certificate "
67 "is presented.";
68
sophiewencc86b2c2023-02-07 18:29:4669const char kWindowLayoutMenu[] = "New Window Layout Menu";
70const 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 Wangec296a12021-03-12 00:22:5274const char kWindowsFollowCursorName[] =
75 "Windows open on the display with the cursor";
76const char kWindowsFollowCursorDescription[] =
77 "When there are multiple displays, windows open on the display where "
78 "cursor is located.";
79
Chris Blumed5d85872021-02-17 18:21:0180const char kAnimatedImageResumeName[] = "Use animated image resume behavior";
81const 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
Wen-Chien Wangecbea052023-03-02 00:02:2385const char kAppCollectionFolderRefreshName[] =
86 "App Collection feature: Folder icon refresh";
87const char kAppCollectionFolderRefreshDescription[] =
88 "Enables the App Collection feature: the new folder icon style in the app "
89 "list.";
90
Dominic Mazzoni34dfc6482020-11-18 22:17:5891const char kAriaElementReflectionName[] = "Enable ARIA element reflection";
92const char kAriaElementReflectionDescription[] =
93 "Enable setting ARIA relationship attributes that reference other elements "
94 "directly without an IDREF";
95
Andrew Paseltiner11afa4e2022-07-26 14:23:4996const char kAttributionReportingDebugModeName[] =
97 "Attribution Reporting Debug Mode";
98const char kAttributionReportingDebugModeDescription[] =
99 "Enables debug mode for the Attribution Reporting API. This removes all "
100 "reporting delays and noise. Only works if the Attribution Reporting API "
101 "is already enabled.";
102
Tsuyoshi Horo41b0fe002023-01-30 03:04:57103const char kBackgroundResourceFetchName[] = "Background Resource Fetch";
104const char kBackgroundResourceFetchDescription[] =
105 "Process resource requests in a background thread inside Blink.";
106
Joe DeBlasioe349bdd2022-12-28 00:39:59107const char kBlockInsecureDownloadsName[] = "Block insecure downloads";
108const char kBlockInsecureDownloadsDescription[] =
109 "Enables insecure download blocking. This shows a 'blocked' message if the "
110 "user attempts to download a file over an insecure transport (e.g. HTTP) "
111 "either directly or via an insecure redirect.";
112
Yutaka Hirano92bdfa22022-06-01 15:51:33113const char kBrokerFileOperationsOnDiskCacheInNetworkServiceName[] =
114 "Broker file operations on disk cache in the Network Service";
115const char kBrokerFileOperationsOnDiskCacheInNetworkServiceDescription[] =
116 "Broker file operations on disk cache running in the Network Service. This "
117 "is no-op when the Network Service is running in the browser process.";
118
Hubert Chaoc30058a2022-12-01 01:08:44119const char kCertDualVerificationEnabledName[] = "Cert Dual Verification";
120const char kCertDualVerificationEnabledDescription[] =
121 "Runs both platform Cert Verifer and Chrome Cert Verifier, reporting "
122 "any differences to Chrome if Safe Browsing Extended Reporting is "
123 "enabled.";
124
Elly Fong-Jones6d1e47c72023-02-24 16:12:57125const char kClickToCallName[] = "Click-To-Call";
126const char kClickToCallDescription[] = "Enable the click-to-call feature.";
127
Ana SollanoKim2266c112022-07-14 23:38:15128const char kClipboardUnsanitizedContentName[] =
129 "Clipboard unsanitized read and write";
130const char kClipboardUnsanitizedContentDescription[] =
131 "Allows reading/writing unsanitized content from/to the clipboard. "
132 "Currently, it is only applicable to HTML format. See crbug.com/1268679.";
133
Hubert Chaod8adfa72022-10-19 18:18:52134const char kChromeRootStoreEnabledName[] = "Chrome Root Store";
135const char kChromeRootStoreEnabledDescription[] =
136 "Enable use of Chrome Root Store over platform roots. "
137 "On some platforms this may also enable Chrome Cert Verifier.";
138
Basia Zimirskab0d235a2021-02-24 19:42:53139const char kContentLanguagesInLanguagePickerName[] =
140 "Content languages in language picker";
141const char kContentLanguagesInLanguagePickerDescription[] =
142 "Enables bringing user's content languages that are translatable to the "
143 "top of the list with all languages shown in the translate menu";
144
Riley Tatum8a784fdb2022-10-19 16:48:52145const char kCustomizeChromeColorExtractionName[] =
146 "Customize Chrome Color Extraction";
147const char kCustomizeChromeColorExtractionDescription[] =
148 "Enables setting theme color based on background image color when "
149 "background image is changed in New Tab Page Customize Chrome.";
150
Nihar Majmudarc934f4f2022-08-02 23:56:15151const char kCustomizeChromeSidePanelName[] = "Customize Chrome Side Panel";
152const char KCustomizeChromeSidePanelDescription[] =
153 "Enables the ability to use Customize Chrome functionality from the "
154 "unified side panel on the New Tab Page.";
155
Alice Wang345e09442021-07-05 09:03:29156const char kForceStartupSigninPromoName[] = "Force Start-up Signin Promo";
157const char kForceStartupSigninPromoDescription[] =
158 "If enabled, the full screen signin promo will be forced to show up at "
159 "Chrome start-up.";
160
Tanmoy Mollik271c46e2022-10-18 13:24:30161const char kGaiaIdCacheInAccountManagerFacadeName[] =
162 "Gaia Id In AccountManagerFacade (AMF)";
163const char kGaiaIdCacheInAccountManagerFacadeDescription[] =
Tanmoy Mollikd2408c2e2022-10-03 12:54:55164 "If enabled, starts fetching gaia id from android accounts in "
165 "AccountManagerFacade (AMF)";
166
Tanmoy Mollik429d21a2022-11-28 15:42:06167const char kIdentityStatusConsistencyName[] = "Identity Status Consistency";
168const char kIdentityStatusConsistencyDescription[] =
169 "If enabled, always show identity status - even for signed-out users";
170
Alice Wang97469582022-05-09 08:00:26171const char kTangibleSyncName[] = "Tangible Sync";
172const char kTangibleSyncDescription[] =
173 "Enables the tangible sync when a user starts the sync consent flow";
174
shivanigithub99368382021-06-16 18:33:37175const char kDebugHistoryInterventionNoUserActivationName[] =
176 "Debug flag for history intervention on no user activation";
177const char kDebugHistoryInterventionNoUserActivationDescription[] =
178 "This flag when enabled, will be used to debug an issue where a page that "
179 "did not get user activation "
180 "is able to work around the history intervention which is not the expected "
181 "behavior";
182
Tommy Steimelc79b2e02022-07-07 19:07:51183const char kDocumentPictureInPictureApiName[] =
184 "Document Picture-in-Picture API";
185const char kDocumentPictureInPictureApiDescription[] =
186 "Enables API to open an always-on-top window with a full HTML document";
187
Erik Chen92f2f0d2023-03-13 00:09:48188const char kEnableBenchmarkingName[] = "Enable benchmarking";
189const char kEnableBenchmarkingDescription[] =
190 "Sets all features to their default state; that is, disables randomization "
191 "for feature states. This is used by developers and testers to "
192 "diagnose whether an observed problem is caused by a non-default "
193 "base::Feature configuration. This flag is automatically reset "
194 "after 3 restarts. On the third restart, the flag will appear to be off "
195 "but the effect is still active.";
196
Mohamed Amir Yosefe19919bc2022-09-30 11:49:26197const char kPasswordNotesWithBackupName[] = "Password notes in settings";
198const char kPasswordNotesWithBackupDescription[] =
Adem Derinel2ea69d92022-03-17 08:58:05199 "Enables a note section for each password in the settings page.";
200
Adem Derinel76fff52a12022-06-20 08:49:06201const char kPasswordViewPageInSettingsName[] = "Password view page in settings";
202const char kPasswordViewPageInSettingsDescription[] =
203 "Enables a new password details subpage in the settings password "
204 "management UI.";
205
Vasiliy Telezhnikov85321a82022-11-08 00:20:15206extern const char kPPAPISharedImagesSwapChainName[] =
207 "Use SharedImages for PPAPI swapchain";
208extern const char kPPAPISharedImagesSwapChainDescription[] =
209 "Switches legacy swap chain code to SharedImages";
210
Colin Blundell120bc902023-01-12 15:33:27211extern const char kSupportPepperVideoDecoderDevAPIName[] =
212 "Controls whether the Pepper PPB_VideoDecoder(Dev) API is supported";
213extern const char kSupportPepperVideoDecoderDevAPIDescription[] =
214 "When disabled, Chrome will return 0 if asked to create the "
215 "PPB_VideoDecoder(Dev) API by in-process callers";
216
Colin Blundell2ebb7322023-02-03 07:43:58217extern const char kCmdDecoderAlwaysGetSizeFromSourceTextureName[] =
218 "Controls whether the GLES2 validating decoder always gets size from the "
219 "source texture when copying textures";
220extern const char kCmdDecoderAlwaysGetSizeFromSourceTextureDescription[] =
221 "When enabled, the GLES2 validating decoder will obtain size from the "
222 "source texture rather than the GLImage when copying textures even if a "
223 "GLImage is present";
224
Andre Le29427c22022-09-23 23:01:57225const char kPrivacyIndicatorsName[] = "Enable Privacy Indicators";
226const char kPrivacyIndicatorsDescription[] =
227 "While screen sharing or camera/microphone is being accessed, show a green "
228 "icon in the status area as well as add a silent notification to the tray.";
229
Vicky Minb02c3e92020-07-07 20:56:52230const char kEnableBluetoothSerialPortProfileInSerialApiName[] =
231 "Enable Bluetooth Serial Port Profile in Serial API";
232const char kEnableBluetoothSerialPortProfileInSerialApiDescription[] =
233 "When enabled, Bluetooth Serial Port Profile devices will be enumerated "
234 "for use with the Serial API.";
235
Vikas Soni7981a2d2021-07-30 18:51:11236const char kEnableDrDcName[] =
237 "Enables Display Compositor to use a new gpu thread.";
238const char kEnableDrDcDescription[] =
239 "When enabled, chrome uses 2 gpu threads instead of 1. "
240 " Display compositor uses new dr-dc gpu thread and all other clients "
241 "(raster, webgl, video) "
242 " continues using the gpu main thread.";
243
vikassoni93f244b2022-05-12 21:58:26244const char kEnableDrDcVulkanName[] =
245 " Use this flag along with flag enable-drdc to enable DrDc on Vulkan. "
246 " Note that this flag will be a no-op if enable-drdc is disabled. ";
247
Le Hoang Quyend6ceade62022-05-20 07:13:10248const char kForceGpuMainThreadToNormalPriorityDrDcName[] =
249 "Force GPU main thread priority to normal for DrDc.";
250const char kForceGpuMainThreadToNormalPriorityDrDcDescription[] =
251 "When enabled, force GPU main thread priority to be normal for DrDc mode. "
252 "In that case DrDc thread continues to use DISPLAY thread priority and "
253 "hence have higher thread priority than GPU main. Note that this flag will "
254 "be a no-op when DrDc is disabled.";
255
Aashna Shethec3b89f2022-09-15 13:06:50256const char kTextBasedAudioDescriptionName[] = "Enable audio descriptions.";
257const char kTextBasedAudioDescriptionDescription[] =
258 "When enabled, HTML5 video elements with a 'descriptions' WebVTT track "
259 "will speak the audio descriptions aloud as the video plays.";
260
Aga Wronska344fa8282021-10-07 14:18:05261#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
262const char kWebFilterInterstitialRefreshName[] =
263 "Web filter interstitial refresh.";
264const char kWebFilterInterstitialRefreshDescription[] =
James Lee89b449e52022-12-13 18:14:52265 "Enable web filter interstitial refresh for Family Link users.";
Aga Wronska344fa8282021-10-07 14:18:05266#endif // ENABLE_SUPERVISED_USERS
267
Elly Fong-Jones43624372023-02-16 19:36:11268const char kUpcomingFollowFeaturesName[] = "Enable upcoming follow features.";
269const char kUpcomingFollowFeaturesDescription[] =
270 "This flag enables all upcoming follow features, in the experiment "
271 "arms that are most likely to be shipped. This is a meta-flag to which "
272 "features are upcoming at any given time may change.";
273
Elly Fong-Jones0c55976a2021-10-06 18:04:30274const char kUpcomingSharingFeaturesName[] = "Enable upcoming sharing features.";
275const char kUpcomingSharingFeaturesDescription[] =
276 "This flag enables all upcoming sharing features, in the experiment "
277 "arms that are most likely to be shipped. This is a meta-flag so which "
278 "features are upcoming at any given time may change.";
279
Regan Hsu3243afa2021-06-21 18:27:27280const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address";
281const char kUseStorkSmdsServerAddressDescription[] =
282 "Use the Stork SM-DS address to fetch pending eSIM profiles managed by the "
283 "Stork prod server. Note that Stork profiles can be created with an EID at "
284 "go/stork-profile, and managed at go/stork-batch > View Profiles. Also "
Jason Zhang26cacea2022-04-04 18:55:04285 "note that an test EUICC card is required to use this feature, usually "
286 "that requires the kCellularUseSecond flag to be enabled. Go to "
Regan Hsu3243afa2021-06-21 18:27:27287 "go/cros-connectivity > Dev Tips for more instructions.";
288
Regan Hsu1ffea922020-09-10 17:08:47289const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL";
290const char kUseWallpaperStagingUrlDescription[] =
291 "Use the staging server as part of the Wallpaper App to verify "
292 "additions/removals of wallpapers.";
293
Kyle Horimoto874554a2019-01-31 00:52:09294const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
295const char kUseMessagesStagingUrlDescription[] =
296 "Use the staging server as part of the \"Messages\" feature under "
297 "\"Connected Devices\" settings.";
298
Jon Mann5ebbd1532020-04-17 22:12:05299const char kUseCustomMessagesDomainName[] = "Use custom Messages domain";
300const char kUseCustomMessagesDomainDescription[] =
301 "Use a custom URL as part of the \"Messages\" feature under "
302 "\"Connected Devices\" settings.";
303
Pilar Molina Lopezfd83aae2022-12-16 22:19:57304const char kUseMojoVideoDecoderForPepperName[] =
305 "Use the MojoVideoDecoder for hardware video decoding in Pepper";
306const char kUseMojoVideoDecoderForPepperDescription[] =
307 "Switches Pepper to use the MojoVideoDecoder for hardware accelerated "
308 "video decoding instead of the legacy video decoder.";
309
Vasiliy Telezhnikova4164812022-10-03 18:38:20310const char kUseDMSAAForTilesName[] = "Use DMSAA for tiles";
311const char kUseDMSAAForTilesDescription[] =
312 "Switches skia to use DMSAA instead of MSAA for tile raster";
313
Tsuyoshi Horod81149602022-07-04 01:34:09314const char kUseDnsHttpsSvcbAlpnName[] = "Use DNS https alpn";
315const char kUseDnsHttpsSvcbAlpnDescription[] =
316 "When enabled, Chrome may try QUIC on the first connection using the ALPN"
317 " information in the DNS HTTPS record.";
318
cfredric6f155762020-12-10 18:52:40319const char kEnableFirstPartySetsName[] = "Enable First-Party Sets";
320const char kEnableFirstPartySetsDescription[] =
321 "When enabled, Chrome will apply First-Party Sets to features such as the "
322 "SameParty cookie attribute.";
323
Bob Beckd9873c22023-02-21 22:56:45324extern const char kSHA1ServerSignatureName[] =
325 "Allow SHA-1 server signatures in TLS.";
326extern const char kSHA1ServerSignatureDescription[] =
327 "When enabled, Chrome will allow the use of SHA-1 in signatures from the "
328 "server during a TLS handshake";
329
David Benjamin371481f2022-06-15 15:57:40330extern const char kEncryptedClientHelloName[] = "Encrypted ClientHello";
331extern const char kEncryptedClientHelloDescription[] =
332 "When enabled, Chrome will enable Encrypted ClientHello support. This will "
333 "encrypt TLS ClientHello if the server enables the extension via the HTTPS "
334 "DNS record.";
335
W. James MacLean0d757fa2022-02-16 16:13:31336extern const char kIsolatedSandboxedIframesName[] =
337 "Isolated sandboxed iframes";
338extern const char kIsolatedSandboxedIframesDescription[] =
339 "When enabled, applies process isolation to iframes with the 'sandbox' "
340 "attribute and without the 'allow-same-origin' permission set on that "
W. James MacLean3b6d0872022-06-24 16:16:14341 "attribute. This also applies to documents with a similar CSP sandbox "
342 "header, even in the main frame. The affected sandboxed documents can be "
343 "grouped into processes based on their URL's site or origin. The default "
344 "grouping when enabled is per-site.";
W. James MacLean0d757fa2022-02-16 16:13:31345
Basia Zimirskab4f6ed82022-07-20 16:54:45346const char kAssistantNonPersonalizedVoiceSearchName[] =
347 "AssistantNonPersonalizedVoiceSearch";
348const char kAssistantNonPersonalizedVoiceSearchDescription[] =
349 "Enables the Assistant voice recognition and search without any "
350 "personalization.";
351
Anne Lim24031e9d2019-09-12 23:03:19352const char kAutofillAlwaysReturnCloudTokenizedCardName[] =
353 "Return cloud token details for server credit cards when possible";
354const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] =
355 "When enabled and where available, forms filled using Google Payments "
356 "server cards are populated with cloud token details, including CPAN "
357 "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic "
358 "CVV).";
359
siashah2b698e2b2021-04-21 15:09:55360const char kAutofillAutoTriggerManualFallbackForCardsName[] =
361 "Auto trigger manual fallback for credit card form-filling failure cases";
362const char kAutofillAutoTriggerManualFallbackForCardsDescription[] =
363 "When enabled, manual fallback will be auto-triggered on form interaction "
364 "in the case where autofill failed to fill a credit card form accurately.";
365
Yi An8b28bef2022-06-29 19:11:32366const char kAutofillEnableFIDOProgressDialogName[] =
367 "Show FIDO progress dialog on Android";
368const char kAutofillEnableFIDOProgressDialogDescription[] =
369 "When enabled, a progress dialog is displayed while authenticating with "
370 "FIDO on Android.";
371
Vinny Perskye6677d52023-02-22 22:22:19372const char kAutofillEnableIbanClientSideUrlFilteringName[] =
373 "Enable Autofill IBAN client side URL filtering";
374const char kAutofillEnableIbanClientSideUrlFilteringDescription[] =
375 "When enabled, client side URL filtering will be triggered for the IBAN "
376 "use-case, so that IBAN autofill is not offered on websites that are "
377 "blocked.";
378
siashahd779824402022-03-31 20:06:55379const char kAutofillEnableManualFallbackForVirtualCardsName[] =
380 "Show manual fallback for virtual cards";
381const char kAutofillEnableManualFallbackForVirtualCardsDescription[] =
382 "When enabled, manual fallback will be enabled for virtual cards on "
383 "Android.";
384
Vinny Persky5a0ac3a32023-03-02 18:35:50385const char kAutofillEnableMerchantOptOutClientSideUrlFilteringName[] =
386 "Enable Autofill merchant opt-out client side URL filtering";
387const char kAutofillEnableMerchantOptOutClientSideUrlFilteringDescription[] =
388 "When enabled, client side URL filtering will be triggered for the "
389 "merchant opt-out use-case, so that virtual card suggestions are not shown "
390 "on websites that are opted-out of virtual cards.";
391
Siyu An042eac82022-09-19 23:55:03392const char kAutofillEnableCardArtImageName[] = "Enable showing card art images";
393const char kAutofillEnableCardArtImageDescription[] =
394 "When enabled, card product images (instead of network icons) will be "
395 "shown in Payments Autofill UI.";
396
Vishwas Uppoor89303a92022-08-03 00:56:26397const char kAutofillEnableCardProductNameName[] =
398 "Enable showing card product name";
399const char kAutofillEnableCardProductNameDescription[] =
400 "When enabled, card product name (instead of issuer network) will be shown "
Siyu An042eac82022-09-19 23:55:03401 "in Payments Autofill UI.";
Vishwas Uppoor89303a92022-08-03 00:56:26402
Alexander Teklea82c4142023-02-22 01:33:42403const char kAutofillEnableNewCardArtAndNetworkImagesName[] =
404 "Enable showing new card art and network images";
405const char kAutofillEnableNewCardArtAndNetworkImagesDescription[] =
406 "When enabled, new and larger card art and network icons will be shown.";
407
Jared Saul702563e2021-09-20 22:36:52408const char kAutofillEnableOfferNotificationForPromoCodesName[] =
409 "Extend Autofill offers and rewards notification to promo code offers";
410const char kAutofillEnableOfferNotificationForPromoCodesDescription[] =
411 "When enabled, a notification will be displayed on page navigation if the "
412 "domain has an eligible merchant promo code offer or reward.";
413
siashaheb118ad52020-12-15 00:17:07414const char kAutofillEnableOffersInClankKeyboardAccessoryName[] =
415 "Enable Autofill offers in keyboard accessory";
416const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] =
417 "When enabled, offers will be displayed in the keyboard accessory when "
418 "available.";
419
Vinny Persky7442638c2023-03-24 01:02:54420const char kAutofillEnablePaymentsMandatoryReauthName[] =
421 "Enable mandatory re-auth for payments autofill";
422const char kAutofillEnablePaymentsMandatoryReauthDescription[] =
423 "When enabled, in use-cases where we would not have triggered any "
424 "user-visible authentication to autofill payment methods, we will trigger "
425 "a device authentication.";
426
Alexander Tekleb4643812023-01-06 23:12:30427const char kAutofillEnableRankingFormulaAddressProfilesName[] =
428 "Enable new Autofill suggestion ranking formula for profiles";
429const char kAutofillEnableRankingFormulaAddressProfilesDescription[] =
430 "When enabled, Autofill will use a new ranking formula to rank Autofill "
431 "profile suggestions.";
432
Alexander Tekle35dfbbd2023-01-31 08:32:39433const char kAutofillEnableRankingFormulaCreditCardsName[] =
434 "Enable new Autofill suggestion ranking formula for credit cards";
435const char kAutofillEnableRankingFormulaCreditCardsDescription[] =
436 "When enabled, Autofill will use a new ranking formula to rank Autofill "
437 "credit card suggestions.";
438
Siyu An3194bda2022-07-13 19:30:37439const char kAutofillEnableRemadeDownstreamMetricsName[] =
440 "Enable remade Autofill Downstream metrics logging";
441const char kAutofillEnableRemadeDownstreamMetricsDescription[] =
442 "When enabled, some extra metrics logging for Autofill Downstream will "
443 "start.";
444
siashah2b698e2b2021-04-21 15:09:55445const char kAutofillEnableStickyManualFallbackForCardsName[] =
446 "Make manual fallback sticky for credit cards";
447const char kAutofillEnableStickyManualFallbackForCardsDescription[] =
448 "When enabled, if the user interacts with the manual fallback bottom "
449 "sheet, it'll remain sticky until the user dismisses it.";
450
Vinny Perskyf98de022022-01-05 22:14:10451const char kAutofillEnableUpdateVirtualCardEnrollmentName[] =
452 "Enable Update Virtual Card Enrollment";
453const char kAutofillEnableUpdateVirtualCardEnrollmentDescription[] =
454 "When enabled, the user will have the ability to update the virtual card "
455 "enrollment of a credit card through their chrome browser after certain "
456 "autofill flows (for example, downstream and upstream), and from the "
457 "settings page.";
458
Vinny Persky650f84402022-04-14 18:46:18459const char kAutofillEnableVirtualCardFidoEnrollmentName[] =
460 "Enable FIDO enrollment for virtual cards";
461const char kAutofillEnableVirtualCardFidoEnrollmentDescription[] =
462 "When enabled, after a successful authentication to autofill a virtual "
463 "card, the user will be prompted to opt-in to FIDO if the user is not "
464 "currently opted-in, and if the user is opted-in already and the virtual "
465 "card is FIDO eligible the user will be prompted to register the virtual "
466 "card into FIDO.";
467
siyua19593222019-12-04 22:27:06468const char kAutofillEnableVirtualCardName[] =
469 "Offer to use cloud token virtual card in Autofill";
470const char kAutofillEnableVirtualCardDescription[] =
471 "When enabled, if all requirements are met, Autofill will offer to use "
472 "virtual credit cards in form filling.";
473
Vipul Vinod Koul633bbf652023-02-21 23:34:11474const char kAutofillEnableNewSaveCardBubbleUiName[] =
475 "Update UI messaging and banner image for credit card upload save";
476const char kAutofillEnableNewSaveCardBubbleUiDescription[] =
477 "When enabled, the user will see a new banner logo and text in the bubble "
478 "offering to upload their cards to Google Pay.";
479
Siyu Ana8b9a0bc2022-01-31 19:40:41480const char kAutofillEnableVirtualCardManagementInDesktopSettingsPageName[] =
481 "Enable virtual card enrollment management in desktop payments settings "
482 "page";
483const char
484 kAutofillEnableVirtualCardManagementInDesktopSettingsPageDescription[] =
485 "When enabled, chrome://settings/payments will offer the option to "
486 "enroll in virtual card if the card is eligible and to unenroll if the "
487 "card has been enrolled.";
488
Siyu An003243c2022-04-07 22:13:11489const char kAutofillEnableVirtualCardMetadataName[] =
490 "Enable showing metadata for virtual cards";
491const char kAutofillEnableVirtualCardMetadataDescription[] =
492 "When enabled, Chrome will show metadata together with other card "
493 "information when the virtual card is presented to users.";
494
Siyu Anff02e742022-04-07 19:08:22495const char kAutofillEnforceDelaysInStrikeDatabaseName[] =
496 "Enforce delay between offering Autofill opportunities in the strike "
497 "database";
498const char kAutofillEnforceDelaysInStrikeDatabaseDescription[] =
499 "When enabled, if previous Autofill feature offer was declined, "
500 "Chrome will wait for some time before showing the offer again.";
501
Qihui Zhao30bf4ca2022-07-26 20:24:59502extern const char kAutofillFillIbanFieldsName[] =
503 "Enable Autofill of IBAN fields in forms";
504extern const char kAutofillFillIbanFieldsDescription[] =
505 "When enabled, Autofill will attempt to fill IBAN (International Bank "
506 "Account Number) fields when data is available.";
507
Jared Saul2188f762021-08-02 21:22:23508const char kAutofillFillMerchantPromoCodeFieldsName[] =
509 "Enable Autofill of promo code fields in forms";
510const char kAutofillFillMerchantPromoCodeFieldsDescription[] =
511 "When enabled, Autofill will attempt to fill merchant promo/coupon/gift "
512 "code fields when data is available.";
513
Matthias Körber44082a492021-09-15 18:29:18514const char kAutofillHighlightOnlyChangedValuesInPreviewModeName[] =
515 "Highlight only changed values in preview mode.";
516const char kAutofillHighlightOnlyChangedValuesInPreviewModeDescription[] =
517 "When Autofill is previewing filling a form, already autofilled values "
518 "and other values that are not changed by accepting the preview should "
519 "not be highlighted.";
520
Qihui Zhao72836c62022-12-16 04:31:41521const char kAutofillOfferToSaveCardWithSameLastFourName[] =
522 "Offer credit card save for cards with same last-4 but different "
523 "expiration dates";
524const char kAutofillOfferToSaveCardWithSameLastFourDescription[] =
525 "Offer credit card save when Chrome detects a card number with the same "
526 "last 4 digits as an existing server card, but a different expiration "
527 "date.";
528
Nakul Vaidya876210f2022-08-08 17:47:19529const char kAutofillParseIBANFieldsName[] = "Parse IBAN fields in forms";
530const char kAutofillParseIBANFieldsDescription[] =
Nakul Vaidyaddfdfbc2022-06-28 23:43:32531 "When enabled, Autofill will attempt to find International Bank Account "
532 "Number (IBAN) fields when parsing forms.";
533
Nakul Vaidya13ca2042022-07-27 01:59:55534const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsName[] =
535 "Parse standalone CVC fields for VCN card on file in forms";
536const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsDescription[] =
537 "When enabled, Autofill will attempt to find standalone CVC fields for VCN "
538 "card on file when parsing forms.";
539
Vidhan5885afa2022-06-23 15:18:16540const char kAutofillPreventOverridingPrefilledValuesName[] =
541 "Prevent Autofill from overriding prefilled field values";
542const char kAutofillPreventOverridingPrefilledValuesDescription[] =
543 "When enabled, Autofill won't override any field values that have not been "
544 "filled by Autofill";
545
Dmitry Vykochko91af82b02022-12-09 17:37:37546const char kAutofillMoreProminentPopupName[] = "More prominent Autofill popup";
547const char kAutofillMoreProminentPopupDescription[] =
548 "If enabled Autofill's popup becomes more prominent, i.e. its shadow "
549 "becomes more emphasized, position is also updated";
550
Qihui Zhao69ac9eee2022-12-15 21:36:39551const char kAutofillRemoveCardExpirationAndTypeTitlesName[] =
552 "Remove expiration and type titles from Chrome Payment Settings page on "
553 "desktop";
554const char kAutofillRemoveCardExpirationAndTypeTitlesDescription[] =
555 "When enabled, expiration and type titles will be removed from the Chrome "
556 "Payment Settings page on desktop platforms.";
557
Lei Zhang507fffd2020-01-29 23:47:54558const char kAutofillSaveAndFillVPAName[] =
Christos Froussios13b412df2019-09-19 19:12:47559 "Offer save and autofill of UPI/VPA values";
Lei Zhang507fffd2020-01-29 23:47:54560const char kAutofillSaveAndFillVPADescription[] =
Christos Froussios13b412df2019-09-19 19:12:47561 "If enabled, when autofill recognizes a UPI/VPA value in a payment form, "
562 "it will offer to save it. If saved, it will be offered for filling in "
563 "fields which expect a VPA.";
564
Jan Keitel05180472023-03-01 11:01:42565const char kAutofillShowAutocompleteDeleteButtonName[] =
566 "Show a delete button for Autocomplete entries";
567const char kAutofillShowAutocompleteDeleteButtonDescription[] =
568 "When enabled, Autocomplete entries in filling popups will contain a "
569 "delete button";
570
Vidhanb03b1ea2022-05-19 12:07:58571const char kAutofillShowManualFallbackInContextMenuName[] =
572 "Show Autofill options in Context Menu";
573const char kAutofillShowManualFallbackInContextMenuDescription[] =
574 "When enabled, users would get address/credit cards/passwords autofilling "
575 "options in the context menu if the context menu is opened on a text field";
576
Vipul Vinod Koulaebbcb3a2023-01-05 19:50:50577const char kAutofillSuggestServerCardInsteadOfLocalCardName[] =
578 "Suggest Server card instead of Local card for deduped cards";
579const char kAutofillSuggestServerCardInsteadOfLocalCardDescription[] =
580 "When enabled, Autofill suggestions that consist of a local and server "
581 "version of the same card will attempt to fill the server card upon "
582 "selection instead of the local card.";
583
Vishwas Uppoor940bd242022-12-15 09:49:42584const char kAutofillTouchToFillForCreditCardsAndroidName[] =
585 "Enable Touch To Fill bottomsheet for Autofill credit card suggestions";
586const char kAutofillTouchToFillForCreditCardsAndroidDescription[] =
587 "When enabled, Autofill credit card suggestions are shown on the "
588 "Touch To Fill bottomsheet";
589
Jared Saulb0473bd2022-04-20 00:03:41590const char kAutofillUpstreamAllowAdditionalEmailDomainsName[] =
591 "Allow Autofill credit card upload save for select non-Google-based "
592 "accounts";
593const char kAutofillUpstreamAllowAdditionalEmailDomainsDescription[] =
594 "When enabled, credit card upload is offered if the user's logged-in "
595 "account's domain is from a common email provider.";
596
597const char kAutofillUpstreamAllowAllEmailDomainsName[] =
598 "Allow Autofill credit card upload save for all non-Google-based accounts";
599const char kAutofillUpstreamAllowAllEmailDomainsDescription[] =
600 "When enabled, credit card upload is offered without regard to the user's "
601 "logged-in account's domain.";
602
Jared Saul5363f3962023-03-10 23:03:51603const char kAutofillUpstreamAuthenticatePreflightCallName[] =
604 "Set authentication token in credit card upload preflight call";
605const char kAutofillUpstreamAuthenticatePreflightCallDescription[] =
606 "When enabled, sets the OAuth2 token in GetUploadDetails requests to "
607 "Google Payments, in order to provide a better experience for users with "
608 "server-side features disabled but not client-side features.";
609
Jared Saul5ea8b257f2023-02-22 18:53:27610const char kAutofillUpstreamUseAlternateSecureDataTypeName[] =
611 "Use alternate secure data type for credit card upload save";
612const char kAutofillUpstreamUseAlternateSecureDataTypeDescription[] =
613 "When enabled, the secure data type for cards sent during credit card "
614 "upload save is updated to match newer server requirements.";
615
Caitlin Fischer43edd90a2019-05-01 13:24:30616const char kAutofillUseImprovedLabelDisambiguationName[] =
617 "Autofill Uses Improved Label Disambiguation";
618const char kAutofillUseImprovedLabelDisambiguationDescription[] =
619 "When enabled, the Autofill dropdown's suggestions' labels are displayed "
620 "using the improved disambiguation format.";
621
Vishwas Uppoor416acea2023-03-09 02:25:22622const char kAutofillVirtualCardsOnTouchToFillAndroidName[] =
623 "Enable virtual cards on Touch To Fill bottomsheet for credit cards";
624const char kAutofillVirtualCardsOnTouchToFillAndroidDescription[] =
625 "When enabled, virtual credit card suggestions are shown on the Touch To "
626 "Fill bottomsheet for credit cards.";
627
Alexander Timin6ae060b62019-09-17 11:21:37628const char kBackForwardCacheName[] = "Back-forward cache";
629const char kBackForwardCacheDescription[] =
Rakina Zata Amni95a2a91d2020-07-14 12:41:44630 "If enabled, caches eligible pages after cross-site navigations."
631 "To enable caching pages on same-site navigations too, choose 'enabled "
632 "same-site support'.";
Alexander Timin6ae060b62019-09-17 11:21:37633
Yuzu Saijo312b8432022-03-01 03:27:31634const char kEnableBackForwardCacheForScreenReaderName[] =
635 "Enable Back-forward cache for screen readers";
636const char kEnableBackForwardCacheForScreenReaderDescription[] =
637 "If enabled, allow pages to enter back/forward cache even if a screen "
638 "reader is in use. The page might still not be cached for other reasons.";
639
minch1b874012021-06-17 00:21:33640const char kBentoBarName[] = "Persistent desks bar";
641const char kBentoBarDescription[] =
642 "Showing a persistent desks bar at the top of the screen in clamshell mode "
643 "when there are more than one desk.";
644
Ioana Pandele69fe4672021-04-28 08:06:37645const char kBiometricReauthForPasswordFillingName[] =
646 "Biometric reauth for password filling";
647const char kBiometricReauthForPasswordFillingDescription[] =
648 "Enables biometric"
649 "re-authentication before password filling";
650
Norge Vizcay5f6bfb42022-06-10 08:33:14651const char kFastCheckoutName[] = "Fast Checkout";
652const char kFastCheckoutDescription[] =
653 "Enables Fast Checkout experiences in Chrome.";
654
Illia Klimove406ecc12022-11-22 15:53:29655const char kFailFastQuietChipName[] = "Fail fast quiet chip";
656const char kFailFastQuietChipDescription[] =
657 "Enables fast finalization of a permission request if it is displayed as a "
658 "quiet chip.";
659
danielngdd3ef942021-10-28 06:42:48660const char kBorealisBigGlName[] = "Borealis Big GL";
661const char kBorealisBigGlDescription[] = "Enable Big GL when running Borealis.";
662
danielng1078c6372021-06-28 06:31:36663const char kBorealisDiskManagementName[] = "Borealis Disk management";
664const char kBorealisDiskManagementDescription[] =
665 "Enable experimental disk management settings.";
666
Nicholas Hollingum449d8252021-11-29 00:18:29667const char kBorealisForceBetaClientName[] = "Borealis Force Beta Client";
668const char kBorealisForceBetaClientDescription[] =
669 "Force the client to run its beta version.";
670
Nicholas Hollingume8672092022-08-25 04:23:16671const char kBorealisForceDoubleScaleName[] = "Borealis Force Double Scale";
672const char kBorealisForceDoubleScaleDescription[] =
673 "Force the client to run in 2x visual zoom.";
674
Nicholas Hollingum449d8252021-11-29 00:18:29675const char kBorealisLinuxModeName[] = "Borealis Linux Mode";
676const char kBorealisLinuxModeDescription[] =
677 "Do not run ChromeOS-specific code in the client.";
678
Nicholas Hollingum97500cc12022-03-03 22:44:43679// For UX reasons we prefer "enabled", but that is used internally to refer to
680// whether borealis is installed or not, so the name of the variable is a bit
681// different to the user-facing name.
682const char kBorealisPermittedName[] = "Borealis Enabled";
683const char kBorealisPermittedDescription[] =
684 "Allows Borealis to run on your device. Borealis may still be blocked for "
685 "other reasons, including: administrator settings, device hardware "
686 "capabilities, or other security measures.";
687
danielng573ad3742022-07-06 05:26:24688const char kBorealisStorageBallooningName[] = "Borealis Storage Ballooning";
689const char kBorealisStorageBallooningDescription[] =
690 "Enables storage balloning for Borealis. This takes precedence over the "
691 "other Borealis Disk management flag.";
692
Brett Wilsonf27ff602017-07-07 22:28:47693const char kBypassAppBannerEngagementChecksName[] =
694 "Bypass user engagement checks";
695const char kBypassAppBannerEngagementChecksDescription[] =
696 "Bypasses user engagement checks for displaying app banners, such as "
697 "requiring that users have visited the site before and that the banner "
698 "hasn't been shown recently. This allows developers to test that other "
699 "eligibility requirements for showing app banners, such as having a "
700 "manifest, are met.";
701
sisidovski62b577f22022-12-15 03:10:00702const char kServiceWorkerBypassFetchHandlerForMainResourceName[] =
703 "Bypass Service Worker Fetch Handler for main resource";
704const char kServiceWorkerBypassFetchHandlerForMainResourceDescription[] =
705 "Bypass starting a service worker and its fetch handler for main resource "
706 "requests. The service worker starts after sending a main resource request "
707 "and handles subresources. If the main resource could be handled in the "
708 "fetch handler, the feature may affect the page load.";
709
Elaine Chienaeb4adc2020-12-08 04:22:05710const char kChromeLabsName[] = "Chrome Labs";
711const char kChromeLabsDescription[] =
712 "Access Chrome Labs through the toolbar menu to see featured user-facing "
713 "experimental features.";
714
Elaine Chienf90ffa72023-01-25 19:18:32715const char kChromeRefresh2023Name[] = "Chrome Refresh 2023";
716const char kChromeRefresh2023Description[] = "Refresh of Chrome Desktop UI";
717
Yue Zhang25d72962022-06-13 21:14:05718const char kCommerceHintAndroidName[] = "Commerce Hint Android";
719const char kCommerceHintAndroidDescription[] =
720 "Enables commerce hint detection on Android.";
721
Jae Hoon Kim2d4256e2022-04-15 21:59:09722const char kConsumerAutoUpdateToggleAllowedName[] =
723 "Allow Consumer Auto Update Toggle";
724const char kConsumerAutoUpdateToggleAllowedDescription[] =
725 "Allow enabling the consumer auto update toggle in settings";
726
Nandhini11a6a87b2019-08-22 22:45:24727const char kContextMenuSearchWithGoogleLensName[] =
728 "Google Lens powered image search in the context menu.";
729const char kContextMenuSearchWithGoogleLensDescription[] =
730 "Replaces default image search with an intent to Google Lens when "
731 "supported.";
732
Anudeep Palankic903c59e2023-01-26 16:46:55733const char kContextMenuGoogleLensSearchOptimizationsName[] =
734 "Google Lens powered image search string variations in the context menu.";
735const char kContextMenuGoogleLensSearchOptimizationsDescription[] =
736 "Replaces Google Lens string variations when Google Lens is supported.";
737
Shuran Huangd11e73e2021-04-14 16:10:12738const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] =
739 "Clear window name in top-level cross-site cross-browsing-context-group "
740 "navigation";
741const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] =
742 "Clear the preserved window.name property when it's a top-level cross-site "
743 "navigation that swaps BrowsingContextGroup.";
Shuran Huanga5be08b2021-01-20 18:46:29744
Dana Fried16e9d9c2021-01-28 09:32:28745#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
746const char kChromeTipsInMainMenuName[] =
747 "Show 'Tips for Chrome' in Help portion of main menu.";
748const char kChromeTipsInMainMenuDescription[] =
749 "Enables 'Tips for Chrome' in main menu; the menu item will take users to "
750 "an official Google site with information about the latest and most "
751 "popular Chrome features.";
Dana Fried1ae80f32021-05-10 19:57:37752
753const char kChromeTipsInMainMenuNewBadgeName[] =
754 "Show 'New' promo badge on 'Tips for Chrome' in Help portion of main menu.";
755const char kChromeTipsInMainMenuNewBadgeDescription[] =
756 "Enables 'New' promo badge on 'Tips for Chrome' in main menu; experiment to"
757 " test the value of this user education feature.";
Dana Fried16e9d9c2021-01-28 09:32:28758#endif
759
rbpottere877c1f2021-06-15 00:23:55760const char kChromeWhatsNewUIName[] =
761 "Show Chrome What's New page at chrome://whats-new";
762const char kChromeWhatsNewUIDescription[] =
763 "Enables Chrome What's New page at chrome://whats-new.";
764
Sanja Perisica1e5cd82022-02-24 11:52:50765extern const char kDeviceForceScheduledRebootName[] =
766 "Enable DeviceScheduledReboot policy for all sessions.";
767extern const char kDeviceForceScheduledRebootDescription[] =
768 "Schedule recurring reboot for the device. Reboots are always executed at "
769 "a scheduled time. If the session is active, user will be notified about "
770 "the reboot, but the reboot will not be delayed.";
771
Alexis Menard61ecb91d2021-07-17 04:10:33772const char kDevicePostureName[] = "Device Posture API";
773const char kDevicePostureDescription[] =
774 "Enables Device Posture API (foldable devices)";
775
Mei Liang36e41a5e2022-02-10 01:43:50776const char kDiscountConsentV2Name[] = "Discount Consent V2";
777const char kDiscountConsentV2Description[] = "Enables Discount Consent V2";
778
Kamila5e9935682022-08-05 12:43:29779const char kDisruptiveNotificationPermissionRevocationName[] =
780 "Disruptive notification permission revocation";
781const char kDisruptiveNotificationPermissionRevocationDescription[] =
782 "Enables revoking the notification permission on sites that send "
783 "disruptive notifications unless the permission was granted through a "
784 "prompt that informed the user about this possibility.";
785
Daniele Castagna6a5cbdeb62020-02-18 22:48:14786const char kDoubleBufferCompositingName[] = "Double buffered compositing";
787const char kDoubleBufferCompositingDescription[] =
788 "Use double buffer for compositing (instead of triple-buffering). "
789 "Latency should be reduced in some cases. On the other hand, more skipped "
790 "frames are expected.";
791
Youssef Esmat9cdb6b42022-12-21 19:28:45792const char kMainThreadCompositingPriorityName[] =
793 "Main thread runs as compositing";
794const char kMainThreadCompositingPriorityDescription[] =
795 "Runs the main thread at compositing priority since it responds to input "
796 "and is on the critical path.";
797
Mei Liangd79d3822022-10-26 21:55:25798const char kMerchantWidePromotionsName[] = "Merchant wide promotions";
799const char kMerchantWidePromotionsDescription[] =
800 "Enables the discount consent for all merchants, and show merchant wide "
801 "promotions if they are available";
802
Mei Liangd5813c32022-10-29 01:09:07803const char kCodeBasedRBDName[] = "Code-based RBD";
804const char kCodeBasedRBDDescription[] = "Enables the Code-based RBD.";
805
Christopher Cameronceb8727d2017-09-07 23:53:16806const char kForceColorProfileSRGB[] = "sRGB";
807const char kForceColorProfileP3[] = "Display P3 D65";
Christopher Cameronb15ffe62022-11-15 10:25:31808const char kForceColorProfileRec2020[] = "ITU-R BT.2020";
Christopher Cameronceb8727d2017-09-07 23:53:16809const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
Sunny Sachanandani71e474a2019-06-11 02:32:03810const char kForceColorProfileSCRGBLinear[] =
811 "scRGB linear (HDR where available)";
812const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)";
Christopher Cameronceb8727d2017-09-07 23:53:16813
814const char kForceColorProfileName[] = "Force color profile";
815const char kForceColorProfileDescription[] =
816 "Forces Chrome to use a specific color profile instead of the color "
817 "of the window's current monitor, as specified by the operating system.";
818
Chris Blumeb504da1f22020-04-27 00:21:44819const char kDynamicColorGamutName[] = "Dynamic color gamut";
820const char kDynamicColorGamutDescription[] =
821 "Displays in wide color when the content is wide. When the content is "
822 "not wide, displays sRGB";
823
Keishi Hattori15299742020-04-20 04:00:09824const char kCooperativeSchedulingName[] = "Cooperative Scheduling";
825const char kCooperativeSchedulingDescription[] =
826 "Enables cooperative scheduling in Blink.";
827
Lijin Shen5feade62019-09-17 03:01:01828const char kDarkenWebsitesCheckboxInThemesSettingName[] =
829 "Darken websites checkbox in themes setting";
830const char kDarkenWebsitesCheckboxInThemesSettingDescription[] =
831 "Show a darken websites checkbox in themes settings when system default or "
832 "dark is selected. The checkbox can toggle the auto-darkening web contents "
833 "feature";
834
Brett Wilsonf27ff602017-07-07 22:28:47835const char kDebugPackedAppName[] = "Debugging for packed apps";
836const char kDebugPackedAppDescription[] =
837 "Enables debugging context menu options such as Inspect Element for packed "
838 "applications.";
839
Brett Wilsonf27ff602017-07-07 22:28:47840const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
841const char kDebugShortcutsDescription[] =
842 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
843
Sharon Yangf390ea92021-06-23 19:55:40844const char kDisableProcessReuse[] = "Disable subframe process reuse";
845const char kDisableProcessReuseDescription[] =
846 "Prevents out-of-process iframes from reusing compatible processes from "
847 "unrelated tabs. This is an experimental mode that will result in more "
848 "processes being created.";
849
Brett Wilsonf27ff602017-07-07 22:28:47850const char kDisallowDocWrittenScriptsUiName[] =
851 "Block scripts loaded via document.write";
852const char kDisallowDocWrittenScriptsUiDescription[] =
853 "Disallows fetches for third-party parser-blocking scripts inserted into "
854 "the main frame via document.write.";
855
Yann Dagoc9bca0352023-02-28 16:30:50856#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
857const char kDisallowManagedProfileSignoutName[] =
858 "Disallow managed profile signout";
859const char kDisallowManagedProfileSignoutDescription[] =
860 "Disallows signing out from managed profiles.";
861#endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
862
Vladimir Levin501455e2022-11-04 20:04:54863const char kViewTransitionName[] = "viewTransition API";
864const char kViewTransitionDescription[] =
865 "Controls the availability of the viewTransition JavaScript API.";
Vladimir Levin4fd9269d2021-03-12 20:07:21866
Khushal Sagarb5af36e2022-11-09 22:33:29867const char kViewTransitionOnNavigationName[] =
868 "viewTransition API for navigations";
869const char kViewTransitionOnNavigationDescription[] =
870 "Controls the availability of the viewTransition API on document "
871 "navigations.";
872
Mark Schillaci402301cb2022-02-02 18:36:37873const char kEnableAutoDisableAccessibilityName[] = "Auto-disable Accessibility";
874const char kEnableAutoDisableAccessibilityDescription[] =
875 "When accessibility APIs are no longer being requested, automatically "
876 "disables accessibility. This might happen if an assistive technology is "
877 "turned off or if an extension which uses accessibility APIs no longer "
878 "needs them.";
879
Jack Lynchef0bac52022-11-01 21:22:18880const char kEnableAutoDisableAccessibilityV2Name[] =
881 "Auto-disable Accessibility V2";
882const char kEnableAutoDisableAccessibilityV2Description[] =
883 "Automatically disable accessibility when Android reports no assistive "
884 "technologies are running. Might break accessibility for assistive "
885 "technologies without isAccessibilityTool set.";
886
Mohamed Amir Yoseff6763132021-02-18 15:53:14887const char kEnableAutofillAddressSavePromptName[] =
888 "Autofill Address Save Prompts";
889const char kEnableAutofillAddressSavePromptDescription[] =
890 "Enable the Autofill address save prompts.";
891
Lily Chen17c57972020-04-22 19:27:44892const char kEnableExperimentalCookieFeaturesName[] =
893 "Enable experimental cookie features";
894const char kEnableExperimentalCookieFeaturesDescription[] =
895 "Enable new features that affect setting, sending, and managing cookies. "
896 "The enabled features are subject to change at any time.";
897
Peng Huanga0f7d7e52021-09-29 13:27:13898const char kEnableRawDrawName[] = "Enable raw draw";
899const char kEnableRawDrawDescription[] =
900 "When enabled, web content will be rastered on output surface directly.";
901
Peter McNeeley8a0156d22022-02-01 20:37:54902const char kEnableDelegatedCompositingName[] = "Enable delegated compositing";
903const char kEnableDelegatedCompositingDescription[] =
904 "When enabled and applicable, the act of compositing is delegated to Ash.";
905
Jenny Blessing45326bf2019-08-29 23:50:37906const char kEnableRemovingAllThirdPartyCookiesName[] =
907 "Enable removing SameSite=None cookies";
908const char kEnableRemovingAllThirdPartyCookiesDescription[] =
909 "Enables UI on chrome://settings/siteData to remove all third-party "
910 "cookies and site data.";
911
Sonja Laurilac0492c852021-09-17 14:49:32912const char kDesktopPWAsAdditionalWindowingControlsName[] =
913 "Desktop PWA Window Minimize/maximize/restore";
914const char kDesktopPWAsAdditionalWindowingControlsDescription[] =
915 "Enable PWAs to manually recreate the minimize, maximize and restore "
916 "window functionalities with respective APIs.";
917
liqining.keiling151bedd62022-08-17 19:18:26918#if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
919
920const char kDesktopPWAsAppHomePageFlagId[] =
921 "enable-desktop-pwas-app-home-page";
922const char kDesktopPWAsAppHomePageName[] = "desktop PWAs app home page";
923const char kDesktopPWAsAppHomePageDescription[] =
924 "Use new chrome://apps page which has different UX on desktop";
925
926#endif // !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
927
Alan Cuttereaae7f42020-12-07 02:24:11928const char kDesktopPWAsElidedExtensionsMenuName[] =
929 "Desktop PWAs elided extensions menu";
930const char kDesktopPWAsElidedExtensionsMenuDescription[] =
931 "Moves the Extensions \"puzzle piece\" icon from the title bar into the "
932 "app menu for web app windows.";
933
Alan Cutter62704892021-08-31 21:27:17934const char kDesktopPWAsLaunchHandlerName[] = "Desktop PWA launch handler";
935const char kDesktopPWAsLaunchHandlerDescription[] =
936 "Enable web app manifests to declare app launch behavior. Prototype "
937 "implementation of: "
Alan Cutter203d5de2022-10-28 04:53:37938 "https://github.com/WICG/web-app-launch/blob/main/launch_handler.md";
Alan Cutter62704892021-08-31 21:27:17939
Lei Zhang507fffd2020-01-29 23:47:54940const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips";
941const char kDesktopPWAsTabStripDescription[] =
Louise Brett015114f2022-11-07 04:14:11942 "Experimental UI for tabbed application mode - exploring what PWA windows "
943 "would look like with a tab strip.";
Alan Cutter121812d2020-01-09 05:03:37944
Louise Brett51548fb2021-06-18 00:27:21945const char kDesktopPWAsTabStripSettingsName[] =
946 "Desktop PWA tab strips settings";
947const char kDesktopPWAsTabStripSettingsDescription[] =
948 "Experimental UI for selecting whether a PWA should open in tabbed mode.";
949
Ivan Šandrk8a710392021-05-20 13:53:13950const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps";
951const char kDesktopPWAsSubAppsDescription[] =
952 "Enable installed PWAs to create shortcuts by installing their sub apps. "
953 "Prototype implementation of: "
954 "https://github.com/ivansandrk/multi-apps/blob/main/explainer.md";
955
Abhinav Kasamsettyd7bb22c2023-01-31 08:18:32956const char kDesktopPWAsScopeExtensionsName[] = "Desktop PWA Scope Extensions";
957const char kDesktopPWAsScopeExtensionsDescription[] =
958 "Enable web app manifests to declare scope extensions to extend app scope "
959 "to other origins. Prototype implementation of: "
960 "https://github.com/WICG/manifest-incubations/blob/gh-pages/"
961 "scope_extensions-explainer.md";
962
Sonja Laurila67ab70d2022-05-13 13:57:26963const char kDesktopPWAsBorderlessName[] = "Desktop PWA Borderless";
964const char kDesktopPWAsBorderlessDescription[] =
965 "Enable web app manifests to declare borderless mode as a display "
966 "override. Prototype implementation of: go/borderless-mode.";
967
Alexey Baskakovd913a1272021-07-09 02:12:19968const char kDesktopPWAsWebBundlesName[] = "Desktop PWAs Web Bundles";
969const char kDesktopPWAsWebBundlesDescription[] =
970 "Adds support for web bundles, making web apps able to be launched "
971 "offline.";
972
Phillis Tangdc765bbd2022-08-10 22:41:26973const char kDesktopPWAsDetailedInstallDialogName[] =
974 "Desktop PWAs Detailed Install Dialog";
975const char kDesktopPWAsDetailedInstallDialogDescription[] =
976 "Enable PWAs with screenshots to show a detailed install dialog during "
977 "installation";
978
Camden King332a4e02023-01-25 22:07:16979const char kSkipServiceWorkerCheckInstallOnlyName[] =
980 "Skip service worker check for PWA installs";
981const char kSkipServiceWorkerCheckInstallOnlyDescription[] =
982 "Allows PWAs to be installed without a service worker.";
983
984const char kSkipServiceWorkerForInstallPromptName[] =
985 "Promote PWA installation without a service worker";
986const char kSkipServiceWorkerForInstallPromptDescription[] =
987 "Allows PWAs that can be installed without a service worker to be "
988 "promoted. Requires #enable-skip-service-worker-check-install-only flag to "
989 "also be enabled.";
990
Alan Cutterb85c0d22022-01-28 01:46:10991const char kEnablePreinstalledWebAppDuplicationFixerName[] =
992 "Enable the app deduplication fix for migrated preinstalled web apps";
993const char kEnablePreinstalledWebAppDuplicationFixerDescription[] =
994 "The preinstalled web app migration encountered app duplication issues "
995 "when it rolled out. This code path will attempt to re-migrate instances "
996 "of app duplication where the old app failed to stay removed. See "
997 "https://crbug.com/1290716.";
998
Steven Valdez89a44ea92019-05-01 15:18:49999const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data";
1000const char kEnableTLS13EarlyDataDescription[] =
1001 "This option enables TLS 1.3 Early Data, allowing GET requests to be sent "
1002 "during the handshake when resuming a connection to a compatible TLS 1.3 "
1003 "server.";
1004
Katie Dektar7faf40ba2023-01-11 22:19:301005const char kAccessibilityAcceleratorNotificationsTimeoutName[] =
1006 "Allows accelerator notifications for accessibility features to time out";
1007const char kAccessibilityAcceleratorNotificationsTimeoutDescription[] =
1008 "Enables notifications for accessibility features turned on by keyboard "
1009 "shortcut (docked magnifier, screen magnifier and high contrast) to time "
1010 "out instead of remaining pinned.";
1011
Katie Dektar29e670d82022-08-23 17:54:401012const char kAccessibilityServiceName[] = "Experimental Accessibility Service";
1013const char kAccessibilityServiceDescription[] =
1014 "This option enables the experimental Accessibility Service and runs some "
1015 "accessibility features in the service.";
1016
Katie Dektar4cf2df72022-08-26 22:31:191017const char kExperimentalAccessibilityColorEnhancementSettingsName[] =
1018 "Experimental Accessibility color enhancement settings";
1019const char kExperimentalAccessibilityColorEnhancementSettingsDescription[] =
1020 "This option enables the experimental Accessibility color enhancement "
1021 "settings found in the OS Accessibility settings.";
1022
Katie Dektar7143fb02023-03-20 21:01:511023const char kAccessibilityDeprecateChromeVoxTabsName[] =
1024 "This option enables the ChromeVox tabs menu deprecation";
1025const char kAccessibilityDeprecateChromeVoxTabsDescription[] =
1026 "Enabling this option will remove the ChromeVox tabs menu from the "
1027 "ChromeVox menus.";
1028
Josiah Krutzc796db12022-09-02 23:38:371029const char kAccessibilitySelectToSpeakPageMigrationName[] =
1030 "Select-to-Speak Page Migration";
1031const char kAccessibilitySelectToSpeakPageMigrationDescription[] =
1032 "This option enables Select-to-Speak page migration from extension options "
1033 "page to a Chrome OS settings page.";
1034
Josiah Krutzef021612023-02-10 05:04:541035const char kAccessibilityChromeVoxPageMigrationName[] =
1036 "ChromeVox Page Migration";
1037const char kAccessibilityChromeVoxPageMigrationDescription[] =
1038 "This option enables ChromeVox page migration from extension options page"
1039 "to a Chrome OS settings page.";
1040
Jacob Francisee72f8c2022-10-26 17:01:001041const char kAccessibilitySelectToSpeakContextMenuOptionName[] =
1042 "Select-To-Speak Context menu option";
1043const char kAccessibilitySelectToSpeakContextMenuOptionDescription[] =
1044 "This option enables a context menu option that will speak the selected "
1045 "text";
1046
Josiah Krutzf581bb02022-10-13 22:57:011047const char kAccessibilitySelectToSpeakHoverTextImprovementsName[] =
1048 "Select-to-Speak Hover Text Improvements";
1049const char kAccessibilitySelectToSpeakHoverTextImprovementsDescription[] =
1050 "This option enables improvements in the text shown when hovering over the "
1051 "Select-to-Speak feature icon in the system tray.";
1052
James Hollyer1b943edb2020-10-28 03:28:061053const char kMacCoreLocationBackendName[] = "Core Location Backend";
1054const char kMacCoreLocationBackendDescription[] =
1055 "Enables usage of the Core Location APIs as the backend for Geolocation "
1056 "API";
James Hollyer070f60a2020-05-05 06:13:151057
Mohamed Adel52ac1ae2020-09-08 16:10:271058const char kNewMacNotificationAPIName[] =
1059 "Determines which notification API to use on macOS devices";
1060const char kNewMacNotificationAPIDescription[] =
1061 "Enables the usage of Apple's new notification API which will run on macOS "
1062 "10.14+";
1063
Pete Lavallee2d4415c72019-10-07 20:43:561064const char kWinrtGeolocationImplementationName[] =
1065 "WinRT Geolocation Implementation";
1066const char kWinrtGeolocationImplementationDescription[] =
1067 "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows "
1068 "for geolocation";
1069
Dominic Farolinoaf2f3b72021-05-03 23:44:161070const char kEnableFencedFramesName[] = "Enable the <fencedframe> element.";
1071const char kEnableFencedFramesDescription[] =
1072 "Fenced frames are an experimental web platform feature that allows "
Nan Lin066a81a2022-04-20 18:46:541073 "embedding an isolated top-level page. This requires "
1074 "#privacy-sandbox-ads-apis to also be enabled. See "
Dominic Farolinoaf2f3b72021-05-03 23:44:161075 "https://github.com/shivanigithub/fenced-frame";
1076
James Hollyer24f30cb722021-06-18 21:22:241077const char kEnableGamepadButtonAxisEventsName[] =
1078 "Gamepad Button and Axis Events";
1079const char kEnableGamepadButtonAxisEventsDescription[] =
1080 "Enables the ability to subscribe to changes in buttons and/or axes "
1081 "on the gamepad object.";
1082
Mikhail Pozdnyakov73373a62017-08-24 17:31:251083const char kEnableGenericSensorExtraClassesName[] =
1084 "Generic Sensor Extra Classes";
1085const char kEnableGenericSensorExtraClassesDescription[] =
1086 "Enables an extra set of sensor classes based on Generic Sensor API, which "
1087 "expose previously unavailable platform features, i.e. AmbientLightSensor "
1088 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:471089
Vikas Soni78daa632019-01-12 01:32:521090const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
1091const char kEnableGpuServiceLoggingDescription[] =
1092 "Enable printing the actual GL driver calls.";
1093
Christian Flach3de81af12022-06-10 17:53:111094const char kEnableIsolatedWebAppsName[] = "Enable Isolated Web Apps";
1095const char kEnableIsolatedWebAppsDescription[] =
1096 "Enables experimental support for isolated web apps. "
1097 "See https://github.com/reillyeon/isolated-web-apps for more information.";
1098
Robbie McElrath8bc8f2b2022-11-14 19:59:021099const char kEnableIsolatedWebAppDevModeName[] =
1100 "Enable Isolated Web App Developer Mode";
1101const char kEnableIsolatedWebAppDevModeDescription[] =
1102 "Enables the installation of unverified Isolated Web Apps";
1103
Chase Phillipsf29be252023-02-02 22:19:391104const char kEnableIwaControlledFrameName[] = "Enable IWA Controlled Frame";
1105const char kEnableIwaControlledFrameDescription[] =
1106 "Enables experimental support for IWA Controlled Frame. "
1107 "See "
1108 "https://github.com/chasephillips/controlled-frame/blob/main/EXPLAINER.md "
1109 "for more information.";
1110
Zentaro Kavanagh9d1307e2022-02-23 21:33:051111const char kEnableRgbKeyboardName[] = "Enable RGB Keyboard Support";
1112const char kEnableRgbKeyboardDescription[] =
1113 "Enable RGB Keyboard support on supported devices.";
1114
Jimmy Gong07656e42021-04-08 02:31:081115const char kEnableShortcutCustomizationAppName[] =
1116 "Enable shortcut customization app";
1117const char kEnableShortcutCustomizationAppDescription[] =
1118 "Enable the shortcut customization SWA, allowing users to customize system "
1119 "shortcuts.";
1120
Cam Bickeld363a1792022-10-06 16:59:091121extern const char kEnableShortcutCustomizationName[] =
1122 "Enable customization in new shortcuts app";
1123extern const char kEnableShortcutCustomizationDescription[] =
1124 "Enable customization of shortcuts in the new shortcuts app.";
1125
Cam Bickelfd253282023-02-09 20:12:221126extern const char kEnableSearchInShortcutsAppName[] =
1127 "Enable search in new shortcuts app";
1128extern const char kEnableSearchInShortcutsAppDescription[] =
1129 "Enable searching for shortcuts in the new shortcuts app.";
1130
David Padlipskya68a56442022-11-02 22:06:131131const char kEnableInputDeviceSettingsSplitName[] =
1132 "Enable input device settings split";
1133const char kEnableInputDeviceSettingsSplitDescription[] =
1134 "Enable input device settings to be split per-device.";
1135
Michael Checo26110cc92022-05-04 00:55:071136const char kExperimentalRgbKeyboardPatternsName[] =
1137 "Enable experimental RGB Keyboard patterns support";
1138const char kExperimentalRgbKeyboardPatternsDescription[] =
1139 "Enable experimental RGB Keyboard patterns support on supported devices.";
1140
Varun Khanejae493d2b22022-02-18 18:17:311141const char kDownloadBubbleName[] = "Enable download bubble";
1142const char kDownloadBubbleDescription[] =
1143 "Enables the download bubble instead of the download shelf.";
1144
thefroge0ea8bd2022-06-24 15:04:531145const char kDownloadBubbleV2Name[] = "Enable download bubble V2";
1146const char kDownloadBubbleV2Description[] =
1147 "Adds features to the download bubble not available on the download shelf. "
1148 "Only works if the base download bubble flag download-bubble is also "
1149 "enabled.";
1150
Xing Liua8d6b272021-11-11 00:02:161151const char kDownloadRangeName[] = "Enable download range support";
1152const char kDownloadRangeDescription[] =
1153 "Enables arbitrary download range request support.";
1154
Awad Osman33029872022-12-02 19:04:261155const char kEnableEnhancedSafeBrowsingSettingsImprovementsName[] =
1156 "Enable enhanced safe browsing settings improvements";
1157const char kEnableEnhancedSafeBrowsingSettingsImprovementsDescription[] =
1158 "Adds an in-product-help bubble to the ESB settings options when users are "
1159 "directed to the chrome security settings page through ESB promotions and "
1160 "also collapses the ESB option.";
1161
Bernhard Bauer5533f9912017-11-06 17:56:021162const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
1163const char kEnableNetworkLoggingToFileDescription[] =
1164 "Enables network logging to a file named netlog.json in the user data "
1165 "directory. The file can be imported into chrome://net-internals.";
1166
Shakti Sahu5a046f62019-03-12 19:25:341167const char kEnableNewDownloadBackendName[] = "Enable new download backend";
1168const char kEnableNewDownloadBackendDescription[] =
1169 "Enables the new download backend that uses offline content provider";
1170
Alexander Timina812932f2022-06-29 23:39:341171const char kEnablePerfettoSystemTracingName[] =
1172 "Enable Perfetto system tracing";
1173const char kEnablePerfettoSystemTracingDescription[] =
1174 "When enabled, Chrome will attempt to connect to the system tracing "
1175 "service";
1176
Doug Arnettc52291a2020-05-07 18:52:301177const char kEnableTranslateSubFramesName[] = "Translate sub frames";
1178const char kEnableTranslateSubFramesDescription[] =
1179 "Enable the translation of sub frames (as well as the main frame)";
1180
Matt Reynolds9e96d08d2022-09-30 01:28:501181const char kEnableWebUsbOnExtensionServiceWorkerName[] =
1182 "Enable WebUSB on extension service workers";
1183const char kEnableWebUsbOnExtensionServiceWorkerDescription[] =
1184 "When enabled, WebUSB API is available on extension service workers.";
1185
Qiaofei Yebeb9a232020-07-22 23:47:041186const char kEnableWindowsGamingInputDataFetcherName[] =
1187 "Enable Windows.Gaming.Input";
1188const char kEnableWindowsGamingInputDataFetcherDescription[] =
1189 "Enable Windows.Gaming.Input by default to provide game controller "
1190 "support on Windows 10 desktop.";
1191
Titouan Rigoudyf619f5462020-09-25 16:35:491192const char kBlockInsecurePrivateNetworkRequestsName[] =
1193 "Block insecure private network requests.";
1194const char kBlockInsecurePrivateNetworkRequestsDescription[] =
Titouan Rigoudy449de9d2022-02-16 19:14:061195 "Prevents non-secure contexts from making subresource requests to "
1196 "more-private IP addresses. See also: "
1197 "https://developer.chrome.com/blog/private-network-access-update/";
1198
1199const char kPrivateNetworkAccessSendPreflightsName[] =
1200 "Send Private Network Access preflights";
1201const char kPrivateNetworkAccessSendPreflightsDescription[] =
1202 "Enables sending Private Network Access preflights ahead of requests to "
1203 "more-private IP addresses. Failed preflights display warnings in DevTools "
1204 "without failing entire request. See also: "
1205 "https://developer.chrome.com/blog/private-network-access-preflight/";
1206
1207const char kPrivateNetworkAccessRespectPreflightResultsName[] =
1208 "Respect the result of Private Network Access preflights";
1209const char kPrivateNetworkAccessRespectPreflightResultsDescription[] =
1210 "Enables sending Private Network Access preflights ahead of requests to "
1211 "more-private IP addresses. These preflight requests must succeed in order "
1212 "for the request to proceed. See also: "
1213 "https://developer.chrome.com/blog/private-network-access-preflight/";
Titouan Rigoudyf619f5462020-09-25 16:35:491214
Yifan Luo6e4029d52022-08-11 17:28:111215const char kPrivateNetworkAccessPreflightShortTimeoutName[] =
1216 "Reduce waiting time for Private Network Access preflights response";
1217const char kPrivateNetworkAccessPreflightShortTimeoutDescription[] =
1218 "Reduce the waiting time for Private Network Access preflights to 200 "
1219 "milliseconds. The default timeout period for requests is 5 minutes."
1220 "See also: "
1221 "https://developer.chrome.com/blog/private-network-access-preflight/";
1222
Zentaro Kavanagh53c48cb22021-03-25 00:19:061223const char kDeprecateAltClickName[] =
1224 "Enable Alt+Click deprecation notifications";
1225const char kDeprecateAltClickDescription[] =
1226 "Start providing notifications about Alt+Click deprecation and enable "
1227 "Search+Click as an alternative.";
1228
Zentaro Kavanaghc1898fe2021-06-25 00:31:451229const char kDeprecateAltBasedSixPackName[] =
1230 "Deprecate Alt based six-pack (PgUp, PgDn, Home, End, Delete, Insert)";
1231const char kDeprecateAltBasedSixPackDescription[] =
1232 "Show deprecation notifications and disable functionality for Alt based "
1233 "six pack deprecations. The Search based versions continue to work.";
1234
Chris Hall4a4225f62019-01-18 03:07:161235const char kExperimentalAccessibilityLanguageDetectionName[] =
1236 "Experimental accessibility language detection";
1237const char kExperimentalAccessibilityLanguageDetectionDescription[] =
1238 "Enable language detection for in-page content which is then exposed to "
Chris Hall31e92b22019-11-15 05:57:221239 "assistive technologies such as screen readers.";
Chris Hall4a4225f62019-01-18 03:07:161240
Chris Hall4f3ca5582019-11-19 02:55:491241const char kExperimentalAccessibilityLanguageDetectionDynamicName[] =
1242 "Experimental accessibility language detection for dynamic content";
1243const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] =
1244 "Enable language detection for dynamic content which is then exposed to "
1245 "assistive technologies such as screen readers.";
1246
Alexei Filippov522a5222019-03-29 03:33:181247const char kMemlogName[] = "Chrome heap profiler start mode.";
1248const char kMemlogDescription[] =
1249 "Starts heap profiling service that records sampled memory allocation "
1250 "profile having each sample attributed with a callstack. "
1251 "The sampling resolution is controlled with --memlog-sampling-rate flag. "
1252 "Recorded heap dumps can be obtained at chrome://tracing "
1253 "[category:memory-infra] and chrome://memory-internals. This setting "
1254 "controls which processes will be profiled since their start. To profile "
1255 "any given process at a later time use chrome://memory-internals page.";
1256const char kMemlogModeMinimal[] = "Browser and GPU";
1257const char kMemlogModeAll[] = "All processes";
1258const char kMemlogModeAllRenderers[] = "All renderers";
1259const char kMemlogModeRendererSampling[] = "Single renderer";
1260const char kMemlogModeBrowser[] = "Browser only";
1261const char kMemlogModeGpu[] = "GPU only";
Alexei Filippov2e8bfee2019-03-07 21:51:271262
Alexei Filippov522a5222019-03-29 03:33:181263const char kMemlogSamplingRateName[] =
1264 "Heap profiling sampling interval (in bytes).";
1265const char kMemlogSamplingRateDescription[] =
1266 "Heap profiling service uses Poisson process to sample allocations. "
Erik Chend0ec40e2021-09-17 22:43:561267 "Default value for the interval between samples is 1000000 (1MB). "
Alexei Filippov522a5222019-03-29 03:33:181268 "This results in low noise for large and/or frequent allocations "
Erik Chend0ec40e2021-09-17 22:43:561269 "[size * frequency >> 1MB]. This means that aggregate numbers [e.g. "
erikchen99bfce02018-02-14 20:29:221270 "total size of malloc-ed objects] and large and/or frequent allocations "
Alexei Filippov522a5222019-03-29 03:33:181271 "can be trusted with high fidelity. "
1272 "Lower intervals produce higher samples resolution, but come at a cost of "
1273 "higher performance overhead.";
1274const char kMemlogSamplingRate10KB[] = "10KB";
1275const char kMemlogSamplingRate50KB[] = "50KB";
1276const char kMemlogSamplingRate100KB[] = "100KB";
1277const char kMemlogSamplingRate500KB[] = "500KB";
1278const char kMemlogSamplingRate1MB[] = "1MB";
1279const char kMemlogSamplingRate5MB[] = "5MB";
erikchen8bc20d82018-02-14 03:21:511280
Alexei Filippov522a5222019-03-29 03:33:181281const char kMemlogStackModeName[] = "Heap profiling stack traces type.";
1282const char kMemlogStackModeDescription[] =
1283 "By default heap profiling service records native stacks. "
1284 "A post-processing step is required to symbolize the stacks. "
1285 "'Native with thread names' adds the thread name as the first frame of "
1286 "each native stack. It's also possible to record a pseudo stack using "
1287 "trace events as identifiers. It's also possible to do a mix of both.";
Alexei Filippov522a5222019-03-29 03:33:181288const char kMemlogStackModeNative[] = "Native";
1289const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names";
Erik Chen3303fd0232018-01-11 20:29:051290
Anupam Snigdhaecc5739e2022-02-14 18:35:581291const char kEditContextName[] = "EditContext API";
1292const char kEditContextDescription[] =
1293 "Allows web pages to use the experimental EditContext API to better "
1294 "control text input.";
1295
Juan Mojica6ea85d072022-03-17 20:33:191296const char kEnableLensStandaloneFlagId[] = "enable-lens-standalone";
1297const char kEnableLensStandaloneName[] = "Enable Lens features in Chrome.";
1298const char kEnableLensStandaloneDescription[] =
1299 "Enables Lens image and region search to learn about the visual content "
1300 "you see while you browse and shop on the web.";
Ali Stanfield980a7492021-07-21 19:21:261301
Anatoliy Potapchukf096475c2021-04-06 15:51:591302const char kEnableManagedConfigurationWebApiName[] =
1303 "Enable Managed Configuration Web API";
1304const char kEnableManagedConfigurationWebApiDescription[] =
1305 "Allows website to access a managed configuration provided by the device "
1306 "administrator for the origin.";
1307
F#m59d036e2017-09-13 07:22:171308const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
1309const char kEnablePixelCanvasRecordingDescription[] =
1310 "Pixel canvas recording allows the compositor to raster contents aligned "
1311 "with the pixel and improves text rendering. This should be enabled when a "
1312 "device is using fractional scale factor.";
1313
Robert Flack55c53a412021-03-22 14:46:081314const char kReduceHorizontalFlingVelocityName[] =
1315 "Reduce horizontal fling velocity";
1316const char kReduceHorizontalFlingVelocityDescription[] =
Jeroen Dhollander9b816f052022-05-11 15:03:421317 "Reduces the velocity of horizontal flings to 20% of their original"
Robert Flack55c53a412021-03-22 14:46:081318 "velocity.";
1319
Mehdi Kazemi4db00b92022-07-08 14:25:201320extern const char kDropInputEventsBeforeFirstPaintName[] =
1321 "Drop Input Events Before First Paint";
1322extern const char kDropInputEventsBeforeFirstPaintDescription[] =
1323 "Before the user can see the first paint of a new page they cannot "
1324 "intentionally interact with elements on that page. By dropping the events "
1325 "we prevent accidental interaction with a page the user has not seen yet.";
1326
Mehdi Kazemif155bc92021-11-22 18:35:521327const char kEnableCssSelectorFragmentAnchorName[] =
1328 "Enables CSS selector fragment anchors";
1329const char kEnableCssSelectorFragmentAnchorDescription[] =
1330 "Similar to text directives, CSS selector directives can be specified "
1331 "in a url which is to be scrolled into view and highlighted.";
1332
Mei Liang267ee2482021-09-17 02:54:511333const char kRetailCouponsName[] = "Enable to fetch for retail coupons";
1334const char kRetailCouponsDescription[] =
1335 "Allow to fetch retail coupons for consented users";
1336
Marc Treibe9f79ea72023-03-14 10:25:421337const char kEnablePreferencesAccountStorageName[] =
1338 "Enable the account data storage for preferences for syncing users";
1339const char kEnablePreferencesAccountStorageDescription[] =
1340 "Enables storing preferences in a second, Gaia-account-scoped storage for "
1341 "syncing users";
1342
Joao Victor Almeida371702c2021-01-08 18:41:561343const char kEnableResamplingScrollEventsExperimentalPredictionName[] =
1344 "Enable experimental prediction for scroll events";
1345const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] =
1346 "Predicts the scroll amount after the vsync time to more closely match "
1347 "when the frame is visible.";
Ella Gebee81c92018-08-14 15:51:091348
Lei Zhang1a6fd01b2021-03-24 17:03:481349const char kEnableRestrictedWebApisName[] =
Felipe Andrade579b7fd2022-10-14 15:17:281350 "Enable the restricted web APIs for high-trusted apps.";
Lei Zhang1a6fd01b2021-03-24 17:03:481351const char kEnableRestrictedWebApisDescription[] =
Anqing Zhaoc7136af2021-01-20 05:52:391352 "Enable the restricted web APIs for dev trial. This will be replaced with "
1353 "permission policies to control the capabilities afterwards.";
1354
Yicheng Li0a78f462020-08-14 00:08:121355const char kEnableWebAuthenticationChromeOSAuthenticatorName[] =
1356 "ChromeOS platform Web Authentication support";
1357const char kEnableWebAuthenticationChromeOSAuthenticatorDescription[] =
1358 "Enable the ChromeOS platform authenticator for the Web Authentication "
1359 "API.";
1360
Piotr Bialecki0fe14632022-03-09 00:49:241361const char kEnableZeroCopyTabCaptureName[] = "Zero-copy tab capture";
1362const char kEnableZeroCopyTabCaptureDescription[] =
1363 "Enable zero-copy content tab for getDisplayMedia() APIs.";
1364
Jordan Baylesa27db812022-07-19 22:37:051365const char kEnableRegionCaptureExperimentalSubtypesName[] =
1366 "Region capture experimental subtypes";
1367const char kEnableRegionCaptureExperimentalSubtypesDescription[] =
1368 "Enables experiment support for CropTarget.fromElement to use other "
1369 "Element subtypes than just <div> and <iframe>.";
1370
Andreas Haasb400d912019-08-28 18:54:101371const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly";
1372const char kExperimentalWebAssemblyFeaturesDescription[] =
1373 "Enable web pages to use experimental WebAssembly features.";
1374
Francis McCabecfc1e47d2023-01-09 22:55:491375const char kExperimentalWebAssemblyJSPIName[] =
1376 "Experimental WebAssembly JavaScript Promise Integration (JSPI)";
1377const char kExperimentalWebAssemblyJSPIDescription[] =
1378 "Enable web pages to use experimental WebAssembly JavaScript Promise "
1379 "Integration (JSPI) "
1380 "API.";
Francis McCabef3548832022-05-26 15:11:271381
Clemens Hammacher0c8a15a2018-04-27 13:45:321382const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
1383const char kEnableWasmBaselineDescription[] =
1384 "Enables WebAssembly baseline compilation and tier up.";
1385
Clemens Backes50e0ecd2020-01-20 10:43:241386const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation";
1387const char kEnableWasmLazyCompilationDescription[] =
1388 "Enables lazy (JIT on first call) compilation of WebAssembly modules.";
1389
Adam Kleinadbd0ef2022-12-15 00:07:151390const char kEnableWasmGarbageCollectionName[] =
1391 "WebAssembly Garbage Collection";
1392const char kEnableWasmGarbageCollectionDescription[] =
1393 "Enables the experimental Garbage Collection (GC) extensions to "
1394 "WebAssembly.";
1395
Deepti Gandluri377ba8cc2022-11-11 18:09:381396const char kEnableWasmRelaxedSimdName[] = "WebAssembly Relaxed SIMD";
1397const char kEnableWasmRelaxedSimdDescription[] =
1398 "Enables the use of WebAssembly vector operations with relaxed semantics";
1399
Matthias Liedtke731a77c2023-03-14 16:11:331400const char kEnableWasmStringrefName[] = "WebAssembly Stringref";
1401const char kEnableWasmStringrefDescription[] =
1402 "Enables the experimental stringref (reference-typed strings) extensions "
1403 "to WebAssembly.";
1404
Clemens Backes963eb37be2020-01-10 11:56:491405const char kEnableWasmTieringName[] = "WebAssembly tiering";
1406const char kEnableWasmTieringDescription[] =
1407 "Enables tiered compilation of WebAssembly (will tier up to TurboFan if "
Clemens Backes50e0ecd2020-01-20 10:43:241408 "#enable-webassembly-baseline is enabled).";
Clemens Backes963eb37be2020-01-10 11:56:491409
Christopher Thompsonf3ba20122019-06-06 22:01:011410const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info.";
1411const char kEvDetailsInPageInfoDescription[] =
1412 "Shows the EV certificate details in the Page Info bubble.";
1413
Brett Wilsonf27ff602017-07-07 22:28:471414const char kExperimentalWebPlatformFeaturesName[] =
1415 "Experimental Web Platform features";
1416const char kExperimentalWebPlatformFeaturesDescription[] =
1417 "Enables experimental Web Platform features that are in development.";
1418
1419const char kExtensionContentVerificationName[] =
1420 "Extension Content Verification";
1421const char kExtensionContentVerificationDescription[] =
1422 "This flag can be used to turn on verification that the contents of the "
1423 "files on disk for extensions from the webstore match what they're "
1424 "expected to be. This can be used to turn on this feature if it would not "
1425 "otherwise have been turned on, but cannot be used to turn it off (because "
1426 "this setting can be tampered with by malware).";
1427const char kExtensionContentVerificationBootstrap[] =
1428 "Bootstrap (get expected hashes, but do not enforce them)";
1429const char kExtensionContentVerificationEnforce[] =
1430 "Enforce (try to get hashes, and enforce them if successful)";
1431const char kExtensionContentVerificationEnforceStrict[] =
1432 "Enforce strict (hard fail if we can't get hashes)";
1433
Devlin Cronin15608c32022-06-01 01:39:521434#if BUILDFLAG(ENABLE_EXTENSIONS)
Emilia Pazd7cce422021-08-14 00:50:481435const char kExtensionsMenuAccessControlName[] =
1436 "Extensions Menu Access Control";
1437const char kExtensionsMenuAccessControlDescription[] =
1438 "Enables a redesigned extensions menu that allows the user to control "
1439 "extensions site access.";
Kevin McNee96b3a1b2023-02-02 20:24:501440const char kWebViewTagMPArchBehaviorName[] =
1441 "MPArch behavior changes for <webview> tags";
1442const char kWebViewTagMPArchBehaviorDescription[] =
1443 "Enables a set of behavior changes associated with the migration of "
1444 "<webview> tags to MPArch. See https://crbug.com/1261928. Specifically, "
1445 "SSL errors result in error pages in lieu of interstitials and "
1446 "cross-WebContents newwindow event usage invalidates some window.open "
1447 "usage within <webview>s. For enterprise, the "
1448 "ChromeAppsWebViewPermissiveBehaviorAllowed policy serves as an escape "
1449 "hatch during the roll out of this change.";
Solomon Kinard6b014f0b2023-02-24 02:20:341450
Ryan Sultanembff00a92023-03-06 11:45:101451const char kWebAuthFlowInBrowserTabName[] =
1452 "Web Authentication Flow in Browser Tab";
1453const char kWebAuthFlowInBrowserTabDescription[] =
1454 "Web authentication flows to be displayed in a Browser Tab instead of an "
1455 "App Window. The flows are used via the Chrome Extension API, using "
1456 "`chrome.identity` functions. Browser Tab can be displayed either in a New "
1457 "Tab or a Popup Window via the feature paramters.";
1458
Solomon Kinard6b014f0b2023-02-24 02:20:341459#if BUILDFLAG(IS_CHROMEOS_ASH)
1460extern const char kExtensionWebFileHandlersName[] =
1461 "Extensions Web File Handlers";
1462extern const char kExtensionWebFileHandlersDescription[] =
1463 "Enable Extension Web File Handlers, which allows extensions to operate on "
1464 "the native file system. An extension can register to read and edit files, "
1465 "specified in the manifest, by their file extension or mime type.";
1466#endif // IS_CHROMEOS_ASH
1467#endif // ENABLE_EXTENSIONS
Emilia Pazd7cce422021-08-14 00:50:481468
Brett Wilsonf27ff602017-07-07 22:28:471469const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1470const char kExtensionsOnChromeUrlsDescription[] =
1471 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1472 "request this permission.";
galinapae72e152017-05-12 13:12:281473
David Bokan432978d2019-08-15 18:18:521474const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets";
1475const char kFractionalScrollOffsetsDescription[] =
1476 "Enables fractional scroll offsets inside Blink, exposing non-integer "
1477 "offsets to web APIs.";
1478
Peter Kotwicz980079f2021-12-02 07:18:341479const char kFedCmName[] = "FedCM";
1480const char kFedCmDescription[] =
1481 "Enables JavaScript API to intermediate federated identity requests.";
1482
Zachary Tan3a4144f2023-02-06 21:28:451483const char kFedCmAutoReauthnName[] = "FedCmAutoReauthn";
1484const char kFedCmAutoReauthnDescription[] =
1485 "Enables auto re-authentication in the FedCM API. Requires FedCM to be "
1486 "enabled.";
Zachary Tan517e7ebc2023-01-18 20:15:351487
Sam Gotoa0b477b2023-02-07 06:37:291488const char kFedCmIdPRegistrationName[] = "FedCM with IdP Registration support";
1489const char kFedCmIdPRegistrationDescription[] =
1490 "Enables RPs to get identity credentials from registered IdPs.";
1491
Nicolás Peña Moreno473267382022-12-15 18:42:401492const char kFedCmIframeSupportName[] = "FedCM with iframe support";
1493const char kFedCmIframeSupportDescription[] =
1494 "Enables the 'identity-credentials-get' Permissions-Policy for the FedCM "
1495 "API.";
1496
Nicolás Peña Moreno8e558562022-12-20 18:57:441497const char kFedCmLoginHintName[] = "FedCmLoginHint";
1498const char kFedCmLoginHintDescription[] =
1499 "Allows the FedCM API to be used with a login hint which specifies a "
1500 "specific IDP account that needs to be displayed in the FedCM UI.";
Zachary Tan33092722022-11-15 18:59:381501
Yi Guc1648582022-10-13 19:45:241502const char kFedCmMetricsEndpointName[] = "FedCmMetricsEndpoint";
1503const char kFedCmMetricsEndpointDescription[] =
1504 "Allows the FedCM API to send performance measurement to the metrics "
1505 "endpoint on the identity provider side. Requires FedCM to be enabled.";
1506
Nicolás Peña Moreno8e558562022-12-20 18:57:441507const char kFedCmMultiIdpName[] = "FedCmMultiIdp";
1508const char kFedCmMultiIdpDescription[] =
1509 "Allows the FedCM API to request multiple identity providers "
1510 "simultaneously. Requires FedCM to be enabled as well.";
1511
Sam Goto2cff8a52022-12-21 00:50:341512const char kFedCmSelectiveDisclosureName[] = "FedCmSelectiveDisclosure";
1513const char kFedCmSelectiveDisclosureDescription[] =
1514 "Allows a relying party to selectively request a set of identity "
1515 "attributes to be disclosed.";
1516
Yi Gu344f8a52022-12-12 21:11:231517const char kFedCmUserInfoName[] = "FedCmUserInfo";
1518const char kFedCmUserInfoDescription[] =
1519 "Allows an identity provider to request user info instead of token from "
1520 "its own iframe. Requires FedCM to be enabled.";
1521
Nicolás Peña Moreno8e558562022-12-20 18:57:441522const char kFedCmWithoutThirdPartyCookiesName[] =
1523 "FedCmWithoutThirdPartyCookies";
1524const char kFedCmWithoutThirdPartyCookiesDescription[] =
1525 "Allows the FedCM API to be enabled when third party cookies are disabled.";
Nicolás Peña Moreno4f77c4b2022-09-06 22:16:541526
Zachary Taneb4b4962023-01-12 03:08:421527const char kFedCmRpContextName[] = "FedCmRpContext";
1528const char kFedCmRpContextDescription[] =
1529 "Allows relying parties to describe which context (e.g. sign-up vs "
1530 "sign-in) the FedCM is executing on.";
1531
Sam Goto4edd6392023-02-28 16:15:281532const char kWebIdentityMDocsName[] = "MDocs";
1533const char kWebIdentityMDocsDescription[] =
1534 "Allows relying parties to request the presentation of ISO mdocs.";
1535
Darwin Huang1473bc32021-06-18 01:56:231536const char kFileHandlingIconsName[] = "File Handling Icons";
1537const char kFileHandlingIconsDescription[] =
1538 "Allows websites using the file handling API to also register file type "
1539 "icons. See https://github.com/WICG/file-handling/blob/main/explainer.md "
1540 "for more information.";
1541
Viktor Semeniukd5cfc262021-02-25 12:51:221542const char kFillingAcrossAffiliatedWebsitesName[] =
1543 "Fill passwords across affiliated websites.";
1544const char kFillingAcrossAffiliatedWebsitesDescription[] =
1545 "Enables filling password on a website when there is saved "
1546 "password on affiliated website.";
1547
Brett Wilsonecb80982017-07-12 20:34:511548const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1549const char kFillOnAccountSelectDescription[] =
1550 "Filling of passwords when an account is explicitly selected by the user "
1551 "rather than autofilling credentials on page load.";
1552
Brett Wilsonecb80982017-07-12 20:34:511553const char kForceTextDirectionName[] = "Force text direction";
1554const char kForceTextDirectionDescription[] =
1555 "Explicitly force the per-character directionality of UI text to "
1556 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1557 "direction of the character language.";
1558const char kForceDirectionLtr[] = "Left-to-right";
1559const char kForceDirectionRtl[] = "Right-to-left";
1560
1561const char kForceUiDirectionName[] = "Force UI direction";
1562const char kForceUiDirectionDescription[] =
1563 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1564 "mode, overriding the default direction of the UI language.";
1565
Victor Tanc6eab7e2022-02-02 21:00:241566const char kFullUserAgentName[] = "Full User-Agent request header";
1567const char kFullUserAgentDescription[] =
1568 "If set, use the full (non-reduced) user agent string for the User-Agent "
1569 "request header and the JS APIs.";
1570
Yuki Awanoeeaad0f2022-11-22 22:44:591571const char kGalleryAppPdfEditNotificationName[] =
1572 "Gallery App Pdf Edit Notification";
1573const char kGalleryAppPdfEditNotificationDescription[] =
1574 "Shows a notification to provide an option to open Gallery app for a "
1575 "downloaded pdf file";
1576
Muyao Xu217663c2023-01-17 18:55:581577const char kMediaRemotingWithoutFullscreenName[] =
1578 "Media Remoting without videos in fullscreen mode";
1579const char kMediaRemotingWithoutFullscreenDescription[] =
1580 "Starts Media Remoting from Global Media Controls without making the "
1581 "videos fullscreen.";
1582
Jazz Xu7b2047a2023-01-19 10:44:091583#if BUILDFLAG(IS_CHROMEOS)
1584const char kGlobalMediaControlsCrOSUpdatedUIName[] =
1585 "Global Media Controls CrOS updated UI";
1586const char kGlobalMediaControlsCrOSUpdatedUIDescription[] =
1587 "Show updated UI for Global Media Controls in CrOS.";
1588#endif
1589
Noah Rose Ledesma1bbd0712020-09-09 20:36:441590const char kGlobalMediaControlsModernUIName[] =
1591 "Global Media Controls Modern UI";
Noah Rose Ledesma1bbd0712020-09-09 20:36:441592const char kGlobalMediaControlsModernUIDescription[] =
1593 "Use a redesigned version of the Global Media Controls UI. Requires "
1594 "#global-media-controls to also be enabled.";
1595
Yuki Awano6ac1a1dc2023-01-21 00:50:241596const char kGoogleOneOfferFilesBannerName[] = "Google One offer Files banner";
1597const char kGoogleOneOfferFilesBannerDescription[] =
1598 "Shows a Files banner about Google One offer.";
1599
Jordan Baylesb3160b262021-08-18 00:33:011600const char kOpenscreenCastStreamingSessionName[] =
1601 "Enable Open Screen Library (libcast) as the Mirroring Service's Cast "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501602 "Streaming implementation";
Jordan Baylesb3160b262021-08-18 00:33:011603const char kOpenscreenCastStreamingSessionDescription[] =
1604 "Enables Open Screen Library's (libcast) Cast Streaming implementation to "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501605 "be used for negotiating and executing mirroring and remoting sessions.";
1606
Kennan Gumbsdf768ce92021-08-25 19:09:511607const char kCastStreamingAv1Name[] =
Jordan Baylesef6d0252022-11-18 02:25:171608 "Enable AV1 video encoding for Cast Streaming";
Kennan Gumbsdf768ce92021-08-25 19:09:511609const char kCastStreamingAv1Description[] =
Jordan Baylesef6d0252022-11-18 02:25:171610 "Offers the AV1 video codec when negotiating Cast Streaming, and uses AV1 "
1611 "if selected for the session.";
1612
1613const char kCastStreamingHardwareH264Name[] =
1614 "Toggle hardware accelerated H.264 video encoding for Cast Streaming";
1615const char kCastStreamingHardwareH264Description[] =
1616 "The default is to allow hardware H.264 encoding when recommended for the "
1617 "platform. If enabled, hardware H.264 encoding will always be allowed when "
1618 "supported by the platform. If disabled, hardware H.264 encoding will "
1619 "never be used.";
1620
1621const char kCastStreamingHardwareVp8Name[] =
1622 "Toggle hardware accelerated VP8 video encoding for Cast Streaming";
1623const char kCastStreamingHardwareVp8Description[] =
1624 "The default is to allow hardware VP8 encoding when recommended for the "
1625 "platform. If enabled, hardware VP8 encoding will always be allowed when "
1626 "supported by the platform (regardless of recommendation). If disabled, "
1627 "hardware VP8 encoding will never be used.";
Kennan Gumbsdf768ce92021-08-25 19:09:511628
Abraham Corea Diaze4c3abe2021-08-24 17:43:501629const char kCastStreamingVp9Name[] =
Jordan Baylesef6d0252022-11-18 02:25:171630 "Enable VP9 video encoding for Cast Streaming";
Abraham Corea Diaze4c3abe2021-08-24 17:43:501631const char kCastStreamingVp9Description[] =
Jordan Baylesef6d0252022-11-18 02:25:171632 "Offers the VP9 video codec when negotiating Cast Streaming, and uses VP9 "
1633 "if selected for the session.";
Jordan Baylesb3160b262021-08-18 00:33:011634
Jordan Bayles5cbeb3502023-02-09 03:30:451635const char kCastEnableStreamingWithHiDPIName[] =
1636 "HiDPI tab capture support for Cast Streaming";
1637const char kCastEnableStreamingWithHiDPIDescription[] =
1638 "Enables HiDPI tab capture during Cast Streaming mirroring sessions. May "
1639 "reduce performance on some platforms and also improve quality of video "
1640 "frames.";
1641
Brett Wilsonecb80982017-07-12 20:34:511642const char kGpuRasterizationName[] = "GPU rasterization";
danakj51faabd2020-03-31 17:25:051643const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content.";
Brett Wilsonecb80982017-07-12 20:34:511644
Salvador Guerrerocd7b24bb2022-07-20 00:32:481645const char kContextualPageActionsName[] = "Contextual page actions";
1646const char kContextualPageActionsDescription[] =
1647 "Enables contextual page action feature.";
1648
Salvador Guerrero3ac349f2022-10-12 02:44:531649const char kContextualPageActionsPriceTrackingName[] =
1650 "Contextual page actions - price tracking";
1651const char kContextualPageActionsPriceTrackingDescription[] =
Shakti Sahu28a76012022-05-30 15:29:141652 "Enables price tracking as a contextual page action.";
1653
Salvador Guerrero3ac349f2022-10-12 02:44:531654const char kContextualPageActionsReaderModeName[] =
1655 "Contextual page actions - reader mode";
1656const char kContextualPageActionsReaderModeDescription[] =
1657 "Enables reader mode as a contextual page action.";
1658
Hailey Wang0ed879a2023-01-10 21:17:361659const char kContextualPageActionsShareModelName[] =
1660 "Contextual page actions - share model";
1661const char kContextualPageActionsShareModelDescription[] =
1662 "Enables share model data collection.";
1663
Dibyajyoti Palbe5f0012022-11-29 00:39:341664const char kEnableOsIntegrationSubManagersName[] =
1665 "OS Integration sub managers";
1666const char kEnableOsIntegrationSubManagersDescription[] =
1667 "Enable OS integration sub managers to either just write new OS "
1668 "integration states to DB or execute on the OS integration states before "
1669 "writing to the DB";
1670
Curtis McMullanf2e45bf2020-08-26 09:51:391671const char kHandwritingGestureEditingName[] = "Handwriting Gestures Editing";
1672const char kHandwritingGestureEditingDescription[] =
1673 "Enables editing with handwriting gestures within the virtual keyboard.";
1674
Curtis McMullan88e039e2021-07-27 08:06:311675const char kHandwritingLegacyRecognitionName[] =
1676 "Handwriting Legacy Recognition";
1677const char kHandwritingLegacyRecognitionDescription[] =
1678 "Enables new on-device recognition for handwriting legacy paths.";
1679
Darren Shenb42629a2022-08-17 02:52:311680const char kHandwritingLibraryDlcName[] =
1681 "Handwriting recognition with library from DLC";
1682const char kHandwritingLibraryDlcDescription[] =
1683 "Enables new on-device recognition with the handwriting library installed "
1684 "from DLC";
1685
Tommy Steimel1aadd7b2019-01-18 19:39:421686const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
1687const char kHardwareMediaKeyHandlingDescription[] =
1688 "Enables using media keys to control the active media session. This "
1689 "requires MediaSessionService to be enabled too";
1690
John Delaney521fe9f2020-04-29 22:18:191691const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations";
1692const char kHeavyAdPrivacyMitigationsDescription[] =
1693 "Enables privacy mitigations for the heavy ad intervention. Disabling "
1694 "this makes the intervention deterministic. Defaults to enabled.";
John Delaney782c77762019-10-28 15:53:561695
1696const char kHeavyAdInterventionName[] = "Heavy Ad Intervention";
1697const char kHeavyAdInterventionDescription[] =
1698 "Unloads ads that use too many device resources.";
1699
rudranshd650903892022-06-16 18:42:301700const char kHiddenNetworkMigrationName[] = "Hidden Network Migration";
1701
1702const char kHiddenNetworkMigrationDescription[] =
1703 "Enables a privacy improvement that removes wrongly configured hidden"
1704 "networks and mitigates the creation of these networks.";
1705
Duong Dacd6770e82023-02-01 11:57:251706const char kHideNonDisplayableAccountEmailName[] =
1707 "Hide non-displayable account email";
1708
1709const char kHideNonDisplayableAccountEmailDescription[] =
1710 "Hide the Google account email that should not be displayed on various UI "
1711 "surfaces";
1712
Jason Zhangb9ee1ed2022-07-25 18:27:341713extern const char kHotspotName[] = "Hotspot";
1714extern const char kHotspotDescription[] =
1715 "Enables the Chromebook to share its cellular internet connection to other "
Kyle Horimoto67d73222023-03-07 18:59:291716 "devices through WiFi. While this feature is under development, enabling "
1717 "this flag may cause your device's non-tethering traffic to use a "
1718 "tethering APN, which can result in carrier limits or fees.";
Jason Zhangb9ee1ed2022-07-25 18:27:341719
evliue454a132022-01-25 23:03:431720const char kTabAudioMutingName[] = "Tab audio muting UI control";
1721const char kTabAudioMutingDescription[] =
1722 "When enabled, the audio indicators in the tab strip double as tab audio "
1723 "mute controls.";
1724
whalechangd4b2ca942023-02-11 16:35:191725const char kCrasSplitAlsaUsbInternalName[] =
1726 "CRAS Split USB/Internal refactor control";
1727const char kCrasSplitAlsaUsbInternalDescription[] =
1728 "When enable, CRAS will create different iodev with USB and internal "
1729 "device.";
1730
Calder Kitagawa621534c2022-09-20 19:12:511731const char kTabSelectionEditorV2Name[] = "Tab selection editor V2";
1732const char kTabSelectionEditorV2Description[] =
1733 "Enable improved bulk tab editing capabilities.";
1734
Xi Han3dec5782022-10-26 20:23:191735const char kStartSurfaceReturnTimeName[] = "Start surface return time";
1736const char kStartSurfaceReturnTimeDescription[] =
1737 "Enable showing start surface at startup after specified time has elapsed";
1738
Ayu Ishii1e06316f2022-12-14 14:54:501739const char kStorageBucketsName[] = "Storage Buckets API";
1740const char kStorageBucketsDescription[] =
1741 "Enable experimental Storage Buckets API, allowing websites to create "
1742 "multiple buckets of storage to organize their data, allowing user agents "
1743 "to delete each bucket independently of other buckets.";
1744
Emily Stark70158ce2021-07-16 18:26:311745const char kHttpsOnlyModeName[] = "HTTPS-First Mode Setting";
Chris Thompson8bc143b2021-06-28 19:20:321746const char kHttpsOnlyModeDescription[] =
Emily Stark70158ce2021-07-16 18:26:311747 "Adds a setting under chrome://settings/security to opt-in to HTTPS-First "
Chris Thompson8bc143b2021-06-28 19:20:321748 "Mode.";
1749
Chris Thompson69d09012022-12-21 01:26:051750const char kHttpsFirstModeV2Name[] = "HTTPS-First Mode V2";
1751const char kHttpsFirstModeV2Description[] =
1752 "Enable rearchitected version of HTTPS-First Mode.";
1753
Chris Thompsonde18f3d62022-12-08 01:23:271754const char kHttpsUpgradesName[] = "HTTPS Upgrades";
1755const char kHttpsUpgradesDescription[] =
1756 "Enable automatically upgrading all top-level navigations to HTTPS with "
1757 "fast fallback to HTTP.";
1758
Corentin Walleze660b152020-07-15 16:07:541759const char kIgnoreGpuBlocklistName[] = "Override software rendering list";
1760const char kIgnoreGpuBlocklistDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511761 "Overrides the built-in software rendering list and enables "
1762 "GPU-acceleration on unsupported system configurations.";
1763
Victor Hugo Vianna Silva020f8dc2022-06-27 19:36:431764const char kIgnoreSyncEncryptionKeysLongMissingName[] =
1765 "Ignore Chrome Sync encryption keys long missing";
1766const char kIgnoreSyncEncryptionKeysLongMissingDescription[] =
1767 "Drops pending encrypted updates if their key has been missing for a "
1768 "(configurable) number of consecutive GetUpdates. Restarting the browser "
1769 "resets the counter. The threshold is configurable via the "
1770 "MinGuResponsesToIgnoreKey feature parameter.";
1771
Jimmy Gong6de11b02021-02-04 21:35:011772const char kImprovedKeyboardShortcutsName[] =
1773 "Enable improved keyboard shortcuts";
1774const char kImprovedKeyboardShortcutsDescription[] =
1775 "Ensure keyboard shortcuts work consistently with international keyboard "
1776 "layouts and deprecate legacy shortcuts.";
1777
Alex Ilasiab901f92021-09-13 09:27:271778const char kIncognitoDownloadsWarningName[] =
1779 "Enable Incognito downloads warning";
1780const char kIncognitoDownloadsWarningDescription[] =
1781 "When enabled, users will be warned that downloaded files are saved on the "
1782 "device and might be seen by other users even if they are in Incognito.";
1783
Rohit Agarwal6e9b6022021-08-10 19:44:371784const char kIncognitoReauthenticationForAndroidName[] =
1785 "Enable device reauthentication for Incognito.";
1786const char kIncognitoReauthenticationForAndroidDescription[] =
1787 "When enabled, a setting appears in Settings > Privacy and Security, to "
1788 "enable reauthentication for accessing your existing Incognito tabs.";
1789
Saba Khukhunashvilif7a4f822021-07-23 10:59:211790const char kIncognitoNtpRevampName[] = "Revamped Incognito New Tab Page";
1791const char kIncognitoNtpRevampDescription[] =
1792 "When enabled, Incognito new tab page will have an updated UI";
1793
Ramin Halavatidf9668c2020-10-30 15:35:531794const char kIncognitoScreenshotName[] = "Incognito Screenshot";
1795const char kIncognitoScreenshotDescription[] =
1796 "Enables Incognito screenshots on Android. It will also make Incognito "
1797 "thumbnails visible.";
1798
Lijin Shenf3215dcd2022-08-30 00:34:141799const char kInfobarScrollOptimizationName[] = "Infobar scroll optimiaztion";
1800const char kInfobarScrollOptimizationDescription[] =
1801 "Optimize Infobar scroll on Android.";
1802
Brett Wilsonecb80982017-07-12 20:34:511803const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1804const char kInProductHelpDemoModeChoiceDescription[] =
1805 "Selects the In-Product Help demo mode.";
1806
Hailey Wanga7607f02021-08-12 19:37:511807const char kInProductHelpSnoozeName[] = "In-Product Help Snooze";
1808const char kInProductHelpSnoozeDescription[] =
1809 "Enables the snooze button on In-Product Help.";
1810
Hailey Wang5f048eb82021-10-27 01:29:131811const char kInProductHelpUseClientConfigName[] = "IPH Use Client Config";
1812const char kInProductHelpUseClientConfigDescription[] =
1813 "Enable In-Product Help to use client side configuration.";
1814
Robbie McElrathb66ff502022-10-12 01:50:591815const char kInstallIsolatedWebAppFromUrl[] =
1816 "Install Isolated Web App from Proxy URL";
1817const char kInstallIsolatedWebAppFromUrlDescription[] =
1818 "Installs a new developer mode Isolated Web App whose contents are hosted "
1819 "at the provided HTTP(S) URL.";
Dmitrii Kuragin053a3c602022-06-07 16:34:421820
Brett Wilsonecb80982017-07-12 20:34:511821const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1822const char kJavascriptHarmonyDescription[] =
1823 "Enable web pages to use experimental JavaScript features.";
1824
1825const char kJavascriptHarmonyShippingName[] =
1826 "Latest stable JavaScript features";
1827const char kJavascriptHarmonyShippingDescription[] =
1828 "Some web pages use legacy or non-standard JavaScript extensions that may "
1829 "conflict with the latest JavaScript features. This flag allows disabling "
1830 "support of those features for compatibility with such pages.";
1831
Shu-yu Guob5461a52022-09-02 01:22:241832const char kJavascriptExperimentalSharedMemoryName[] =
1833 "Experimental JavaScript shared memory features";
1834const char kJavascriptExperimentalSharedMemoryDescription[] =
1835 "Enable web pages to use non-standard, experimental JavaScript shared "
1836 "memory features. Their use requires the same HTTP headers required by "
1837 "cross-thread usage of SharedArrayBuffers (i.e. COOP and COEP).";
1838
Tommy Lia142e2c2021-09-29 20:35:161839const char kJourneysName[] = "History Journeys";
1840const char kJourneysDescription[] = "Enables the History Journeys UI.";
1841
Sophie Chang19b579d2022-09-27 22:30:351842const char kJourneysContentClusteringName[] =
1843 "History Journeys Content Clustering";
1844const char kJourneysContentClusteringDescription[] =
1845 "Enables clustering page loads using content annotations.";
1846
manukhbf52f832023-03-02 02:24:151847const char kJourneysHideVisitsName[] = "History Journeys Hide Visits";
1848const char kJourneysHideVisitsDescription[] =
1849 "Adds a UI element to hide individual cluster visits in the webUI.";
1850
Tommy C. Lie99770072022-10-26 23:24:161851const char kJourneysImagesName[] = "History Journeys Images";
1852const char kJourneysImagesDescription[] =
1853 "Enables Images for the History Journeys UI.";
1854
Tommy C. Li1d8296b52022-04-27 22:12:171855const char kJourneysLabelsName[] = "History Journeys Labels";
1856const char kJourneysLabelsDescription[] =
1857 "Enables labels for Journeys within the History Journeys UI.";
1858
Sophie Chang579c41992023-01-06 17:08:531859const char kJourneysNavigationContextClusteringName[] =
1860 "History Journeys Navigation Context Clustering";
1861const char kJourneysNavigationContextClusteringDescription[] =
1862 "Enables context clustering to be done at navigation time";
1863
Tommy Lia142e2c2021-09-29 20:35:161864const char kJourneysOmniboxActionName[] = "History Journeys Omnibox Action";
1865const char kJourneysOmniboxActionDescription[] =
1866 "Enables the History Journeys Omnibox Action.";
1867
manukh37c48752022-06-21 15:38:101868const char kJourneysOmniboxHistoryClusterProviderName[] =
1869 "History Journeys Omnibox History Cluster Provider";
1870const char kJourneysOmniboxHistoryClusterProviderDescription[] =
1871 "Enables the History Journeys Omnibox History Cluster Provider to surface "
1872 "Journeys as a suggestion row instead of an action chip.";
1873
Patrick Nolanda62bf462023-03-20 18:09:341874const char kJourneysPersistCachesToPrefsName[] =
1875 "History Journeys Persist Caches to Prefs";
1876const char kJourneysPersistCachesToPrefsDescription[] =
1877 "Enables the persistence of Journeys keyword caches via the pref service.";
1878
Sophie Chang579c41992023-01-06 17:08:531879const char kJourneysPersistedClustersName[] =
1880 "History Journeys Persisted Clusters";
1881const char kJourneysPersistedClustersDescription[] =
1882 "Enables the persistence of clusters into the history database.";
1883
Sophie Changd30f4dc4f2022-10-18 16:10:171884const char kJourneysShowAllClustersName[] =
1885 "History Journeys Show All Clusters";
1886const char kJourneysShowAllClustersDescription[] =
1887 "Enables all Journeys clusters to be shown on prominent UI surfaces";
1888
Sophie Chang4b7eff72022-12-08 16:43:291889const char kJourneysIncludeSyncedVisitsName[] =
1890 "History Journeys Include SyncedVisits";
1891const char kJourneysIncludeSyncedVisitsDescription[] =
1892 "Enabled synced visits to be included in History Journeys clusters.";
1893
Khalid Peer197c7462022-11-28 21:20:361894const char kExtractRelatedSearchesFromPrefetchedZPSResponseName[] =
1895 "Extract Related Searches from Prefetched ZPS Response";
1896const char kExtractRelatedSearchesFromPrefetchedZPSResponseDescription[] =
1897 "Enables page annotation logic to source related searches data from "
1898 "prefetched ZPS responses";
1899
bttk90927fd2021-11-12 19:38:271900const char kLargeFaviconFromGoogleName[] = "Large favicons from Google";
1901const char kLargeFaviconFromGoogleDescription[] =
1902 "Request large favicons from Google's favicon service";
1903
Yu Suc19bb6cc2021-02-25 06:38:291904const char kLensCameraAssistedSearchName[] =
1905 "Google Lens in Omnibox and New Tab Page";
1906const char kLensCameraAssistedSearchDescription[] =
1907 "Enable an entry point to Google Lens to allow users to search what they "
1908 "see using their mobile camera.";
1909
Juan Mojicaa2c06482022-10-14 18:27:011910const char kLensRegionSearchStaticPageName[] =
1911 "Use a static page with the Lens region search feature.";
1912const char kLensRegionSearchStaticPageDescription[] =
1913 "Enables use of a static page in a new tab when using the Lens region "
1914 "search feature.";
1915
Duncan Mercer10a2000a2022-11-07 23:00:531916const char kLensImageFormatOptimizationsName[] = "Lens Optimized Image Formats";
1917const char kLensImageFormatOptimizationsDescription[] =
1918 "Enables the use of either WebP or JPEG on all Lens quries to reduce "
1919 "network load and improve latency";
1920
Bryan Nguyend7f0cd742023-02-10 21:16:221921const char kLensImageTranslateName[] =
1922 "Translate text in images with Google Lens";
1923const char kLensImageTranslateDescription[] =
1924 "Enables a context menu item to translate text in images using Google "
1925 "Lens. The context menu item appears when the current page is being "
1926 "translated.";
1927
Ali Stanfield561043282023-03-10 03:04:301928const char kCscName[] = "CSC";
1929const char kCscDescription[] = "";
1930
Hazem Ashmawyf1cd7e42019-03-25 18:17:321931const char kLogJsConsoleMessagesName[] =
1932 "Log JS console messages in system logs";
1933const char kLogJsConsoleMessagesDescription[] =
1934 "Enable logging JS console messages in system logs, please note that they "
1935 "may contain PII.";
1936
Etienne Pierre-doray247abce2022-03-08 18:45:481937const char kUnthrottledNestedTimeoutName[] =
1938 "Increase the nesting threshold before which setTimeout(..., <4ms) start "
1939 "being clamped.";
1940const char kUnthrottledNestedTimeoutDescription[] =
1941 "setTimeout(..., 0) is commonly used to break down long Javascript tasks. "
1942 "Under this flag, setTimeouts and setIntervals with an interval < 4ms are "
1943 "not clamped as aggressively. This improves short horizon performance, but "
1944 "websites abusing the API will still eventually have their setTimeouts "
1945 "clamped.";
1946
spqchanb87755692018-04-05 00:46:091947const char kMediaRouterCastAllowAllIPsName[] =
1948 "Connect to Cast devices on all IP addresses";
1949const char kMediaRouterCastAllowAllIPsDescription[] =
1950 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:311951 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:091952
Andrey Zaytsevad83cbc32020-09-30 15:43:181953const char kMetricsSettingsAndroidName[] = "Metrics Settings on Android";
1954const char kMetricsSettingsAndroidDescription[] =
1955 "Enables the new design of metrics settings.";
1956
Brian Geffon12b581a2021-02-03 23:48:031957const char kMojoLinuxChannelSharedMemName[] =
1958 "Enable Mojo Shared Memory Channel";
1959const char kMojoLinuxChannelSharedMemDescription[] =
1960 "If enabled Mojo on Linux based platforms can use shared memory as an "
1961 "alternate channel for most messages.";
1962
Ella Ge1282f552019-06-24 20:06:031963const char kMouseSubframeNoImplicitCaptureName[] =
1964 "Disable mouse implicit capture for iframe";
1965const char kMouseSubframeNoImplicitCaptureDescription[] =
1966 "When enable, mouse down does not implicit capture for iframe.";
1967
Alisa Lin79251142021-06-15 20:22:121968const char kCanvas2DLayersName[] =
1969 "Enables canvas 2D methods BeginLayer and EndLayer";
1970const char kCanvas2DLayersDescription[] =
1971 "Enables the canvas 2D methods BeginLayer and EndLayer.";
1972
Honglin Yua0a14fa2022-03-31 22:40:051973const char kEnableMachineLearningModelLoaderWebPlatformApiName[] =
1974 "Enables Machine Learning Model Loader Web Platform API";
1975const char kEnableMachineLearningModelLoaderWebPlatformApiDescription[] =
1976 "Enables the Machine Learning Model Loader Web Platform API.";
1977
Andreea Costinas1e592142021-04-20 13:24:251978const char kSystemProxyForSystemServicesName[] =
1979 "Enable system-proxy for selected system services";
1980const char kSystemProxyForSystemServicesDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:351981 "Enabling this flag will allow ChromeOS system service which require "
Andreea Costinas1e592142021-04-20 13:24:251982 "network connectivity to use the system-proxy daemon for authentication to "
1983 "remote HTTP web proxies.";
1984
Nicolas Ouellet-Payeura77464c2020-10-14 15:19:491985const char kDestroyProfileOnBrowserCloseName[] =
1986 "Destroy Profile on browser close";
1987const char kDestroyProfileOnBrowserCloseDescription[] =
1988 "Release memory and other resources when a Profile's last browser window "
1989 "is closed, rather than when Chrome closes completely.";
1990
Nicolas Ouellet-Payeur4aff8682022-01-26 16:03:161991const char kDestroySystemProfilesName[] = "Destroy System Profile";
1992const char kDestroySystemProfilesDescription[] =
1993 "After you close the Profile Picker, release memory and other resources "
1994 "owned by the System Profile. This requires "
1995 "#destroy-profile-on-browser-close.";
1996
Side Yilmazd828f162022-10-11 00:05:241997const char kNotificationInteractionHistoryName[] =
1998 "Notification Interaction History";
1999const char kNotificationInteractionHistoryDescription[] =
2000 "Enable recording notification count and interaction.";
2001
Xing Liub9070262021-01-07 20:52:162002const char kNotificationSchedulerName[] = "Notification scheduler";
2003const char kNotificationSchedulerDescription[] =
2004 "Enable notification scheduler feature.";
2005
Xing Liu1919ec232019-07-22 20:38:042006const char kNotificationSchedulerDebugOptionName[] =
2007 "Notification scheduler debug options";
2008const char kNotificationSchedulerDebugOptionDescription[] =
2009 "Enable debugging mode to override certain behavior of notification "
2010 "scheduler system for easier manual testing.";
2011const char kNotificationSchedulerImmediateBackgroundTaskDescription[] =
2012 "Show scheduled notification right away.";
2013
Peter Beverlooc30c9ddf2021-02-24 19:56:032014const char kNotificationsSystemFlagName[] = "Enable system notifications.";
2015const char kNotificationsSystemFlagDescription[] =
2016 "Enable support for using the system notification toasts and notification "
Brett Wilsonecb80982017-07-12 20:34:512017 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:342018
momoka0122yda18aeb2022-03-15 08:23:542019const char kOmitCorsClientCertName[] =
2020 "Omit TLS client certificates if credential mode disallows";
2021const char kOmitCorsClientCertDescription[] =
2022 "Strictly conform the Fetch spec to omit TLS client certificates if "
2023 "credential mode disallows. Without this flag enabled, Chrome will always "
2024 "try sending client certificates regardless of the credential mode.";
2025
Tomasz Wiszkowski8a0e0dc42020-02-19 00:06:372026const char kOmniboxAdaptiveSuggestionsCountName[] =
2027 "Adaptive Omnibox Suggestions count";
2028const char kOmniboxAdaptiveSuggestionsCountDescription[] =
2029 "Dynamically adjust number of presented Omnibox suggestions depending on "
2030 "available space. When enabled, this feature will increase (or decrease) "
2031 "amount of offered Omnibox suggestions to fill in the space between the "
2032 "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches "
2033 "flag to adjust the limit of offered suggestions. The number of shown "
2034 "suggestions will be no less than the platform default limit.";
2035
Patrick Nolanddd4774952023-03-09 23:59:582036const char kOmniboxAdaptNarrowTabletWindowsName[] =
2037 "Omnibox adapts to narrow tablet windows";
2038const char kOmniboxAdaptNarrowTabletWindowsDescription[] =
2039 "When enabled the omnibox uses a phone-like appearance for windows that "
2040 "are less than 600dp wide, regardless of the overall display width.";
2041
Brandon Wylie1299ff82020-01-23 02:13:372042const char kOmniboxAssistantVoiceSearchName[] =
2043 "Omnibox Assistant Voice Search";
2044const char kOmniboxAssistantVoiceSearchDescription[] =
2045 "When enabled, use Assistant for omnibox voice query recognition instead of"
2046 " Android's built-in voice recognition service. Only works on Android.";
2047
manukh304e3f12021-10-06 16:40:332048const char kOmniboxBookmarkPathsName[] = "Omnibox Bookmark Paths";
2049const char kOmniboxBookmarkPathsDescription[] =
2050 "Allows inputs to match with bookmark paths. E.g. 'planets jupiter' can "
2051 "suggest a bookmark titled 'Jupiter' with URL "
2052 "'en.wikipedia.org/wiki/Jupiter' located in a path containing 'planet.'";
2053
manukh80d476682022-01-28 08:00:442054const char kOmniboxClosePopupWithEscapeName[] =
2055 "Omnibox Close Popup with Escape";
2056const char kOmniboxClosePopupWithEscapeDescription[] =
2057 "When enabled, pressing escape when the omnibox popup is open and the "
2058 "default suggestion is selected will close the omnibox without removing "
2059 "its focus or clearing user input.";
2060
Patrick Noland299fa6582023-03-03 16:41:592061const char kOmniboxConsumesImeInsetsName[] =
2062 "Omnibox Consumes IME (keyboard) insets directly";
2063const char kOmniboxConsumesImeInsetsDescription[] =
2064 "When enabled, the Android Omnibox will directly handle IME (keyboard) "
2065 "inset changes while visible.";
2066
Orin Jaworski69f9b012022-11-14 21:15:452067const char kOmniboxDefaultBrowserPedalName[] = "Omnibox Default Browser Pedal";
2068const char kOmniboxDefaultBrowserPedalDescription[] =
2069 "Enables a pedal that helps the user 'set default browser'.";
2070
Angela Yoeurng07a5adb2020-12-02 02:14:012071const char kOmniboxDisableCGIParamMatchingName[] =
2072 "Disable CGI Param Name Matching";
2073const char kOmniboxDisableCGIParamMatchingDescription[] =
2074 "Disables using matches in CGI parameter names while scoring suggestions.";
2075
manukh8fcd3932023-02-28 06:10:522076const char kOmniboxDiscardTemporaryInputOnTabSwitchName[] =
2077 "Omnibox discard temporary input on tab switch";
2078const char kOmniboxDiscardTemporaryInputOnTabSwitchDescription[] =
2079 "Discards temporary input in the omnibox when switching tabs.";
2080
manukh37b13bd32022-10-04 16:01:512081const char kOmniboxDomainSuggestionsName[] = "Omnibox Domain Suggestions";
manukh918d82552022-10-11 01:12:222082const char kOmniboxDomainSuggestionsDescription[] =
manukh37b13bd32022-10-04 16:01:512083 "If enabled, history URL suggestions from hosts visited often bypass the "
2084 "per provider limit.";
2085
Justin Donnellyf2703482019-10-24 21:42:152086const char kOmniboxExperimentalSuggestScoringName[] =
2087 "Omnibox Experimental Suggest Scoring";
2088const char kOmniboxExperimentalSuggestScoringDescription[] =
2089 "Enables an experimental scoring mode for suggestions when Google is the "
2090 "default search engine.";
2091
Orin Jaworski291b0a32022-05-17 17:29:052092const char kOmniboxFuzzyUrlSuggestionsName[] = "Omnibox Fuzzy URL Suggestions";
2093const char kOmniboxFuzzyUrlSuggestionsDescription[] =
2094 "Enables URL suggestions for inputs that may contain typos.";
2095
Khalid Peer93f49312023-03-06 22:28:132096const char kOmniboxGM3SteadyStateBackgroundColorName[] =
2097 "Omnibox Steady State Background Color";
2098const char kOmniboxGM3SteadyStateBackgroundColorDescription[] =
2099 "Updates Omnibox steady state background color to comply with GM3 "
2100 "guidelines.";
2101
Khalid Peer3b6c61fb2023-02-17 01:43:282102const char kOmniboxGM3SteadyStateHeightName[] = "Omnibox Steady State Height";
2103const char kOmniboxGM3SteadyStateHeightDescription[] =
2104 "Updates Omnibox steady state height to comply with GM3 guidelines.";
2105
Khalid Peer4520af92023-03-02 21:50:512106const char kOmniboxGM3SteadyStateTextStyleName[] =
2107 "Omnibox Steady State Text Style";
2108const char kOmniboxGM3SteadyStateTextStyleDescription[] =
2109 "Updates Omnibox steady state text style to comply with GM3 guidelines.";
2110
Ender19574f92023-03-16 01:14:262111const char kOmniboxGroupingFrameworkZPSName[] =
2112 "Omnibox Grouping Framework for ZPS";
2113const char kOmniboxGroupingFrameworkNonZPSName[] =
2114 "Omnibox Grouping Framework for Typed Suggestions";
manukh01e47192022-12-23 00:50:252115const char kOmniboxGroupingFrameworkDescription[] =
2116 "Enables an alternative grouping implementation for omnibox "
2117 "autocompletion.";
2118
manukh918d82552022-10-11 01:12:222119const char kOmniboxHistoryQuickProviderSpecificityScoreCountUniqueHostsName[] =
2120 "Omnibox HQP Specificity";
2121const char
2122 kOmniboxHistoryQuickProviderSpecificityScoreCountUniqueHostsDescription[] =
2123 "When enabled, HQP doesn't demote same-host suggestions.";
2124
Tomasz Wiszkowski539249962023-03-16 01:01:422125const char kOmniboxInspireMeName[] = "Omnibox Trending and Related Queries";
2126const char kOmniboxInspireMeDescription[] =
2127 "When enabled, appends additional suggestions based on local trends and/or "
2128 "related to the recently executed queries.";
2129
Moe Ahmadid6159b22022-12-13 03:16:392130const char kOmniboxKeepSecondaryZeroSuggestName[] =
2131 "Keeps all secondary zero-prefix suggestions.";
2132const char kOmniboxKeepSecondaryZeroSuggestDescription[] =
2133 "Keeps all zero-prefix suggestions in the second column and does not count "
2134 "them toward the overall zero-suggest limit.";
2135
Rong Tan01c989902022-10-28 04:06:252136const char kOmniboxMatchToolbarAndStatusBarColorName[] =
2137 "Omnibox Omnibox Match Toolbar And Status Bar Color";
2138const char kOmniboxMatchToolbarAndStatusBarColorDescription[] =
2139 "When enabled, the color of the toolbar and the status bar will be "
2140 "synchronized.";
2141
Gang Wu67847242022-06-30 06:18:512142const char kOmniboxModernizeVisualUpdateName[] =
2143 "Omnibox Modernize Visual Update";
2144const char kOmniboxModernizeVisualUpdateDescription[] =
2145 "When enabled, Omnibox will show a new UI which is visually "
2146 "updated. This flag is for the step 1 in the Clank Omnibox revamp plan.";
2147
Filip Gorskib116dee2020-08-20 14:12:102148const char kOmniboxMostVisitedTilesName[] = "Omnibox Most Visited Tiles";
2149const char kOmniboxMostVisitedTilesDescription[] =
manukhd9801bfc2022-01-04 22:43:582150 "Display a list of frequently visited pages from history as a single row "
Filip Gorskib116dee2020-08-20 14:12:102151 "with a carousel instead of one URL per line.";
2152
Rong Tanef44d632022-11-18 19:02:312153const char kOmniboxMostVisitedTilesAddRecycledViewPoolName[] =
2154 "Omnibox Most Visited Tiles Add Recycled View Pool";
2155const char kOmniboxMostVisitedTilesAddRecycledViewPoolDescription[] =
2156 "Add a recycled view pool to omnibox most visited tiles carousel to "
2157 "increase tile view reuse and reduce jackiness.";
2158
manukh539d958b2023-03-01 16:50:252159const char kOmniboxRedoCurrentMatchName[] = "Omnibox redo current match";
2160const char kOmniboxRedoCurrentMatchDescription[] =
2161 "Use an alternative implementation of calculating the cached omnibox "
2162 "current match that is valid more often.";
2163
Rong Tan31bf6082022-10-13 08:19:082164const char kOmniboxRemoveExcessiveRecycledViewClearCallsName[] =
2165 "Omnibox Remove Excessive Recycled View Clear Calls";
2166const char kOmniboxRemoveExcessiveRecycledViewClearCallsDescription[] =
2167 "Remove excessive clear calls on RecycledViewPool in omnibox.";
2168
Moe Ahmadi7c889d82022-10-27 20:35:242169const char kOmniboxReportAssistedQueryStatsName[] =
2170 "Omnibox Assisted Query Stats param";
2171const char kOmniboxReportAssistedQueryStatsDescription[] =
2172 "Enables reporting the Assisted Query Stats param in search destination "
2173 "URLs originated from the Omnibox.";
2174
2175const char kOmniboxReportSearchboxStatsName[] =
2176 "Omnibox Searchbox Stats proto param";
2177const char kOmniboxReportSearchboxStatsDescription[] =
2178 "Enables reporting the serialized Searchbox Stats proto param in search "
2179 "destination URLs originated from the Omnibox.";
2180
manukh539d958b2023-03-01 16:50:252181const char kOmniboxRevertModelBeforeClosingPopupName[] =
2182 "Omnibox revert model before closing popup";
2183const char kOmniboxRevertModelBeforeClosingPopupDescription[] =
2184 "When reverting the omnibox view, revert the model before closing the "
2185 "popup to avoid some extra calculations.";
2186
Ryan Sturmb9aaea22023-03-07 21:35:012187const char kOmniboxUseExistingAutocompleteClientName[] =
2188 "Omnibox use exisitng autocomplete client";
2189const char kOmniboxUseExistingAutocompleteClientDescription[] =
2190 "When querying autocomplete client from the omnibox edit model, use the "
2191 "existing one instead of creating a new one.";
2192
Moe Ahmadi4d6f27b2021-11-19 01:40:362193const char kOmniboxZeroSuggestPrefetchingName[] =
Khalid Peere26e6962022-07-26 22:39:552194 "Omnibox Zero Prefix Suggestion Prefetching on NTP";
Moe Ahmadi4d6f27b2021-11-19 01:40:362195const char kOmniboxZeroSuggestPrefetchingDescription[] =
Khalid Peere26e6962022-07-26 22:39:552196 "Enables prefetching of the zero prefix suggestions for eligible users "
2197 "on the New Tab page.";
2198
2199const char kOmniboxZeroSuggestPrefetchingOnSRPName[] =
2200 "Omnibox Zero Prefix Suggestion Prefetching on SRP";
2201const char kOmniboxZeroSuggestPrefetchingOnSRPDescription[] =
2202 "Enables prefetching of the zero prefix suggestions for eligible users "
2203 "on the Search Results page.";
Moe Ahmadi4d6f27b2021-11-19 01:40:362204
Khalid Peer28546042022-08-12 23:18:082205const char kOmniboxZeroSuggestPrefetchingOnWebName[] =
2206 "Omnibox Zero Prefix Suggestion Prefetching on the Web";
2207const char kOmniboxZeroSuggestPrefetchingOnWebDescription[] =
2208 "Enables prefetching of the zero prefix suggestions for eligible users "
2209 "on the Web (i.e. non-NTP and non-SRP URLs).";
2210
Khalid Peer4bca7ea2022-08-26 22:51:292211const char kOmniboxZeroSuggestInMemoryCachingName[] =
2212 "Omnibox Zero Prefix Suggestion in-memory caching";
2213const char kOmniboxZeroSuggestInMemoryCachingDescription[] =
2214 "Enables in-memory caching of zero prefix suggestions.";
2215
Ce Chen7762ef32022-06-17 14:34:172216const char kOmniboxOnDeviceHeadSuggestionsName[] =
2217 "Omnibox on device head suggestions (non-incognito only)";
2218const char kOmniboxOnDeviceHeadSuggestionsDescription[] =
2219 "Google head non personalized search suggestions provided by a compact on "
2220 "device model for non-incognito. Turn off this feature if you have other "
2221 "apps running which affects local file access (e.g. anti-virus software) "
2222 "and are experiencing searchbox typing lags.";
2223const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] =
2224 "Omnibox on device head suggestions (incognito only)";
2225const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] =
2226 "Google head non personalized search suggestions provided by a compact on "
2227 "device model for incognito. Turn off this feature if you have other "
2228 "apps running which affects local file access (e.g. anti-virus software) "
2229 "and are experiencing searchbox typing lags.";
Ce Chenbdfaed22022-10-20 16:08:352230const char kOmniboxOnDeviceTailSuggestionsName[] =
2231 "Omnibox on device tail suggestions";
2232const char kOmniboxOnDeviceTailSuggestionsDescription[] =
2233 "Google tail non personalized search suggestions provided by a compact on "
2234 "device model.";
Ce Chen7762ef32022-06-17 14:34:172235
manukh6b9c59c2020-08-28 19:29:252236const char kOmniboxRichAutocompletionPromisingName[] =
2237 "Omnibox Rich Autocompletion Promising Combinations";
2238const char kOmniboxRichAutocompletionPromisingDescription[] =
manukh6a6aeb82022-06-24 21:11:012239 "Allow autocompletion for titles and non-prefixes. Suggestions whose "
2240 "titles or URLs contain the user input as a continuous chunk, but not "
2241 "necessarily a prefix, can be the default suggestion. Otherwise, only "
2242 "suggestions whose URLs are prefixed by the user input can be.";
manukhf6414512022-06-15 01:26:192243
Angela Yoeurng8f6731da2022-01-17 05:55:102244const char kOmniboxSiteSearchStarterPackName[] =
2245 "Omnibox Site Search Starter Pack";
2246const char kOmniboxSiteSearchStarterPackDescription[] =
Angela Yoeurng260f18352022-06-15 22:51:352247 "Enables @history, @bookmarks, and @tabs scopes in Omnibox Site "
Angela Yoeurng8f6731da2022-01-17 05:55:102248 "Search/Keyword Mode";
Moe Ahmadi01028f22022-08-06 17:57:352249
2250const char kOmniboxLocalHistoryZeroSuggestBeyondNTPName[] =
2251 "Allow local history zero-prefix suggestions beyond NTP";
2252const char kOmniboxLocalHistoryZeroSuggestBeyondNTPDescription[] =
2253 "Enables local history zero-prefix suggestions in every context in which "
2254 "the remote zero-prefix suggestions are enabled.";
2255
Moe Ahmadi50223462022-06-30 22:37:272256const char kOmniboxFocusTriggersSRPZeroSuggestName[] =
Tomasz Wiszkowski8d447752021-07-20 02:58:262257 "Allow Omnibox contextual web on-focus suggestions on the SRP";
Moe Ahmadi50223462022-06-30 22:37:272258const char kOmniboxFocusTriggersSRPZeroSuggestDescription[] =
Tomasz Wiszkowski8d447752021-07-20 02:58:262259 "Enables on-focus suggestions on the Search Results page. "
2260 "Requires on-focus suggestions for the contextual web to be enabled. "
2261 "Will only work if user is signed-in and syncing.";
2262
Moe Ahmadi50223462022-06-30 22:37:272263const char kOmniboxFocusTriggersContextualWebZeroSuggestName[] =
Tommy Li55784022020-04-28 20:58:182264 "Omnibox on-focus suggestions for the contextual Web";
Moe Ahmadi50223462022-06-30 22:37:272265const char kOmniboxFocusTriggersContextualWebZeroSuggestDescription[] =
Tommy Li55784022020-04-28 20:58:182266 "Enables on-focus suggestions on the Open Web, that are contextual to the "
2267 "current URL. Will only work if user is signed-in and syncing, or is "
2268 "otherwise eligible to send the current page URL to the suggest server.";
2269
Jun Zoud1e35932b2022-12-01 20:01:372270const char kOmniboxMlLogUrlScoringSignalsName[] =
2271 "Log Omnibox URL Scoring Signals";
2272const char kOmniboxMlLogUrlScoringSignalsDescription[] =
2273 "Enables Omnibox to log scoring signals of URL suggestions.";
2274
Angela Yoeurngd75d0dfe2023-01-12 23:17:092275const char kOmniboxMlRelevanceScoringName[] = "Omnibox ML Relevance Scoring";
2276const char kOmniboxMlRelevanceScoringDescription[] =
2277 "Enables ML-based relevance scoring of Omnibox URL Suggestions.";
2278
Jun Zoub695a0a2023-01-20 18:55:022279const char kOmniboxMlUrlScoringModelName[] =
2280 "Omnibox autocomplete URL scoring model.";
2281const char kOmniboxMlUrlScoringModelDescription[] =
2282 "Enables machine learning scoring model for Omnibox URL sugestions.";
2283
Moe Ahmadi3c2569e2022-10-06 23:41:392284const char kOmniboxOnClobberFocusTypeOnContentName[] =
2285 "Omnibox On Clobber Focus Type On Content";
2286const char kOmniboxOnClobberFocusTypeOnContentDescription[] =
Rong Tan390e219c2022-09-30 23:56:282287 "Send ON_CLOBBER focus type for zero-prefix requests with an empty input "
Moe Ahmadi3c2569e2022-10-06 23:41:392288 "on Web/SRP.";
Rong Tan390e219c2022-09-30 23:56:282289
manukhd84f42752022-06-25 02:11:082290const char kOmniboxShortBookmarkSuggestionsName[] =
2291 "Omnibox short bookmark suggestions";
2292const char kOmniboxShortBookmarkSuggestionsDescription[] =
2293 "Match very short input words to beginning of words in bookmark "
2294 "suggestions.";
2295
manukh453ab7e2023-02-02 21:09:572296const char kOmniboxShortcutBoostName[] = "Omnibox shortcut boosting";
2297const char kOmniboxShortcutBoostDescription[] =
2298 "Promote shortcuts to be default when available.";
2299
manukhd84f42752022-06-25 02:11:082300const char kOmniboxShortcutExpandingName[] = "Omnibox shortcut expanding";
2301const char kOmniboxShortcutExpandingDescription[] =
2302 "Expand the last word in the shortcut text to be a complete word from the "
2303 "suggestion text.";
2304
Yohanes Shimelis53d0f6b2023-01-12 19:09:102305const char kOmniboxSimplifiedUiUniformRowHeightName[] =
2306 "Omnibox Suggestion Row Height";
2307const char kOmniboxSimplifiedUiUniformRowHeightDescription[] =
2308 "Changes the row height of omnibox suggetions.";
2309
2310const char kOmniboxSimplifiedUiSquareSuggestIconName[] =
2311 "Omnibox Square Suggest Icons";
2312const char kOmniboxSimplifiedUiSquareSuggestIconDescription[] =
2313 "Adds a grey square background to suggestion icons, and makes the answer "
2314 "icon square.";
2315
manukfdd97402020-07-22 18:19:172316const char kOmniboxMaxZeroSuggestMatchesName[] =
2317 "Omnibox Max Zero Suggest Matches";
2318const char kOmniboxMaxZeroSuggestMatchesDescription[] =
2319 "Changes the maximum number of autocomplete matches displayed when zero "
2320 "suggest is active (i.e. displaying suggestions without input).";
2321
Brett Wilsonecb80982017-07-12 20:34:512322const char kOmniboxUIMaxAutocompleteMatchesName[] =
2323 "Omnibox UI Max Autocomplete Matches";
Brett Wilsonecb80982017-07-12 20:34:512324const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
2325 "Changes the maximum number of autocomplete matches displayed in the "
2326 "Omnibox UI.";
2327
Mustafa Emre Acer0626cbb2021-07-14 20:35:042328const char kOmniboxUpdatedConnectionSecurityIndicatorsName[] =
2329 "Omnibox Updated connection security indicators";
2330const char kOmniboxUpdatedConnectionSecurityIndicatorsDescription[] =
2331 "Use new connection security indicators for https pages in the omnibox.";
2332
Moe Ahmadi40e0eba52022-12-22 01:44:252333const char kWebUIOmniboxPopupName[] = "WebUI Omnibox Popup";
2334const char kWebUIOmniboxPopupDescription[] =
2335 "If enabled, shows the omnibox suggestions popup in WebUI.";
2336
dpapad7c00cc7f02023-03-24 17:54:352337const char kWebUiSystemFontName[] = "WebUI System font";
2338const char kWebUiSystemFontDescription[] =
2339 "If enabled, all WebUI surfaces will use the default UI font of the "
2340 "underlying platform.";
2341
Kevin Baileycd6889922019-05-30 17:22:552342const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches";
2343const char kOmniboxMaxURLMatchesDescription[] =
2344 "The maximum number of URL matches to show, unless there are no "
2345 "replacements.";
2346
manuk4e2979d2020-07-08 23:29:282347const char kOmniboxDynamicMaxAutocompleteName[] =
2348 "Omnibox Dynamic Max Autocomplete";
2349const char kOmniboxDynamicMaxAutocompleteDescription[] =
2350 "Configures the maximum number of autocomplete matches displayed in the "
2351 "Omnibox UI dynamically based on the number of URL matches.";
2352
Michael Checo91977f562023-01-25 01:02:222353const char kOnlyShowNewShortcutsAppName[] =
2354 "Only show the new Shortcut Viewer app";
2355const char kOnlyShowNewShortcutsAppDescription[] =
2356 "If enabled, the existing Shortcut Viewer app will be hidden and only the "
2357 "new Shortcut Customization app will be discoverable.";
2358
rajendrant277b1ba2022-02-18 01:59:362359const char kOptimizationGuideDebugLogsName[] =
2360 "Enable optimization guide debug logs";
2361const char kOptimizationGuideDebugLogsDescription[] =
2362 "Enables the optimization guide to log and save debug messages that can be "
2363 "shown in the internals page.";
2364
rajendrantb6ef55fd2022-10-20 20:25:242365const char kOptimizationGuideInstallWideModelStoreName[] =
2366 "Enables the new optimization guide install-wide model store";
2367const char kOptimizationGuideInstallWideModelStoreDescription[] =
2368 "Enables the new model store that is per Chrome installation and can "
2369 "share models across user profiles.";
2370
Tarun Bansalca4fae3d2022-04-05 21:17:342371const char kOptimizationGuidePushNotificationName[] =
Robert Ogden52285a52021-07-01 19:26:202372 "Enable optimization guide push notifications";
Tarun Bansalca4fae3d2022-04-05 21:17:342373const char kOptimizationGuidePushNotificationDescription[] =
Robert Ogden52285a52021-07-01 19:26:202374 "Enables the optimization guide to receive push notifications.";
2375
Moe Ahmadi359d0722022-05-16 23:17:332376const char kOrganicRepeatableQueriesName[] =
2377 "Organic repeatable queries in Most Visited tiles";
2378const char kOrganicRepeatableQueriesDescription[] =
2379 "Enables showing the most repeated queries, from the device browsing "
2380 "history, organically among the most visited sites in the MV tiles.";
2381
Daniel Vogelheim88d1ca9e2022-02-04 19:53:452382const char kOriginAgentClusterDefaultName[] =
2383 "Origin-keyed Agent Clusters by default";
2384const char kOriginAgentClusterDefaultDescription[] =
2385 "Select the default behaviour for the Origin-Agent-Cluster http header. "
2386 "If enabled, an absent header will cause pages to be assigned to an "
2387 "origin-keyed agent cluster, and to a site-keyed agent cluster when "
2388 "disabled. Documents whose agent clusters are origin-keyed cannot set "
2389 "document.domain to relax the same-origin policy.";
2390
Ethan Mooney01e6f192021-06-10 13:14:072391const char kOsSettingsAppNotificationsPageName[] =
2392 "CrOS Settings App Notifications Page";
2393const char kOsSettingsAppNotificationsPageDescription[] =
2394 "If enabled, a new App Notifications subpage will appear in the "
2395 "CrOS Settings Apps section.";
2396
Wez600f06c2021-03-05 20:32:302397const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
2398const char kOverlayScrollbarsDescription[] =
2399 "Enable the experimental overlay scrollbars implementation. You must also "
2400 "enable threaded compositing to have the scrollbars animate.";
2401
Daniele Castagna74ddb9c2018-06-21 22:59:022402const char kOverlayStrategiesName[] = "Select HW overlay strategies";
2403const char kOverlayStrategiesDescription[] =
2404 "Select strategies used to promote quads to HW overlays.";
2405const char kOverlayStrategiesDefault[] = "Default";
2406const char kOverlayStrategiesNone[] = "None";
2407const char kOverlayStrategiesUnoccludedFullscreen[] =
2408 "Unoccluded fullscreen buffers (single-fullscreen)";
2409const char kOverlayStrategiesUnoccluded[] =
2410 "Unoccluded buffers (single-fullscreen,single-on-top)";
2411const char kOverlayStrategiesOccludedAndUnoccluded[] =
2412 "Occluded and unoccluded buffers "
2413 "(single-fullscreen,single-on-top,underlay)";
2414
Jinsuk Kim2e139e432021-02-26 03:46:562415const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
2416const char kOverscrollHistoryNavigationDescription[] =
2417 "History navigation in response to horizontal overscroll.";
2418
minch1ad858c2021-06-24 20:30:012419const char kOverviewButtonName[] = "Overview button at the status area";
2420const char kOverviewButtonDescription[] =
2421 "If enabled, always show the overview button at the status area.";
2422
Richard Chui9bb649182022-12-09 07:12:022423const char kOverviewDeskNavigationName[] =
2424 "CrOS Labs: Overview Desk Navigation";
2425const char kOverviewDeskNavigationDescription[] =
2426 "Stay in overview when navigating between desks using a swipe gesture or "
2427 "keyboard shortcut.";
2428
Sophie Chang9081cb32021-09-28 22:39:102429const char kPageContentAnnotationsName[] = "Page content annotations";
2430const char kPageContentAnnotationsDescription[] =
2431 "Enables page content to be annotated on-device.";
2432
Sophie Chang854625a2023-03-22 19:57:332433const char kPageContentAnnotationsPersistSalientImageMetadataName[] =
2434 "Page content annotations - Persist salient image metadata";
2435const char kPageContentAnnotationsPersistSalientImageMetadataDescription[] =
2436 "Enables salient image metadata per page load to be persisted on-device.";
2437
Sophie Chang8d500672022-02-09 22:45:302438const char kPageEntitiesPageContentAnnotationsName[] =
2439 "Page entities content annotations";
2440const char kPageEntitiesPageContentAnnotationsDescription[] =
2441 "Enables annotating the page entities model for each page load on-device.";
2442
Tommy C. Li7960fc82023-03-03 00:56:452443const char kPageImageServiceOptimizationGuideSalientImagesName[] =
2444 "Page Image Service - Optimization Guide Salient Images";
2445const char kPageImageServiceOptimizationGuideSalientImagesDescription[] =
2446 "Enables the PageImageService fetching images from the Optimization Guide "
2447 "Salient Images source.";
2448
Tommy C. Li315f9ff62023-03-16 16:13:152449const char kPageImageServiceSuggestPoweredImagesName[] =
2450 "Page Image Service - Suggest Powered Images";
2451const char kPageImageServiceSuggestPoweredImagesDescription[] =
2452 "Enables the PageImageService fetching images from the Suggest source.";
2453
Filipa Senrafc3fb4522023-03-17 18:12:222454const char kPageInfoAboutThisSiteKeepSidePanelOnSameTabNavs[] =
2455 "'About this site' keep side panel on same tab navs";
2456const char kPageInfoAboutThisSiteKeepSidePanelOnSameTabNavsDescription[] =
2457 "Keeps the 'About this site' side panel open and updated on same tab "
2458 "navigations.";
2459
Filipa Senrab5787562023-02-20 11:03:502460const char kPageInfoAboutThisSiteNewIconName[] = "'About this site' new icon";
2461const char kPageInfoAboutThisSiteNewIconDescription[] =
2462 "Shows the 'About this site' section in the page info UI with a new google "
2463 "branded icon.";
2464
Christian Dullweber77ae6752022-12-14 18:58:382465const char kPageInfoAboutThisSiteNonEnName[] =
2466 "'About this site' section in page info in all languages";
2467const char kPageInfoAboutThisSiteNonEnDescription[] =
2468 "Enable the 'About this site' section in the page info UI in languages "
2469 "other than English.";
Olesia Marukhno0fc754b2021-09-17 15:05:062470
Filipa Senradf8254a2023-02-03 10:29:382471const char kPageInfoAboutThisSiteNonMsbbName[] =
2472 "'About this site' for non-MSBB users";
2473const char kPageInfoAboutThisSiteNonMsbbDescription[] =
2474 "Make 'About this site' section in Page Info available for non-MSBB users.";
2475
Christian Dullweber8fdeb5d2022-08-24 20:14:572476const char kPageInfoboutThisPageDescriptionPlaceholderName[] =
2477 "AboutThisPage description placeholder";
2478const char kPageInfoboutThisPageDescriptionPlaceholderDescription[] =
2479 "Shows a placeholder when no description is availble instead of not "
2480 "showing an entry at all";
2481
2482const char kPageInfoboutThisPagePersistentEntryName[] =
2483 "AboutThisPage persistent SidePanel entry";
2484const char kPageInfoboutThisPagePersistentEntryDescription[] =
2485 "Registers a SidePanel entry on pageload if 'AboutThisPage' info is "
2486 "available";
2487
Zofia Salatad830d4b2022-09-19 09:22:362488const char kPageInfoCookiesSubpageName[] = "Cookies subpage in page info";
2489const char kPageInfoCookiesSubpageDescription[] =
2490 "Enable the Cookies subpage in page info for managing cookies and site "
2491 "data.";
2492
Christian Dullweberec4715a82022-04-28 17:12:012493const char kPageInfoMoreAboutThisPageName[] =
2494 "'More about this page' link in page info";
2495const char kPageInfoMoreAboutThisPageDescription[] =
2496 "Enable the 'More about this page' link in the 'From the web' section of "
2497 "page info.";
2498
Zofia Salata1f9c6ae2022-07-21 16:23:312499const char kPageInfoHideSiteSettingsName[] = "Page info hide site settings";
2500const char kPageInfoHideSiteSettingsDescription[] =
2501 "Hides site settings row in the page info menu.";
2502
Olesia Marukhno4f39c7fb2021-12-14 16:55:482503const char kPageInfoHistoryDesktopName[] = "Page info history";
2504const char kPageInfoHistoryDesktopDescription[] =
2505 "Enable a history section in the page info.";
2506
Sophie Chang8d500672022-02-09 22:45:302507const char kPageVisibilityPageContentAnnotationsName[] =
2508 "Page visibility content annotations";
2509const char kPageVisibilityPageContentAnnotationsDescription[] =
2510 "Enables annotating the page visibility model for each page load "
2511 "on-device.";
2512
Xing Liu5400a002017-09-15 21:48:292513const char kParallelDownloadingName[] = "Parallel downloading";
2514const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:062515 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:292516
Vaclav Brozekd8a3f542017-11-16 14:21:132517const char kPasswordImportName[] = "Password import";
2518const char kPasswordImportDescription[] =
2519 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:512520
Maria Timburddb9d422022-07-20 12:41:492521const char kPasswordStrengthIndicatorName[] = "Password strength indicator";
2522const char kPasswordStrengthIndicatorDescription[] =
2523 "Enables password strength indicator when typing a password during a "
2524 "sign-up and password change flows.";
2525
Norge Vizcay81af8802022-09-06 09:57:122526const char kForceEnableFastCheckoutCapabilitiesName[] =
2527 "Force enable fast checkout capabilities";
2528const char kForceEnableFastCheckoutCapabilitiesDescription[] =
2529 "Force enables fast checkout capabilities for every domain, regardless "
2530 "of the server response.";
2531
Nektarios Paisios989068702022-03-02 09:06:562532const char kPdfOcrName[] = "Performs OCR on inaccessible PDFs";
2533const char kPdfOcrDescription[] =
2534 "Enables a feature whereby inaccessible (i.e. untagged) PDFs are made "
2535 "accessible using an optical character recognition service.";
2536
Carlos ILc5c2e2702020-12-15 21:19:502537const char kPdfXfaFormsName[] = "PDF XFA support";
2538const char kPdfXfaFormsDescription[] =
2539 "Enables support for XFA forms in PDFs. "
2540 "Has no effect if Chrome was not built with XFA support.";
2541
Max Leefb53d9c2022-09-01 00:23:342542const char kVmPerBootShaderCacheName[] = "VM per-boot shader cache";
2543const char kVmPerBootShaderCacheDescription[] =
Max Lee324065832022-09-08 07:15:242544 "If enabled, VM shader cache is refreshed per boot. If disabled, VM shader "
2545 "cache is refreshed per OS build.";
Max Leefb53d9c2022-09-01 00:23:342546
Peter Beverloodcd5d9652021-10-11 23:30:592547const char kAutoWebContentsDarkModeName[] = "Auto Dark Mode for Web Contents";
2548const char kAutoWebContentsDarkModeDescription[] =
Aran Gilman5e9672bed2019-08-02 19:07:492549 "Automatically render all web contents using a dark theme.";
2550
Alison Maherc07a3fb2019-10-07 21:25:032551const char kForcedColorsName[] = "Forced Colors";
2552const char kForcedColorsDescription[] =
2553 "Enables forced colors mode for web content.";
2554
Gaston Rodriguez Lopez8baf0132022-07-13 18:58:242555const char kWindowsScrollingPersonalityName[] = "Windows Scrolling Personality";
2556const char kWindowsScrollingPersonalityDescription[] =
Matt Amertecf4bf32019-09-25 19:50:392557 "If enabled, mousewheel and keyboard scrolls will scroll by a percentage "
Gaston Rodriguez Lopez8baf0132022-07-13 18:58:242558 "of the scroller size and the default scroll animation is replaced with "
2559 "Impulse-style scroll animations.";
Matt Amertecf4bf32019-09-25 19:50:392560
Olesia Marukhno16fdd647a2020-05-04 09:34:002561const char kPermissionChipName[] = "Permissions Chip Experiment";
2562const char kPermissionChipDescription[] =
2563 "Enables an experimental permission prompt that uses a chip in the location"
2564 " bar.";
2565
Florian Jackyca9da172022-09-26 16:29:462566const char kChipLocationBarIconOverrideName[] =
2567 "Chip Location Bar Icon Override Experiment.";
2568const char kChipLocationBarIconOverrideDescription[] =
2569 "Enables an experimental location bar icon override while a chip is shown "
2570 "in the location bar. Takes effect when #permission-chip or "
2571 "#confirmation-chip are active.";
2572
2573const char kConfirmationChipName[] = "Confirmation Chip Experiment";
2574const char kConfirmationChipNameDescription[] =
2575 "Enables an experimental confirmation chip in the location bar after a "
Florian Jackycb018cb2022-10-10 09:57:362576 "permission prompt shown has been decided by the user.";
Florian Jackyca9da172022-09-26 16:29:462577
Andy Paicu204a1bb82020-11-12 21:50:142578const char kPermissionPredictionsName[] = "Permission Predictions";
2579const char kPermissionPredictionsDescription[] =
2580 "Use the Permission Predictions Service to surface permission requests "
2581 "using a quieter UI when the likelihood of the user granting the "
2582 "permission is predicted to be low. Requires "
Balazs Engedy6f94e1c2021-11-22 14:16:352583 "chrome://flags/#quiet-notification-prompts and `Safe Browsing` to be "
2584 "enabled.";
Andy Paicu204a1bb82020-11-12 21:50:142585
Illia Klimovdf283b02021-07-07 17:33:252586const char kPermissionQuietChipName[] = "Quiet Permission Chip Experiment";
2587const char kPermissionQuietChipDescription[] =
Illia Klimov1b2ca40c2022-06-09 20:02:412588 "Enables a permission prompt that uses the quiet chip instead of the "
2589 "right-hand side address bar icon for quiet permission prompts. Requires "
2590 "chrome://flags/#quiet-notification-prompts to be enabled.";
Illia Klimovdf283b02021-07-07 17:33:252591
Tom Van Goethem7ad67c082022-12-13 18:56:262592const char kRecordPermissionExpirationTimestampsName[] =
2593 "Record permission expiration timestamps";
2594const char kRecordPermissionExpirationTimestampsDescription[] =
2595 "When enabled, permissions grants with a durable session model will have "
2596 "an expiration date set.";
2597
Ella Geb58eed12019-09-05 23:37:012598const char kPointerLockOptionsName[] = "Enables pointer lock options";
2599const char kPointerLockOptionsDescription[] =
2600 "Enables pointer lock unadjustedMovement. When unadjustedMovement is set "
2601 "to true, pointer movements wil not be affected by the underlying platform "
2602 "modications such as mouse accelaration.";
2603
Brandon Wylie130e5792023-02-23 23:59:382604const char kPowerBookmarkBackendName[] = "Power bookmark backend";
2605const char kPowerBookmarkBackendDescription[] =
2606 "Enables storing additional metadata to support power bookmark features.";
2607
Emily Shack675ca992022-11-18 22:07:242608const char kPowerBookmarksSidePanel[] = "Power bookmarks side panel";
2609const char kPowerBookmarksSidePanelDescription[] =
2610 "Enables the power bookmarks version of the bookmarks side panel content.";
2611
Brandon Wylie955a16942021-09-24 22:43:102612const char kBookmarksImprovedSaveFlowName[] = "Improved bookmarks save flow";
2613const char kBookmarksImprovedSaveFlowDescription[] =
2614 "Enabled an improved save flow for bookmarks.";
2615
Brandon Wylief203eee2021-10-11 22:55:452616const char kBookmarksRefreshName[] = "Bookmarks refresh";
Brandon Wylie9fe37582021-08-24 01:22:532617const char kBookmarksRefreshDescription[] =
Brandon Wylief203eee2021-10-11 22:55:452618 "Enable various changes to bookmarks.";
Brandon Wylie9fe37582021-08-24 01:22:532619
Robert Lin4035ebb2021-10-08 12:23:412620const char kOmniboxTriggerForPrerender2Name[] =
2621 "Omnibox trigger for Prerender2";
2622const char kOmniboxTriggerForPrerender2Description[] =
2623 "Enables the new omnibox trigger prerenderer implementation.";
2624
Lingqi Chi357fcda12022-02-18 03:34:152625const char kSupportSearchSuggestionForPrerender2Name[] =
2626 "Prerender search suggestions";
2627const char kSupportSearchSuggestionForPrerender2Description[] =
2628 "Allows Prerender2 to prerender search suggestions provided by the default "
Johann6299c232022-11-21 03:10:442629 "search engine.";
Lingqi Chi357fcda12022-02-18 03:34:152630
Ryan Sturm0c7162f72022-09-16 15:13:412631const char kEnableOmniboxSearchPrefetchName[] = "Omnibox prefetch Search";
2632const char kEnableOmniboxSearchPrefetchDescription[] =
2633 "Allows omnibox to prefetch likely search suggestions provided by the "
2634 "Default Search Engine";
2635
2636const char kEnableOmniboxClientSearchPrefetchName[] =
2637 "Omnibox client prefetch Search";
2638const char kEnableOmniboxClientSearchPrefetchDescription[] =
2639 "Allows omnibox to prefetch search suggestions provided by the Default "
2640 "Search Engine that the client thinks are likely to be navigated. Requires "
2641 "chrome://flags/#omnibox-search-prefetch";
2642
Andrey Zaytsev7c790c12022-05-23 13:07:302643const char kPrivacyGuideAndroidName[] = "Privacy Guide on Android";
2644const char kPrivacyGuideAndroidDescription[] =
2645 "Shows a new subpage in Settings that helps the user to review various "
2646 "privacy settings.";
2647
John Delaney1d6e4b5c2022-03-25 02:19:222648const char kPrivacySandboxAdsAPIsOverrideName[] = "Privacy Sandbox Ads APIs";
2649const char kPrivacySandboxAdsAPIsOverrideDescription[] =
Nan Lin066a81a2022-04-20 18:46:542650 "Enables Privacy Sandbox APIs: Attribution Reporting, Fledge, Topics, "
Alex Turner64f3bef2022-09-09 18:56:582651 "Fenced Frames, Shared Storage, Private Aggregation, and their associated "
2652 "features.";
John Delaney1d6e4b5c2022-03-25 02:19:222653
Theodore Olsauskas-Warren474cdb52023-01-04 10:16:342654const char kPrivacySandboxSettings4Name[] = "Privacy Sandbox Settings V4";
2655const char kPrivacySandboxSettings4Description[] =
2656 "Enables updated Privacy Sandbox UI";
2657
Alex Turnerb6d89fa2022-10-12 18:33:572658const char kPrivateAggregationDeveloperModeName[] =
2659 "Private Aggregation developer mode";
2660const char kPrivateAggregationDeveloperModeDescription[] =
2661 "Enables the developer mode for the Private Aggregation API. This removes "
2662 "all reporting delays. Only works if the Private Aggregation API is "
2663 "already enabled.";
Alex Turner2d504952022-09-21 23:56:492664
Mohsen Izadi93faac12017-07-29 04:45:152665const char kPullToRefreshName[] = "Pull-to-refresh gesture";
2666const char kPullToRefreshDescription[] =
2667 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:012668const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:152669
Finnur Thorarinssonfb625e12022-09-06 17:22:532670const char kPWAsDefaultOfflinePageName[] = "Default offline page for PWAs";
2671const char kPWAsDefaultOfflinePageDescription[] =
2672 "Shows customised default offline page when web app is offline.";
2673
Finnur Thorarinsson528355742022-03-07 10:57:012674const char kPwaUpdateDialogForAppIconName[] =
2675 "Enable PWA install update dialog for icon changes";
2676const char kPwaUpdateDialogForAppIconDescription[] =
2677 "Enable a confirmation dialog that shows up when a PWA changes its icon";
2678
2679const char kPwaUpdateDialogForAppTitleName[] =
2680 "Enable PWA install update dialog for name changes";
2681const char kPwaUpdateDialogForAppTitleDescription[] =
2682 "Enable a confirmation dialog that shows up when a PWA changes its name";
Finnur Thorarinsson818e6c112021-05-19 13:06:462683
Brett Wilsonecb80982017-07-12 20:34:512684const char kQuicName[] = "Experimental QUIC protocol";
2685const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
2686
Jiahe Zhangc3577e332022-06-22 11:20:382687const char kQuickIntensiveWakeUpThrottlingAfterLoadingName[] =
2688 "Quick intensive throttling after loading";
2689const char kQuickIntensiveWakeUpThrottlingAfterLoadingDescription[] =
2690 "For pages that are loaded when backgrounded, activates intensive "
Jiahe Zhang498669852022-12-12 17:21:102691 "throttling after 1 minute instead of the default 5 minutes. Intensive "
Jiahe Zhangc3577e332022-06-22 11:20:382692 "throttling will limit wake ups, from setTimeout and setInterval tasks "
2693 "with a high nesting level and delayed scheduler.postTask tasks, to 1 per "
2694 "minute. See https://chromestatus.com/feature/5580139453743104 for more "
2695 "info.";
2696
Rohit Agarwal5e1c17fc2023-02-03 11:44:152697extern const char kQuickDeleteForAndroidName[] = "Enable quick delete";
2698extern const char kQuickDeleteForAndroidDescription[] =
2699 "When enabled, a new quick delete option appears in the three dots menu, "
2700 "allowing users to quickly delete their last 15 mins of data.";
2701
Yulun Wuc7439a652021-06-18 17:24:182702const char kSettingsAppNotificationSettingsName[] =
2703 "Split notification permission settings";
2704const char kSettingsAppNotificationSettingsDescription[] =
2705 "Remove per-app notification permissions settings from the quick settings "
2706 "menu. Notification permission settings will be split between the "
2707 "lacros-chrome browser's notification permission page "
2708 "and the ChromeOS settings app.";
2709
Alan Cutter20fd08f2020-12-01 13:39:162710const char kRecordWebAppDebugInfoName[] = "Record web app debug info";
2711const char kRecordWebAppDebugInfoDescription[] =
2712 "Enables recording additional web app related debugging data to be "
Alan Cutter919b4592021-07-08 05:50:442713 "displayed in: chrome://web-app-internals";
Alan Cutter20fd08f2020-12-01 13:39:162714
Victor Tan0e75ea52022-08-12 16:46:282715const char kReduceAcceptLanguageName[] =
2716 "Reduce Accept-Language request header";
2717const char kReduceAcceptLanguageDescription[] =
2718 "Reduce the amount of information available in the Accept-Language request "
2719 "header. See https://github.com/Tanych/accept-language for more info.";
2720
James Hollyer6e5f5c32020-07-27 21:18:102721const char kRestrictGamepadAccessName[] = "Restrict gamepad access";
2722const char kRestrictGamepadAccessDescription[] =
Charlie Hudb284b3f2021-03-19 19:52:222723 "Enables Permissions Policy and Secure Context restrictions on the Gamepad "
2724 "API";
James Hollyer6e5f5c32020-07-27 21:18:102725
Zoraiz Naeem82fa01072022-06-14 20:13:092726const char kRoundedDisplay[] = "Rounded display";
2727const char kRoundedDisplayDescription[] =
2728 "Enables rounded corners for the display";
2729
Dominic Farolino0e1f9a1a2020-11-25 23:25:002730const char kMBIModeName[] = "MBI Scheduling Mode";
2731const char kMBIModeDescription[] =
2732 "Enables independent agent cluster scheduling, via the "
2733 "AgentSchedulingGroup infrastructure.";
2734
Eduard Hez0141dce2022-09-22 11:46:502735const char kSafetyCheckNotificationPermissionsName[] =
2736 "Permission Module for notifications in Safety Check";
2737const char kSafetyCheckNotificationPermissionsDescription[] =
2738 "When enabled, adds the notification permission module to Safety Check on "
2739 "desktop. The module will be shown depending on the browser state.";
2740
2741const char kSafetyCheckUnusedSitePermissionsName[] =
2742 "Permission Module for unused sites in Safety Check";
2743const char kSafetyCheckUnusedSitePermissionsDescription[] =
2744 "When enabled, adds the unused sites permission module to Safety Check on "
2745 "desktop. The module will be shown depending on the browser state.";
Side Yilmazcdd69f782022-07-22 08:05:302746
Andrew Pantera67b07b42022-12-06 19:32:002747const char kSameAppWindowCycleName[] = "Cros Labs: Same App Window Cycling";
2748const char kSameAppWindowCycleDescription[] =
2749 "Use Alt+` to cycle through the windows of the active application.";
2750
Dylan Cutlerc2988fe2021-08-05 14:24:372751const char kPartitionedCookiesName[] = "Partitioned cookies";
2752const char kPartitionedCookiesDescription[] =
2753 "Controls if the Partitioned cookie attribute is enabled.";
2754
Nathan Eliason320cf312022-07-26 23:02:322755const char kThirdPartyStoragePartitioningName[] =
2756 "Experimental third-party storage partitioning.";
2757const char kThirdPartyStoragePartitioningDescription[] =
2758 "Enables partitioning of third-party storage by top-level site. "
2759 "Note: this is under active development and may result in unexpected "
2760 "behavior. Please file bugs at https://bugs.chromium.org/p/chromium/issues/"
2761 "entry?labels=StoragePartitioning-trial-bugs&components=Blink%3EStorage.";
2762
Jerry Liu3c11fe892023-03-20 21:00:502763const char kScreenSaverDurationName[] = "Screen saver duration settings";
2764const char kScreenSaverDurationDescription[] =
2765 "Allow users to customize screen saver running time.";
2766
Ilkin Safarli2692d5d12022-12-09 00:03:212767const char kScreenSaverPreviewName[] = "Screen saver preview";
2768const char kScreenSaverPreviewDescription[] =
2769 "Enables the screen saver preview feature which allows the users to "
2770 "preview current screen saver.";
2771
Elaine Chien2b731c82021-01-28 17:50:562772const char kScrollableTabStripFlagId[] = "scrollable-tabstrip";
Taylor Bergquist6e2cbe32021-02-03 21:46:142773const char kScrollableTabStripName[] = "Tab Scrolling";
Charlene Yan0ccd7f52019-04-12 23:20:592774const char kScrollableTabStripDescription[] =
Taylor Bergquist6e2cbe32021-02-03 21:46:142775 "Enables tab strip to scroll left and right when full.";
Charlene Yan0ccd7f52019-04-12 23:20:592776
David Pennington423db8f2022-10-24 22:30:042777const char kTabScrollingButtonPositionFlagId[] =
2778 "tab-scrolling-button-position";
2779const char kTabScrollingButtonPositionName[] = "Tab Scrolling Buttons";
2780const char kTabScrollingButtonPositionDescription[] =
2781 "Enables buttons on the tab strip to scroll left and right when full";
2782
Shibalik Mohapatra9a31f7d32022-10-26 23:53:592783const char kScrollableTabStripWithDraggingFlagId[] =
2784 "scrollable-tabstrip-with-dragging";
2785const char kScrollableTabStripWithDraggingName[] =
2786 "Tab Scrolling With Dragging";
2787const char kScrollableTabStripWithDraggingDescription[] =
2788 "Scrolls the tabstrip while dragging tabs towards the end of the visible "
2789 "view.";
2790
David Pennington02c635e2022-11-18 01:03:452791const char kScrollableTabStripOverflowFlagId[] = "scrollable-tabstrip-overflow";
2792const char kScrollableTabStripOverflowName[] =
2793 "Tab Scrolling Overflow Indicator";
2794const char kScrollableTabStripOverflowDescription[] =
2795 "Choices for overflow indicators shown when the tabstrip is in scrolling "
2796 "mode.";
2797
Taylor Bergquist9adeb292022-08-25 20:33:082798const char kSplitTabStripName[] = "Split TabStrip";
2799const char kSplitTabStripDescription[] =
2800 "Splits pinned and unpinned tabs into separate TabStrips under the hood. "
2801 "Pure refactoring, no user-visible behavioral changes are included.";
2802
David Bokanebe23cc52020-05-11 18:20:462803const char kScrollUnificationName[] = "Scroll Unification";
2804const char kScrollUnificationDescription[] =
2805 "Refactoring project that eliminates scroll handling code from Blink. "
2806 "Does not affect behavior or performance.";
2807
Yulun Wu04255512022-02-15 01:34:152808extern const char kSearchResultInlineIconName[] = "Search Result Inline Icons";
2809extern const char kSearchResultInlineIconDescription[] =
2810 "Show iconified text and vector icons "
2811 "in launcher search results.";
2812
Yulun Wu1cd0faa2022-03-03 06:59:212813extern const char kDynamicSearchUpdateAnimationName[] =
2814 "Dynamic Search Result Update Animation";
2815extern const char kDynamicSearchUpdateAnimationDescription[] =
2816 "Dynamically adjust the search result update animation when those update "
2817 "animations are preempted. Shortened animation durations configurable "
2818 "(unit: milliseconds).";
2819
Rouslan Solomakhine73fa7852020-08-28 10:33:462820const char kSecurePaymentConfirmationDebugName[] =
2821 "Secure Payment Confirmation Debug Mode";
2822const char kSecurePaymentConfirmationDebugDescription[] =
2823 "This flag removes the restriction that PaymentCredential in WebAuthn and "
2824 "secure payment confirmation in PaymentRequest API must use user verifying "
2825 "platform authenticators.";
2826
Victor Hugo Vianna Silvaf0a44002022-02-16 10:38:002827const char kSendTabToSelfSigninPromoName[] = "Send tab to self sign-in promo";
2828const char kSendTabToSelfSigninPromoDescription[] =
2829 "Enables a sign-in promo if the user attempts to share a tab while being "
2830 "signed out";
2831
Marlon Faceyfce1a9e2022-03-31 23:48:062832const char kSidePanelJourneysFlagId[] = "side-panel-journeys";
2833const char kSidePanelJourneysName[] = "Side panel journeys";
2834const char kSidePanelJourneysDescription[] =
2835 "Enables Journeys within the side panel.";
2836
Marlon Facey41373d72b2022-10-11 02:34:092837const char kSidePanelJourneysQuerylessFlagId[] =
2838 "side-panel-journeys-queryless";
2839const char kSidePanelJourneysQuerylessName[] = "Side panel journeys queryless";
2840const char kSidePanelJourneysQuerylessDescription[] =
2841 "Enables Journeys queryless view within the side panel.";
2842
Elly Fong-Jonesfe05ca12022-09-09 23:38:472843const char kSidePanelWebViewName[] = "Side panel webview";
2844const char kSidePanelWebViewDescription[] =
2845 "Adds a side panel option to load arbitrary web content, with a URL bar.";
2846
Kyle Milkacf3aa6e12021-07-28 00:34:022847const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots";
2848const char kSharingDesktopScreenshotsDescription[] =
2849 "Enables taking"
2850 " screenshots from the desktop sharing hub.";
2851
Manu Cornetd7ef7c52018-05-01 22:08:232852const char kShelfHoverPreviewsName[] =
2853 "Show previews of running apps when hovering over the shelf.";
2854const char kShelfHoverPreviewsDescription[] =
2855 "Shows previews of the open windows for a given running app when hovering "
2856 "over the shelf.";
2857
Yulun Wuee444262023-01-31 22:40:522858const char kShelfStackedHotseatName[] = "Shelf Stacked Hotseat";
2859const char kShelfStackedHotseatDescription[] =
2860 "Stack the hotseat app bar above the shelf button panels/system tray when "
2861 "there is not enough space for the app bar.";
2862
Brett Wilsonecb80982017-07-12 20:34:512863const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
2864const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:382865 "Annotates web forms with Autofill signatures as HTML attributes. Also "
2866 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:512867
2868const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
2869const char kShowAutofillTypePredictionsDescription[] =
2870 "Annotates web forms with Autofill field type predictions as placeholder "
2871 "text.";
2872
Lei Zhang1a6fd01b2021-03-24 17:03:482873const char kShowPerformanceMetricsHudName[] = "Show performance metrics in HUD";
2874const char kShowPerformanceMetricsHudDescription[] =
Weiliang Chene39e7652020-11-18 05:30:152875 "Display the performance metrics of current page in a heads up display on "
2876 "the page.";
2877
pwarren878671672019-12-13 19:18:162878const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
2879const char kShowOverdrawFeedbackDescription[] =
2880 "Visualize overdraw by color-coding elements based on if they have other "
2881 "elements drawn underneath.";
2882
Lukasz Anforowiczd2e16e62019-03-28 19:06:592883const char kIsolateOriginsName[] = "Isolate additional origins";
2884const char kIsolateOriginsDescription[] =
2885 "Requires dedicated processes for an additional set of origins, "
2886 "specified as a comma-separated list.";
2887
Mike West6b2bd752020-12-02 06:36:592888const char kIsolationByDefaultName[] =
2889 "Change web-facing behaviors that prevent origin-level isolation";
2890const char kIsolationByDefaultDescription[] =
2891 "Change several web APIs that make it difficult to isolate origins into "
2892 "distinct processes. While these changes will ideally become new default "
2893 "behaviors for the web, this flag is likely to break your experience on "
2894 "sites you visit today.";
2895
Alex Moshchuk1a4dd092022-05-26 19:55:262896const char kWebViewTagSiteIsolationName[] = "Site isolation for <webview> tags";
2897const char kWebViewTagSiteIsolationDescription[] =
2898 "Enables site isolation for content rendered inside <webview> tags. This "
2899 "increases security for Chrome Apps and WebUI pages that use <webview>.";
2900
Lukasz Anforowicz738a88d2018-11-05 19:19:342901const char kSiteIsolationOptOutName[] = "Disable site isolation";
2902const char kSiteIsolationOptOutDescription[] =
2903 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:572904 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
2905 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:222906 "isolation is force-enabled using a command line switch or using an "
2907 "enterprise policy. "
2908 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:572909 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:342910const char kSiteIsolationOptOutChoiceDefault[] = "Default";
2911const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:512912
Brett Wilsonecb80982017-07-12 20:34:512913const char kSmoothScrollingName[] = "Smooth Scrolling";
2914const char kSmoothScrollingDescription[] =
2915 "Animate smoothly when scrolling page content.";
2916
CJ Huang4ed8a7f32023-01-17 03:45:382917const char kSpeakOnMuteName[] = "Enable Speak On Mute Detection";
2918const char kSpeakOnMuteDescription[] =
2919 "Enable the speak-on-mute detector in CRAS. Reboot is required to let the "
2920 "flag take effect";
2921
shivanigithub75489e352021-02-22 19:24:302922const char kSplitCacheByNetworkIsolationKeyName[] = "HTTP Cache Partitioning";
2923const char kSplitCacheByNetworkIsolationKeyDescription[] =
2924 "Partitions the HTTP Cache by (top-level site, current-frame site) to "
2925 "disallow cross-site tracking.";
2926
Lei Zhang507fffd2020-01-29 23:47:542927const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation";
2928const char kStrictOriginIsolationDescription[] =
W. James MacLeanf79c97e2019-05-02 20:35:462929 "Experimental security mode that strengthens the site isolation policy. "
2930 "Controls whether site isolation should use origins instead of scheme and "
2931 "eTLD+1.";
2932
Brandon Maslenda12cf82019-08-23 20:54:182933const char kStorageAccessAPIName[] = "Storage Access API";
2934const char kStorageAccessAPIDescription[] =
2935 "Enables the Storage Access API, allowing websites to request storage "
2936 "access when it would otherwise be restricted.";
2937
Lexi Stavrakos094fd642020-06-17 23:26:432938const char kStoragePressureEventName[] = "Enable storage pressure Event";
2939const char kStoragePressureEventDescription[] =
2940 "If enabled, Chrome will dispatch a DOM event, informing applications "
2941 "about storage pressure (low disk space)";
2942
Brett Wilsonecb80982017-07-12 20:34:512943const char kSuggestionsWithSubStringMatchName[] =
2944 "Substring matching for Autofill suggestions";
2945const char kSuggestionsWithSubStringMatchDescription[] =
2946 "Match Autofill suggestions based on substrings (token prefixes) rather "
2947 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:342948
Irem Uguza84737922022-05-19 09:37:152949const char kSupportTool[] = "Support Tool";
2950const char kSupportToolDescription[] =
2951 "Support Tool collects and exports logs to help debugging the issues. It's"
2952 " available in chrome://support-tool.";
2953
Yumin Su90c764de2022-09-28 19:56:152954const char kSupportToolScreenshot[] = "Support Tool Screenshot";
2955const char kSupportToolScreenshotDescription[] =
2956 "Enables the Support Tool to capture and include a screenshot in the "
2957 "exported packet.";
2958
Patrick Nolandfa5abf92022-02-02 20:26:132959const char kSuppressToolbarCapturesName[] = "Suppress Toolbar Captures";
2960const char kSuppressToolbarCapturesDescription[] =
2961 "Suppress Toolbar Captures except when certain properties change.";
2962
Alexander Tekle629b1be2022-12-05 23:55:122963const char kSyncAutofillWalletUsageDataName[] =
2964 "Sync Autofill Wallet Usage Data";
2965const char kSyncAutofillWalletUsageDataDescription[] =
2966 "When enabled, allows syncing of the autofill wallet usage data type.";
2967
Marc Treibb9d8ed802022-07-05 15:15:492968const char kSyncEnableHistoryDataTypeName[] = "Enable History sync data type";
2969const char kSyncEnableHistoryDataTypeDescription[] =
2970 "Enables the History sync data type instead of TypedURLs";
2971
Brett Wilsonecb80982017-07-12 20:34:512972const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
2973const char kSyncSandboxDescription[] =
2974 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:342975
Mikel Astiz850b0fe2021-06-16 09:47:272976const char kSyncTrustedVaultPassphrasePromoName[] =
2977 "Enable promos for sync trusted vault passphrase.";
2978const char kSyncTrustedVaultPassphrasePromoDescription[] =
2979 "Enables promos for an experimental sync passphrase type, referred to as "
2980 "trusted vault.";
2981
Rushan Suleymanov727309602022-04-28 20:08:542982const char kSyncInvalidationsName[] = "Use Sync standalone invalidations";
2983const char kSyncInvalidationsDescription[] =
2984 "If enabled, Sync will use standalone invalidations instead of topic based "
2985 "invalidations (Wallet and Offer data types are enabled by a dedicated "
2986 "flag).";
2987
2988const char kSyncInvalidationsWalletAndOfferName[] =
2989 "Use Sync standalone invalidations for Wallet and Offer";
2990const char kSyncInvalidationsWalletAndOfferDescription[] =
2991 "If enabled, Sync will use standalone invalidations for Wallet and Offer "
2992 "data types. Takes effect only when Sync standalone invalidations are "
2993 "enabled.";
2994
Joe Downing8cbbc192018-05-14 17:37:072995const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
2996const char kSystemKeyboardLockDescription[] =
2997 "Enables websites to use the keyboard.lock() API to intercept system "
2998 "keyboard shortcuts and have the events routed directly to the website "
2999 "when in fullscreen mode.";
3000
Hongyu Long3bd31e52022-11-21 20:08:303001const char kSystemSoundsName[] = "Power Sounds";
3002const char kSystemSoundsDescription[] =
3003 "Enable device charging and low battery warning sounds.";
3004
Ahmed Mehfoozf719a672020-12-17 23:32:523005const char kStylusBatteryStatusName[] =
3006 "Show stylus battery stylus in the stylus tools menu";
3007const char kStylusBatteryStatusDescription[] =
3008 "Enables viewing the current stylus battery level in the stylus tools "
3009 "menu.";
3010
Matt Simmons1fd0c9f2019-04-15 19:08:223011const char kTabEngagementReportingName[] = "Tab Engagement Metrics";
3012const char kTabEngagementReportingDescription[] =
3013 "Tracks tab engagement and lifetime metrics.";
3014
Yusuf Ozuysal67f05a02019-02-15 19:30:523015const char kTabGridLayoutAndroidName[] = "Tab Grid Layout";
3016const char kTabGridLayoutAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:463017 "Allows users to see their tabs in a grid layout in the tab switcher on "
3018 "phones.";
Yusuf Ozuysal67f05a02019-02-15 19:30:523019
Wamia Said576448e2022-06-07 03:43:243020const char kCommerceCouponsName[] = "Coupon Annotations";
3021const char kCommerceCouponsDescription[] =
3022 "Allows users to view annotations for available coupons in the Tab "
3023 "Switching UI and on the Tab itself when a known coupon in available";
3024
Mei Liang6b296982021-10-06 22:49:043025const char kCommerceDeveloperName[] = "Commerce developer mode";
3026const char kCommerceDeveloperDescription[] =
3027 "Allows users in the allowlist to enter the developer mode";
3028
Ayman Almadhoun5a72fa742021-04-28 05:49:153029const char kCommerceMerchantViewerAndroidName[] = "Merchant Viewer";
3030const char kCommerceMerchantViewerAndroidDescription[] =
3031 "Allows users to view merchant trust signals on eligible pages.";
3032
Yue Zhange5610102019-11-01 19:46:393033const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation";
3034const char kTabGroupsContinuationAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:463035 "Allows users to access continuation features in Tab Group on phones.";
Yue Zhange5610102019-11-01 19:46:393036
Dana Fried7ecd0e02021-02-03 21:20:573037const char kTabGroupsNewBadgePromoName[] = "Tab Groups 'New' Badge Promo";
3038const char kTabGroupsNewBadgePromoDescription[] =
3039 "Causes a 'New' badge to appear on the entry point for creating a tab "
3040 "group in the tab context menu.";
3041
Alyssa Frederickab694f22021-07-02 20:05:393042const char kTabGroupsSaveName[] = "Tab Groups Save";
3043const char kTabGroupsSaveDescription[] =
3044 "Enables users to explicitly save and recall tab groups.";
3045
Dana Friedacaa8ef52019-02-08 02:20:353046const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
3047const char kTabHoverCardImagesDescription[] =
3048 "Shows a preview image in tab hover cards, if tab hover cards are enabled.";
3049
Yuheng Huang59d1d302021-10-29 21:21:143050const char kTabSearchFuzzySearchName[] = "Fuzzy search for Tab Search";
3051const char kTabSearchFuzzySearchDescription[] =
3052 "Enable fuzzy search for Tab Search.";
3053
Wen-Chien Wange893a8d2022-10-05 16:53:253054const char kTextInShelfName[] = "Internal test: text in shelf";
3055const char kTextInShelfDescription[] =
3056 "Extend text in shelf timeout to learn about user education";
3057
Daniele Castagnaac71d892020-07-07 17:30:373058const char kTintCompositedContentName[] = "Tint composited content";
3059const char kTintCompositedContentDescription[] =
3060 "Tint contents composited using Viz with a shade of red to help debug and "
Daniele Castagna0fead93e2018-01-10 20:40:293061 "study overlay support.";
3062
Peter Kastingd77428352018-10-26 15:20:253063const char kTopChromeTouchUiName[] = "Touch UI Layout";
3064const char kTopChromeTouchUiDescription[] =
3065 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:343066
Brett Wilsonecb80982017-07-12 20:34:513067const char kThreadedScrollingName[] = "Threaded scrolling";
3068const char kThreadedScrollingDescription[] =
3069 "Threaded handling of scroll-related input events. Disabling this will "
3070 "force all such scroll events to be handled on the main thread. Note that "
3071 "this can dramatically hurt scrolling performance of most websites and is "
3072 "intended for testing purposes only.";
3073
W. James MacLean17fc6852021-05-06 18:29:293074const char kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesName[] =
3075 "Throttle non-visible cross-origin iframes";
3076const char
3077 kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesDescription[] =
3078 "When enabled, all cross-origin iframes with zero visibility (either "
W. James MacLean86b04de2022-03-25 15:00:033079 "display:none or zero viewport intersection with non-zero area) will be"
3080 " throttled, regardless of whether they are same-process or "
3081 "cross-process. When disabled, throttling for cross-process iframes is "
3082 "the same, but for same-process iframes throttling only occurs when "
3083 "the frame has zero viewport intersection, a non-zero area, and is "
3084 "not display:none.";
W. James MacLean17fc6852021-05-06 18:29:293085
Calder Kitagawae13c23912023-02-08 22:50:283086const char kThumbnailCacheRefactorName[] = "Thumbnail Cache Refactor";
3087const char kThumbnailCacheRefactorDescription[] =
3088 "When enabled the thumbnail cache for Android is updated to improve "
3089 "memory usage and performance.";
3090
W. James MacLean853cd422022-10-17 14:08:583091const char kNewBaseUrlInheritanceBehaviorName[] =
3092 "Enable new base url inheritance behaviors for srcdoc and about:blank";
3093const char kNewBaseUrlInheritanceBehaviorDescription[] =
3094 "When enabled, about:blank and srcdoc frames will use newly proposed "
3095 "behaviors around inheriting their base urls, as discussed on "
3096 "https://crbug.com/1356658. Note: this is automatically enabled when "
3097 "'isolate sandboxed iframes' is enabled.";
3098
Brett Wilsonecb80982017-07-12 20:34:513099const char kTouchDragDropName[] = "Touch initiated drag and drop";
3100const char kTouchDragDropDescription[] =
3101 "Touch drag and drop can be initiated through long press on a draggable "
3102 "element.";
3103
Brett Wilsonecb80982017-07-12 20:34:513104const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
3105const char kTouchSelectionStrategyDescription[] =
3106 "Controls how text selection granularity changes when touch text selection "
3107 "handles are dragged. Non-default behavior is experimental.";
3108const char kTouchSelectionStrategyCharacter[] = "Character";
3109const char kTouchSelectionStrategyDirection[] = "Direction";
3110
Josh Simmons7a8e7a942021-06-19 01:08:563111const char kTranslateAssistContentName[] = "Translate AssistContent";
3112const char kTranslateAssistContentDescription[] =
3113 "Enables populating translate details for the current page in "
3114 "AssistContent.";
3115
Anthony Vallee-Dubois265c5692018-06-01 15:57:143116const char kTranslateForceTriggerOnEnglishName[] =
3117 "Select which language model to use to trigger translate on English "
3118 "content";
3119const char kTranslateForceTriggerOnEnglishDescription[] =
3120 "Force the Translate Triggering on English pages experiment to be enabled "
3121 "with the selected language model active.";
3122
Josh Simmons8c98484872021-05-05 20:50:013123const char kTranslateIntentName[] = "Translate intent";
3124const char kTranslateIntentDescription[] =
3125 "Enables an intent that allows Assistant to initiate a translation of the "
3126 "foreground tab.";
Haohao Wang5b525f722019-05-18 15:37:523127
Mustafa Emre Acerb3aa36a82018-05-22 21:44:053128const char kTreatInsecureOriginAsSecureName[] =
3129 "Insecure origins treated as secure";
3130const char kTreatInsecureOriginAsSecureDescription[] =
3131 "Treat given (insecure) origins as secure origins. Multiple origins can be "
Alan Cutter733ec9a2019-08-27 15:33:133132 "supplied as a comma-separated list. Origins must have their protocol "
3133 "specified e.g. \"http://example.com\". For the definition of secure "
3134 "contexts, see https://w3c.github.io/webappsec-secure-contexts/";
Mustafa Emre Acerb3aa36a82018-05-22 21:44:053135
Sergey Kataevc3be71f12022-11-18 20:11:553136const char kPrivateStateTokensName[] = "Enable Private State Tokens";
3137const char kPrivateStateTokensDescription[] =
3138 "Enables the prototype Private State Token API "
David Van Cleve08c5bc012020-03-26 17:31:463139 "(https://github.com/wicg/trust-token-api).";
3140
Will Cassellafd1edf02020-08-26 23:13:083141const char kTurnOffStreamingMediaCachingOnBatteryName[] =
3142 "Turn off caching of streaming media to disk while on battery power.";
3143const char kTurnOffStreamingMediaCachingOnBatteryDescription[] =
3144 "Reduces disk activity during media playback, which can result in "
3145 "power savings.";
3146
3147const char kTurnOffStreamingMediaCachingAlwaysName[] =
Shawn Pickett0b470712019-08-15 00:43:453148 "Turn off caching of streaming media to disk.";
Will Cassellafd1edf02020-08-26 23:13:083149const char kTurnOffStreamingMediaCachingAlwaysDescription[] =
Shawn Pickett0b470712019-08-15 00:43:453150 "Reduces disk activity during media playback, which can result in "
3151 "power savings.";
3152
Vasilii Sukhanov36365432021-07-02 08:38:213153const char kUnifiedPasswordManagerAndroidName[] =
3154 "Google Mobile Services for passwords";
Friedrich Horschig2683d832021-06-09 15:47:563155const char kUnifiedPasswordManagerAndroidDescription[] =
3156 "Uses Google Mobile Services to store and retrieve passwords."
3157 "Warning: Highly experimental. May lead to loss of passwords and "
3158 "impact performance.";
3159
Ivana Žužićb8eae112022-09-15 15:32:483160const char kUnifiedPasswordManagerErrorMessagesName[] =
3161 "Error Messages when using Google Mobile Services for passwords";
3162const char kUnifiedPasswordManagerErrorMessagesDescription[] =
3163 "Enables showing error messages that offer signing in again to fix the "
3164 "auth errors.";
3165
Maria Kazinova32748352022-09-27 10:34:193166const char kUnifiedPasswordManagerAndroidReenrollmentName[] =
3167 "Automatic reenrollement of users who were evicted from using Google "
3168 "Mobile Services after experiencing errors.";
3169const char kUnifiedPasswordManagerAndroidReenrollmentDescription[] =
3170 "Requires UnifiedPasswordManagerAndroid flag enabled. Allows automatic "
3171 "reenrollment into Google Mobile Services if sync and backend "
3172 "communication work.";
3173
François Beaufortdb160c12019-05-01 06:28:143174const char kUnsafeWebGPUName[] = "Unsafe WebGPU";
3175const char kUnsafeWebGPUDescription[] =
Rafael Cintron9bce9f6e2019-12-19 04:05:053176 "Enables access to the experimental WebGPU API. Warning: As GPU sandboxing "
François Beaufortdb160c12019-05-01 06:28:143177 "isn't implemented yet for the WebGPU API, it is possible to read GPU data "
3178 "for other processes.";
3179
Brett Wilsonecb80982017-07-12 20:34:513180const char kUiPartialSwapName[] = "Partial swap";
3181const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
3182
Maksim Sisovdc5d70a2022-11-23 08:03:023183const char kUIEnableSharedImageCacheForGpuName[] = "Shared GPUImageDecodeCache";
3184const char kUIEnableSharedImageCacheForGpuDescription[] =
3185 "Enables shared GPUImageDecodeCache for UI if gpu rasterization is "
3186 "enabled.";
3187
Momoka Yamamotof1accfce2022-10-13 10:00:193188const char kUseNAT64ForIPv4LiteralName[] =
3189 "Use NAT64 translation for IPv4 literals";
3190const char kUseNAT64ForIPv4LiteralDescription[] =
3191 "Enables IPv4 to IPv6 address translation for IPv4 literals when chrome is "
3192 "on an IPv6 only network";
3193
Caroline Rising19c84902023-02-27 23:46:003194const char kUserNotesSidePanelName[] = "User notes side panel";
3195const char kUserNotesSidePanelDescription[] =
3196 "Enables the user notes feature in the side panel. "
3197 "Only works if Power bookmark backend is also enabled.";
3198
Maria Kazinova58cedc02021-08-02 17:15:113199const char kUsernameFirstFlowFallbackCrowdsourcingName[] =
3200 "Username first flow fallback crowdsourcing";
3201const char kUsernameFirstFlowFallbackCrowdsourcingDescription[] =
3202 "Support of sending additional votes on username first flow i.e. login "
3203 "flows where a user has to type username first on one page and then "
3204 "password on another page. These votes are sent on single password forms "
3205 "and contain information whether a 1-password form follows a 1-text form "
3206 "and the value's type(or pattern) in the latter (e.g. email-like, "
3207 "phone-like, arbitrary string).";
Maria Kazinova85a2ece2021-06-14 19:24:283208
Zentaro Kavanagh892851f2019-05-29 15:13:313209const char kUseSearchClickForRightClickName[] =
3210 "Use Search+Click for right click";
3211const char kUseSearchClickForRightClickDescription[] =
3212 "When enabled search+click will be remapped to right click, allowing "
3213 "webpages and apps to consume alt+click. When disabled the legacy "
3214 "behavior of remapping alt+click to right click will remain unchanged.";
3215
Guoxing Zhao7e129632023-01-25 03:58:553216const char kVideoConferenceName[] = "Enable video conference features";
3217const char kVideoConferenceDescription[] =
3218 "Enables all features for ChromeOS built-in video conferencing UI.";
Guoxing Zhao13538c62022-09-15 06:08:163219
Guoxing Zhao7e129632023-01-25 03:58:553220const char kVcBackgroundReplaceName[] = "Enable vc background replacement";
3221const char kVcBackgroundReplaceDescription[] =
Jim Pollockc74e3822022-10-17 03:56:503222 "Enables background replacement feature for video conferencing on "
3223 "chromebooks. THIS WILL OVERRIDE BACKGROUND BLUR.";
3224
Ard Oerlemansc550dd02023-03-13 10:02:153225const char kVcSegmentationModelName[] = "Use a different segmentation model";
3226const char kVcSegmentationModelDescription[] =
3227 "Allows a different segmentation model to be used for blur and relighting, "
3228 "which may reduce the workload on the GPU.";
3229
Michael Hablich896d52662017-10-23 15:59:573230const char kV8VmFutureName[] = "Future V8 VM features";
3231const char kV8VmFutureDescription[] =
3232 "This enables upcoming and experimental V8 VM features. "
3233 "This flag does not enable experimental JavaScript features.";
3234
Jeff Chen64a0458a2022-01-13 17:12:173235const char kGlobalVaapiLockName[] = "Global lock on the VA-API wrapper.";
3236const char kGlobalVaapiLockDescription[] =
3237 "Enable or disable the global VA-API lock for platforms and paths that "
3238 "support controlling this.";
3239
Hirokazu Honda22eb73a2021-10-29 03:58:383240const char kVp9kSVCHWDecodingName[] =
3241 "Hardware decode acceleration for k-SVC VP9";
3242const char kVp9kSVCHWDecodingDescription[] =
3243 "Enable or disable k-SVC VP9 hardware decode acceleration";
3244
Brett Wilsonecb80982017-07-12 20:34:513245const char kWalletServiceUseSandboxName[] =
3246 "Use Google Payments sandbox servers";
3247const char kWalletServiceUseSandboxDescription[] =
3248 "For developers: use the sandbox service for Google Payments API calls.";
3249
Colin Kincaid292cfc42022-05-03 19:17:073250const char kWallpaperFastRefreshName[] =
3251 "Enable shortened wallpaper daily refresh interval for manual testing";
3252const char kWallpaperFastRefreshDescription[] =
3253 "Allows developers to see a new wallpaper once every ten seconds rather "
3254 "than once per day when using the daily refresh feature.";
3255
Jerry Liua21b61622022-12-20 00:52:123256const char kWallpaperGooglePhotosSharedAlbumsName[] =
3257 "Enable Google Photos shared albums for wallpaper";
3258const char kWallpaperGooglePhotosSharedAlbumsDescription[] =
3259 "Allow users to set shared Google Photos albums as the source for their "
3260 "wallpaper.";
3261
Sean Kau1d8791e32021-11-08 22:51:543262const char kWallpaperPerDeskName[] =
3263 "Enable setting different wallpapers per desk";
3264const char kWallpaperPerDeskDescription[] =
3265 "Allow users to set different wallpapers on each of their active desks";
3266
François Beaufort7aace812022-02-02 13:57:173267const char kWebBluetoothName[] = "Web Bluetooth";
3268const char kWebBluetoothDescription[] =
3269 "Enables the Web Bluetooth API on platforms without official support";
3270
Ovidio Henriquez3d729f62020-02-07 00:43:293271const char kWebBluetoothNewPermissionsBackendName[] =
3272 "Use the new permissions backend for Web Bluetooth";
3273const char kWebBluetoothNewPermissionsBackendDescription[] =
3274 "Enables the new permissions backend for Web Bluetooth. This will enable "
François Beaufort2b916752021-12-06 13:05:173275 "persistent storage of device permissions and Web Bluetooth features such "
3276 "as BluetoothDevice.watchAdvertisements() and Bluetooth.getDevices()";
Ovidio Henriquez3d729f62020-02-07 00:43:293277
Klaus Weidner90b78032022-06-01 22:48:333278const char kWebContentsCaptureHiDpiName[] = "HiDPI Tab Capture";
3279const char kWebContentsCaptureHiDpiDescription[] =
3280 "Enables HiDPI rendering for tab capture if the displayed content's "
3281 "resolution is low compared to the capture size. This improves "
3282 "legibility for viewers with higher-resolution screens.";
3283
Reilly Grant679f59d2021-09-29 18:39:383284const char kWebMidiName[] = "Web MIDI";
3285const char kWebMidiDescription[] =
3286 "Enables the implementation of the Web MIDI API. When disabled the "
3287 "interface will still be exposed by Blink.";
3288
Ayu Ishiidbdd5c92020-03-20 23:40:523289const char kWebOtpBackendName[] = "Web OTP";
3290const char kWebOtpBackendDescription[] =
3291 "Enables Web OTP API that uses the specified backend.";
Yi Gu13cc7242020-12-10 03:23:373292const char kWebOtpBackendSmsVerification[] = "Code Browser API";
3293const char kWebOtpBackendUserConsent[] = "User Consent API";
3294const char kWebOtpBackendAuto[] = "Automatically select the backend";
Ayu Ishiidbdd5c92020-03-20 23:40:523295
Kenneth Russell08c7dc32021-07-09 08:06:593296const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions";
3297const char kWebglDeveloperExtensionsDescription[] =
3298 "Enabling this option allows web applications to access WebGL extensions "
3299 "intended only for use during development time.";
3300
Brett Wilsonecb80982017-07-12 20:34:513301const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
3302const char kWebglDraftExtensionsDescription[] =
3303 "Enabling this option allows web applications to access the WebGL "
Kenneth Russell08c7dc32021-07-09 08:06:593304 "extensions that are still in draft status.";
Brett Wilsonecb80982017-07-12 20:34:513305
Brandon Jones2ebd9a62022-06-15 19:55:593306const char kWebGpuDeveloperFeaturesName[] = "WebGPU Developer Features";
3307const char kWebGpuDeveloperFeaturesDescription[] =
3308 "Enables web applications to access WebGPU features intended only for use "
3309 "during development.";
3310
Danyao Wang47a0f312019-05-09 20:52:243311const char kWebPaymentsExperimentalFeaturesName[] =
3312 "Experimental Web Payments API features";
3313const char kWebPaymentsExperimentalFeaturesDescription[] =
3314 "Enable experimental Web Payments API features";
3315
Rouslan Solomakhin8c770f582023-01-03 22:23:513316const char kIgnoreCSPInWebPaymentAPIName[] = "Ignore CSP in Web Payment API";
3317const char kIgnoreCSPInWebPaymentAPIDescription[] =
3318 "Temporarily disable enforcing Content Security Policy connect-src "
3319 "directive for Web Payment API when fetching manifest files, app icons, "
3320 "and service worker JavaScript files.";
Rouslan Solomakhin6cc11082022-08-09 14:02:573321
Rouslan Solomakhin1b63d252023-01-04 15:36:333322const char kAddIdentityInCanMakePaymentEventName[] =
3323 "Add identity to canmakepayment event";
3324const char kAddIdentityInCanMakePaymentEventDescription[] =
3325 "Temporarily re-enable the deprecated feature of sharing the merchant and "
3326 "user identity with the payment app when the merchant checks whether the "
3327 "payment app can make payments.";
Rouslan Solomakhinfb386b12022-06-24 01:41:203328
Liquan (Max) Gu8fcb9192020-05-20 16:22:183329const char kAppStoreBillingDebugName[] =
3330 "Web Payments App Store Billing Debug Mode";
3331const char kAppStoreBillingDebugDescription[] =
3332 "App-store purchases (e.g., Google Play Store) within a TWA can be "
3333 "requested using the Payment Request API. This flag removes the "
3334 "restriction that the TWA has to be installed from the app-store.";
3335
Qingsi Wangec2dbf942018-11-03 05:33:043336const char kWebrtcHideLocalIpsWithMdnsName[] =
3337 "Anonymize local IPs exposed by WebRTC.";
3338const char kWebrtcHideLocalIpsWithMdnsDecription[] =
3339 "Conceal local IP addresses with mDNS hostnames.";
3340
Alessio Bazzica570a4f62022-10-17 11:16:303341const char kWebRtcAllowInputVolumeAdjustmentName[] =
3342 "Allow WebRTC to adjust the input volume.";
3343const char kWebRtcAllowInputVolumeAdjustmentDescription[] =
3344 "Allow the Audio Processing Module in WebRTC to adjust the input volume "
3345 "during a real-time call. Disable if microphone muting or clipping issues "
3346 "are observed when the browser is running and used for a real-time call. "
3347 "This flag is experimental and may be removed at any time.";
3348
Alessio Bazzica76a45022022-12-06 17:13:173349const char kWebRtcApmDownmixCaptureAudioMethodName[] =
3350 "WebRTC downmix capture audio method.";
3351const char kWebRtcApmDownmixCaptureAudioMethodDescription[] =
3352 "Override the method that the Audio Processing Module in WebRTC uses to "
3353 "downmix the captured audio to mono (when needed) during a real-time call. "
3354 "This flag is experimental and may be removed at any time.";
3355
Brett Wilsonecb80982017-07-12 20:34:513356const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
3357const char kWebrtcHwDecodingDescription[] =
3358 "Support in WebRTC for decoding video streams using platform hardware.";
3359
3360const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
3361const char kWebrtcHwEncodingDescription[] =
3362 "Support in WebRTC for encoding video streams using platform hardware.";
3363
Elad Alon85e0d0be2018-06-26 10:38:373364const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
3365const char kWebRtcRemoteEventLogDescription[] =
3366 "Allow collecting WebRTC event logs and uploading them to Crash. "
3367 "Please note that, even if enabled, this will still require "
3368 "a policy to be set, for it to have an effect.";
3369
Brett Wilsonecb80982017-07-12 20:34:513370const char kWebrtcSrtpAesGcmName[] =
3371 "Negotiation with GCM cipher suites for SRTP in WebRTC";
3372const char kWebrtcSrtpAesGcmDescription[] =
3373 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
3374
Sergey Silkinc33244f2020-01-31 17:21:303375const char kWebrtcUseMinMaxVEADimensionsName[] =
3376 "WebRTC Min/Max Video Encode Accelerator dimensions";
3377const char kWebrtcUseMinMaxVEADimensionsDescription[] =
3378 "When enabled, WebRTC will only use the Video Encode Accelerator for "
3379 "video resolutions inside those published as supported.";
3380
Reilly Grant3c560fa2021-09-25 01:27:253381const char kWebUsbDeviceDetectionName[] =
3382 "Automatic detection of WebUSB-compatible devices";
3383const char kWebUsbDeviceDetectionDescription[] =
3384 "When enabled, the user will be notified when a device which advertises "
3385 "support for WebUSB is connected. Disable if problems with USB devices are "
3386 "observed when the browser is running.";
3387
Alex Cooper01f110e2020-01-08 02:24:163388const char kWebXrForceRuntimeName[] = "Force WebXr Runtime";
3389const char kWebXrForceRuntimeDescription[] =
3390 "Force the browser to use a particular runtime, even if it would not "
3391 "usually be enabled or would otherwise not be selected based on the "
3392 "attached hardware.";
3393
3394const char kWebXrRuntimeChoiceNone[] = "No Runtime";
Alex Cooper01f110e2020-01-08 02:24:163395const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR";
Alex Cooper01f110e2020-01-08 02:24:163396
Will Cassellaa1a4d1112019-12-27 20:52:313397const char kWebXrIncubationsName[] = "WebXR Incubations";
3398const char kWebXrIncubationsDescription[] =
3399 "Enables experimental features for WebXR.";
Piotr Bialeckid77fb9c2019-04-26 17:06:243400
Brett Wilsonecb80982017-07-12 20:34:513401const char kZeroCopyName[] = "Zero-copy rasterizer";
3402const char kZeroCopyDescription[] =
3403 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:343404
Peng Huang70021682019-09-18 19:42:283405const char kEnableVulkanName[] = "Vulkan";
Sean Gilhulyab1dbc62020-01-28 22:49:473406const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend.";
Peng Huang70021682019-09-18 19:42:283407
Cheick Cisseb8f706032021-06-22 01:50:473408const char kSharedHighlightingAmpName[] = "Shared Highlighting for AMP Viewers";
3409const char kSharedHighlightingAmpDescription[] =
3410 "Enables Shared Highlighting for AMP Viwers.";
3411
Cheick Cisse006ab4e12022-06-03 17:30:053412const char kSharedHighlightingManagerName[] = "Refactoring Shared Highlighting";
3413const char kSharedHighlightingManagerDescription[] =
3414 "Refactors Shared Highlighting by centralizing the IPC calls in a Manager.";
3415
Jeffrey Cohenc4d73612022-05-04 22:37:223416const char kSharedHighlightingRefinedBlocklistName[] =
3417 "Shared Highlighting Blocklist Refinement";
3418const char kSharedHighlightingRefinedBlocklistDescription[] =
3419 "Narrow the Blocklist for enabling Shared Highlighting.";
3420
Wissem Gamracfd08da22022-05-20 00:33:593421const char kSharedHighlightingRefinedMaxContextWordsName[] =
3422 "Shared Highlighting Max Context Words Refinement";
3423const char kSharedHighlightingRefinedMaxContextWordsDescription[] =
3424 "Experiment with different Max Context Words for Shared Highlighting.";
3425
Mario Bianucci3be046eb2021-02-26 18:41:483426const char kDraw1PredictedPoint12Ms[] = "1 point 12ms ahead.";
3427const char kDraw2PredictedPoints6Ms[] = "2 points, each 6ms ahead.";
3428const char kDraw1PredictedPoint6Ms[] = "1 point 6ms ahead.";
3429const char kDraw2PredictedPoints3Ms[] = "2 points, each 3ms ahead.";
Mario Bianucci3be046eb2021-02-26 18:41:483430const char kDrawPredictedPointsDescription[] =
3431 "Draw predicted points when using the delegated ink trails API. Requires "
3432 "experimental web platform features to be enabled.";
3433const char kDrawPredictedPointsName[] = "Draw predicted delegated ink points";
3434
Daniel Vogelheim236d9a82021-04-01 15:40:533435const char kSanitizerApiName[] = "Sanitizer API";
3436const char kSanitizerApiDescription[] =
3437 "Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api";
3438
Peng Huang723f26e2021-06-04 01:55:103439const char kUsePassthroughCommandDecoderName[] =
3440 "Use passthrough command decoder";
3441const char kUsePassthroughCommandDecoderDescription[] =
3442 "Use chrome passthrough command decoder instead of validating command "
3443 "decoder.";
3444
Saifuddin Hitawala74627fe2023-02-14 20:25:453445const char kPassthroughYuvRgbConversionName[] =
3446 "Enable video YUV <-> RGB conversion through passthrough command decoder";
3447const char kPassthroughYuvRgbConversionDescription[] =
3448 "Enable YUV to RGB and RGB to YUV conversion for media clients through "
3449 "passthrough command decoder";
3450
Saifuddin Hitawala0c647802023-03-22 21:20:493451const char kUseMultiPlaneFormatForHardwareVideoName[] =
3452 "Enable multi-plane formats for hardware video decoder";
3453const char kUseMultiPlaneFormatForHardwareVideoDescription[] =
3454 "Enable single shared image and mailbox for multi-plane formats for "
3455 "hardware video decoder";
3456
Ali Beyad67fdee02022-02-12 23:54:513457const char kDurableClientHintsCacheName[] = "Persistent client hints";
3458const char kDurableClientHintsCacheDescription[] =
3459 "Persist the client hints cache beyond browser restarts.";
3460
Yoshisato Yanagisawa577d82822022-08-17 01:51:103461const char kSkipServiceWorkerFetchHandlerName[] =
3462 "Skip Service Worker Fetch Handler if skippable";
3463const char kSkipServiceWorkerFetchHandlerDescription[] =
3464 "Skips starting the service worker and run the fetch handler if the fetch "
3465 "handler is recognized as skippable.";
3466
Ari Chivukula8edcb692022-03-10 19:22:313467const char kWebSQLAccessName[] = "Allows access to WebSQL APIs";
3468const char kWebSQLAccessDescription[] =
3469 "The WebSQL API is enabled by default, but can be disabled here.";
3470
Mustafa Emre Acerc6b51352022-11-18 18:43:513471const char kUseIDNA2008NonTransitionalName[] =
3472 "Enable IDNA 2008 Non-Transitional Mode";
3473const char kUseIDNA2008NonTransitionalDescription[] =
3474 "Enables IDNA 2008 in Non-Transitional Mode in URL processing, allowing "
3475 "deviation characters in domain names.";
3476
Igor Ruvinovc0a88452022-06-03 15:26:143477#if !BUILDFLAG(IS_CHROMEOS)
3478const char kDmTokenDeletionName[] = "DMToken deletion";
3479const char kDmTokenDeletionDescription[] =
3480 "Delete the corresponding DMToken when a managed browser is deleted in "
3481 "Chrome Browser Cloud Management.";
3482#endif // !BUILDFLAG(IS_CHROMEOS)
3483
Igor Ruvinov3755731f2023-02-17 17:16:243484const char kPolicyMergeMultiSourceName[] =
3485 "Merge policies from multiple sources";
3486const char kPolicyMergeMultiSourceDescription[] =
3487 "Only merge policies that are set from multiple sources. Policies set from "
3488 "a single source will not be treated as merged and will keep their "
3489 "original source.";
3490
James Leeed090a1b2023-03-16 22:51:583491const char kEnableVariationsGoogleGroupFilteringName[] =
3492 "Enables filtering experiments by Google group membership";
3493const char kEnableVariationsGoogleGroupFilteringDescription[] =
3494 "Enables filtering of experiments by Google group membership. This feature "
3495 "is experimental and is used only for dogfooding, and only for users who "
3496 "are signed in and have Chrome Sync enabled.";
3497
Brett Wilsonff596952017-07-14 01:06:553498// Android ---------------------------------------------------------------------
3499
Xiaohan Wang55ae2c012022-01-20 21:49:113500#if BUILDFLAG(IS_ANDROID)
Brett Wilsonff596952017-07-14 01:06:553501
Amanda Lin Dietze8470942023-02-06 19:47:033502const char kAccessibilityFormControlsModeName[] =
3503 "Experimental Accessibility Mode for Form Controls only";
3504const char kAccessibilityFormControlsModeDescription[] =
3505 "Enable experimental accessibility mode to support password managers and "
3506 "form fillers when full assistive technology is not running.";
3507
Mark Schillacid9ce86c2021-09-30 16:37:533508const char kAccessibilityPageZoomName[] = "Accessibility Page Zoom";
3509const char kAccessibilityPageZoomDescription[] =
3510 "Whether the UI and underlying code for page zoom should be enabled to"
3511 " allow a user to increase/decrease the web contents zoom factor.";
3512
Shakti Sahu1c04a2872021-03-17 16:38:483513const char kAddToHomescreenIPHName[] = "Add to homescreen IPH";
3514const char kAddToHomescreenIPHDescription[] =
3515 " Shows in-product-help messages educating users about add to homescreen "
3516 "option in chrome.";
3517
Vikas Soni5463f1a2020-08-17 22:47:303518const char kAImageReaderName[] = "Android ImageReader";
3519const char kAImageReaderDescription[] =
3520 " Enables MediaPlayer and MediaCodec to use AImageReader on Android. "
3521 " This feature is only available for android P+ devices. Disabling it also "
3522 " disables SurfaceControl.";
3523
Trevor Perrierc1384bb2021-06-04 23:54:033524const char kAndroidForceAppLanguagePromptName[] =
3525 "Force second run app language prompt";
3526const char kAndroidForceAppLanguagePromptDescription[] =
3527 "When enabled the app language prompt to change the UI language will"
3528 "always be shown.";
3529
Vikas Sonif14e32c2020-08-15 06:17:223530const char kAndroidSurfaceControlName[] = "Android SurfaceControl";
3531const char kAndroidSurfaceControlDescription[] =
Vikas Soni5463f1a2020-08-17 22:47:303532 " Enables SurfaceControl to manage the buffer queue for the "
3533 " DisplayCompositor on Android. This feature is only available on "
3534 " android Q+ devices";
Vikas Sonif14e32c2020-08-15 06:17:223535
Jinsuk Kime3909a72023-03-02 19:55:083536const char kAndroidWidgetFullscreenToastName[] =
3537 "Android widget fullscreen toast";
3538const char kAndroidWidgetFullscreenToastDescription[] =
3539 "Use Android Toast widget for fullscreen notifcation UI.";
3540
Sky Malice300d5fc2023-01-12 19:37:333541const char kAndroidImprovedBookmarksName[] = "Android Visual Bookmark Manager";
3542const char kAndroidImprovedBookmarksDescription[] =
3543 "More visual changes to the bookmarks surfaces, with more thumbnails and a "
3544 "focus on search instead of folders/hierarchy";
3545
Shu Yang95506102023-01-11 19:16:323546const char kAnimatedImageDragShadowName[] =
3547 "Enable animated image drag shadow on Android.";
3548const char kAnimatedImageDragShadowDescription[] =
3549 "Animate the shadow image from its original bound to the touch point. "
3550 "Image drag on Android is available when flag touch-drag-and-context-menu "
3551 "is enabled.";
3552
Josh Simmons68325af2021-01-15 21:10:213553const char kAssistantIntentTranslateInfoName[] =
3554 "Translate info in Assistant intent";
3555const char kAssistantIntentTranslateInfoDescription[] =
3556 "Include page translation details in the Assistant voice transcription "
3557 "intent. This includes the page's URL and its original, current, and "
3558 "default target language.";
3559
Brett Wilsonff596952017-07-14 01:06:553560const char kAutofillAccessoryViewName[] =
3561 "Autofill suggestions as keyboard accessory view";
3562const char kAutofillAccessoryViewDescription[] =
3563 "Shows Autofill suggestions on top of the keyboard rather than in a "
3564 "dropdown.";
3565
Caitlin Fischer43edd90a2019-05-01 13:24:303566const char kAutofillUseMobileLabelDisambiguationName[] =
3567 "Autofill Uses Mobile Label Disambiguation";
3568const char kAutofillUseMobileLabelDisambiguationDescription[] =
3569 "When enabled, Autofill suggestions' labels are displayed using a "
3570 "mobile-friendly format.";
3571
Gang Wua7bfb5f42021-04-09 18:54:213572const char kAppMenuMobileSiteOptionName[] =
3573 "Show Mobile Site option in app menu";
3574const char kAppMenuMobileSiteOptionDescription[] =
3575 "When enabled, app menu should show 'Mobile site' when showing desktop "
3576 "site, instead of showing 'Desktop Site' with checkbox";
3577
Lijin Shen7c494d72023-01-17 23:54:553578const char kBackGestureRefactorActivityAndroidName[] =
3579 "Back Gesture Refactor (Secondary Activities)";
3580const char kBackGestureRefactorActivityAndroidDescription[] =
3581 "Enable Back Gesture Refactor for Secondary Activities to support in-app "
3582 "activity-to-activity predictive back gestures";
3583
Lijin Shence2f5722022-04-26 23:11:523584const char kBackGestureRefactorAndroidName[] = "Back Gesture Refactor";
3585const char kBackGestureRefactorAndroidDescription[] =
3586 "Enable Back Gesture Refactor.";
3587
ckitagawaf9abc39f2022-08-26 17:36:363588const char kBindingManagerConnectionLimitName[] =
3589 "Binding manager connection limit";
3590const char kBindingManagerConnectionLimitDescription[] =
3591 "When enabled, limits the number of connections the binding manager can "
3592 "hold to background renderers. This results in lower priorities for the "
3593 "least important background renderers, which may cause them to be "
3594 "reclaimed by the OS if memory is needed.";
3595
Wenyu Fuf929f732022-07-08 19:48:473596const char kCCTBrandTransparencyName[] =
3597 "Chrome Custom Tabs Brand Transparency";
3598const char kCCTBrandTransparencyDescription[] =
3599 "When enabled, CCT will show more Chrome branding information when start, "
3600 "giving user more transparency that the web page is running in Chrome.";
3601
Ramin Halavatiba7ddcc2019-11-13 06:19:283602const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode";
3603const char kCCTIncognitoDescription[] =
3604 "Enables incognito mode for Chrome Custom Tabs, on Android.";
3605
Rohit Agarwalc3973312020-11-18 14:40:233606const char kCCTIncognitoAvailableToThirdPartyName[] =
3607 "Allow third party to open Custom Tabs Incognito mode";
3608const char kCCTIncognitoAvailableToThirdPartyDescription[] =
3609 "Enabling it would allow third party apps to open incognito mode for "
3610 "Chrome Custom Tabs, on Android.";
3611
Shimi Zhangdabb3c22021-09-16 22:10:253612const char kCCTResizable90MaximumHeightName[] =
3613 "Bottom sheet Custom Tabs maximum height";
3614const char kCCTResizable90MaximumHeightDescription[] =
3615 "When enabled, the bottom sheet Custom Tabs will have maximum height 90% "
3616 "of the screen height, otherwise the maximum height is 100% of the screen "
3617 "height. In both cases, Custom Tabs will yield to the top status bar when "
3618 "at full stop";
Shimi Zhangdabb3c22021-09-16 22:10:253619const char kCCTResizableForThirdPartiesName[] =
3620 "Bottom sheet Custom Tabs (third party)";
3621const char kCCTResizableForThirdPartiesDescription[] =
3622 "Enable bottom sheet Custom Tabs for third party apps.";
Kevin Grosu617332a2022-11-22 23:24:553623const char kCCTResizableSideSheetName[] = "Side sheet Custom Tabs";
3624const char kCCTResizableSideSheetDescription[] =
3625 "Enable side sheet Custom Tabs";
Zach Katzadd35f12023-03-24 19:48:433626const char kCCTResizableSideSheetDiscoverFeedSettingsName[] =
3627 "Discover feed settings Partial Custom Tab";
3628const char kCCTResizableSideSheetDiscoverFeedSettingsDescription[] =
3629 "Enable discover feed settings Partial Custom Tabs";
Zach Katzec1cc2f2023-01-26 01:37:463630const char kCCTResizableSideSheetForThirdPartiesName[] =
3631 "Side sheet Custom Tabs (third party)";
3632const char kCCTResizableSideSheetForThirdPartiesDescription[] =
3633 "Enable side sheet Custom Tabs for third party apps.";
Kevin Grosu617332a2022-11-22 23:24:553634
Zach Katzdc587ef2022-10-28 18:35:263635const char kCCTRetainingStateInMemoryName[] =
3636 "Enable restoring of previous Custom Tab session";
3637const char kCCTRetainingStateInMemoryDescription[] =
3638 "Enables ability to fully restore a recently engaged with Custom Tab.";
Sinan Sahinc04b1c62022-07-01 18:14:023639const char kCCTRealTimeEngagementSignalsName[] =
3640 "Enable CCT real-time engagement signals.";
3641const char kCCTRealTimeEngagementSignalsDescription[] =
3642 "Enables sending real-time engagement signals (e.g. scroll) through "
3643 "CustomTabsCallback.";
Sinan Sahind9fa5c52023-03-02 02:57:043644const char kCCTRealTimeEngagementSignalsAlternativeImplName[] =
3645 "Enable alternative implementation for CCT real-time engagement signals.";
3646const char kCCTRealTimeEngagementSignalsAlternativeImplDescription[] =
3647 "Enables an alternative implementation for sending real-time engagement "
3648 "signals (e.g. scroll) through CustomTabsCallback.";
Sinan Sahinc04b1c62022-07-01 18:14:023649
Xing Liu1e6b43d2021-03-15 19:26:453650const char kChimeAlwaysShowNotificationDescription[] =
3651 "A debug flag to always show Chime notification after receiving a payload.";
3652const char kChimeAlwaysShowNotificationName[] =
3653 "Always show Chime notification";
3654
3655const char kChimeAndroidSdkDescription[] =
3656 "Enable Chime SDK to receive push notification.";
3657const char kChimeAndroidSdkName[] = "Use Chime SDK";
3658
Travis Skaref97f1fd2022-09-01 01:26:433659const char kChromeSharingCrowLaunchTabName[] =
3660 "Launch Thank Creator actions in standard tab";
3661const char kChromeSharingCrowLaunchTabDescription[] =
3662 "Launches Thank Creator actions in a traditional new tab; default is a "
3663 "custom tab. For internal debugging.";
3664
Travis Skareedcee15642021-09-16 15:49:383665const char kChromeSharingHubLaunchAdjacentName[] =
3666 "Launch new share hub actions in adjacent window";
3667const char kChromeSharingHubLaunchAdjacentDescription[] =
3668 "In multi-window mode, launches share hub actions in an adjacent window. "
3669 "For internal debugging.";
3670
David Maunder915c7ef2019-09-20 16:22:083671const char kCloseTabSuggestionsName[] = "Suggest to close Tabs";
3672const char kCloseTabSuggestionsDescription[] =
3673 "Suggests to the user to close Tabs that haven't been used beyond a "
3674 "configurable threshold or where duplicates of Tabs exist. "
3675 "The threshold is configurable.";
Richard Knoll368596e52019-08-14 09:16:283676
David Maunder8cf7fd82020-08-20 19:31:543677const char kCriticalPersistedTabDataName[] = "Enable CriticalPersistedTabData";
3678const char kCriticalPersistedTabDataDescription[] =
3679 "A new method of persisting Tab data across restarts has been devised "
3680 "and implemented. This actives the new approach.";
3681
Wenyu Fu54672f42022-09-22 17:51:513682const char kContextMenuPopupForAllScreenSizesName[] =
3683 "Context menu popup for all screen sizes";
3684const char kContextMenuPopupForAllScreenSizesDescription[] =
3685 "When disabled, context menu will be shown as pop-up window only for "
3686 "devices in tablet mode, while shown as a fullscreen dialog for mobile "
3687 "devices; when enabled, context menu will be shown as a pop-up window "
3688 "for all form factors regardless of the screen sizes.";
3689
Donn Denman19688bc2021-03-05 18:48:403690const char kContextualSearchForceCaptionName[] =
3691 "Contextual Search force a caption";
3692const char kContextualSearchForceCaptionDescription[] =
3693 "Forces a caption to always be shown in the Touch to Search Bar.";
Donn Denman4315f262019-03-02 02:47:413694
Donn Denman05a5b99b2022-07-27 23:38:443695const char kContextualSearchSuppressShortViewName[] =
3696 "Contextual Search suppress short view";
3697const char kContextualSearchSuppressShortViewDescription[] =
3698 "Contextual Search suppress when the base page view is too short";
3699
Fabio Tirelo918089a2018-10-22 21:24:083700const char kAutofillManualFallbackAndroidName[] =
3701 "Enable Autofill manual fallback for Addresses and Payments (Android)";
3702const char kAutofillManualFallbackAndroidDescription[] =
3703 "If enabled, adds toggle for addresses and payments bottom sheet to the "
3704 "keyboard accessory.";
3705
Lei Tianbd5a3bf2018-02-28 19:01:163706const char kEnableCommandLineOnNonRootedName[] =
3707 "Enable command line on non-rooted devices";
3708const char kEnableCommandLineOnNoRootedDescription[] =
3709 "Enable reading command line file on non-rooted devices (DANGEROUS).";
3710
Victor Hugo Vianna Silvabb878dea2022-10-18 10:19:043711const char kEnablePasswordsAccountStorageName[] =
3712 "Enable the account data storage for passwords";
3713const char kEnablePasswordsAccountStorageDescription[] =
3714 "Enables storing passwords in a second, Gaia-account-scoped storage for "
3715 "signed-in but not syncing users";
3716
Lei Zhang0a318af2018-11-14 02:19:463717const char kExploreSitesName[] = "Explore websites";
3718const char kExploreSitesDescription[] =
3719 "Enables portal from new tab page to explore websites.";
3720
Michael Thiessen495a0d32022-08-24 17:58:193721const char kExternalNavigationDebugLogsName[] =
3722 "External Navigation Debug Logs";
3723const char kExternalNavigationDebugLogsDescription[] =
3724 "Enables detailed logging to logcat about why Chrome is making decisions "
3725 "about whether to allow or block navigation to other apps";
3726
Shakti Sahuedcbaef2022-01-18 19:54:213727const char kFeatureNotificationGuideName[] = "Feature notification guide";
3728const char kFeatureNotificationGuideDescription[] =
3729 "Enables notifications about chrome features.";
3730
Shakti Sahu6c4afcde2022-01-31 23:03:543731const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersName[] =
3732 "Feature notification guide - Skip check for low engaged users";
3733const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersDescription[] =
3734 "Skips check for low engaged users.";
3735
Jian Lic22a3ce2021-08-31 15:46:593736const char kFeedBackToTopName[] = "Back to top of the feeds";
3737const char kFeedBackToTopDescription[] =
3738 "Enables showing a callout to help users return to the top of the feeds "
3739 "quickly.";
3740
Nick Birnie3e6ed412023-01-10 22:36:173741const char kFeedBottomSyncBannerName[] = "Show Sync Promotion";
3742const char kFeedBottomSyncBannerDescription[] =
3743 "Enables the Sync promo banner to be"
3744 " shown at bottom of Chrome Feed.";
3745
Nick Birnie7982fbe2023-03-01 22:22:523746const char kFeedBoCSigninInterstitialName[] = "Show Signin Interstitial";
3747const char kFeedBoCSigninInterstitialDescription[] =
3748 "Enables the sign in interstitial to be"
3749 " shown in a bottom sheet when triggered.";
3750
Cathy Weie5c7d612022-10-14 18:55:073751const char kFeedHeaderStickToTopName[] = "Feed header stick to top";
3752const char kFeedHeaderStickToTopDescription[] =
3753 "Stick feed header to top on scroll.";
3754
Justin DeWitt3eca4372021-09-17 19:44:523755const char kFeedLoadingPlaceholderName[] = "Feed loading placeholder";
3756const char kFeedLoadingPlaceholderDescription[] =
3757 "Enables a placeholder UI in "
3758 "the feed instead of the loading spinner at first load.";
3759
Jonathan Freedaa862a542021-09-03 17:42:253760const char kFeedStampName[] = "StAMP cards in the feed";
3761const char kFeedStampDescription[] = "Enables StAMP cards in the feed.";
3762
Ian Wells6cf75a82022-07-13 02:11:023763const char kFeedCloseRefreshName[] = "Feed-close refresh";
3764const char kFeedCloseRefreshDescription[] =
3765 "Enables scheduling a background refresh of the feed following feed use.";
3766
Jian Li20f07f592022-08-23 22:21:553767const char kFeedVideoInlinePlaybackName[] = "Feed video inline playback";
3768const char kFeedVideoInlinePlaybackDescription[] =
3769 "Enable playing feed video in inline playback mode.";
3770
Jonathan Freed4adf604f2022-08-31 17:06:143771const char kFeedDiscoFeedEndpointName[] =
3772 "Feed using the DiscoFeed backend endpoint";
3773const char kFeedDiscoFeedEndpointDescription[] =
3774 "Uses the DiscoFeed endpoint for serving the feed instead of GWS.";
3775
Fabio Tirelo86429cb2022-10-25 22:25:193776const char kHighlightManagedPrefDisclaimerAndroidName[] =
3777 "Highlight managed disclaimer for preferences";
3778const char kHighlightManagedPrefDisclaimerAndroidDescription[] =
3779 "Enables new Settings UI on Android that makes it more prominent that a "
3780 "preference is managed by the administrator or a custodian.";
3781
Jian Lie41ddcb2022-05-04 01:11:563782const char kInfoCardAcknowledgementTrackingName[] =
3783 "Info card acknowledgement tracking";
3784const char kInfoCardAcknowledgementTrackingDescription[] =
3785 "Enable acknowledgement tracking for info cards.";
3786
Jinsuk Kimfa1b7eb2021-06-30 00:04:323787const char kInstanceSwitcherName[] = "Enable instance switcher";
3788const char kInstanceSwitcherDescription[] =
3789 "Enable instance switcher dialog UI that helps users manage multiple "
3790 "instances of Chrome.";
3791
Wei-Yin Chen (陳威尹)85149442020-06-30 22:28:463792const char kInstantStartName[] = "Instant start";
Wei-Yin Chen (陳威尹)50c2f462020-05-14 07:27:423793const char kInstantStartDescription[] =
3794 "Show start surface before native library is loaded.";
3795
Ian Wells34ce1482020-04-03 17:36:163796const char kInterestFeedV2Name[] = "Interest Feed v2";
3797const char kInterestFeedV2Description[] =
3798 "Show content suggestions on the New Tab Page and Start Surface using the "
3799 "new Feed Component.";
3800
Dan Harrington4043b222021-01-15 18:33:423801const char kInterestFeedV2HeartsName[] = "Interest Feed v2 Hearts";
3802const char kInterestFeedV2HeartsDescription[] = "Enable hearts on Feedv2.";
3803
Jian Lifb04af72021-04-01 21:17:173804const char kInterestFeedV2AutoplayName[] = "Interest Feed v2 Autoplay";
3805const char kInterestFeedV2AutoplayDescription[] = "Enable autoplay on Feedv2.";
3806
Finnur Thorarinsson4e43a0852023-03-23 09:20:023807const char kMediaPickerAdoptionStudyName[] = "Android Media Picker Adoption";
3808const char kMediaPickerAdoptionStudyDescription[] =
3809 "Controls how to launch the Android Media Picker";
3810
Aishwarya Rajesh0dd71922021-07-28 20:22:383811const char kMessagesForAndroidAdsBlockedName[] = "Ads Blocked Messages UI";
3812const char kMessagesForAndroidAdsBlockedDescription[] =
3813 "When enabled, ads blocked message will use the new Messages UI.";
3814
Pavel Yatsuk358291752020-09-03 18:25:223815const char kMessagesForAndroidInfrastructureName[] = "Messages infrastructure";
3816const char kMessagesForAndroidInfrastructureDescription[] =
3817 "When enabled, will initialize Messages UI infrastructure";
Pavel Yatsukb3a7475e2021-05-10 21:20:153818
Vishwas Uppoor8031d642022-05-10 01:28:513819extern const char kMessagesForAndroidOfferNotificationName[] =
3820 "Offer Notification Messages UI";
3821extern const char kMessagesForAndroidOfferNotificationDescription[] =
3822 "When enabled, offer notification will use the new Messages UI";
3823
Lijin Shen2d61a0a32021-07-20 23:15:523824const char kMessagesForAndroidPermissionUpdateName[] =
3825 "Permission Update Messages UI";
3826const char kMessagesForAndroidPermissionUpdateDescription[] =
3827 "When enabled, permission update prompt will use the new Messages UI.";
3828
Lijin Shenba9a6b0e2021-02-18 01:59:063829const char kMessagesForAndroidPopupBlockedName[] = "Popup Blocked Messages UI";
3830const char kMessagesForAndroidPopupBlockedDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153831 "When enabled, popup blocked prompt will use the new Messages UI.";
3832
Pavel Yatsukb7307fa2021-09-15 18:02:303833const char kMessagesForAndroidPWAInstallName[] = "PWA Installation Messages UI";
3834const char kMessagesForAndroidPWAInstallDescription[] =
3835 "When enabled, PWA Installation prompt will use the new Messages UI.";
3836
Lei Zhang44abd5d22022-01-11 00:32:343837const char kMessagesForAndroidSaveCardName[] = "Save Card Messages UI";
3838const char kMessagesForAndroidSaveCardDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153839 "When enabled, save card prompt will use the new Messages UI.";
3840
Lijin Shen0e049c432022-04-05 23:12:433841const char kMessagesForAndroidStackingAnimationName[] =
3842 "Stacking Animation of Messages UI";
3843const char kMessagesForAndroidStackingAnimationDescription[] =
3844 "When enabled, Messages UI will use the new stacking animation.";
3845
Yutaka Hirano639d9742022-05-13 12:35:163846const char kNetworkServiceInProcessName[] =
3847 "Run the network service on the browser process";
3848const char kNetworkServiceInProcessDescription[] =
3849 "When enabled, the network service runs on the browser process. Otherwise, "
3850 "it runs on a dedicated process.";
3851
Salvador Guerrero4d5ff6e62022-03-24 00:03:203852const char kNotificationPermissionRationaleName[] =
3853 "Notification Permission Rationale UI";
3854const char kNotificationPermissionRationaleDescription[] =
3855 "Configure the dialog shown before requesting notification permission. "
3856 "Only works with builds targeting Android T.";
3857
Salvador Guerrero0af36992023-01-23 20:46:473858const char kNotificationPermissionRationaleBottomSheetName[] =
3859 "Notification Permission Rationale Bottom Sheet UI";
3860const char kNotificationPermissionRationaleBottomSheetDescription[] =
3861 "Enable the alternative bottom sheet UI for the notification permission "
3862 "flow. "
3863 "Only works with builds targeting Android T+.";
3864
Yafei Duan36b4b5b2018-08-07 00:40:033865const char kOfflinePagesLivePageSharingName[] =
3866 "Enables live page sharing of offline pages";
3867const char kOfflinePagesLivePageSharingDescription[] =
3868 "Enables to share current loaded page as offline page by saving as MHTML "
3869 "first.";
3870
Jordan Oroshiba244e9ff2021-02-04 22:20:393871const char kPageInfoHistoryName[] = "Page info history";
3872const char kPageInfoHistoryDescription[] =
3873 "Enable a history sub page to the page info menu, and a button to forget "
3874 "a site, removing all preferences and history.";
3875
Zaina Al-Mashni2df0e5f2023-01-20 11:09:263876const char kPageInfoAboutThisSiteImprovedBottomSheetName[] =
3877 "Page info 'About this site' improved bottomsheet";
3878const char kPageInfoAboutThisSiteImprovedBottomSheetDescription[] =
3879 "Enable an improved 'About this site' bottomsheet, which includes a "
3880 "less cluttered toolbar view and opening navigations in a new tab.";
3881
Anna Tsvirchkova0891e9da2023-03-08 12:42:093882const char kPasswordGenerationBottomSheetName[] =
3883 "Password generation bottom sheet";
3884const char kPasswordGenerationBottomSheetDescription[] =
3885 "Enabled showing the password generation bottom sheet.";
3886
Salma Elmahallawydcdfa9e2023-01-30 18:42:243887const char kPolicyLogsPageAndroidName[] = "Policy Logs Page on Android";
3888const char kPolicyLogsPageAndroidDescription[] =
3889 "Enable the new chrome://policy-logs page containing logs for debugging "
3890 "policy related issues on Android.";
3891
Shakti Sahu1f8a9422020-03-12 05:50:503892const char kQueryTilesName[] = "Show query tiles";
3893const char kQueryTilesDescription[] = "Shows query tiles in Chrome";
Shakti Sahucad2a0a2020-10-23 06:42:283894const char kQueryTilesNTPName[] = "Show query tiles in NTP";
3895const char kQueryTilesNTPDescription[] = "Shows query tiles in NTP";
Min Qineb0c2152022-08-26 19:13:123896const char kQueryTilesOnStartName[] = "Query tiles on start";
3897const char kQueryTilesOnStartDescription[] =
3898 "Show query tiles on start surface";
Shakti Sahu8fe5edd2020-05-14 18:57:133899const char kQueryTilesSingleTierName[] = "Show only one level of query tiles";
3900const char kQueryTilesSingleTierDescription[] =
3901 "Show only one level of query tiles";
Shakti Sahudfb40992020-05-12 14:54:543902const char kQueryTilesEnableQueryEditingName[] =
3903 "Query Tiles - Enable query edit mode";
3904const char kQueryTilesEnableQueryEditingDescription[] =
3905 "When a query tile is tapped, the query text will be shown in the omnibox "
3906 "and user will have a chance to edit the text before submitting";
Min Qineac94ae2020-08-14 06:38:453907const char kQueryTilesEnableTrendingName[] =
3908 "Query Tiles - Enable trending queries";
3909const char kQueryTilesEnableTrendingDescription[] =
3910 "Allow tiles of trending queries to show up in front of curated tiles";
Min Qindb99e6f2020-04-29 06:37:263911const char kQueryTilesCountryCode[] = "Country code for getting tiles";
3912const char kQueryTilesCountryCodeDescription[] =
3913 "When query tiles are enabled, this value determines tiles for which "
3914 "country should be displayed.";
3915const char kQueryTilesCountryCodeUS[] = "US";
3916const char kQueryTilesCountryCodeIndia[] = "IN";
3917const char kQueryTilesCountryCodeBrazil[] = "BR";
3918const char kQueryTilesCountryCodeNigeria[] = "NG";
3919const char kQueryTilesCountryCodeIndonesia[] = "ID";
Shakti Sahu8fe5edd2020-05-14 18:57:133920const char kQueryTilesInstantFetchName[] = "Query tile instant fetch";
Xing Liu06f2fa02020-04-30 02:45:193921const char kQueryTilesInstantFetchDescription[] =
3922 "Immediately schedule background task to fetch query tiles";
Min Qinbe050b72021-06-26 01:32:393923const char kQueryTilesRankTilesName[] = "Query Tiles - rank tiles on server";
3924const char kQueryTilesRankTilesDescription[] =
3925 "Rank tiles on server based on client context";
Min Qindb789462021-08-26 04:00:113926const char kQueryTilesSegmentationName[] =
3927 "Query Tiles - use segmentation rules";
3928const char kQueryTilesSegmentationDescription[] =
3929 "enable segmentation rules to decide whether to show query tiles";
Min Qin60ae5b82021-01-07 07:07:503930const char kQueryTilesSwapTrendingName[] =
3931 "Query Tiles - Swap trending queries";
3932const char kQueryTilesSwapTrendingDescription[] =
3933 "Swap trending queries if user didn't click on them after several "
3934 "impressions";
Min Qindb99e6f2020-04-29 06:37:263935
Caroline Risingdb7df182021-01-11 19:49:143936const char kReadLaterFlagId[] = "read-later";
3937const char kReadLaterName[] = "Reading List";
3938const char kReadLaterDescription[] =
3939 "Allow users to save tabs for later. Enables a new button and menu for "
3940 "accessing tabs saved for later.";
3941
Brett Wilsonff596952017-07-14 01:06:553942const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
3943const char kReaderModeHeuristicsDescription[] =
3944 "Determines what pages the Reader Mode infobar is shown on.";
3945const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
3946const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
3947const char kReaderModeHeuristicsAllArticles[] = "All articles";
3948const char kReaderModeHeuristicsAlwaysOff[] = "Never";
3949const char kReaderModeHeuristicsAlwaysOn[] = "Always";
3950
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:183951const char kReaderModeInCCTName[] = "Reader Mode in CCT";
3952const char kReaderModeInCCTDescription[] =
3953 "Open Reader Mode in Chrome Custom Tabs.";
3954
Xing Liub9070262021-01-07 20:52:163955const char kReadLaterReminderNotificationName[] =
3956 "Read later reminder notification";
3957const char kReadLaterReminderNotificationDescription[] =
3958 "Enables read later weekly reminder notification.";
3959
Ioana Pandele9fc19b2f2020-01-23 22:16:503960const char kRecoverFromNeverSaveAndroidName[] =
3961 "UI to recover from never save passwords on Android";
3962const char kRecoverFromNeverSaveAndroidDescription[] =
3963 "Enables showing UI which allows for easy reverting of the decision to "
3964 "never save passwords on a certain webiste";
3965
Victor Tan5980f4e52022-11-11 20:21:453966const char kReduceUserAgentAndroidVersionDeviceModelName[] =
3967 "Reduce the device model and Android version in the andriod User-Agent "
3968 "string";
3969const char kReduceUserAgentAndroidVersionDeviceModelDescription[] =
3970 "Enables reducing the device model and Android version in the andriod "
3971 "User-Agent string. The device model will be reported as `K` and the "
3972 "Android version will be reported as a static `10` string.";
3973
David Trainora38e60e2020-08-04 23:43:253974const char kReengagementNotificationName[] =
3975 "Enable re-engagement notifications";
3976const char kReengagementNotificationDescription[] =
3977 "Enables Chrome to use the in-product help system to decide when "
3978 "to show re-engagement notifications.";
3979
Donn Denmanc42123c2020-03-19 01:44:243980const char kRelatedSearchesName[] =
3981 "Enables an experiment for Related Searches on Android";
3982const char kRelatedSearchesDescription[] =
Donn Denman15522f42021-02-09 22:49:493983 "Enables requesting related searches suggestions. These will be requested "
3984 "but not shown unless the UI flag is also enabled.";
3985
Shu Yangd1d8f6b82022-06-30 18:46:283986const char kRequestDesktopSiteAdditionsName[] =
3987 "Secondary settings for request desktop site on Android.";
3988const char kRequestDesktopSiteAdditionsDescription[] =
3989 "Secondary options in `Site settings` to request the desktop version of "
3990 "websites based on external display or peripheral.";
3991
Aishwarya Rajesh3d0bd212022-07-22 22:48:313992const char kRequestDesktopSiteDefaultsName[] =
3993 "Default settings for request desktop site on Android.";
3994const char kRequestDesktopSiteDefaultsDescription[] =
3995 "Request the desktop version of websites by default based on device "
3996 "conditions.";
3997
Aishwarya Rajeshed9865f82022-09-12 22:46:573998const char kRequestDesktopSiteDefaultsDowngradeName[] =
3999 "Downgrade default settings for request desktop site on Android.";
4000const char kRequestDesktopSiteDefaultsDowngradeDescription[] =
4001 "Disable the request desktop site global setting if it was enabled by "
4002 "default based on device conditions.";
4003
Shu Yang6673a042023-02-28 00:27:364004const char kRequestDesktopSiteDefaultsLoggingName[] =
4005 "Silently report crashes for debugging request desktop site on Android.";
4006const char kRequestDesktopSiteDefaultsLoggingDescription[] =
4007 "Silently report crashes with display spec when ineligible device shows "
4008 "up in cohort or device screen size exceeds threshold.";
4009
Aishwarya Rajesh63e60f72022-08-26 00:34:194010const char kRequestDesktopSiteExceptionsDowngradeName[] =
4011 "Downgrade request desktop site exceptions on Android.";
4012const char kRequestDesktopSiteExceptionsDowngradeDescription[] =
4013 "Downgrade request desktop site domain level settings to tab level "
4014 "settings.";
4015
Shu Yanga2ec2d12021-11-15 22:13:154016const char kRequestDesktopSiteExceptionsName[] =
4017 "Per-site setting to request desktop site on Android.";
4018const char kRequestDesktopSiteExceptionsDescription[] =
4019 "An option in `Site settings` to request the desktop version of websites "
Shu Yangd1d8f6b82022-06-30 18:46:284020 "based on site level settings.";
Shu Yanga2ec2d12021-11-15 22:13:154021
Aishwarya Rajesha327b162023-01-06 01:34:424022const char kRequestDesktopSitePerSiteIphName[] =
4023 "Contextual help for request desktop site site-level settings on Android.";
4024const char kRequestDesktopSitePerSiteIphDescription[] =
4025 "Provide in-product help for desktop site site-level settings.";
4026
Aishwarya Rajesh7b43f262022-11-02 20:22:044027const char kRequestDesktopSiteZoomName[] =
4028 "Default zoom for request desktop site on Android.";
4029const char kRequestDesktopSiteZoomDescription[] =
4030 "Apply default page zoom on the desktop version of websites.";
4031
Illia Klimov352f34a2022-08-18 13:45:134032const char kRevokeNotificationsPermissionIfDisabledOnAppLevelName[] =
4033 "Revoke site-level notification permission on Android";
4034const char kRevokeNotificationsPermissionIfDisabledOnAppLevelDescription[] =
4035 "Allow revoking site-level notification permission if Chrome has no "
4036 "app-level notification permission on Android.";
4037
Henrique Nakashimaaa6c3142022-07-14 21:53:114038const char kSafeModeForCachedFlagsName[] = "Safe Mode for Cached Flags";
4039const char kSafeModeForCachedFlagsDescription[] =
4040 "Attempts recovery from startup crash loops caused by a bad field trial "
4041 "by rolling back to previous known safe flag values.";
4042
Fabio Tirelo343dcc82023-03-13 16:34:104043extern const char kSafeSitesFilterBehaviorPolicyAndroidName[] =
4044 "Allow SafeSitesFilterBehavior policy on Android";
4045extern const char kSafeSitesFilterBehaviorPolicyAndroidDescription[] =
4046 "Allows the SafeSitesFilterBehavior policy to be applied on Android.";
4047
Kenechi Okoyeff5bd5f2022-06-13 20:47:534048const char kScreenshotsForAndroidV2Name[] = "Screenshots for Android V2";
4049const char kScreenshotsForAndroidV2Description[] =
4050 "Adds functionality to the share screenshot panel within Chrome Browser"
4051 " on Android";
4052
spdonghaoe4b51242022-03-14 23:06:184053const char kShowScrollableMVTOnNTPAndroidName[] = "Show scrollable MVT on NTP";
4054const char kShowScrollableMVTOnNTPAndroidDescription[] =
4055 "Enable showing the scrollable most visited tiles on NTP.";
4056
Liquan (Max) Guf2834612021-08-31 14:49:164057const char kSecurePaymentConfirmationAndroidName[] =
4058 "Secure Payment Confirmation on Android";
4059const char kSecurePaymentConfirmationAndroidDescription[] =
4060 "Enables Secure Payment Confirmation on Android.";
4061
Elly Fong-Jones6fde14c2022-01-05 18:10:584062const char kSendTabToSelfV2Name[] = "Send tab to self 2.0";
4063const char kSendTabToSelfV2Description[] =
4064 "Enables new received tab "
4065 "UI shown next to the profile icon instead of using system notifications.";
4066
Brett Wilsonff596952017-07-14 01:06:554067const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
4068const char kSetMarketUrlForTestingDescription[] =
4069 "When enabled, sets the market URL for use in testing the update menu "
4070 "item.";
4071
Wenyu Fu2518c9802023-02-08 23:52:264072const char kShareSheetMigrationAndroidName[] = "Share sheet refactor Android";
4073const char kShareSheetMigrationAndroidDescription[] =
4074 "When enabled, use the Android OS share sheet.";
4075
Alex Moshchuk07e1bb42019-03-08 04:44:084076const char kSiteIsolationForPasswordSitesName[] =
4077 "Site Isolation For Password Sites";
4078const char kSiteIsolationForPasswordSitesDescription[] =
4079 "Security mode that enables site isolation for sites based on "
4080 "password-oriented heuristics, such as a user typing in a password.";
4081
Bo Liude36ab62023-02-24 20:08:294082const char kSlimCompositorName[] = "Slim browser compositor";
4083const char kSlimCompositorDescription[] = "Use new simpler browser compositor";
4084
Hung Vuc394db62020-08-21 21:26:524085const char kSmartSuggestionForLargeDownloadsName[] =
4086 "Smart suggestion for large downloads";
4087const char kSmartSuggestionForLargeDownloadsDescription[] =
4088 "Smart suggestion that offers download locations for large files.";
4089
Ioana Pandele9fc19b2f2020-01-23 22:16:504090const char kStartSurfaceAndroidName[] = "Start Surface";
4091const char kStartSurfaceAndroidDescription[] =
4092 "Enable showing the start surface when launching Chrome via the "
4093 "launcher.";
4094
Xi Han8e1b2452022-05-26 15:43:164095const char kFeedPositionAndroidName[] = "Feed Position";
4096const char kFeedPositionAndroidDescription[] =
4097 "Enable pushing down or pulling up of Feeds on NTP";
4098
Xi Hanfe309c02022-06-07 16:57:264099const char kSearchResumptionModuleAndroidName[] = "Search Resumption Module";
4100const char kSearchResumptionModuleAndroidDescription[] =
4101 "Enable showing search suggestions on NTP";
4102
Andrey Zaytsev5794f892022-07-14 16:16:554103const char kSiteDataImprovementsName[] = "Site data improvements";
4104const char kSiteDataImprovementsDescription[] =
4105 "Improved 'All sites' and 'Site settings' pages on Android.";
4106
spdonghao86345d52022-09-20 20:13:154107const char kStartSurfaceDisabledFeedImprovementName[] =
4108 "Start Surface Disabled Feed Improvement";
4109const char kStartSurfaceDisabledFeedImprovementDescription[] =
4110 "Enable improving Start surface when Feed is disabled";
4111
Xinyi Ji411f38f2023-02-10 23:32:504112const char kStartSurfaceOnTabletName[] = "Start Surface On Tablet";
4113const char kStartSurfaceOnTabletDescription[] =
4114 "Enable Start Surface On Tablet.";
4115
spdonghao921dbdf42022-07-12 19:02:344116const char kStartSurfaceRefactorName[] = "Start Surface Refactor";
4117const char kStartSurfaceRefactorDescription[] =
4118 "Enable splitting Tab switcher from Start surface";
4119
Xinyi Jie3289432023-03-08 20:42:224120const char kStartSurfaceWithAccessibilityName[] =
4121 "Start Surface With Accessibility";
4122const char kStartSurfaceWithAccessibilityDescription[] =
4123 "Enable Start Surface with Accessibility.";
4124
Lei Zhang0a318af2018-11-14 02:19:464125const char kStrictSiteIsolationName[] = "Strict site isolation";
4126const char kStrictSiteIsolationDescription[] =
4127 "Security mode that enables site isolation for all sites (SitePerProcess). "
4128 "In this mode, each renderer process will contain pages from at most one "
4129 "site, using out-of-process iframes when needed. "
4130 "Check chrome://process-internals to see the current isolation mode. "
4131 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
4132 "default. Here, 'Disabled' is a legacy value that actually means "
4133 "'Default,' in which case site isolation may be already enabled based on "
4134 "platform, enterprise policy, or field trial. See also "
4135 "#site-isolation-trial-opt-out for how to disable site isolation for "
4136 "testing.";
4137
Alex Mitrac4bcea22023-02-09 11:10:154138const char kStylusRichGesturesName[] = "Stylus rich gestures";
4139const char kStylusRichGesturesDescription[] =
4140 "Enable rich gestures for stylus which can be used to modify text in "
4141 "editable web content.";
4142
Sirisha Kavuluru003e0962021-12-08 21:40:304143const char kTabGroupsForTabletsName[] = "Tab groups on tablets";
4144const char kTabGroupsForTabletsDescription[] = "Enable tab groups on tablets.";
4145
Sirisha Kavuluru0ccccae2022-01-27 21:37:594146const char kTabStripImprovementsAndroidName[] =
4147 "Tab strip improvements for Android.";
4148const char kTabStripImprovementsAndroidDescription[] =
4149 "Enables scrollable tab strip with tab group indicators.";
4150
Sirisha Kavuluru263350ba2022-09-08 21:40:214151const char kDiscoverFeedMultiColumnAndroidName[] =
4152 "Multi-column Discover feed Android.";
4153const char kDiscoverFeedMultiColumnAndroidDescription[] =
Sirisha Kavulurue968d502022-10-27 19:37:404154 "Enables single or multi-column Discover feed based on screen width on "
Sirisha Kavuluru263350ba2022-09-08 21:40:214155 "Android.";
4156
Zhe Li5d302c82022-10-12 16:56:544157const char kTabStripRedesignAndroidName[] = "Tab Strip Redesign Android.";
4158const char kTabStripRedesignAndroidDescription[] =
4159 "Enabled Tab Strip Redesign on Android - A visual redesign of Clank Tab "
4160 "Strip that is consistent with GM3.";
4161
Sirisha Kavulurue968d502022-10-27 19:37:404162const char kFoldableJankFixAndroidName[] = "Fix for jank seen on foldables.";
4163const char kFoldableJankFixAndroidDescription[] =
4164 "Enables fix for jank seen during fold to unfold transition on foldables "
4165 "with Android 12+";
4166
Neil Coronado97e135512023-01-11 20:21:094167const char kBaselineGM3SurfaceColorsName[] = "Baseline GM3 Surface Colors";
4168const char kBaselineGM3SurfaceColorsDescription[] =
4169 "Updates baseline surface colors to match the GM3 formula.";
4170
Mustaq Ahmeda130fec2022-02-09 19:03:264171const char kTouchDragAndContextMenuName[] =
4172 "Simultaneous touch drag and context menu";
4173const char kTouchDragAndContextMenuDescription[] =
4174 "Enables touch dragging and a context menu to start simultaneously, with"
4175 "the assumption that the menu is non-modal.";
4176
Scott Littlec0f9a472022-03-23 19:23:224177const char kTranslateMessageUIName[] = "Translate Message UI";
4178const char kTranslateMessageUIDescription[] =
4179 "Controls whether the Translate Message UI will be shown instead of the "
4180 "Translate InfoBar.";
4181
Brett Wilsonff596952017-07-14 01:06:554182const char kUpdateMenuBadgeName[] = "Force show update menu badge";
4183const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:444184 "When enabled, a badge will be shown on the app menu button if the update "
4185 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:554186
4187const char kUpdateMenuItemCustomSummaryDescription[] =
4188 "When this flag and the force show update menu item flag are enabled, a "
4189 "custom summary string will be displayed below the update menu item.";
4190const char kUpdateMenuItemCustomSummaryName[] =
4191 "Update menu item custom summary";
4192
Tommy Nyquist3c02e592018-10-18 23:36:444193const char kUpdateMenuTypeName[] =
4194 "Forces the update menu type to a specific type";
4195const char kUpdateMenuTypeDescription[] =
4196 "When set, forces the update type to be a specific one, which impacts "
Tommy Nyquistb0f8692e2021-10-15 19:13:054197 "the app menu badge and menu item for updates.";
Tommy Nyquist3c02e592018-10-18 23:36:444198const char kUpdateMenuTypeNone[] = "None";
4199const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
4200const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Brett Wilsonff596952017-07-14 01:06:554201
Tommy Nyquist5b7ac1a02022-08-16 16:56:004202const char kOmahaMinSdkVersionAndroidName[] =
4203 "Forces the minumum Android SDK version to a particular value.";
4204const char kOmahaMinSdkVersionAndroidDescription[] =
4205 "When set, the minimum Android minimum SDK version is set to a particular "
4206 "value which impact the app menu badge, menu items, and settings about "
4207 "screen regarding whether Chrome can be updated.";
4208const char kOmahaMinSdkVersionAndroidMinSdk1Description[] = "Minimum SDK = 1";
4209const char kOmahaMinSdkVersionAndroidMinSdk1000Description[] =
4210 "Minimum SDK = 1000";
4211
Lei Zhang44abd5d22022-01-11 00:32:344212const char kUseRealColorSpaceForAndroidVideoName[] =
Vasiliy Telezhnikov3ec05cf2021-10-08 13:59:424213 "Use color space from MediaCodec";
Lei Zhang44abd5d22022-01-11 00:32:344214const char kUseRealColorSpaceForAndroidVideoDescription[] =
Vasiliy Telezhnikov3ec05cf2021-10-08 13:59:424215 "When enabled video will use real color space instead of srgb.";
4216
Shakti Sahu2741f8d2020-08-14 03:38:364217const char kVideoTutorialsName[] = "Enable video tutorials";
4218const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome";
Shakti Sahu607d9cd2020-10-22 01:10:104219const char kVideoTutorialsInstantFetchName[] =
4220 "Video tutorials fetch on startup";
4221const char kVideoTutorialsInstantFetchDescription[] =
4222 "Fetch video tutorials on startup";
Shakti Sahu2741f8d2020-08-14 03:38:364223
bttk8031f3fb2021-02-25 20:21:244224const char kAdaptiveButtonInTopToolbarName[] = "Adaptive button in top toolbar";
4225const char kAdaptiveButtonInTopToolbarDescription[] =
4226 "Enables showing an adaptive action button in the top toolbar";
Salvador Guerrerob5d9c762023-03-22 21:24:034227
Salvador Guerreroa071de302023-03-18 00:34:274228const char kAdaptiveButtonInTopToolbarTranslateName[] =
4229 "Adaptive button in top toolbar - Translate button";
4230const char kAdaptiveButtonInTopToolbarTranslateDescription[] =
4231 "Enables a translate button in the top toolbar. Must be selected in "
4232 "Settings > Toolbar Shortcut.";
Salvador Guerrerob5d9c762023-03-22 21:24:034233const char kAdaptiveButtonInTopToolbarAddToBookmarksName[] =
4234 "Adaptive button in top toolbar - Add to bookmarks button";
4235const char kAdaptiveButtonInTopToolbarAddToBookmarksDescription[] =
4236 "Enables an add to bookmarks button in the top toolbar. Must be selected "
4237 "in "
4238 "Settings > Toolbar Shortcut.";
4239
bttk74acf1b2021-05-19 20:20:594240const char kAdaptiveButtonInTopToolbarCustomizationName[] =
4241 "Adaptive button in top toolbar customization";
4242const char kAdaptiveButtonInTopToolbarCustomizationDescription[] =
4243 "Enables UI for customizing the adaptive action button in the top toolbar";
Josh Simmons68941d122020-11-11 02:49:044244
Jinsuk Kim9adece12023-02-17 15:48:494245const char kUseToastManagerName[] = "Use Toast manager";
4246const char kUseToastManagerDescription[] =
4247 "Use Toast manager for queueing and managing Android Toast UI.";
4248
Carlos Knippschild0cf5a072020-12-01 00:15:534249const char kWebFeedName[] = "Web Feed";
4250const char kWebFeedDescription[] =
4251 "Allows users to keep up with and consume web content.";
4252
Pete Williamson55cbb162022-04-09 02:41:524253const char kWebFeedAwarenessName[] = "Web Feed Awareness";
4254const char kWebFeedAwarenessDescription[] =
4255 "Helps the user discover the web feed.";
4256
Pete Williamson06a50ba2022-03-10 02:08:534257const char kWebFeedOnboardingName[] = "Web Feed Onboarding";
4258const char kWebFeedOnboardingDescription[] =
Pete Williamson55cbb162022-04-09 02:41:524259 "Helps the user understand how to use the web feed.";
Pete Williamson06a50ba2022-03-10 02:08:534260
Cathy Lie949b3c2021-09-10 20:15:454261const char kWebFeedSortName[] = "Web Feed Sort";
4262const char kWebFeedSortDescription[] =
4263 "Allows users to sort their web content in the web feed. "
4264 "Only works if Web Feed is also enabled.";
4265
Alex Cooper5fca205f2023-03-20 23:13:274266const char kWebXrSharedBuffersName[] = "WebXR Shared Buffers";
4267const char kWebXrSharedBuffersDescription[] =
4268 "Toggles whether or not WebXR attempts to use SharedBuffers for moving "
4269 "textures from the device to the renderer. When this flag is set to either "
4270 "enabled or default SharedBuffer support will be dependent on what the "
4271 "device can actually support.";
4272
Justin DeWitt83faf9d12020-12-17 23:18:034273const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting";
4274const char kXsurfaceMetricsReportingDescription[] =
4275 "Allows metrics reporting state to be passed to Xsurface";
4276
Anna Tsvirchkova94fecb5f2022-04-14 10:34:044277const char kPasswordEditDialogWithDetailsName[] =
4278 "Password edit dialog with details UI";
4279const char kPasswordEditDialogWithDetailsDescription[] =
4280 "Enables UI which shows the dialog after clicking on save/update password"
4281 " with the functionality to choose user account and edit the password.";
4282
liyanbo.monster41ebdd12022-06-30 04:32:324283const char kEnableAndroidGamepadVibrationName[] = "Gamepad vibration";
4284const char kEnableAndroidGamepadVibrationDescription[] =
4285 "Enables the ability to play vibration effects on supported gamepads.";
4286
Wissem Gamra2a91d862022-08-17 18:17:224287const char kCormorantName[] = "Cormorant";
4288const char kCormorantDescription[] = "Enables the experimental Cormorant UI.";
4289
Brett Wilson7b44537e2017-08-18 01:38:284290// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:554291
Xiaohan Wang55ae2c012022-01-20 21:49:114292#else // BUILDFLAG(IS_ANDROID)
brettw5f9c1642017-05-14 17:12:484293
echo linkerb7f43382022-02-10 23:20:344294const char kAppManagementAppDetailsName[] =
4295 "Enable App Details in App Management.";
4296const char kAppManagementAppDetailsDescription[] =
4297 "Show app details on an app's App Management page.";
4298
Lei Zhang1a6fd01b2021-03-24 17:03:484299const char kAllowAllSitesToInitiateMirroringName[] =
Takumi Fujimotobf466ac2020-08-18 20:55:154300 "Allow all sites to initiate mirroring";
Lei Zhang1a6fd01b2021-03-24 17:03:484301const char kAllowAllSitesToInitiateMirroringDescription[] =
Takumi Fujimotobf466ac2020-08-18 20:55:154302 "When enabled, allows all websites to request to initiate tab mirroring "
4303 "via Presentation API. Requires #cast-media-route-provider to also be "
4304 "enabled";
4305
mark a. foltz8d3e26ed2023-03-17 17:46:574306const char kMediaRouterOtrInstanceName[] =
4307 "Create a separate Media Router instance for off-the-record "
4308 "profiles.";
4309const char kMediaRouterOtrInstanceDescription[] =
4310 "When enabled, a separate Media Router instance will be created for "
4311 "off-the-record (\"incognito\") profiles.";
4312
Charles Meng17ba75d2022-08-23 18:45:284313extern const char kBatterySaverModeAvailableName[] =
4314 "Enable the battery saver mode feature in the settings";
4315extern const char kBatterySaverModeAvailableDescription[] =
4316 "When enabled, shows the battery section in the performance settings page";
4317
Anthony Cuie4109852022-07-27 19:01:014318const char kCopyLinkToTextName[] = "Copy Link To Text";
4319const char kCopyLinkToTextDescription[] =
4320 "Adds an item to the context menu to allow a user to copy a link to the "
4321 "page with the selected text highlighted.";
4322
4323const char kDesktopPartialTranslateName[] = "Desktop Partial Translate";
4324const char kDesktopPartialTranslateDescription[] =
4325 "Enables the Partial Translate feature on Desktop, which allows users to "
4326 "translate text selections on the page through the right click context "
4327 "menu.";
4328
evliu467c11b82020-11-17 01:29:304329const char kEnableAccessibilityLiveCaptionName[] = "Live Caption";
4330const char kEnableAccessibilityLiveCaptionDescription[] =
4331 "Enables the live caption feature which generates captions for "
Katie Df558c1a2020-04-21 20:33:594332 "media playing in Chrome. Turn the feature on in "
4333 "chrome://settings/accessibility.";
4334
Jocelyn Tran48b694aa2023-03-03 21:00:114335const char kReadAnythingName[] = "Reading Mode";
Abigail Kleincef69482023-01-24 22:14:374336const char kReadAnythingDescription[] =
Jocelyn Tran48b694aa2023-03-03 21:00:114337 "Enables the Reading Mode feature which generates a reader-friendly view "
4338 "of web pages. Open the side panel and select Reading Mode to try the "
Abigail Kleincef69482023-01-24 22:14:374339 "feature.";
4340
Jocelyn Tran48b694aa2023-03-03 21:00:114341const char kReadAnythingWithScreen2xName[] = "Reading Mode with Screen2x";
Abigail Kleincef69482023-01-24 22:14:374342const char kReadAnythingWithScreen2xDescription[] =
Jocelyn Tran48b694aa2023-03-03 21:00:114343 "Have Reading Mode use a local machine learning model for web page "
Abigail Kleincef69482023-01-24 22:14:374344 "distillation.";
4345
Jack Hsieh1e6d84a2022-07-01 16:18:574346const char kEnableWebHidOnExtensionServiceWorkerName[] =
4347 "Enable WebHID on extension service workers";
4348const char kEnableWebHidOnExtensionServiceWorkerDescription[] =
4349 "When enabled, WebHID API is available on extension service workers.";
4350
John Williamse5a683b2020-07-28 03:01:484351const char kGlobalMediaControlsCastStartStopName[] =
4352 "Global media controls control Cast start/stop";
4353const char kGlobalMediaControlsCastStartStopDescription[] =
4354 "Allows global media controls to control when a Cast session is started "
4355 "or stopped instead of relying on the Cast dialog.";
4356
Charles Meng17ba75d2022-08-23 18:45:284357extern const char kHighEfficiencyModeAvailableName[] =
4358 "Enable the high efficiency mode feature in the settings";
4359extern const char kHighEfficiencyModeAvailableDescription[] =
4360 "When enabled, shows the performance section in the performance settings "
4361 "page";
4362
Anthony Vallee-Dubois3d3039fb2023-03-17 16:11:154363extern const char kHeuristicMemorySaverName[] =
4364 "Enable the heuristics-based policy for Memory Saver Mode.";
4365extern const char kHeuristicMemorySaverDescription[] =
4366 "When enabled, Memory Saver will take multiple signals into account before "
4367 "discarding a tab rather than doing it after a fixed amount of time in the "
4368 "background.";
4369
Richard Knoll7b293562021-07-08 08:49:064370const char kMuteNotificationSnoozeActionName[] =
4371 "Snooze action for mute notifications";
4372const char kMuteNotificationSnoozeActionDescription[] =
4373 "Adds a Snooze action to mute notifications shown while sharing a screen.";
4374
Esmael El-Moslimanyf85849d2021-01-15 02:18:104375const char kNtpCacheOneGoogleBarName[] = "Cache OneGoogleBar";
4376const char kNtpCacheOneGoogleBarDescription[] =
4377 "Enables using the OneGoogleBar cached response in chrome://new-tab-page, "
4378 "when available.";
4379
Paul Adedeji1ed53002022-06-13 20:15:304380const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module";
4381const char kNtpChromeCartModuleDescription[] =
4382 "Shows the chrome cart module on the New Tab Page.";
Tibor Goldschwendt16a63cb2020-08-04 19:08:154383
Roman Arora201df092022-10-20 16:53:514384const char kNtpComprehensiveThemeRealboxName[] =
4385 "NTP Comprehensive Theme Realbox";
4386const char kNtpComprehensiveThemeRealboxDescription[] =
4387 "Applies theme based colors to the NTP Realbox element";
4388
Roman Arora32162da2022-10-19 22:26:154389const char kNtpComprehensiveThemingName[] = "NTP Comprehensive Theming";
4390const char kNtpComprehensiveThemingDescription[] =
4391 "Applies theme based colors across various NTP elements";
4392
Yo Wakitadcd38802022-10-12 17:27:074393const char kNtpDesktopLensName[] = "NTP Desktop Lens Entrypoint";
4394const char kNtpDesktopLensDescription[] =
4395 "Shows a Lens entrypoint and upload dialog in desktop NTP when enabled.";
4396
Andre Vincent60a5c5d2020-12-24 02:53:014397const char kNtpDriveModuleName[] = "NTP Drive Module";
4398const char kNtpDriveModuleDescription[] =
4399 "Shows the Google Drive module on the New Tab Page";
4400
Paul Adedeji680466942022-01-13 22:10:504401#if !defined(OFFICIAL_BUILD)
4402const char kNtpDummyModulesName[] = "NTP Dummy Modules";
4403const char kNtpDummyModulesDescription[] =
4404 "Adds dummy modules to New Tab Page when 'NTP Modules Redesigned' is "
4405 "enabled.";
4406#endif
4407
Roman Arorac7579c92023-02-27 22:17:174408const char kNtpHistoryClustersModuleName[] = "NTP Journeys Module";
4409const char kNtpHistoryClustersModuleDescription[] =
4410 "Shows the Journeys module on the New Tab Page.";
4411
Paul Adedeji1ed53002022-06-13 20:15:304412const char kNtpMiddleSlotPromoDismissalName[] =
4413 "NTP Middle Slot Promo Dismissal";
4414const char kNtpMiddleSlotPromoDismissalDescription[] =
4415 "Allows middle slot promo to be dismissed from New Tab Page until "
4416 "new promo message is populated.";
Rohit Bhatia34189362021-09-04 03:55:204417
Lydia Lam44eea142021-06-10 01:19:004418const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop";
4419const char kNtpModulesDragAndDropDescription[] =
4420 "Enables modules to be reordered via dragging and dropping on the "
4421 "New Tab Page.";
4422
Paul Adedejid25542d32022-03-09 03:06:374423const char kNtpModulesFirstRunExperienceName[] =
4424 "NTP Modules First Run Experience";
4425const char kNtpModulesFirstRunExperienceDescription[] =
4426 "Shows first run experience for Modular NTP Desktop v1.";
4427
Tibor Goldschwendtf9501a62023-03-23 03:11:194428const char kNtpModulesHeaderIconName[] = "NTP Modules Header Icon";
4429const char kNtpModulesHeaderIconDescription[] =
4430 "Shows icons in NTP module headers.";
4431
Paul Adedeji57933b82021-12-07 02:19:044432const char kNtpModulesRedesignedLayoutName[] = "Ntp Modules Redesigned Layout";
4433const char kNtpModulesRedesignedLayoutDescription[] =
4434 "Changes the layout of modules on New Tab Page";
4435
Paul Adedeji1ed53002022-06-13 20:15:304436const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned";
4437const char kNtpModulesRedesignedDescription[] =
4438 "Shows the redesigned modules on the New Tab Page.";
4439
4440const char kNtpPhotosModuleName[] = "NTP Photos Module";
4441const char kNtpPhotosModuleDescription[] =
4442 "Shows the Google Photos module on the New Tab Page";
4443
4444const char kNtpPhotosModuleOptInArtWorkName[] =
4445 "NTP Photos Module Opt In ArtWork";
4446const char kNtpPhotosModuleOptInArtWorkDescription[] =
4447 "Determines the art work in the NTP Photos Opt-In card";
4448
4449const char kNtpPhotosModuleOptInTitleName[] = "NTP Photos Module Opt In Title";
4450const char kNtpPhotosModuleOptInTitleDescription[] =
4451 "Determines the title of the NTP Photos Opt-In card";
4452
4453const char kNtpPhotosModuleSoftOptOutName[] = "NTP Photos Module Soft Opt-Out";
4454const char kNtpPhotosModuleSoftOptOutDescription[] =
4455 "Enables soft opt-out option in Photos opt-in card";
4456
Marlon Facey86f579482021-12-15 00:05:194457const char kNtpRealboxMatchOmniboxThemeName[] =
4458 "NTP Realbox Matches Omnibox Theme";
4459const char kNtpRealboxMatchOmniboxThemeDescription[] =
4460 "NTP Realbox matches the Omnibox theme when enabled.";
4461
Marlon Faceya00e2f92022-01-27 23:04:094462const char kNtpRealboxMatchSearchboxThemeName[] =
4463 "NTP Realbox Matches Searchbox Theme";
4464const char kNtpRealboxMatchSearchboxThemeDescription[] =
Marlon Facey4a2c2072022-09-26 23:24:534465 "Makes NTP Realbox drop shadow match that of the Searchbox when enabled.";
Marlon Faceya00e2f92022-01-27 23:04:094466
Marlon Facey904d12442021-09-02 23:02:244467const char kNtpRealboxPedalsName[] = "NTP Realbox Pedals";
4468const char kNtpRealboxPedalsDescription[] =
4469 "Shows pedals in the NTP Realbox when enabled.";
4470
Marlon Facey4a2c2072022-09-26 23:24:534471const char kNtpRealboxRoundedCornersName[] = "NTP Realbox Rounded Corners";
4472const char kNtpRealboxRoundedCornersDescription[] =
4473 "Make NTP realbox dropdown corners match that of the Searchbox.";
4474
Marlon Facey94eac62a02021-12-15 01:16:374475const char kNtpRealboxUseGoogleGIconName[] = "NTP Realbox Google G Icon";
4476const char kNtpRealboxUseGoogleGIconDescription[] =
4477 "Shows Google G icon "
4478 "instead of Search Loupe in realbox when enabled";
4479
Paul Adedeji1ed53002022-06-13 20:15:304480const char kNtpRecipeTasksModuleName[] = "NTP Recipe Tasks Module";
4481const char kNtpRecipeTasksModuleDescription[] =
4482 "Shows the recipe tasks module on the New Tab Page.";
4483
Tibor Goldschwendta82f86c2023-03-14 00:26:514484const char kNtpReducedLogoSpaceName[] = "NTP Reduced Logo Space";
4485const char kNtpReducedLogoSpaceDescription[] =
4486 "Reduces space the logo fills up vertically.";
4487
Paul Adedeji1ed53002022-06-13 20:15:304488const char kNtpSafeBrowsingModuleName[] = "NTP Safe Browsing Module";
4489const char kNtpSafeBrowsingModuleDescription[] =
4490 "Shows the safe browsing module on the New Tab Page.";
4491
Tibor Goldschwendteec42922023-03-22 18:54:544492const char kNtpSingleRowShortcutsName[] = "NTP Single Row Shortcuts";
4493const char kNtpSingleRowShortcutsDescription[] =
4494 "Shows shortcuts in a single wide row on the New Tab Page.";
4495
Tibor Goldschwendtf9501a62023-03-23 03:11:194496const char kNtpWideModulesName[] = "NTP Wide Modules";
4497const char kNtpWideModulesDescription[] =
4498 "Shows wide NTP modules if NTP provides enough space.";
4499
Aran Gilman766c2ad2019-04-18 00:15:414500const char kEnableReaderModeName[] = "Enable Reader Mode";
4501const char kEnableReaderModeDescription[] =
4502 "Allows viewing of simplified web pages by selecting 'Customize and "
4503 "control Chrome'>'Distill page'";
4504
Wei Li2946b352019-08-19 21:49:544505const char kHappinessTrackingSurveysForDesktopDemoName[] =
4506 "Happiness Tracking Surveys Demo";
4507const char kHappinessTrackingSurveysForDesktopDemoDescription[] =
4508 "Enable showing Happiness Tracking Surveys Demo to users on Desktop";
4509
Ramin Halavati7935b622022-11-16 08:11:464510const char kLayoutExtractionName[] = "Layout Extraction";
4511const char kLayoutExtractionDescription[] =
4512 "Enables Layout Extraction local machine intelligence library to use "
4513 "screen snapshots to add metadata for accessibility tools.";
4514
Travis Skarebcdb5ed32018-08-17 01:49:404515const char kOmniboxDriveSuggestionsName[] =
4516 "Omnibox Google Drive Document suggestions";
manukh918d82552022-10-11 01:12:224517const char kOmniboxDriveSuggestionsDescription[] =
Travis Skarebcdb5ed32018-08-17 01:49:404518 "Display suggestions for Google Drive documents in the omnibox when Google "
4519 "is the default search engine.";
4520
Kevin Bailey9ec05532019-01-31 23:01:334521const char kOmniboxExperimentalKeywordModeName[] =
4522 "Omnibox Experimental Keyword Mode";
4523const char kOmniboxExperimentalKeywordModeDescription[] =
4524 "Enables various experimental features related to keyword mode, its "
Justin Donnellyf2703482019-10-24 21:42:154525 "suggestions and layout.";
Kevin Bailey9ec05532019-01-31 23:01:334526
Viktor Semeniuk083adff22022-11-16 16:15:474527const char kPasswordsGroupingName[] = "Passwords grouping";
4528const char kPasswordsGroupingDescription[] =
4529 "Enables displaying passwords grouped together using information from "
4530 "the affiliation service.";
4531
Viktor Semeniuke4aa5bc2022-08-17 07:22:594532const char kPasswordManagerRedesignName[] = "Password Manager new UI";
4533const char kPasswordManagerRedesignDescription[] =
4534 "Enables new Password Manager UI on Desktop";
4535
Andrii Natiahlyi653c24092023-02-16 11:37:354536const char kPasswordsImportM2Name[] = "Passwords Import M2";
4537const char kPasswordsImportM2Description[] =
4538 "Extends passwords import flow in password settings with conflict "
4539 "resolution functionality.";
4540
Chris Thompson657d5c82020-10-08 23:04:104541const char kSCTAuditingName[] = "SCT auditing";
4542const char kSCTAuditingDescription[] =
4543 "Enables SCT auditing for users who have opted in to Safe Browsing "
4544 "Extended Reporting.";
4545
Jochen Eisinger6ef16de2023-03-23 20:44:184546const char kSettingsEnableGetTheMostOutOfProgramName[] =
4547 "'Get the most out of Chrome' documentation";
4548const char kSettingsEnableGetTheMostOutOfProgramDescription[] =
4549 "When enabled, the 'Get the most out of Chrome' documentation section "
4550 "will be available.";
4551
Elly Fong-Jonesaf0a33b2022-04-05 15:30:474552const char kSharingDesktopSharePreviewName[] = "Desktop share hub preview";
4553const char kSharingDesktopSharePreviewDescription[] =
4554 "Adds a preview section to the desktop sharing hub to make it clearer what "
4555 "is about to be shared.";
4556
Matthew Hatem61e894922022-07-22 16:18:374557const char kSharingDesktopShareToGoogleCollectionsName[] =
4558 "Share to Google Collections";
4559const char kSharingDesktopShareToGoogleCollectionsDescription[] =
4560 "Adds an item to the sharing hub to allow sharing to Google Collections.";
4561
Alan Cutter9aa158b2023-01-20 16:12:144562const char kWebAppManifestImmediateUpdatingName[] =
4563 "Web App Manifest Immediate Updating";
4564const char kWebAppManifestImmediateUpdatingDescription[] =
4565 "Enables web app manifest updates to apply to running web app windows as "
4566 "soon as a change has been detected instead of waiting for all app windows "
4567 "to be closed.";
4568
Paul Adedeji1ed53002022-06-13 20:15:304569const char kWebAuthenticationPermitEnterpriseAttestationName[] =
4570 "Web Authentication Enterprise Attestation";
4571const char kWebAuthenticationPermitEnterpriseAttestationDescription[] =
4572 "Permit a set of origins to request a uniquely identifying enterprise "
4573 "attestation statement from a security key when creating a Web "
4574 "Authentication credential.";
4575
Danil Somsikov0d206142022-11-28 23:37:204576const char kDevToolsTabTargetLiteralName[] = "DevTools using Tab Target";
4577const char kDevToolsTabTargetLiteralDescription[] =
4578 "Makes DevTools use an experimental CDP Tab target.";
4579
Xiaohan Wang55ae2c012022-01-20 21:49:114580#endif // BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:284581
4582// Windows ---------------------------------------------------------------------
4583
Xiaohan Wang55ae2c012022-01-20 21:49:114584#if BUILDFLAG(IS_WIN)
Brett Wilson7b44537e2017-08-18 01:38:284585
Bill Carr49f46082022-02-28 17:54:414586const char kCalculateNativeWinOcclusionName[] =
4587 "Calculate window occlusion on Windows";
4588const char kCalculateNativeWinOcclusionDescription[] =
4589 "Calculate window occlusion on Windows will be used in the future "
4590 "to throttle and potentially unload foreground tabs in occluded windows";
4591
Igor Ruvinovb1f7bea2022-11-08 23:20:504592const char kCloudApAuthName[] = "CloudAP authentication";
4593const char kCloudApAuthDescription[] =
4594 "Enables ambient authentication into supported identity providers using "
4595 "the CloudAP framework. Credentials are retrieved from accounts signed "
4596 "into the operating system.";
4597
Armando Miragliad2e6fc9e2020-03-06 09:23:094598const char kEnableMediaFoundationVideoCaptureName[] =
4599 "MediaFoundation Video Capture";
4600const char kEnableMediaFoundationVideoCaptureDescription[] =
4601 "Enable/Disable the usage of MediaFoundation for video capture. Fall back "
4602 "to DirectShow if disabled.";
4603
Xiaohan Wang9c9e5d35c2021-09-02 17:36:094604const char kHardwareSecureDecryptionName[] = "Hardware Secure Decryption";
4605const char kHardwareSecureDecryptionDescription[] =
4606 "Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
4607 "for protected content playback.";
4608
Xiaohan Wang2d588832021-11-16 00:57:074609const char kHardwareSecureDecryptionExperimentName[] =
4610 "Hardware Secure Decryption Experiment";
4611const char kHardwareSecureDecryptionExperimentDescription[] =
4612 "Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
4613 "for experimental protected content playback.";
4614
Xiaohan Wang90409292022-03-26 09:06:284615const char kHardwareSecureDecryptionFallbackName[] =
4616 "Hardware Secure Decryption Fallback";
4617const char kHardwareSecureDecryptionFallbackDescription[] =
4618 "Allows automatically disabling hardware secure Content Decryption Module "
4619 "(CDM) after failures or crashes. Subsequent playback may use software "
4620 "secure CDMs. If this feature is disabled, the fallback will never happen "
4621 "and users could be stuck with playback failures.";
4622
Bill Carrc2abb9222021-11-07 22:02:564623const char kMediaFoundationClearName[] = "MediaFoundation for Clear";
4624const char kMediaFoundationClearDescription[] =
4625 "Enable/Disable the use of MediaFoundation for non-protected content "
4626 "playback on supported systems.";
4627
henrikac66d1012021-01-19 13:59:184628const char kRawAudioCaptureName[] = "Raw audio capture";
4629const char kRawAudioCaptureDescription[] =
4630 "Enable/Disable the usage of WASAPI raw audio capture. When enabled, the "
4631 "audio stream is a 'raw' stream that bypasses all signal processing except "
4632 "for endpoint specific, always-on processing in the Audio Processing Object"
4633 " (APO), driver, and hardware.";
4634
henrikac79c7a42022-09-06 16:29:524635const char kFakeAudioCaptureTimestamps[] = "Fake audio capture timestamps";
4636const char kFakeAudioCaptureTimestampsDescription[] =
4637 "Emulates audio capture timestamps instead of using timestamps from the "
4638 "actual audio device. Can be used as a temporary workaround in situations "
4639 "where the selected audio device generates invalid timestamp sequences.";
4640
Lei Zhangc05af2a2020-05-15 20:54:054641const char kRunVideoCaptureServiceInBrowserProcessName[] =
4642 "Run video capture service in browser";
4643const char kRunVideoCaptureServiceInBrowserProcessDescription[] =
4644 "Run the video capture service in the browser process.";
Brett Wilson7b44537e2017-08-18 01:38:284645
Jonah Ryan-Davis90ae3322021-09-21 17:34:484646const char kUseAngleDescriptionWindows[] =
Olli Etuaho122321192018-09-07 10:15:294647 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
4648 "computers by default. Using the OpenGL driver as the graphics backend may "
4649 "result in higher performance in some graphics-heavy applications, "
4650 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
4651 "video playback.";
4652
Olli Etuaho122321192018-09-07 10:15:294653const char kUseAngleD3D11[] = "D3D11";
4654const char kUseAngleD3D9[] = "D3D9";
Nathan Zabriskie70c046f2019-10-16 01:19:024655const char kUseAngleD3D11on12[] = "D3D11on12";
Olli Etuaho122321192018-09-07 10:15:294656
Alex Forrenceb42504892022-07-20 21:50:074657const char kUseWaitableSwapChainName[] = "Use waitable swap chains";
4658const char kUseWaitableSwapChainDescription[] =
4659 "Use waitable swap chains to reduce presentation latency (effective only "
4660 "Windows 8.1 or later). If enabled, specify the maximum number of frames "
4661 "that can be queued, ranging from 1-3. 1 has the lowest delay but is most "
4662 "likely to drop frames, while 3 has the highest delay but is least likely "
4663 "to drop frames.";
4664
Brett Wilson7b44537e2017-08-18 01:38:284665const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
4666const char kUseWinrtMidiApiDescription[] =
4667 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
4668 "later).";
4669
Daniel Hosseinian159cb3d2020-03-13 03:02:024670#if BUILDFLAG(ENABLE_PRINTING)
Lei Zhang1419cab2021-09-09 17:04:444671const char kPrintWithPostScriptType42FontsName[] =
4672 "Print with PostScript Type 42 fonts";
4673const char kPrintWithPostScriptType42FontsDescription[] =
4674 "When using PostScript level 3 printing, render text with Type 42 fonts if "
4675 "possible.";
4676
Lei Zhanga6a8a492020-05-14 03:55:034677const char kPrintWithReducedRasterizationName[] =
4678 "Print with reduced rasterization";
4679const char kPrintWithReducedRasterizationDescription[] =
4680 "When using GDI printing, avoid rasterization if possible.";
4681
Cuc Doan074d8ed2022-03-14 22:03:344682const char kReadPrinterCapabilitiesWithXpsName[] =
4683 "Read printer capabilities with XPS";
4684extern const char kReadPrinterCapabilitiesWithXpsDescription[] =
4685 "When enabled, utilize XPS interface to read printer capabilities.";
4686
Alan Screen574ffd662019-11-21 22:38:534687const char kUseXpsForPrintingName[] = "Use XPS for printing";
4688const char kUseXpsForPrintingDescription[] =
4689 "When enabled, use XPS printing API instead of the GDI print API.";
4690
Alan Screen49388112019-12-13 23:34:214691const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF";
4692const char kUseXpsForPrintingFromPdfDescription[] =
4693 "When enabled, use XPS printing API instead of the GDI print API when "
4694 "printing PDF documents.";
Daniel Hosseinian159cb3d2020-03-13 03:02:024695#endif // BUILDFLAG(ENABLE_PRINTING)
Alan Screen49388112019-12-13 23:34:214696
Tom5efa14f12021-06-30 00:37:324697const char kWin10TabSearchCaptionButtonName[] =
4698 "Windows 10 Tab Search Caption Button";
4699const char kWin10TabSearchCaptionButtonDescription[] =
4700 "Move the Tab Search entrypoint besides the window caption buttons on "
4701 "Windows 10 platforms.";
Xiaohan Wang55ae2c012022-01-20 21:49:114702#endif // BUILDFLAG(IS_WIN)
Brett Wilson7b44537e2017-08-18 01:38:284703
4704// Mac -------------------------------------------------------------------------
4705
Xiaohan Wang55ae2c012022-01-20 21:49:114706#if BUILDFLAG(IS_MAC)
Brett Wilson7b44537e2017-08-18 01:38:284707
Karol Sygiet901acb42022-08-08 16:00:044708const char kBiometricAuthenticationInSettingsName[] =
4709 "Biometric authentication in settings";
4710const char kBiometricAuthenticationInSettingsDescription[] =
4711 "Enables biometric authentication in settings to view/edit/copy a password";
4712
Daniel Hosseinian159cb3d2020-03-13 03:02:024713#if BUILDFLAG(ENABLE_PRINTING)
4714const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend";
4715const char kCupsIppPrintingBackendDescription[] =
4716 "Use the CUPS IPP printing backend instead of the original CUPS backend "
4717 "that calls the PPD API.";
4718#endif // BUILDFLAG(ENABLE_PRINTING)
4719
Avi Drissman0095f552021-11-05 19:58:534720const char kEnableUniversalLinksName[] = "Universal Links";
4721const char kEnableUniversalLinksDescription[] =
4722 "Include Universal Links in the intent picker.";
4723
Sidney San Martín678fd4112019-03-30 00:13:054724const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar";
4725const char kImmersiveFullscreenDescription[] =
4726 "Automatically hide and show the toolbar in fullscreen.";
4727
Greg Kerrf46f31872019-08-08 20:22:444728const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox";
4729const char kMacSyscallSandboxDescription[] =
4730 "Controls whether the macOS sandbox filters syscalls.";
4731
Florent Castellibd7db032023-02-22 11:22:034732const char kRetryGetVideoCaptureDeviceInfosName[] =
4733 "Retry capture device enumeration on crash";
4734const char kRetryGetVideoCaptureDeviceInfosDescription[] =
4735 "Enables retries when enumerating the available video capture devices "
4736 "after a crash. The capture service is restarted without loading external "
4737 "DAL plugins which could have caused the crash.";
4738
Leonard Grey2e90921c2021-12-02 22:46:134739const char kScreenTimeName[] = "Screen Time";
4740const char kScreenTimeDescription[] =
4741 "Integrate with the macOS Screen Time system. Only enabled on macOS 12.1 "
4742 "and later.";
4743
Jonah Ryan-Davis90ae3322021-09-21 17:34:484744const char kUseAngleDescriptionMac[] =
4745 "Choose the graphics backend for ANGLE. The OpenGL backend is soon to be "
4746 "deprecated on Mac, and may contain driver bugs that are not planned to be "
4747 "fixed. The Metal backend is still experimental, and may contain bugs that "
4748 "are still being worked on. The Metal backend should be more performant, "
4749 "but may still be behind the OpenGL backend until fully released.";
4750
4751const char kUseAngleMetal[] = "Metal";
4752
Tom Burgin5c3fde02022-06-23 18:24:074753const char kSystemColorChooserName[] = "System Color Chooser";
4754const char kSystemColorChooserDescription[] =
4755 "Enables a button that launches the macOS native color chooser.";
4756
Brett Wilson7b44537e2017-08-18 01:38:284757#endif
4758
Jonah Ryan-Davis90ae3322021-09-21 17:34:484759// Windows and Mac -------------------------------------------------------------
4760
Xiaohan Wang55ae2c012022-01-20 21:49:114761#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
Jonah Ryan-Davis90ae3322021-09-21 17:34:484762
4763const char kUseAngleName[] = "Choose ANGLE graphics backend";
4764const char kUseAngleDefault[] = "Default";
4765const char kUseAngleGL[] = "OpenGL";
Karol Sygiet901acb42022-08-08 16:00:044766
Karol Sygietc5e3da652022-08-02 15:47:504767const char kBiometricAuthenticationForFillingName[] =
4768 "Biometric authentication reauth before filling";
4769const char kBiometricAuthenticationForFillingDescription[] =
4770 "Enables biometric authentication before filling form data";
Xiaohan Wang55ae2c012022-01-20 21:49:114771#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
Jonah Ryan-Davis90ae3322021-09-21 17:34:484772
Richard Chuia9ed7be12022-04-13 21:30:354773// ChromeOS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:344774
Yuta Hijikata235fc62b2020-12-08 03:48:324775#if BUILDFLAG(IS_CHROMEOS_ASH)
vabr0215a8e2017-03-28 12:47:344776
Brett Wilson7b44537e2017-08-18 01:38:284777const char kAcceleratedMjpegDecodeName[] =
4778 "Hardware-accelerated mjpeg decode for captured frame";
4779const char kAcceleratedMjpegDecodeDescription[] =
4780 "Enable hardware-accelerated mjpeg decode for captured frame where "
4781 "available.";
vabr0215a8e2017-03-28 12:47:344782
Thanh Nguyen6b4c5852022-05-26 22:03:254783const char kAdaptiveChargingForTestingName[] =
4784 "Show adaptive charging notifications for testing";
4785const char kAdaptiveChargingForTestingDescription[] =
4786 "Show adaptive charging notifications and nudges for testing. This is "
4787 "meant to be used by developers to test the feature UI only. The "
4788 "notifications will be shown after the device is plugged in to the "
4789 "charger. Please DO NOT enable this if you're not a developer who wants to "
4790 "test the UI of the adaptive charging feature.";
4791
Thanh Nguyen730ac8a32022-05-19 08:50:464792const char kAdaptiveChargingName[] = "Enable adaptive charging feature";
4793const char kAdaptiveChargingDescription[] =
4794 "Show settings to enable/disable adaptive charging feature.";
4795
Andreea Costinas99e24192023-02-15 14:39:464796const char kAllowEapDefaultCasWithoutSubjectVerificationName[] =
4797 "Allow EAP network configs with default server CAs without subject "
4798 "verification";
4799const char kAllowEapDefaultCasWithoutSubjectVerificationDescription[] =
4800 "Allows creating EAP network configs which use the default server CA certs "
4801 "without specifying subject or domain match options which validate the "
4802 "identity of the server.";
4803
Vyshu9ea9e182021-02-04 17:53:064804const char kAllowRepeatedUpdatesName[] =
4805 "Continue checking for updates before reboot and after initial update.";
4806const char kAllowRepeatedUpdatesDescription[] =
4807 "Continues checking to see if there is a more recent update, even if user"
4808 "has not rebooted to apply the previous update.";
4809
Kyle Horimoto734f0752020-03-20 20:46:544810const char kAllowScrollSettingsName[] =
4811 "Allow changes to scroll acceleration/sensitivity for mice/touchpads.";
4812const char kAllowScrollSettingsDescription[] =
4813 "Shows settings to enable/disable scroll acceleration and to adjust the "
4814 "sensitivity for scrolling.";
4815
Jeffrey Kardatzkea686ded22022-03-28 18:28:464816const char kAlwaysEnableHdcpName[] = "Always enable HDCP for external displays";
4817const char kAlwaysEnableHdcpDescription[] =
4818 "Enables the specified type for HDCP whenever an external display is "
4819 "connected. By default, HDCP is only enabled when required.";
4820const char kAlwaysEnableHdcpDefault[] = "Default";
4821const char kAlwaysEnableHdcpType0[] = "Type 0";
4822const char kAlwaysEnableHdcpType1[] = "Type 1";
4823
Jerry Liu14ec85e2023-01-31 06:00:524824const char kPersonalizationJellyName[] = "Jelly design for Personalization App";
4825const char kPersonalizationJellyDescription[] =
Jeffrey Youngd01036a2023-02-03 02:50:384826 "Feature to enable the Jelly design in Personalization App. Requires "
4827 "jelly-colors flag to be enabled.";
Jerry Liua600ab92022-10-28 01:12:284828
Eric Sum2971b952022-10-20 04:55:374829const char kAmbientModeThrottleAnimationName[] =
4830 "Throttle the frame rate of Lottie animations in ambient mode";
4831const char kAmbientModeThrottleAnimationDescription[] =
4832 "The throttled frame rate and when to throttle are embedded within the "
4833 "Lottie animation file itself. It is chosen by the motion designer and "
4834 "varies depending on how much motion there is in the animation. This is "
4835 "done in the hopes of improving power consumption while maintaining the "
4836 "same user-visible smoothness. This flag applies to all ambient Lottie "
4837 "animations that have throttling specified in the file.";
4838
Antoni Dikovb3487502022-09-21 15:24:214839const char kApnRevampName[] = "APN Revamp";
4840const char kApnRevampDescription[] =
4841 "Enables the ChromeOS APN Revamp, which updates cellular network APN "
4842 "system UI and related infrastructure.";
4843
Daniel Andersson9a81b33502023-03-20 19:15:374844const char kAppLaunchAutomationName[] = "Enable app launch automation";
4845const char kAppLaunchAutomationDescription[] =
4846 "Allows groups of apps to be launched.";
4847
Ryo Hashimoto8f4b30ced2019-04-08 12:14:194848const char kArcCustomTabsExperimentName[] =
4849 "Enable Custom Tabs experiment for ARC";
4850const char kArcCustomTabsExperimentDescription[] =
4851 "Allow Android apps to use Custom Tabs."
4852 "This feature only works on the Canary and Dev channels.";
4853
Alexander Bolodurin4e0a465c2021-03-31 23:14:034854const char kArcDocumentsProviderUnknownSizeName[] =
4855 "Enable ARC DocumentsProvider unknown file size handling";
4856const char kArcDocumentsProviderUnknownSizeDescription[] =
4857 "Allow opening DocumentsProvider files where size is not reported.";
4858
Satoshi Niwa8b1d5282018-10-24 04:53:034859const char kArcFilePickerExperimentName[] =
4860 "Enable file picker experiment for ARC";
4861const char kArcFilePickerExperimentDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:354862 "Enables using ChromeOS file picker in ARC.";
Satoshi Niwa8b1d5282018-10-24 04:53:034863
Shengsong Tan61924b62022-09-13 03:05:114864extern const char kArcFixupWindowName[] =
4865 "Enable ARC Ghost Window for ARC App fixup";
4866extern const char kArcFixupWindowDescription[] =
4867 "Popup ARC Ghost Window app launching before fixup finishes.";
4868
Shengsong Tan3cdcea242022-10-27 06:32:594869extern const char kArcGhostWindowNewStyleName[] =
4870 "Enable new UI for ARC Ghost Window";
4871extern const char kArcGhostWindowNewStyleDescription[] =
4872 "Allow use new UI for ARC Ghost Window if corresponding launch source "
4873 "request it.";
4874
Rachel Wongec3b8c42022-07-08 03:11:224875const char kArcGameModeName[] = "Enable Game Mode for ARC";
Matthew DeVoreb8bdedd2022-06-28 15:17:464876const char kArcGameModeDescription[] =
4877 "ARC Fullscreen Games will request accomodation from ChromeOS for "
4878 "sustained performance.";
4879
Charles William Dicka0a0f972023-01-27 02:12:324880const char kArcIdleManagerName[] = "Enable ARC Idle Manager";
4881const char kArcIdleManagerDescription[] =
4882 "ARC will turn on Android's doze mode when idle.";
4883
Shengsong Tan6cb88592022-11-09 01:57:354884extern const char kArcInstantResponseWindowOpenName[] =
4885 "Enable Instance Response for ARC app window open";
4886extern const char kArcInstantResponseWindowOpenDescription[] =
4887 "In some devices the placeholder window will popup immediately after the "
4888 "user attempts to launch apps.";
4889
Tetsui Ohkubo4c6d7f42021-07-07 16:47:374890const char kArcKeyboardShortcutHelperIntegrationName[] =
4891 "Enable keyboard shortcut helper integration for ARC";
4892const char kArcKeyboardShortcutHelperIntegrationDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:354893 "Shows keyboard shortcuts from Android apps in ChromeOS Shortcut Viewer";
Tetsui Ohkubo4c6d7f42021-07-07 16:47:374894
Lev Rumyantsev6eddc802019-08-27 19:41:214895const char kArcNativeBridgeToggleName[] =
4896 "Toggle between native bridge implementations for ARC";
4897const char kArcNativeBridgeToggleDescription[] =
4898 "Toggle between native bridge implementations for ARC.";
Lev Rumyantsev7a8544312017-08-18 19:26:514899
Tim Sergeantb2f5dc02022-09-14 08:07:174900const char kArcNearbyShareFuseBoxName[] = "ARC Nearby Sharing through FuseBox";
4901const char kArcNearbyShareFuseBoxDescription[] =
4902 "When enabled, files shared through ARC Nearby Sharing will be shared "
4903 "through the ChromeOS FuseBox Service.";
4904
Yusuke Sato4717d1782021-03-12 23:27:174905const char kArcRtVcpuDualCoreName[] =
4906 "Enable ARC real time vcpu on a device with 2 logical cores online.";
4907const char kArcRtVcpuDualCoreDesc[] =
4908 "Enable ARC real time vcpu on a device with 2 logical cores online to "
4909 "reduce media playback glitch.";
4910
4911const char kArcRtVcpuQuadCoreName[] =
4912 "Enable ARC real time vcpu on a device with 3+ logical cores online.";
4913const char kArcRtVcpuQuadCoreDesc[] =
4914 "Enable ARC real time vcpu on a device with 3+ logical cores online to "
4915 "reduce media playback glitch.";
4916
Yao Li8f4568b12023-02-15 19:59:454917const char kArcSwitchToKeyMintOnTName[] = "Switch to KeyMint on ARC-T.";
4918const char kArcSwitchToKeyMintOnTDesc[] =
4919 "Switch from Keymaster to KeyMint on ARC-T.";
4920
lgchengcda295dce2023-02-22 02:38:314921const char kArcSyncInstallPriorityName[] =
4922 "Enable supporting install priority for synced ARC apps.";
4923const char kArcSyncInstallPriorityDescription[] =
4924 "Enable supporting install priority for synced ARC apps. Pass install "
4925 "priority to Play instead of using default install priority specified "
4926 "in Play";
4927
Toshiki Kikuchi00337ca2022-10-28 02:44:394928const char kArcUpdateO4CListViaA2C2Name[] = "Update the O4C list via A2C2";
4929const char kArcUpdateO4CListViaA2C2Desc[] =
4930 "When enabled, the O4C list is allowed to be updated via A2C2.";
4931
Shengsong Tan19da8d102023-02-02 13:29:534932const char kArcVmmSwapName[] = "Vmm swap support for ARCVM";
4933const char kArcVmmSwapDesc[] =
4934 "When enabled, the ARCVM will be launched with vmm swap feature.";
4935
Shengsong Tan4cc02572023-02-06 05:25:244936const char kArcVmmSwapKBShortcutName[] =
4937 "Keyboard shortcut trigger for ARCVM"
4938 " vmm swap feature";
4939const char kArcVmmSwapKBShortcutDesc[] =
4940 "Alt + Ctrl + Shift + O/P to enable / disable ARCVM vmm swap. Only for "
4941 "experimental usage.";
4942
Pattara Teerapong425077a2023-01-12 15:21:404943const char kArcEnableAAudioMMAPName[] = "Enable ARCVM AAudio MMAP";
4944const char kArcEnableAAudioMMAPDescription[] =
4945 "Enable AAudio MMAP support for ARCVM which provides low latency audio "
4946 "for supported apps.";
4947
Mustafa Camurcu32cfc592021-02-10 19:00:404948const char kArcEnableUsapName[] =
4949 "Enable ARC Unspecialized Application Processes";
4950const char kArcEnableUsapDesc[] =
4951 "Enable ARC Unspecialized Application Processes when applicable for "
4952 "high-memory devices.";
4953
Satoshi Niwa4e1c9962022-03-01 00:23:574954const char kArcEnableVirtioBlkForDataName[] =
4955 "Enable virtio-blk for ARCVM /data";
4956const char kArcEnableVirtioBlkForDataDesc[] =
4957 "If enabled, ARCVM uses virtio-blk for /data in Android storage.";
4958
Andrew Moylan2db11cd2019-05-22 14:25:154959const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
4960const char kAshEnableUnifiedDesktopDescription[] =
4961 "Enable unified desktop mode which allows a window to span multiple "
4962 "displays.";
4963
Hung-Hsien Chen30af66752023-02-24 02:55:264964const char kAudioAPNoiseCancellationName[] = "Audio noise cancellation on AP";
4965const char kAudioAPNoiseCancellationDescription[] =
4966 "Enable noise cancellation on AP";
4967
Li-Yu Yu7610f0082023-01-04 08:36:294968const char kAudioFlexibleLoopbackName[] =
4969 "ChromeOS flexible loopback API support";
4970const char kAudioFlexibleLoopbackDescription[] =
4971 "Enable flexible loopback API support in ChromeOS.";
4972
Chih-Yang Hsia540cf372022-08-04 08:10:224973const char kAudioHFPMicSRName[] =
4974 "Audio super-resolution Bluetooth HFP microphone";
4975const char kAudioHFPMicSRDescription[] =
4976 "Enable super-resolution Bluetooth HFP microphone recording.";
4977
Pin-chih Linf52f4602023-03-06 04:01:314978const char kAudioHFPOffloadName[] =
4979 "Audio Bluetooth HFP offloaded to DSP if supported";
4980const char kAudioHFPOffloadDescription[] =
4981 "While enabled, HFP Audio data is transmitted via the offloaded path "
4982 "in DSP if supported by device.";
4983
Owen Zhangbbb45a5c2022-05-24 01:38:044984const char kAudioSettingsPageName[] = "Audio Settings Page";
4985const char kAudioSettingsPageDescription[] =
4986 "Enables the dedicated Audio Settings Page in system settings, which "
4987 "allows for greater audio configuration.";
4988
En-Shuo Hsu23db6bc2021-08-26 15:07:234989const char kAudioUrlName[] = "Enable chrome://audio";
4990const char kAudioUrlDescription[] =
4991 "Enable chrome://audio that is designed for debugging ChromeOS audio "
4992 "issues";
4993
Ren-Pei Zeng61605a52021-12-06 13:07:484994const char kAutoFramingOverrideName[] = "Auto-framing control override";
4995const char kAutoFramingOverrideDescription[] =
4996 "Overrides the default to forcibly enable or disable the auto-framing "
4997 "feature";
4998
Yulun Wufad53772022-06-22 22:56:354999const char kAutocompleteExtendedSuggestionsName[] =
5000 "Extended suggestions for CrOS autocomplete";
5001const char kAutocompleteExtendedSuggestionsDescription[] =
5002 "Enables extended autocomplete suggestions experiment on ChromeOS.";
5003
Curtis McMullanf1351802022-12-02 05:23:025004const char kAutocorrectByDefaultName[] = "CrOS autocorrect by default";
5005const char kAutocorrectByDefaultDescription[] =
5006 "Enables autocorrect by default experiment on ChromeOS";
5007
Bao-Duy Tran395c169c72022-02-14 06:57:345008const char kAutocorrectParamsTuningName[] = "CrOS autocorrect params tuning";
5009const char kAutocorrectParamsTuningDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355010 "Enables params tuning experiment for autocorrect on ChromeOS.";
Bao-Duy Tran395c169c72022-02-14 06:57:345011
Zac Partridgeefc2ec02022-11-21 06:28:455012const char kAutocorrectToggleName[] = "CrOS autocorrect toggle";
5013const char kAutocorrectToggleDescription[] =
5014 "Enables using a toggle for enabling autocorrect on ChromeOS.";
5015
Yue Li1c3496412022-08-10 23:37:145016const char kAvatarsCloudMigrationName[] =
5017 "Loading CrOS avatar images from the cloud";
5018const char kAvatarsCloudMigrationDescription[] =
5019 "Enables loading avatar images from the cloud on ChromeOS.";
5020
Michael Sun1b15a302020-04-07 02:57:295021const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size";
5022const char kBluetoothFixA2dpPacketSizeDescription[] =
5023 "Fixes Bluetooth A2DP packet size to a smaller default value to improve "
5024 "audio quality and may fix audio stutter.";
5025
Joseph Hwangc0c68e62022-08-12 16:52:165026const char kBluetoothQualityReportName[] = "Bluetooth Quality Report";
5027const char kBluetoothQualityReportDescription[] =
5028 "Enables the Bluetooth Quality Report feature on Bluetooth controllers "
5029 "which will send the Bluetooth link quality statistics such as the "
5030 "signal strength, the lost packet count, etc. to the host.";
5031
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:345032const char kBluetoothWbsDogfoodName[] = "Bluetooth WBS dogfood";
5033const char kBluetoothWbsDogfoodDescription[] =
5034 "Enables Bluetooth wideband speech mic as default audio option. "
5035 "Note that flipping this flag makes no difference on most of the "
Richard Chuia9ed7be12022-04-13 21:30:355036 "ChromeOS models, because Bluetooth WBS is either unsupported "
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:345037 "or fully launched. Only on the few models that Bluetooth WBS is "
5038 "still stablizing this flag will take effect.";
5039
Manish Mandlikdd93b612022-08-12 01:08:195040const char kBluetoothCoredumpName[] = "Enable Bluetooth Device Coredump";
5041const char kBluetoothCoredumpDescription[] =
5042 "Enable Bluetooth coredump collection if supported. Please note that "
5043 "coredumps are only collected when hardware exceptions occur and are "
5044 "used for debugging such exceptions.";
5045
Manish Mandlik05533f12023-03-16 00:31:075046const char kBluetoothFlossCoredumpName[] =
5047 "Enable Bluetooth Device Coredump for Floss";
5048const char kBluetoothFlossCoredumpDescription[] =
5049 "Enable Bluetooth coredump collection if supported. Please note that "
5050 "coredumps are only collected when hardware exceptions occur and are "
5051 "used for debugging such exceptions.";
5052
mingxuanshia43a7ce2022-08-25 07:46:365053const char kRobustAudioDeviceSelectLogicName[] =
5054 "Robust Audio Device Select Logic";
5055const char kRobustAudioDeviceSelectLogicDescription[] =
5056 "A more robust logic for automatic audio device selection which is more "
5057 "capable of remembering the user's preferences of audio devices.";
5058
Sonny Sasaka94725212021-12-17 01:37:305059const char kBluetoothUseFlossName[] = "Use Floss instead of BlueZ";
5060const char kBluetoothUseFlossDescription[] =
5061 "Enables using Floss (also known as Fluoride, Android's Bluetooth stack) "
5062 "instead of Bluez. This is meant to be used by developers and is not "
5063 "guaranteed to be stable";
5064
Zhengping Jiang706c2272022-07-13 05:50:345065const char kBluetoothUseLLPrivacyName[] = "Enable LL Privacy in BlueZ";
5066const char kBluetoothUseLLPrivacyDescription[] =
5067 "Enable address resolution offloading to Bluetooth Controller if "
5068 "supported. Modifying this flag will cause Bluetooth Controller to reset.";
5069
Sam Cackett2891ad82022-12-08 19:45:555070const char kCalendarJellyName[] = "Enable Calendar Jelly features";
5071const char kCalendarJellyDescription[] =
5072 "Enables Jelly changes for the sys tray Calendar views.";
5073
Michele Fanb0c93e42023-01-03 16:08:005074const char kCaptureModeDemoToolsName[] =
5075 "Enable demo tools feature in screen capture";
5076const char kCaptureModeDemoToolsDescription[] =
5077 "Enables the ability to show clicks and keys during video recordings to "
5078 "enhance demo experience.";
5079
Ahmed Fakhrye1072c12023-02-27 20:58:495080const char kCaptureModeGifRecordingName[] =
5081 "Enable GIF recording in screen capture";
5082const char kCaptureModeGifRecordingDescription[] =
5083 "Enables the ability to record the screen into animated GIFs";
5084
Ben Beckerf60ef852023-03-22 23:08:245085extern const char kDeskButtonName[] = "Desk button in shelf";
5086extern const char kDeskButtonDescription[] =
5087 "Show a desk button that provides quick access to the desk menu in the "
5088 "shelf in clamshell mode when there is more than one desk.";
5089
Daniel Anderssona34c86e2022-10-13 00:16:295090extern const char kDesks16Name[] = "Enable up to 16 virtual desks";
5091extern const char kDesks16Description[] =
5092 "When enabled, up to 16 virtual desks are allowed.";
5093
Daniel Andersson3e213ab2022-04-18 22:43:545094const char kDesksSaveAndRecallName[] = "Desks Save and Recall";
5095const char kDesksSaveAndRecallDescription[] =
5096 "Save a desk and its applications so that they can be recalled at a later "
5097 "time.";
5098
Richard Chui1b6141772022-03-04 01:28:585099const char kDesksTemplatesName[] = "Desk Templates";
Richard Chuif823bf62021-10-29 21:06:015100const char kDesksTemplatesDescription[] =
5101 "Streamline workflows by saving a group of applications and windows as a "
Richard Chui1b6141772022-03-04 01:28:585102 "launchable template in a new desk";
Richard Chuif823bf62021-10-29 21:06:015103
Andreea Costinas81bed8a2022-11-23 16:03:385104extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyName[] =
5105 "Experiment: Allows using identifiers in the DoH template URI";
5106extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyDescription[] =
5107 "Enables early testing of the DoH template URI with identifiers by "
5108 "evaluating user identifiers in the existing policy DnsOverHttpsTemplates "
5109 "and hashing them using a hardcoded salt.";
5110
Wei Lee4fe87182020-12-22 09:32:445111const char kPreferConstantFrameRateName[] = "Prefer Constant Frame Rate";
5112const char kPreferConstantFrameRateDescription[] =
5113 "Enables this flag to prefer using constant frame rate for camera when "
5114 "streaming";
5115
Wei Lee585fa1b2022-05-15 20:26:255116const char kMoreVideoCaptureBuffersName[] = "More Video Capture Buffers";
5117const char kMoreVideoCaptureBuffersDescription[] =
5118 "This flag enables using a larger amount Chrome-allocated buffers for "
5119 "video capture. This larger amount is needed for deeper pipelines, e.g. "
5120 "sophisticated camera effects.";
5121
mojahsu3144bf32021-05-26 10:14:465122const char kForceControlFaceAeName[] = "Force control face AE";
5123const char kForceControlFaceAeDescription[] =
5124 "Control this flag to force enable or disable face AE for camera";
mojahsu11ea38ae2021-05-06 03:30:115125
Jason Zhang9ec877752021-10-29 18:10:505126const char kCellularBypassESimInstallationConnectivityCheckName[] =
5127 "Bypass eSIM installation connectivity check";
5128const char kCellularBypassESimInstallationConnectivityCheckDescription[] =
5129 "Bypass the non-cellular internet connectivity check during eSIM "
5130 "installation.";
5131
Jason Zhang26cacea2022-04-04 18:55:045132const char kCellularUseSecondEuiccName[] = "Use second Euicc";
5133const char kCellularUseSecondEuiccDescription[] =
5134 "When enabled Cellular Setup and Settings UI will use the second available "
5135 "Euicc that's exposed by Hermes.";
Azeem Arshad43b191b2021-01-15 23:59:565136
Colin Kincaid0dcc3b022022-05-26 15:51:575137const char kClipboardHistoryReorderName[] =
5138 "Keep the most recently pasted item at the top of clipboard history";
5139const char kClipboardHistoryReorderDescription[] =
5140 "Enables an experimental behavior change where each time a clipboard "
5141 "history item is pasted, that item shifts to the top of the list.";
5142
Colin Kincaidfdf46612023-03-23 01:23:235143const char kClipboardHistoryLongpressName[] =
5144 "Hold Ctrl+V to paste an item from clipboard history";
5145const char kClipboardHistoryLongpressDescription[] =
5146 "Enables an experimental behavior change where long-pressing Ctrl+V shows "
5147 "the clipboard history menu. If an item is selected to paste, it replaces "
5148 "the content initially pasted by Ctrl+V.";
5149
Roman Arora595d5712021-09-24 18:06:055150const char kComponentUpdaterTestRequestName[] =
5151 "Enable the component updater check 'test-request' parameter";
5152const char kComponentUpdaterTestRequestDescription[] =
5153 "Enables the 'test-request' parameter for component updater check requests."
5154 " Overrides any other component updater check request parameters that may "
5155 "have been specified.";
5156
Yulun Wu1e355132020-02-11 20:12:225157const char kContextualNudgesName[] =
5158 "Contextual nudges for user gesture education";
5159const char kContextualNudgesDescription[] =
5160 "Enables contextual nudges, periodically showing the user a label "
5161 "explaining how to interact with a particular UI element using gestures.";
5162
Jing Wang859fb1a2020-11-27 00:26:485163const char kCrosOnDeviceGrammarCheckName[] = "On-device Grammar Check";
5164const char kCrosOnDeviceGrammarCheckDescription[] =
5165 "Enable new on-device grammar check component.";
5166
Richard Chuia9ed7be12022-04-13 21:30:355167const char kSystemExtensionsName[] = "ChromeOS System Extensions";
Christopher Lamd8708c32021-10-29 04:31:475168const char kSystemExtensionsDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355169 "Enable the ChromeOS System Extension platform.";
Christopher Lamd8708c32021-10-29 04:31:475170
Giovanni Ortuño Urquidifeb77d22022-04-08 05:40:235171const char kEnableServiceWorkersForChromeUntrustedName[] =
5172 "Enable chrome-untrusted:// Service Workers";
5173const char kEnableServiceWorkersForChromeUntrustedDescription[] =
5174 "When enabled, allows chrome-untrusted:// WebUIs to use service workers.";
5175
Tyler Garrett86f698b32023-01-25 22:01:415176const char kEnterpriseReportingUIName[] =
5177 "Enable chrome://enterprise-reporting";
5178const char kEnterpriseReportingUIDescription[] =
5179 "When enabled, allows for chrome://enterprise-reporting to be visited";
5180
Fergus Dall9d0e95a2021-07-30 08:10:115181const char kCrostiniContainerInstallName[] =
5182 "Debian version for new Crostini containers";
5183const char kCrostiniContainerInstallDescription[] =
5184 "New Crostini containers will use this debian version";
David Munro3728ef72019-10-30 07:22:155185
Ben Wells7238dd02019-05-02 08:20:325186const char kCrostiniGpuSupportName[] = "Crostini GPU Support";
5187const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support.";
5188
David Munro9fce777c2020-10-07 03:55:545189const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch";
5190const char kCrostiniResetLxdDbDescription[] =
5191 "Recreates the LXD database every time we launch it";
5192
Nicholas Verne6eb340a82021-10-19 05:55:385193const char kCrostiniMultiContainerName[] = "Allow multiple Crostini containers";
5194const char kCrostiniMultiContainerDescription[] =
5195 "Experimental UI for creating and managing multiple Crostini containers";
5196
Timothy Loh05b4d59f2021-11-08 05:05:525197const char kCrostiniImeSupportName[] = "Crostini IME support";
5198const char kCrostiniImeSupportDescription[] =
5199 "Experimental support for IMEs (excluding VK) on Crostini.";
5200
5201const char kCrostiniVirtualKeyboardSupportName[] =
5202 "Crostini Virtual Keyboard Support";
5203const char kCrostiniVirtualKeyboardSupportDescription[] =
5204 "Experimental support for the Virtual Keyboard on Crostini.";
5205
David Munro762bf322022-02-03 02:21:465206const char kBruschettaName[] = "Enable the third party VMs feature";
5207const char kBruschettaDescription[] =
5208 "Enables UI support for third party/generic VMs";
5209
Fergus Dalldb66df32022-08-19 02:54:445210const char kBruschettaAlphaMigrateName[] = "Migration for Bruschetta Alpha";
5211const char kBruschettaAlphaMigrateDescription[] =
5212 "Enable this flag to migrate a Bruschetta installed during the alpha. "
5213 "Requires the bruschetta flag to be enabled.";
5214
Kam Kwankajornkiet3fcc30ef2022-12-02 00:54:125215extern const char kCameraAppLowStorageWarningName[] =
5216 "Camera App Low Storage Warning";
5217extern const char kCameraAppLowStorageWarningDescription[] =
5218 "Enable this flag to show warning and handle the video recording when "
5219 "device storage is running low";
5220
Kam Kwankajornkietbc6eb782023-03-16 04:40:085221const char kCameraAppTimeLapseName[] = "Camera App Time-lapse Recording";
5222const char kCameraAppTimeLapseDescription[] =
5223 "Enable this flag to record time-lapse video in Camera app.";
5224
Pilar Molina Lopezd5b787512020-11-19 00:21:485225const char kDisableBufferBWCompressionName[] =
5226 "Disable buffer bandwidth compression";
5227const char kDisableBufferBWCompressionDescription[] =
5228 "Disable bandwidth compression when allocating buffers";
5229
Ricky Liang8df43372020-07-09 09:41:095230const char kDisableCameraFrameRotationAtSourceName[] =
5231 "Disable camera frame rotation at source";
5232const char kDisableCameraFrameRotationAtSourceDescription[] =
5233 "Disable camera frame rotation to the upright display orientation in the "
5234 "video capture device";
5235
Thanh Nguyena4c933442019-05-11 03:43:555236const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()";
5237const char kDisableCancelAllTouchesDescription[] =
5238 "If enabled, a canceled touch will not force all other touches to be "
5239 "canceled.";
5240
Daniele Castagna893d822e2019-03-08 21:37:115241const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
5242const char kDisableExplicitDmaFencesDescription[] =
5243 "Always rely on implicit syncrhonization between GPU and display "
5244 "controller instead of using dma-fences explcitily when available.";
5245
Bailey Berro01f09742020-07-21 05:40:595246const char kDisplayAlignmentAssistanceName[] =
5247 "Enable Display Alignment Assistance";
5248const char kDisplayAlignmentAssistanceDescription[] =
5249 "Show indicators on shared edges of the displays when user is "
5250 "attempting to move their mouse over to another display. Show preview "
5251 "indicators when the user is moving a display in display layouts.";
5252
Harry Cutts932c80a2021-10-07 15:00:385253const char kEnableLibinputToHandleTouchpadName[] =
5254 "Enable libinput to handle touchpad.";
5255const char kEnableLibinputToHandleTouchpadDescription[] =
5256 "Use libinput instead of the gestures library to handle touchpad."
5257 "Libgesures works very well on modern devices but fails on legacy"
5258 "devices. Use libinput if an input device doesn't work or is not working"
5259 "well.";
5260
William Mahon9d1605f2022-04-22 23:54:595261const char kEnableFakeKeyboardHeuristicName[] =
5262 "Enable Fake Keyboard Heuristic";
5263const char kEnableFakeKeyboardHeuristicDescription[] =
5264 "Enable heuristic to prevent non-keyboard devices from pretending "
5265 "to be keyboards. Primarily assists in preventing the virtual keyboard "
5266 "from being disabled unintentionally.";
5267
Jon Mann8e448142021-07-29 19:31:305268const char kFastPairName[] = "Enable Fast Pair";
5269const char kFastPairDescription[] =
5270 "Enables Google Fast Pair service which uses BLE to discover supported "
Josh Graydus84ef1a372022-05-10 21:40:515271 "nearby Bluetooth devices and surfaces a notification for quick pairing.";
Jon Mann8e448142021-07-29 19:31:305272
Alex Kingsborough31acba6e2023-01-17 21:47:455273const char kFastPairHandshakeRefactorName[] =
5274 "Enable Fast Pair Handshake Refactor";
5275const char kFastPairHandshakeRefactorDescription[] =
5276 "Enables refactored handshake logic for Google Fast Pair service.";
5277
Shane Fitzpatrickea882292022-01-24 20:30:155278const char kFastPairLowPowerName[] = "Enable Fast Pair Low Power mode";
5279const char kFastPairLowPowerDescription[] =
5280 "Enables Fast Pair Low Power mode, which doesn't scan for devices "
5281 "continously. This results in lower power usage, but also higher latency "
5282 "for device discovery.";
5283
Jon Mann022bd3522022-01-19 22:11:515284const char kFastPairSoftwareScanningName[] =
5285 "Enable Fast Pair Software Scanning";
5286const char kFastPairSoftwareScanningDescription[] =
5287 "Allow using Fast Pair on devices which don't support hardware offloading "
5288 "of BLE scans. For development use.";
5289
Juliet Levesqueaa230e02022-04-19 18:11:145290const char kFastPairSavedDevicesName[] = "Enable Fast Pair Saved Devices";
5291const char kFastPairSavedDevicesDescription[] =
5292 "Enables the Fast Pair \"Saved Devices\" page to display a list of the "
5293 "user's devices and provide the option to opt in or out of saving devices "
5294 "to their account.";
5295
Ashutosh Singhalab30b18e2022-06-24 15:09:275296const char kFrameSinkDesktopCapturerInCrdName[] =
5297 "Enable FrameSinkDesktopCapturer in CRD";
5298const char kFrameSinkDesktopCapturerInCrdDescription[] =
5299 "Enables the use of FrameSinkDesktopCapturer in the video streaming for "
5300 "CRD, "
5301 "replacing the use of AuraDesktopCapturer";
5302
Miguel Casas8821b0982020-07-02 12:28:495303const char kUseHDRTransferFunctionName[] =
5304 "Monitor/Display HDR transfer function";
5305const char kUseHDRTransferFunctionDescription[] =
5306 "Allows using the HDR transfer functions of any connected monitor that "
5307 "supports it";
Ahmed Fakhry4f567e692018-10-16 15:51:085308const char kDoubleTapToZoomInTabletModeName[] =
5309 "Double-tap to zoom in tablet mode";
5310const char kDoubleTapToZoomInTabletModeDescription[] =
5311 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
5312 "page.";
5313
Yulun Wub88a9202021-07-13 19:44:565314const char kQuickSettingsPWANotificationsName[] =
5315 "Enable setting of PWA notification permissions in quick settings ";
5316const char kQuickSettingsPWANotificationsDescription[] =
5317 "Replace website notification permissions with PWA notification "
5318 "permissions in the quick settings menu. Website notification permissions "
5319 "settings will be migrated to the lacros - chrome browser.";
5320
Travis Lane636a4ac2022-05-24 16:28:555321const char kDriveFsChromeNetworkingName[] =
5322 "Enable the DriveFS / Chrome Network Service bridge";
5323const char kDriveFsChromeNetworkingDescription[] =
5324 "Enable the bridge bewteen DriveFS and the Chrome Network Service for "
5325 "communication with the Drive backend.";
5326
Cassie Wang0a701fa2022-11-09 01:19:045327const char kEnableArcHostVpnName[] =
5328 "Enable ArcHostVpn for builtin VPN clients";
5329const char kEnableArcHostVpnDescription[] =
5330 "When a builtin VPN client is started, also start the ArcHostVpn service "
5331 "to reflect the builtin VPN config and VPN network inside ARC.";
5332
Alex Newcomere5a362c2019-05-02 19:31:355333const char kEnableBackgroundBlurName[] = "Enable background blur.";
5334const char kEnableBackgroundBlurDescription[] =
minchab2ded5ce2019-09-06 18:32:285335 "Enables background blur for the Launcher, Shelf, Unified System Tray etc.";
Alex Newcomere5a362c2019-05-02 19:31:355336
Lei Zhang1a6fd01b2021-03-24 17:03:485337const char kEnhancedClipboardNudgeSessionResetName[] =
Matthew Mourgosdfd6d852020-10-22 03:15:285338 "Enable resetting enhanced clipboard nudge data";
Lei Zhang1a6fd01b2021-03-24 17:03:485339const char kEnhancedClipboardNudgeSessionResetDescription[] =
Matthew Mourgosdfd6d852020-10-22 03:15:285340 "When enabled, this will reset the clipboard nudge shown data on every new "
5341 "user session, allowing the nudge to be shown again.";
5342
Garrick Evanse6f9f252023-01-19 05:43:085343const char kDisableDnsProxyName[] = "Disable DNS proxy service for ChromeOS";
5344const char kDisableDnsProxyDescription[] =
5345 "Turns off DNS proxying and SecureDNS for ChromeOS (only). Does not impact "
5346 "Chrome browser.";
5347
Jason Jeremy Iman516f0722023-03-03 02:15:455348const char kPasspointARCSupportName[] = "Enable Passpoint ARC support";
Jason Jeremy Imanee9104eb52023-03-01 04:11:045349const char kPasspointARCSupportDescription[] =
Jason Jeremy Iman516f0722023-03-03 02:15:455350 "Feature to allow Android apps (running on ARC) to provision WiFi networks "
5351 "through Passpoint.";
Jason Jeremy Imanee9104eb52023-03-01 04:11:045352
Gil Dekel43a14582022-12-02 05:50:285353const char kEnableEdidBasedDisplayIdsName[] = "Enable EDID-based display IDs";
5354const char kEnableEdidBasedDisplayIdsDescription[] =
5355 "When enabled, a display's ID will be produced by hashing certain values "
5356 "in the display's EDID blob. EDID-based display IDs allow ChromeOS to "
5357 "consistently identify previously connected displays, regardless of the "
5358 "physical port they were connected to, and load user display layouts more "
5359 "accurately.";
5360
Harry Cutts6deecd82022-04-08 01:30:235361const char kEnableExternalKeyboardsInDiagnosticsAppName[] =
5362 "Enable external keyboards in the Diagnostics App";
5363const char kEnableExternalKeyboardsInDiagnosticsAppDescription[] =
5364 "Shows external keyboards in the Diagnostics App's input section. Requires "
5365 "#enable-input-in-diagnostics-app to be enabled.";
5366
xiangdong kong7348a6562023-02-15 18:10:055367const char kEnableGetDebugdLogsInParallelName[] =
5368 "Enable getting debug daemon logs in parallel for feedback";
5369const char kEnableGetDebugdLogsInParallelDescription[] =
5370 "When enabled, the feedback app will use a new debug daemon method to get "
5371 "logs. The method collects different pieces of logs in parallel.";
5372
James Hawkinsa9fefa8d2020-10-08 00:24:035373const char kEnableHostnameSettingName[] = "Enable setting the device hostname";
5374const char kEnableHostnameSettingDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355375 "Enables the ability to set the ChromeOS hostname, the name of the device "
James Hawkinsa9fefa8d2020-10-08 00:24:035376 "that is exposed to the local network";
5377
Harry Cuttscfe6d934f2019-06-05 21:45:555378const char kEnableGesturePropertiesDBusServiceName[] =
5379 "Enable gesture properties D-Bus service";
5380const char kEnableGesturePropertiesDBusServiceDescription[] =
5381 "Enable a D-Bus service for accessing gesture properties, which are used "
5382 "to configure input devices.";
5383
Xiaohui Chenf4283f32018-11-26 20:02:505384const char kEnableGoogleAssistantDspName[] =
5385 "Enable Google Assistant with hardware-based hotword";
5386const char kEnableGoogleAssistantDspDescription[] =
5387 "Enable an experimental feature that uses hardware-based hotword detection "
5388 "for Assistant. Only a limited number of devices have this type of "
5389 "hardware support.";
5390
Xiaohui Chenc3baca42018-11-30 19:29:375391const char kEnableGoogleAssistantStereoInputName[] =
5392 "Enable Google Assistant with stereo audio input";
5393const char kEnableGoogleAssistantStereoInputDescription[] =
5394 "Enable an experimental feature that uses stereo audio input for hotword "
5395 "and voice to text detection in Google Assistant.";
5396
Xiaohui Chen3f3a5bf12019-09-28 00:29:455397const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC";
5398const char kEnableGoogleAssistantAecDescription[] =
5399 "Enable an experimental feature that removes local feedback from audio "
5400 "input to help hotword and ASR when background audio is playing.";
5401
Harry Cutts8b445de2021-06-10 02:25:555402const char kEnableInputEventLoggingName[] = "Enable input event logging";
5403const char kEnableInputEventLoggingDescription[] =
5404 "Enable detailed logging of input events from touchscreens, touchpads, and "
5405 "mice. These events include the locations of all touches as well as "
5406 "relative pointer movements, and so may disclose sensitive data. They "
5407 "will be included in feedback reports and system logs, so DO NOT ENTER "
5408 "SENSITIVE INFORMATION with this flag enabled.";
5409
Harry Cuttsf74356712021-05-14 02:13:385410const char kEnableInputInDiagnosticsAppName[] =
5411 "Enable input device cards in the Diagnostics App";
5412const char kEnableInputInDiagnosticsAppDescription[] =
5413 "Enable input device cards in the Diagnostics App";
5414
Roger Tinkoff6c1bed22022-01-07 14:52:015415const char kEnableKeyboardBacklightToggleName[] =
5416 "Enable Keyboard Backlight Toggle.";
5417const char kEnableKeyboardBacklightToggleDescription[] =
5418 "Enable toggling of the keyboard backlight. By "
5419 "default, this flag is enabled.";
5420
Ashley Prasad6fb42c2e2022-03-21 16:07:075421const char kEnableLogControllerForDiagnosticsAppName[] =
5422 "Enable DiagnosticsLogController for Diagnostics App";
5423const char kEnableLogControllerForDiagnosticsAppDescription[] =
5424 "Uses DiagnosticsLogController to manage the lifetime of Diagnostics App "
5425 "logs. Enables creation of combined diagnostics log after Diagnostics "
5426 "App is closed.";
5427
alanlxl43ddc2082022-02-01 00:24:165428const char kEnableNeuralPalmAdaptiveHoldName[] = "Palm Rejection Adaptive Hold";
5429const char kEnableNeuralPalmAdaptiveHoldDescription[] =
5430 "Enable adaptive hold in palm rejection. Not compatible with all devices.";
5431
Rob Schonbergerc258473f2019-11-08 05:09:355432const char kEnableNeuralStylusPalmRejectionName[] =
5433 "Enable Neural Palm Detection";
5434const char kEnableNeuralStylusPalmRejectionDescription[] =
5435 "Experimental: Enable Neural Palm detection. Not compatible with all "
5436 "devices.";
5437
Xiangdong Kongec5a0772021-05-03 21:53:015438const char kEnableOsFeedbackName[] = "Enable updated Feedback Tool App";
5439const char kEnableOsFeedbackDescription[] =
5440 "Enable the feedback tool with new UX design that helps users mitigate "
5441 "the issues while writing feedback and makes the UI easier to use.";
5442
Mitsuru Oshimadaf54572020-04-07 14:47:595443const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping";
5444const char kEnableNewShortcutMappingDescription[] =
5445 "Enables experimental new shortcut mapping";
5446
Rob Schonbergere0a8e3c2020-04-21 03:04:395447const char kEnablePalmSuppressionName[] =
5448 "Enable Palm Suppression with Stylus.";
5449const char kEnablePalmSuppressionDescription[] =
5450 "If enabled, suppresses touch when a stylus is on a touchscreen.";
5451
Catherine Zhang9df0c472023-03-09 07:33:215452const char kEnableEdgeDetectionName[] = "Enable Edge Detection.";
5453const char kEnableEdgeDetectionDescription[] =
5454 "If enabled, suppresses edge touch based on sensors' info.";
5455
Daniel Andersson3a71e982022-11-17 02:34:075456const char kEnablePerDeskZOrderName[] =
5457 "Enable per-desk Z-order for all-desk windows.";
5458const char kEnablePerDeskZOrderDescription[] =
5459 "The Z-order of all-desk windows is maintained on a per-desk basis. This "
5460 "means that all-desk windows will not keep popping to the front when "
5461 "switching desks.";
5462
Drew Davenportef725712022-07-13 21:05:085463const char kEnableSeamlessRefreshRateSwitchingName[] =
5464 "Seamless Refresh Rate Switching";
5465const char kEnableSeamlessRefreshRateSwitchingDescription[] =
5466 "This option enables seamlessly changing the refresh rate based on power "
5467 "state on devices with supported hardware and drivers.";
5468
Harry Cuttsbc6941802022-04-07 22:57:475469const char kEnableTouchpadsInDiagnosticsAppName[] =
5470 "Enable touchpad cards in the Diagnostics App";
5471const char kEnableTouchpadsInDiagnosticsAppDescription[] =
5472 "Shows touchpad cards in the Diagnostics App's input section. Requires "
5473 "#enable-input-in-diagnostics-app to be enabled.";
5474
5475const char kEnableTouchscreensInDiagnosticsAppName[] =
5476 "Enable touchscreen cards in the Diagnostics App";
5477const char kEnableTouchscreensInDiagnosticsAppDescription[] =
5478 "Shows touchscreen cards in the Diagnostics App's input section. Requires "
5479 "#enable-input-in-diagnostics-app to be enabled.";
5480
Brian Geffon297843f2022-06-27 16:33:435481const char kEnableZramWriteback[] = "Enable Zram Writeback";
5482const char kEnableZramWritebackDescription[] =
5483 "If enabled zram swap will be able to write back to disk increasing "
5484 "overall swap capacity";
5485
Andrew Wolfersa051f742022-03-03 21:08:225486const char kEnableVariableRefreshRateName[] = "Enable Variable Refresh Rate";
5487const char kEnableVariableRefreshRateDescription[] =
5488 "Enable the variable refresh rate (Adaptive Sync) setting for capable "
5489 "displays.";
5490
Nathan Mugglief8711802022-11-03 18:16:275491const char kEnableViewPpdName[] = "Enable View PPD link.";
5492const char kEnableViewPpdDescription[] =
5493 "Enable View PPD link in the edit printer dialog allowing the "
5494 "user to request to view the PPD for a specific printer.";
5495
Kyle Horimoto2d3b6b42022-05-13 02:12:165496const char kEapGtcWifiAuthenticationName[] = "EAP-GTC WiFi Authentication";
5497const char kEapGtcWifiAuthenticationDescription[] =
5498 "Allows configuration of WiFi networks using EAP-GTC authentication";
5499
whalechangf06b6ea72022-08-26 01:13:115500const char kAudioPeripheralVolumeGranularityName[] =
5501 "Audio Peripheral Volume Granularity";
5502const char kAudioPeripheralVolumeGranularityDescription[] =
5503 "Change audio peripheral volume granularity as close as peripheral "
5504 "reported. "
5505 "If the reported volume granularity are too small or too big. use 25 steps "
5506 "instead.";
5507
Abbas Nayebi6263f192022-05-13 21:10:415508const char kEcheSWAName[] = "Enable Eche feature";
5509const char kEcheSWADescription[] = "This is the main flag for enabling Eche.";
paulzhchen26343e92021-02-09 05:43:055510
Jon Manndf97fa52022-11-28 23:01:165511const char kEcheLauncherName[] = "Enable the Eche launcher";
5512const char kEcheLauncherDescription[] =
5513 "Enables the launcher for all apps for Eche.";
5514
Pu Shi93793432022-12-20 20:34:575515const char kEcheLauncherListViewName[] = "Enable Eche launcher list view";
5516const char kEcheLauncherListViewDescription[] =
5517 "Convert Eche launcher from grid view to list view";
5518
Joe Antonettib56b8202023-01-18 20:42:085519const char kEcheLauncherIconsInMoreAppsButtonName[] =
5520 "Enable app icons in the Eche launcher more apps button";
5521const char kEcheLauncherIconsInMoreAppsButtonDescription[] =
5522 "Show app icons in the Eche launcher more apps button";
5523
Crisrael Lucero264086d2023-03-07 02:30:065524const char kEcheNetworkConnectionStateName[] =
5525 "Enable loading and error states for Eche.";
5526const char kEcheNetworkConnectionStateDescription[] =
5527 "Shows loading and error states in Phone Hub's recent apps section based "
5528 "on the connection state with the Phone.";
5529
paulzhchenfac28192021-10-08 08:14:185530const char kEcheSWADebugModeName[] = "Enable Eche Debug Mode";
Abbas Nayebi6263f192022-05-13 21:10:415531const char kEcheSWADebugModeDescription[] =
paulzhchen7c5907f52022-09-03 17:46:485532 "Save console logs of Eche in the system log";
5533
5534const char kEcheSWAMeasureLatencyName[] = "Measure Eche E2E Latency";
5535const char kEcheSWAMeasureLatencyDescription[] =
5536 "Measure Eche E2E Latency and print all E2E latency logs of Eche in "
5537 "Console";
paulzhchenfac28192021-10-08 08:14:185538
mavishsuc3dcafaac2022-09-28 06:27:425539const char kEcheSWASendStartSignalingName[] =
5540 "Enable Eche Send Start Signaling";
5541const char kEcheSWASendStartSignalingDescription[] =
5542 "Allows sending start signaling action to establish Eche's WebRTC "
5543 "connection";
5544
mavishsu1ebe64a2022-09-29 12:52:245545const char kEcheSWADisableStunServerName[] = "Disable Eche STUN server";
5546const char kEcheSWADisableStunServerDescription[] =
5547 "Allows disabling the stun servers when establishing a WebRTC connection "
5548 "to Eche";
5549
Denalex Orakwue44a47a42022-12-07 08:56:085550const char kEcheSWACheckAndroidNetworkInfoName[] = "Check Android network info";
5551const char kEcheSWACheckAndroidNetworkInfoDescription[] =
5552 "Allows CrOS to analyze Android network information to provide more "
5553 "context on connection errors";
5554
Denalex Orakwuef2ea70a2023-02-22 20:48:265555const char kEcheSWAProcessAndroidAccessibilityTreeName[] =
5556 "Process Android Application Accessibility Tree";
5557const char kEcheSWAProcessAndroidAccessibilityTreeDescription[] =
5558 "Allows CrOS to process the Android accessibility tree information of the "
5559 "currently streaming app.";
5560
andrewxu6396d652023-02-20 17:58:545561const char kEnableNotificationImageDragName[] =
5562 "Enable notification image drag";
5563const char kEnableNotificationImageDragDescription[] =
5564 "Enable users to drag the image shown on the notification and drop it to "
5565 "directly paste or share";
5566
Pranav Batra96b8eba2021-07-02 21:17:215567const char kEnableOAuthIppName[] =
5568 "Enable OAuth when printing via the IPP protocol";
5569const char kEnableOAuthIppDescription[] =
5570 "Enable OAuth when printing via the IPP protocol";
5571
Jenny Zhang0c298e42022-01-12 03:09:265572const char kEnforceAshExtensionKeeplistName[] =
5573 "Enforce Ash extension keeplist";
5574const char kEnforceAshExtensionKeeplistDescription[] =
5575 "Enforce the Ash extension keeplist. Only the extensions and Chrome apps on"
5576 " the keeplist are enabled in Ash.";
5577
Matthew Mourgos6f663a42023-03-14 20:58:085578const char kEolResetDismissedPrefsName[] =
5579 "Reset end of life notification prefs";
5580const char kEolResetDismissedPrefsDescription[] =
5581 "Reset the end of life notification prefs to their default value, at the "
5582 "start of the user session. This is meant to make manual testing easier.";
5583
Matthew Mourgos0f79f502023-03-17 21:22:405584const char kEolIncentiveName[] = "Enable end of life incentives";
5585const char kEolIncentiveDescription[] =
5586 "Allows end of life incentives to be shown within the system ui.";
5587
Hidehiko Abe826511f2023-03-24 06:58:435588const char kExoConsumedByImeByFlagName[] =
5589 "Use the consumed bit from IME in exo";
5590const char kExoConsumedByImeByFlagDescription[] =
5591 "To see whether a key event is consumed or not, this let exo to use a bit"
5592 " from IME directly, instead of using heuristics based on key code etc.";
5593
Prabir Pradhan67677e82020-09-11 18:26:525594const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients";
5595const char kExoGamepadVibrationDescription[] =
5596 "Allow Exo clients like Android to request vibration events for gamepads "
5597 "that support it.";
5598
Nicholas Hollingum4cbff262020-09-08 04:02:155599const char kExoOrdinalMotionName[] =
5600 "Raw (unaccelerated) motion for Linux applications";
5601const char kExoOrdinalMotionDescription[] =
5602 "Send unaccelerated values as raw motion events to linux applications.";
5603
Jeeva Murugan0c7d43a82022-11-07 01:10:275604const char kExperimentalAccessibilityDictationContextCheckingName[] =
5605 "Experimental accessibility dictation using context checking.";
5606const char kExperimentalAccessibilityDictationContextCheckingDescription[] =
5607 "Enables experimental dictation context checking.";
5608
Josiah Kcb91cd12022-03-22 19:27:065609const char kExperimentalAccessibilityGoogleTtsLanguagePacksName[] =
5610 "Experimental accessibility Google TTS Langauge Packs.";
5611const char kExperimentalAccessibilityGoogleTtsLanguagePacksDescription[] =
5612 "Enables downloading Google TTS voices using Langauge Packs.";
5613
Rose Garcia26e2ae32019-06-25 00:57:545614const char kExperimentalAccessibilitySwitchAccessTextName[] =
5615 "Enable enhanced Switch Access text input.";
5616const char kExperimentalAccessibilitySwitchAccessTextDescription[] =
5617 "Enable experimental or in-progress Switch Access features for improved "
5618 "text input";
5619
Andres Calderon Jaramilloa55fccb2023-03-24 19:22:115620const char kExposeOutOfProcessVideoDecodingToLacrosName[] =
5621 "Expose out-of-process video decoding (OOP-VD) to LaCrOS.";
5622const char kExposeOutOfProcessVideoDecodingToLacrosDescription[] =
5623 "Accept media.stable.mojom.StableVideoDecoderFactory connection requests "
5624 "from LaCrOS and host said factories in utility processes.";
5625
Steffen Secklerc95470d2022-08-12 07:26:005626const char kFileTransferEnterpriseConnectorName[] =
5627 "Enable Files Transfer Enterprise Connector.";
5628const char kFileTransferEnterpriseConnectorDescription[] =
5629 "Enable the File Transfer Enterprise Connector.";
5630
Luciano Pachecoa2f314ee2022-06-02 14:22:145631const char kFilesAppExperimentalName[] =
5632 "Experimental UI features for Files app";
5633const char kFilesAppExperimentalDescription[] =
5634 "Enable experimental UI features for Files app. Experimental features are "
5635 "expected to be non functional to end users.";
5636
Noel Gordon5c5a49e62023-01-16 06:14:005637const char kFilesConflictDialogName[] = "Files app conflict dialog";
5638const char kFilesConflictDialogDescription[] =
5639 "When enabled, the conflict dialog will be shown during file transfers "
5640 "if a file entry in the transfer exists at the destination.";
5641
Ben Reich2caaccf2023-02-06 23:17:505642const char kFilesDriveShortcutsName[] = "Files app Google Drive shortcut icons";
5643const char kFilesDriveShortcutsDescription[] =
5644 "When enabled, shows an icon for files in Google Drive that are shortcuts";
5645
Alex Danilo22b6b9c2021-11-18 06:44:445646const char kFilesExtractArchiveName[] = "Extract archive in Files app";
5647const char kFilesExtractArchiveDescription[] =
5648 "Enable the simplified archive extraction feature in Files app";
5649
Marcello Salomaodd0e6de2022-09-14 00:28:475650const char kFilesInlineSyncStatusName[] =
5651 "Enable inline sync status in Files app.";
5652const char kFilesInlineSyncStatusDescription[] =
5653 "Enable displaying the sync status of each file next to its name in Files "
5654 "app.";
5655
Bo Majewski24757cb2022-09-20 06:42:185656const char kFilesSearchV2Name[] = "V2 generation of file search.";
5657const char kFilesSearchV2Description[] = "Enable V2 generation of file search.";
5658
Omid Tourzanbf2a0dcf2020-09-10 08:53:555659const char kFilesSinglePartitionFormatName[] =
5660 "Enable Partitioning of Removable Disks.";
5661const char kFilesSinglePartitionFormatDescription[] =
5662 "Enable partitioning of removable disks into single partition.";
5663
Joel Hockeya4865f1f2020-10-09 00:41:275664const char kFilesTrashName[] = "Enable Files Trash.";
5665const char kFilesTrashDescription[] =
5666 "Enable trash for My files volume in Files App.";
5667
Joel Hockey487b679b2023-03-15 04:10:295668const char kFilesTrashDriveName[] = "Enable Files Trash for Drive.";
5669const char kFilesTrashDriveDescription[] =
5670 "Enable trash for Drive volume in Files App.";
5671
Ricky Liang3bd2754b52020-10-07 02:50:325672const char kForceSpectreVariant2MitigationName[] =
5673 "Force Spectre variant 2 mitigagtion";
5674const char kForceSpectreVariant2MitigationDescription[] =
5675 "Forces Spectre variant 2 mitigation. Setting this to enabled will "
5676 "override #spectre-variant2-mitigation and any system-level setting that "
5677 "disables Spectre variant 2 mitigation.";
5678
jhtinc1f43aa2022-11-10 03:27:045679const char kFirstPartyVietnameseInputName[] =
5680 "First party Vietnamese Input Method";
5681const char kFirstPartyVietnameseInputDescription[] =
5682 "Use first party input method for Vietnamese VNI and Telex";
5683
Daniel Anderssona36c4bc2021-06-04 22:09:435684const char kFocusFollowsCursorName[] = "Focus follows cursor";
5685const char kFocusFollowsCursorDescription[] =
5686 "Enable window focusing by moving the cursor.";
5687
Cassy Chun-Crogan26d8e142023-01-25 02:00:535688const char kForceReSyncDriveName[] = "Force resync drive";
5689const char kForceReSyncDriveDescription[] =
5690 "Enable Drive to forcibly resync office files.";
5691
yjliu8f78e8b2020-07-22 20:51:215692const char kFrameThrottleFpsName[] = "Set frame throttling fps.";
5693const char kFrameThrottleFpsDescription[] =
5694 "Set the throttle fps for compositor frame submission.";
5695const char kFrameThrottleFpsDefault[] = "Default";
5696const char kFrameThrottleFps5[] = "5 fps";
5697const char kFrameThrottleFps10[] = "10 fps";
5698const char kFrameThrottleFps15[] = "15 fps";
5699const char kFrameThrottleFps20[] = "20 fps";
5700const char kFrameThrottleFps25[] = "25 fps";
5701const char kFrameThrottleFps30[] = "30 fps";
5702
Nancy Wangea75f7f2021-12-29 05:11:365703const char kFullRestoreForLacrosName[] = "Full restore lacros support";
5704const char kFullRestoreForLacrosDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355705 "ChromeOS full restore lacros support";
Nancy Wangea75f7f2021-12-29 05:11:365706
Nigel Tao03c69032022-04-23 03:10:475707const char kFuseBoxDebugName[] = "Debugging UI for ChromeOS FuseBox service";
5708const char kFuseBoxDebugDescription[] =
5709 "Show additional debugging UI for ChromeOS FuseBox service.";
5710
Zufeng Wang9d3362eb822021-03-11 00:23:295711const char kHelpAppLauncherSearchName[] = "Help App launcher search";
5712const char kHelpAppLauncherSearchDescription[] =
5713 "Enables showing search results from the help app in the launcher.";
5714
jhtin2c8808102022-02-21 08:53:355715const char kDiacriticsOnPhysicalKeyboardLongpressName[] =
5716 "Enable diacritics and variant character selection on PK longpress.";
5717const char kDiacriticsOnPhysicalKeyboardLongpressDescription[] =
5718 "Enable diacritics and other varient character selection on physical "
5719 "keyboard longpress.";
5720
David Black6fca0bc2022-10-08 00:35:175721const char kHoldingSpacePredictabilityName[] =
5722 "Enable holding space predictability";
5723const char kHoldingSpacePredictabilityDescription[] =
5724 "Increases predictability of holding space by being ever present in the "
5725 "shelf and always reserving space for downloads and screen captures.";
5726
5727const char kHoldingSpaceRefreshName[] = "Enable holding space refresh";
5728const char kHoldingSpaceRefreshDescription[] =
5729 "Enables a refresh of holding space which better conveys the relationship "
5730 "with the Files app.";
5731
5732const char kHoldingSpaceSuggestionsName[] = "Enable holding space suggestions";
5733const char kHoldingSpaceSuggestionsDescription[] =
5734 "Enables pinned file suggestions in holding space to help the user "
5735 "understand and discover the ability to pin.";
5736
Curtis McMullana1900062021-06-28 01:13:255737const char kImeAssistEmojiEnhancedName[] = "Enable enhanced assistive emojis";
5738const char kImeAssistEmojiEnhancedDescription[] =
5739 "Enable enhanced assistive emoji suggestion features for native IME";
5740
Curtis McMullan35800d22020-11-26 06:45:195741const char kImeAssistMultiWordName[] =
5742 "Enable assistive multi word suggestions";
5743const char kImeAssistMultiWordDescription[] =
5744 "Enable assistive multi word suggestions for native IME";
5745
Curtis McMullan6f6526d2021-07-09 04:22:455746const char kImeAssistMultiWordExpandedName[] =
5747 "Enable expanded assistive multi word suggestions";
5748const char kImeAssistMultiWordExpandedDescription[] =
5749 "Enable expanded assistive multi word suggestions for native IME";
5750
Chuong Ho0db3d5d22023-02-27 02:18:335751const char kImeFstDecoderParamsUpdateName[] =
5752 "Enable FST Decoder parameters update";
5753const char kImeFstDecoderParamsUpdateDescription[] =
5754 "Enable updated parameters for the FST decoder.";
5755
Grey Wang8896c882022-09-02 00:21:555756const char kImeTrayHideVoiceButtonName[] =
5757 "Hides redudant voice button in IME tray";
5758const char kImeTrayHideVoiceButtonDescription[] =
5759 "Hides voice button in IME tray when mic icon is shown in the shelf";
5760
John Palmerb4e42c02022-02-11 07:25:165761const char kVirtualKeyboardNewHeaderName[] =
5762 "Enable new header for virtual keyboard";
5763const char kVirtualKeyboardNewHeaderDescription[] =
5764 "Enable new header for virtual keyboard to improve navigation.";
5765
John Palmer77ce9282021-07-15 09:23:095766const char kImeSystemEmojiPickerClipboardName[] =
5767 "System emoji picker clipboard";
5768const char kImeSystemEmojiPickerClipboardDescription[] =
5769 "Emoji picker will insert emoji into clipboard if they can't be inserted "
5770 "into a text field";
Chuong Hoa3217d52021-12-08 06:36:145771
5772const char kImeSystemEmojiPickerExtensionName[] =
5773 "System emoji picker extension";
5774const char kImeSystemEmojiPickerExtensionDescription[] =
5775 "Emoji picker extension allows users to select emoticons and symbols to "
5776 "input.";
5777
Kaiqi Liang5ddd91b2022-12-01 23:14:535778const char kImeSystemEmojiPickerGIFSupportName[] =
5779 "System emoji picker gif support";
5780const char kImeSystemEmojiPickerGIFSupportDescription[] =
5781 "Emoji picker gif support allows users to select gifs to input.";
5782
Chuong Ho7a5781832022-02-09 06:47:265783const char kImeSystemEmojiPickerSearchExtensionName[] =
5784 "System emoji picker search extension";
5785const char kImeSystemEmojiPickerSearchExtensionDescription[] =
5786 "Emoji picker search extension enhances current emoji search by "
5787 "introducing multi-word prefix search.";
5788
John Palmer90a32212021-08-03 08:49:135789const char kImeStylusHandwritingName[] = "Stylus Handwriting";
5790const char kImeStylusHandwritingDescription[] =
5791 "Enable VK UI for stylus in text fields";
John Palmer77ce9282021-07-15 09:23:095792
Curtis McMullan6011fe7f2023-02-23 01:22:205793const char kImeUsEnglishModelUpdateName[] =
5794 "Enable US English IME model update";
5795const char kImeUsEnglishModelUpdateDescription[] =
5796 "Enable updated US English IME language models for native IME";
5797
Sean Kaud5d0fc72023-01-30 19:08:265798const char kJellyColorsName[] = "Jelly Colors";
5799const char kJellyColorsDescription[] = "Enable Jelly coloring";
5800
Erik Chend7082ec2021-06-25 01:04:125801const char kLacrosAvailabilityIgnoreName[] =
5802 "Ignore lacros-availability policy";
5803const char kLacrosAvailabilityIgnoreDescription[] =
5804 "Makes the lacros-availability policy have no effect. Instead Lacros "
5805 "availability will be controlled by experiment and/or user flags.";
5806
Hidehiko Abea7217c92022-02-01 05:54:575807const char kLacrosOnlyName[] = "Lacros is the only browser";
5808const char kLacrosOnlyDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355809 "Use Lacros-chrome as the only web browser on ChromeOS. "
Hidehiko Abea7217c92022-02-01 05:54:575810 "This flag is ignored if Lacros support or primary is disabled.";
5811
Hidehiko Abe9f190d12021-03-18 12:55:205812const char kLacrosPrimaryName[] = "Lacros as the primary browser";
5813const char kLacrosPrimaryDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355814 "Use Lacros-chrome as the primary web browser on ChromeOS. "
Hidehiko Abe9f190d12021-03-18 12:55:205815 "This flag is ignored if Lacros support is disabled.";
5816
Erik Chen601a5d62020-12-07 20:05:125817const char kLacrosStabilityName[] = "Lacros stability";
Roman Arorac36aeeb92021-10-04 20:35:585818const char kLacrosStabilityDescription[] = "Lacros update channel.";
Erik Chen601a5d62020-12-07 20:05:125819
Jae Hoon Kim94e1cfd2021-05-19 20:52:525820const char kLacrosSelectionName[] = "Lacros selection";
5821const char kLacrosSelectionDescription[] =
5822 "Choosing between rootfs or stateful Lacros.";
5823
5824const char kLacrosSelectionRootfsDescription[] = "Rootfs";
5825const char kLacrosSelectionStatefulDescription[] = "Stateful";
5826
Artem Sumaneev1f3555a2023-01-30 12:48:275827const char kLacrosSelectionPolicyIgnoreName[] =
5828 "Ignore lacros-selection policy";
5829const char kLacrosSelectionPolicyIgnoreDescription[] =
5830 "Makes the lacros-selection policy have no effect. Instead Lacros "
5831 "selection will be controlled by experiment and/or user flags.";
5832
James Cook2fe5ca7b2020-10-09 02:54:175833const char kLacrosSupportName[] = "Lacros support";
James Cookac2473be2020-04-28 00:54:185834const char kLacrosSupportDescription[] =
Yuta Hijikata45214bc2021-04-27 16:36:385835 "Support for the experimental lacros-chrome browser. Please note that the "
5836 "first restart can take some time to setup lacros-chrome. Please DO NOT "
5837 "attempt to turn off the device during the restart.";
James Cookac2473be2020-04-28 00:54:185838
Erik Chen5d686e2a02022-11-01 23:11:315839const char kLacrosWaylandLoggingName[] = "Lacros wayland logging";
5840const char kLacrosWaylandLoggingDescription[] =
5841 "Enables wayland logging for Lacros. This generates a significant amount "
5842 "of logs on disk. Logs are cleared after two restarts.";
5843
Yuta Hijikataad794422022-04-15 17:33:125844const char kLacrosMoveProfileMigrationName[] = "Enforce profile move migration";
5845const char kLacrosMoveProfileMigrationDescription[] =
5846 "Enforce Lacros profile move migration which moves files from Ash profile "
5847 "directory to Lacros profile directory instead of copying. Please note "
5848 "that disabling Lacros and falling back to Ash after move migration is not "
5849 "supported.";
5850
Yuta Hijikata6a575d42022-01-11 04:09:075851const char kLacrosProfileMigrationForceOffName[] = "Disable profile migration";
5852const char kLacrosProfileMigrationForceOffDescription[] =
5853 "Disables lacros profile migration. Lacros profile migration is being "
5854 "rolled out to internal users first. Once lacros profile migration becomes "
5855 "available to the user, the completion of profile migration becomes a "
5856 "requirement to use lacros i.e. if profile migration gets rolled out to "
5857 "the user and the migration fails, then lacros becomes unavailable until "
5858 "the migration is completed. By enabling this flag, even if profile "
5859 "migration is rolled out to the user, the migration will not run and the "
5860 "user can continue to use lacros without profile migration.";
5861
Rachel Wongbde90d72022-07-11 06:18:275862const char kLauncherItemSuggestName[] = "Launcher ItemSuggest";
5863const char kLauncherItemSuggestDescription[] =
5864 "Allows configuration of experiment parameters for ItemSuggest in the "
5865 "launcher.";
5866
Ahmed Fakhry039882f2020-06-16 21:56:215867const char kLimitShelfItemsToActiveDeskName[] =
5868 "Limit Shelf items to active desk";
5869const char kLimitShelfItemsToActiveDeskDescription[] =
5870 "Limits items on the shelf to the ones associated with windows on the "
5871 "active desk";
5872
Ahmed Fakhry15d707e2019-02-22 23:54:215873const char kListAllDisplayModesName[] = "List all display modes";
5874const char kListAllDisplayModesDescription[] =
5875 "Enables listing all external displays' modes in the display settings.";
5876
Gil Dekel11cbdfb2020-12-23 21:43:275877const char kEnableHardwareMirrorModeName[] = "Enable Hardware Mirror Mode";
5878const char kEnableHardwareMirrorModeDescription[] =
5879 "Enables hardware support when multiple displays are set to mirror mode.";
5880
Jungshik Shin1c8c4882022-09-14 05:35:265881const char kHindiInscriptLayoutName[] = "Hindi Inscript Layout on CrOS";
5882const char kHindiInscriptLayoutDescription[] =
5883 "Enables Hindi Inscript Layout on ChromeOS.";
5884
Megumi Hattori5a0d4182018-03-06 11:09:505885const char kLockScreenNotificationName[] = "Lock screen notification";
5886const char kLockScreenNotificationDescription[] =
5887 "Enable notifications on the lock screen.";
5888
Steven Bennetts66bc3542020-06-25 23:05:285889const char kMeteredShowToggleName[] = "Show Metered Toggle";
5890const char kMeteredShowToggleDescription[] =
5891 "Shows a Metered toggle in the Network settings UI for WiFI and Cellular. "
5892 "The toggle allows users to set whether a network should be considered "
5893 "metered for purposes of bandwith usage (e.g. for automatic updates).";
5894
Toni Barzic5cf7da92021-05-19 21:07:405895const char kMicrophoneMuteNotificationsName[] = "Microphone Mute Notifications";
5896const char kMicrophoneMuteNotificationsDescription[] =
5897 "Enables notifications that are shown when an app tries to use microphone "
5898 "while audio input is muted.";
5899
5900const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device";
5901const char kMicrophoneMuteSwitchDeviceDescription[] =
5902 "Support for detecting the state of hardware microphone mute toggle. Only "
5903 "effective on devices that have a microphone mute toggle. Enabling the "
5904 "flag does not affect the toggle functionality, it only affects how the "
5905 "System UI handles the mute toggle state.";
5906
Jason Thai7036e64e2023-01-23 23:14:395907const char kMultiZoneRgbKeyboardName[] =
5908 "Enable multi-zone RGB keyboard customization";
5909const char kMultiZoneRgbKeyboardDescription[] =
5910 "Enable multi-zone RGB keyboard customization on supported devices.";
5911
Bao-Duy Tranaa329d62020-11-27 05:40:585912const char kMultilingualTypingName[] = "Multilingual typing on CrOS";
5913const char kMultilingualTypingDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355914 "Enables support for multilingual assistive typing on ChromeOS.";
Bao-Duy Tranaa329d62020-11-27 05:40:585915
Michael Hansenc318dec2022-04-01 22:19:015916const char kNearbySharingSelfShareAutoAcceptName[] =
5917 "Nearby Sharing Self Share Auto-Accept";
5918const char kNearbySharingSelfShareAutoAcceptDescription[] =
5919 "Enables auto-accept functionality when sharing between a user's own "
5920 "devices.";
5921
5922const char kNearbySharingSelfShareUIName[] = "Nearby Sharing Self Share UI";
5923const char kNearbySharingSelfShareUIDescription[] =
5924 "Enables UI features for Self Share to allow seamless sharing between a "
5925 "user's own devices.";
Michael Hansenf59f974b2022-01-14 17:40:025926
Gordon Seto2c79d0442022-02-22 22:33:065927const char kOobeHidDetectionRevampName[] = "OOBE HID Detection Revamp";
5928const char kOobeHidDetectionRevampDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355929 "Enables the ChromeOS HID Detection Revamp, which updates OOBE HID "
Gordon Seto2c79d0442022-02-22 22:33:065930 "detection screen UI and related infrastructure.";
5931
Wes Okuhara72373672022-10-14 16:38:195932const char kOsSettingsAppBadgingToggleName[] =
5933 "ChromeOS Settings App Badging Toggle";
5934const char kOsSettingsAppBadgingToggleDescription[] =
5935 "Enables app badging toggle to be displayed in app notification page in"
5936 "ChromeOS Settings.";
5937
Wes Okuhara71ae17c2022-10-10 19:46:565938const char kOsSettingsSearchFeedbackName[] =
5939 "ChromeOS Settings Search Feedback";
5940const char kOsSettingsSearchFeedbackDescription[] =
5941 "Enables search result feedback in ChromeOS Settings when no search "
5942 "results are returned.";
5943
Jimmy Gong35094482021-10-06 23:14:285944const char kPcieBillboardNotificationName[] = "Pcie billboard notification";
5945const char kPcieBillboardNotificationDescription[] =
5946 "Enable Pcie peripheral billboard notification.";
5947
Daniel Andersson9bfdde42021-07-15 20:59:145948const char kPerformantSplitViewResizing[] = "Performant Split View Resizing";
5949const char kPerformantSplitViewResizingDescription[] =
5950 "If enabled, windows may be moved instead of scaled when resizing split "
5951 "view in tablet mode.";
5952
Sam Chiu1dee4a12021-10-12 18:21:275953const char kPhoneHubCallNotificationName[] =
5954 "Incoming call notification in Phone Hub";
5955const char kPhoneHubCallNotificationDescription[] =
5956 "Enables the incoming/ongoing call feature in Phone Hub.";
5957
Jason Sun1d947912021-06-21 16:54:235958const char kPhoneHubCameraRollName[] = "Camera Roll in Phone Hub";
5959const char kPhoneHubCameraRollDescription[] =
5960 "Enables the Camera Roll feature in Phone Hub, which allows users to "
5961 "access recent photos and videos taken on a connected Android device.";
5962
Pu Shi1306f642022-07-29 00:58:345963const char kPhoneHubFeatureSetupErrorHandlingName[] =
5964 "Error handling during Phone Hub feature setup";
5965const char kPhoneHubFeatureSetupErrorHandlingDescription[] =
5966 "Enable the error handling during Phone Hub feature setup. It allows"
5967 "users to see result on Chromebook when the setup failed on connected"
5968 "remote phone device.";
5969
Jennifer Serranof65bc542023-01-11 01:00:565970const char kPhoneHubNudgeName[] = "Phone Hub nudge";
5971const char kPhoneHubNudgeDescription[] =
5972 "Enables a nudge to direct eligible users to open Phone Hub.";
5973
Andreea Costinas478d1ca22023-02-23 11:49:505974const char kPolicyProvidedTrustAnchorsAllowedAtLockScreenName[] =
5975 "Policy-provided trust anchors at lock screen";
5976const char kPolicyProvidedTrustAnchorsAllowedAtLockScreenDescription[] =
5977 "Enables using the policy-provided trust anchors at lock screen";
5978
Peter Boström6324b792022-09-28 23:15:565979const char kPreferDcheckName[] = "Prefer DCHECK-enabled build";
5980const char kPreferDcheckDescription[] =
5981 "Use a DCHECK-enabled build when available.";
5982
Piotr Pawliczek49732c92022-12-12 18:10:585983const char kPrintingPpdChannelName[] = "Printing PPD channel";
5984const char kPrintingPpdChannelDescription[] =
5985 "The channel from which PPD index "
5986 "is loaded when matching PPD files during printer setup.";
5987
James Cookb661f3802021-09-30 21:43:205988const char kProductivityLauncherName[] =
5989 "Productivity experiment: App Launcher";
5990const char kProductivityLauncherDescription[] =
5991 "To evaluate an enhanced Launcher experience that aims to improve app "
5992 "workflows by optimizing access to apps, app content, and app actions.";
5993
Yulun Wu2f5597992022-08-12 23:57:205994const char kProductivityLauncherImageSearchName[] =
5995 "Productivity Launcher experiment: Launcher Image Search";
5996const char kProductivityLauncherImageSearchDescription[] =
5997 "To evaluate the viability of image search as part of Productivity "
5998 "Launcher Search.";
5999
Ana Salazar30ae8e42022-09-15 00:13:446000const char kQuickActionShowBubbleLauncherName[] =
6001 "Swipe to show bubble launcher";
6002const char kQuickActionShowBubbleLauncherDescription[] =
6003 "Enables a fling gesture or mouse scroll from the shelf to show the bubble "
6004 "launcher.";
6005
Ana Salazarbb287bcc42023-01-11 00:34:206006const char kAppListDragAndDropRefactorName[] =
6007 "Drag and drop refactor in launcher";
6008const char kAppListDragAndDropRefactorDescription[] =
6009 "Enables app list drag and drop refactor to use views drag and drop APIs. "
6010 "No user visible changes are expected.";
6011
Li Lin122b7852022-03-10 02:46:396012const char kProjectorName[] = "Enable Projector";
6013const char kProjectorDescription[] =
6014 "Enables Projects SWA and associated recording tools";
6015
Toby Huang6a77193f22022-08-12 18:07:306016const char kProjectorLocalPlaybackName[] = "Enable Projector local playback";
6017const char kProjectorLocalPlaybackDescription[] =
6018 "Supports streaming screencast videos from DriveFS instead of Drive before "
6019 "they have finished transcoding";
6020
6021const char kProjectorAppDebugName[] = "Enable Projector app debug";
6022const char kProjectorAppDebugDescription[] =
6023 "Adds more informative error messages to the Projector app for debugging";
Li Lin122b7852022-03-10 02:46:396024
Yilkal2bc65312023-02-23 21:27:126025const char kProjectorServerSideSpeechRecognitionName[] =
6026 "Enable server side speech recognition for Projector";
6027const char kProjectorServerSideSpeechRecognitionDescription[] =
6028 "Adds server side speech recognition capability to Projector.";
6029
Jiaming Chenge04b3b52022-08-09 02:46:596030const char kQsRevampName[] = "Quick Settings Revamp";
6031const char kQsRevampDescription[] =
6032 "Enable QS UI revamp with separated message center.";
6033
Rachel Carpenter57c8523c2020-09-23 01:11:226034const char kReleaseNotesNotificationAllChannelsName[] =
6035 "Release Notes Notification All Channels";
6036const char kReleaseNotesNotificationAllChannelsDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356037 "Enables the release notes notification for all ChromeOS channels";
Rachel Carpenter57c8523c2020-09-23 01:11:226038
Roger Tinkoff31579eab2022-07-26 00:18:226039const char kReleaseTrackUiName[] = "Release track system tray UI";
6040const char kReleaseTrackUiDescription[] =
6041 "Enables the release track UI in the system tray";
6042
Lei Zhang44abd5d22022-01-11 00:32:346043const char kArcWindowPredictorName[] = "Enable ARC window predictor";
6044const char kArcWindowPredictorDescription[] =
Shengsong Tan81338972021-12-22 05:27:506045 "Enables the window state and bounds predictor for ARC task windows";
6046
Cici Ruan846b6712022-08-12 21:08:186047const char kArcInputOverlayNameBeta[] = "Enable ARC Input Overlay Beta";
6048const char kArcInputOverlayDescriptionBeta[] =
Cici Ruan2374f1b02022-12-07 01:19:586049 "Enable full editor feature for Gaming Input Overlay including features in "
6050 "Alpha V2, so users can add and remove actions.";
Joseph Panga61e7db2022-11-29 21:23:386051
Cici Ruan2374f1b02022-12-07 01:19:586052const char kArcInputOverlayNameAlphaV2[] = "Enable ARC Input Overlay Alpha V2";
6053const char kArcInputOverlayDescriptionAlphaV2[] =
Joseph Panga61e7db2022-11-29 21:23:386054 "Enable menu and action reposition feature for Gaming Input Overlay based "
6055 "on Alpha.";
Cici Ruan846b6712022-08-12 21:08:186056
Elliot Tuck5551fdd2022-07-25 21:10:146057const char kShelfAutoHideSeparationName[] =
6058 "Enable separate shelf auto-hide preferences.";
6059const char kShelfAutoHideSeparationDescription[] =
6060 "Allows for the shelf's auto-hide preference to be specified separately "
6061 "for clamshell and tablet mode.";
6062
Joon Ahn74cda732021-04-08 19:58:106063const char kShimlessRMAFlowName[] = "Enable shimless RMA flow";
6064const char kShimlessRMAFlowDescription[] = "Enable shimless RMA flow";
6065
Anton Swifton1917b872022-05-26 06:27:436066const char kShimlessRMAOsUpdateName[] = "Enable OS updates in shimless RMA";
6067const char kShimlessRMAOsUpdateDescription[] =
6068 "Turns on OS updating in Shimless RMA";
6069
wenyu zhang98000162022-06-16 17:02:536070const char kShimlessRMADisableDarkModeName[] =
6071 "Disable dark mode in Shimless RMA";
6072const char kShimlessRMADisableDarkModeDescription[] =
6073 "Disable dark mode and only allow light mode in Shimless RMA";
6074
Gavin Williams1a14b9212023-03-22 19:42:296075const char kShimlessRMADiagnosticPageName[] =
6076 "Enable diagnostic page in Shimless RMA";
6077const char kShimlessRMADiagnosticPageDescription[] =
6078 "Enable the diagnostic page in Shimless RMA for showing detailed device "
6079 "information";
6080
Andrew Moylan97585272019-02-19 19:01:226081const char kSchedulerConfigurationName[] = "Scheduler Configuration";
6082const char kSchedulerConfigurationDescription[] =
6083 "Instructs the OS to use a specific scheduler configuration setting.";
Greg Kerr33cd4662019-06-17 07:03:016084const char kSchedulerConfigurationConservative[] =
6085 "Disables Hyper-Threading on relevant CPUs.";
6086const char kSchedulerConfigurationPerformance[] =
6087 "Enables Hyper-Threading on relevant CPUs.";
Andrew Moylan97585272019-02-19 19:01:226088
Erin Parkbbb5decc2022-07-21 21:37:136089const char kMediaDynamicCgroupName[] = "Media Dynamic Cgroup";
6090const char kMediaDynamicCgroupDescription[] =
6091 "Dynamic Cgroup allows tasks from media workload to be consolidated on "
6092 "limited cpuset";
6093
Kyle Horimoto63a6bd42019-09-16 23:47:526094const char kShowBluetoothDebugLogToggleName[] =
6095 "Show Bluetooth debug log toggle";
6096const char kShowBluetoothDebugLogToggleDescription[] =
6097 "Enables a toggle which can enable debug (i.e., verbose) logs for "
6098 "Bluetooth";
6099
Yu Liu9d01d342021-03-12 20:05:166100const char kBluetoothSessionizedMetricsName[] =
6101 "Enable Bluetooth sessionized metrics";
6102const char kBluetoothSessionizedMetricsDescription[] =
6103 "Enables collecting and processing Bluetooth sessionized metrics.";
6104
James Cook0ba192bf2017-12-01 20:53:116105const char kShowTapsName[] = "Show taps";
6106const char kShowTapsDescription[] =
6107 "Draws a circle at each touch point, which makes touch points more obvious "
6108 "when projecting or mirroring the display. Similar to the Android OS "
6109 "developer option.";
6110
6111const char kShowTouchHudName[] = "Show HUD for touch points";
6112const char kShowTouchHudDescription[] =
6113 "Shows a trail of colored dots for the last few touch points. Pressing "
6114 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
6115 "debug hardware issues that generate spurious touch events.";
6116
Ricky Liang3bd2754b52020-10-07 02:50:326117const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation";
6118const char kSpectreVariant2MitigationDescription[] =
6119 "Controls whether Spectre variant 2 mitigation is enabled when "
6120 "bootstrapping the Seccomp BPF sandbox. Can be overridden by "
6121 "#force-spectre-variant2-mitigation.";
6122
Keith Lee8b2131fe2021-10-11 05:11:066123const char kSystemJapanesePhysicalTypingName[] =
6124 "Use system IME for Japanese typing";
6125const char kSystemJapanesePhysicalTypingDescription[] =
6126 "Use the system input engine instead of the Chrome extension for physical "
Keith Lee6dfc28e2022-10-25 07:20:466127 "typing in Japanese. This also replaces the Japanese extension settings "
6128 "page with one built into the UI and migrates the data to a new location.";
Keith Lee8b2131fe2021-10-11 05:11:066129
Michael Martisd3a46a872023-02-08 05:27:506130const char kSystemLiveCaptionName[] = "System Live Caption";
6131const char kSystemLiveCaptionDescription[] =
6132 "Enables the live caption feature for non-Chrome (e.g. Android, linux) "
6133 "audio.";
6134
Steven Bennetts2038c6c2022-12-02 20:06:096135const char kCaptivePortalErrorPageName[] =
6136 "Enables Captive Portal error page suggestions.";
6137const char kCaptivePortalErrorPageDescription[] =
6138 "Enables Captive Portal error page suggestions when a page fails to load "
6139 "and ChromeOS has detected a captive portal.";
6140
Jason Lin30ea2619c2022-07-27 06:40:296141const char kTerminalAlternativeEmulatorName[] = "Terminal alternative emulator";
6142const char kTerminalAlternativeEmulatorDescription[] =
6143 "Enable the alternative emulator for the Terminal app. You will also get "
6144 "an option in Terminal settings to change the default emulator.";
Jason Lin193ef782022-06-21 02:12:036145
Joel Hockey6bc7d9b2022-04-28 00:36:056146const char kTerminalDevName[] = "Terminal dev";
6147const char kTerminalDevDescription[] =
6148 "Enables Terminal System App to load from Downloads for developer testing. "
6149 "Only works in dev and canary channels.";
6150
Joel Hockey3109dbe92022-05-30 08:42:266151const char kTerminalMultiProfileName[] = "Terminal multi-profiles for settings";
6152const char kTerminalMultiProfileDescription[] =
6153 "Enables Terminal System App to set multiple profiles in the settings page "
6154 "and configure which profile to use for each Linux or SSH connection.";
6155
Joel Hockey599b6e42022-10-17 01:35:266156const char kTerminalSftpName[] = "Terminal SFTP / mount";
6157const char kTerminalSftpDescription[] =
6158 "Enables Terminal System App to do SFTP and mount remote hosts.";
6159
Emil Mikulic61a351f2021-12-15 23:45:586160const char kTerminalTmuxIntegrationName[] = "Terminal tmux integration";
6161const char kTerminalTmuxIntegrationDescription[] =
6162 "Enables integration with tmux control mode (tmux -CC) in the Terminal "
6163 "System App.";
6164
Brett Wilson7b44537e2017-08-18 01:38:286165const char kTetherName[] = "Instant Tethering";
6166const char kTetherDescription[] =
6167 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
6168 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:376169
Jason Thaie13aa822023-02-24 04:09:236170const char kTimeOfDayScreenSaverName[] = "Time of Day Screen Saver";
6171const char kTimeOfDayScreenSaverDescription[] =
6172 "Enables Time of Day Screen Saver feature on supported devices. Requires "
6173 "Time Of Day Wallpaper feature to be enabled.";
6174
Jason Thai5af7e8d2023-02-24 00:13:056175const char kTimeOfDayWallpaperName[] = "Time of Day Wallpaper";
6176const char kTimeOfDayWallpaperDescription[] =
6177 "Enables Time of Day Wallpaper feature on supported devices.";
6178
Brett Wilson7b44537e2017-08-18 01:38:286179const char kTouchscreenCalibrationName[] =
6180 "Enable/disable touchscreen calibration option in material design settings";
6181const char kTouchscreenCalibrationDescription[] =
6182 "If enabled, the user can calibrate the touch screen displays in "
6183 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:096184
Steven Bennetts9b695dc2022-04-12 17:10:276185const char kTrafficCountersEnabledName[] = "Traffic counters enabled";
6186const char kTrafficCountersEnabledDescription[] =
6187 "If enabled, data usage will be visible in the Cellular Settings UI and "
6188 "traffic counters will be automatically reset if that setting is enabled.";
Kartik Hegde5af70932021-08-12 23:04:206189
Jérémie Boulic8c1c3fc2022-06-20 05:35:556190const char kUploadOfficeToCloudName[] = "Enable Office files upload workflow.";
6191const char kUploadOfficeToCloudDescription[] =
6192 "Some file handlers for Microsoft Office files are only available on the "
6193 "the cloud. Enables the cloud upload workflow for Office file handling.";
6194
Miguel Casas-Sanchezdcd69152019-09-04 21:22:366195const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device";
6196const char kUseFakeDeviceForMediaStreamDescription[] =
6197 "Forces Chrome to use a fake video capture device (a rolling pacman with a "
6198 "timestamp) instead of the system audio/video devices, for debugging "
6199 "purposes.";
6200
Erik Chen366873d62022-03-08 23:11:386201const char kUXStudy1Name[] = "UX Study 1";
6202const char kUXStudy1Description[] = "Opt into a group for UX Study";
6203
Qiang Xu045aff222018-05-21 23:21:016204const char kUiDevToolsName[] = "Enable native UI inspection";
6205const char kUiDevToolsDescription[] =
6206 "Enables inspection of native UI elements. For local inspection use "
6207 "chrome://inspect#other";
6208
Andrew Moylan97585272019-02-19 19:01:226209const char kUiSlowAnimationsName[] = "Slow UI animations";
6210const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
Mattias Nissler6bb633f2019-02-13 23:41:466211
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:236212const char kVaapiJpegImageDecodeAccelerationName[] =
6213 "VA-API JPEG decode acceleration for images";
6214const char kVaapiJpegImageDecodeAccelerationDescription[] =
6215 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
6216 " captures) using the VA-API.";
6217
Gil Dekel8f4b5642019-07-27 05:27:406218const char kVaapiWebPImageDecodeAccelerationName[] =
6219 "VA-API WebP decode acceleration for images";
6220const char kVaapiWebPImageDecodeAccelerationDescription[] =
6221 "Enable or disable decode acceleration of WebP images using the VA-API.";
6222
Jing Wang1293e3a2021-02-17 00:56:446223const char kVirtualKeyboardName[] = "Virtual Keyboard";
6224const char kVirtualKeyboardDescription[] =
6225 "Always show virtual keyboard regardless of having a physical keyboard "
6226 "present";
6227
My Nguyen0bc9add2020-12-03 21:21:256228const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard";
6229const char kVirtualKeyboardDisabledDescription[] =
6230 "Always disable virtual keyboard regardless of device mode. Workaround for "
6231 "virtual keyboard showing with some external keyboards.";
6232
Michelle1569cf32022-03-24 06:34:486233const char kVirtualKeyboardMultitouchName[] = "Virtual Keyboard Multitouch";
6234const char kVirtualKeyboardMultitouchDescription[] =
6235 "Enables multitouch on the virtual keyboard.";
6236
John Palmer489eda922022-05-13 05:40:416237const char kVirtualKeyboardRoundCornersName[] =
6238 "Virtual Keyboard Round Corners";
6239const char kVirtualKeyboardRoundCornersDescription[] =
6240 "Enables round corners on the virtual keyboard.";
6241
Yen-lin Laif458f8012021-03-29 10:18:206242const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features";
6243const char kWakeOnWifiAllowedDescription[] =
6244 "Allows wake on WiFi features in shill to be enabled.";
6245
Maggie Cai6dd6b552021-04-27 08:40:326246const char kWebAppsCrosapiName[] = "Web Apps Crosapi";
6247const char kWebAppsCrosapiDescription[] =
6248 "Support web apps publishing from Lacros browser.";
6249
James Cook49358cc2022-08-30 20:30:266250const char kWelcomeScreenName[] =
6251 "Productivity Experiment: Reorient with welcome screen";
6252const char kWelcomeScreenDescription[] =
6253 "When a user is about to start a new task, provide them with relevant "
6254 "information and tools to help them orient and get started.";
6255
Jacek Siuda7ed81c92021-11-24 10:39:446256const char kWifiConnectMacAddressRandomizationName[] =
6257 "MAC address randomization";
6258const char kWifiConnectMacAddressRandomizationDescription[] =
6259 "Randomize MAC address when connecting to unmanaged (non-enterprise) "
6260 "WiFi networks.";
6261
tbye50bce9a2022-03-31 03:32:546262const char kLauncherGameSearchName[] = "Enable launcher game search";
6263const char kLauncherGameSearchDescription[] =
6264 "Enables cloud game search results in the launcher.";
6265
Rebecca Hsu1d633912022-12-14 06:09:336266const char kLauncherKeywordExtractionScoring[] =
6267 "Query keyword extraction and scoring in launcher";
6268const char kLauncherKeywordExtractionScoringDescription[] =
6269 "Enables extraction of keywords from query then calculate score from "
6270 "extracted keyword in the launcher.";
6271
Lauren Commeignes9f0db8f2022-12-21 00:03:476272const char kLauncherFuzzyMatchForOmniboxName[] =
6273 "Omnibox Results Fuzzy match experiment";
6274const char kLauncherFuzzyMatchForOmniboxDescription[] =
6275 "To evaluate the viability of a Fuzzy match on Omnibox results to "
6276 "downweight search sugestions";
6277
Lauren Commeignes33aea8b2023-01-03 02:38:286278const char kLauncherSystemInfoAnswerCardsName[] =
6279 "System Info Answer Cards in launcher";
6280const char kLauncherSystemInfoAnswerCardsDescription[] =
6281 "Enables System info answer cards in the launcher to provide system "
6282 "performance metrics";
6283
Chad Duffincdab9362022-07-29 18:31:386284const char kMacAddressRandomizationName[] = "MAC address randomization";
6285const char kMacAddressRandomizationDescription[] =
6286 "Feature to allow MAC address randomization to be enabled for WiFi "
6287 "networks.";
6288
Chad Duffinc8c37082023-03-07 17:04:056289const char kSmdsDbusMigrationName[] = "SM-DS DBus Migration";
6290const char kSmdsDbusMigrationDescription[] =
6291 "Feature to enable the usage of DBus APIs that improve the stability"
6292 "around performing SM-DS scans.";
6293
Simon Ziegltrum55f69bc2022-12-22 16:05:516294const char kOobeJellyName[] = "Jelly design for OOBE";
6295const char kOobeJellyDescription[] =
6296 "Feature to enable the Jelly design in out of box experience.";
Simon Ziegltrumc23cb6c52022-09-22 19:43:446297
Simon Ziegltrumf02c98af2023-03-16 23:03:286298const char kOobeSimonName[] = "Simon features for OOBE";
6299const char kOobeSimonDescription[] =
6300 "Feature to enable the Simon features in out of box experience.";
6301
Tao Wu4b5d8162022-11-10 19:58:076302const char kLibAssistantV2MigrationName[] = "LibAssistant V2 migration";
6303const char kLibAssistantV2MigrationDescription[] =
6304 "Enables loading LibAssistant V2 for Assistant on ChromeOS.";
6305
Markus Handellabf6c7812020-12-15 18:14:356306// Prefer keeping this section sorted to adding new definitions down here.
6307
6308#endif // BUILDFLAG(IS_CHROMEOS_ASH)
6309
Simon Hangl05d1f6a2023-01-13 15:33:596310#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
6311const char kGetDisplayMediaSetName[] = "GetDisplayMediaSet API";
6312const char kGetDisplayMediaSetDescription[] =
6313 "When enabled, the getDisplayMediaSet API for capturing multiple surfaces "
6314 "at once is available.";
6315
6316const char kGetDisplayMediaSetAutoSelectAllScreensName[] =
6317 "autoSelectAllScreens attribute for GetDisplayMediaSet";
6318const char kGetDisplayMediaSetAutoSelectAllScreensDescription[] =
6319 "When enabled, the autoSelectAllScreens attribute is available for usage "
6320 "with the GetDisplayMediaSet API.";
6321
6322#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
6323
Sebastian Fiß8f6d9a82023-03-07 09:04:256324#if BUILDFLAG(IS_CHROMEOS)
6325const char kRunOnOsLoginName[] = "Run on OS login";
6326const char kRunOnOsLoginDescription[] =
6327 "When enabled, allows PWAs to be automatically run on OS login.";
6328#endif // BUILDFLAG(IS_CHROMEOS)
6329
Jan Krcald11ad892022-01-17 12:37:026330#if BUILDFLAG(IS_CHROMEOS_LACROS)
Alex Cooper9ec625a2022-02-11 23:17:226331const char kDesktopCaptureLacrosV2Name[] = "Enable Lacros Desktop Capture V2";
6332const char kDesktopCaptureLacrosV2Description[] =
6333 "Enables the improved desktop/window capturer for doing screen/window "
6334 "sharing on Lacros";
6335
Jason Line4862b02023-03-21 04:38:136336const char kExperimentalWebAppStoragePartitionIsolationName[] =
6337 "Enable experimental web app stroage partition isolation";
6338const char kExperimentalWebAppStoragePartitionIsolationDescription[] =
6339 "This is highly experimental. Enabling this flag could break things. And a "
6340 "power wash might be needed to fully recover the state.";
6341
Alex Cooperdad8fb692022-10-03 22:42:416342const char kLacrosAuraCaptureName[] = "Enable Lacros Aura Capture";
6343const char kLacrosAuraCaptureDescription[] =
6344 "Enables LaCrOS to perform an in-process capture of it's own windows "
6345 "rather than needing to delegate the capture to Ash";
6346
Andrea Orrue14d8fd82022-02-24 16:47:516347const char kLacrosMergeIcuDataFileName[] =
6348 "Enable merging of icudtl.dat in Lacros";
6349const char kLacrosMergeIcuDataFileDescription[] =
6350 "Enables sharing common areas of icudtl.dat between Ash and Lacros.";
6351
Mitsuru Oshima857191b2022-03-15 22:03:406352const char kLacrosScreenCoordinatesEnabledName[] =
6353 "Enable screen coordinates system in lacros-chrome";
6354const char kLacrosScreenCoordinatesEnabledDescription[] =
6355 "Enabling this will allow lacros to control the window position in screen "
6356 "coordinates. This is required for features such as the Javascript APIs "
6357 "moveBy, moveTo or session restore.";
Jan Krcald11ad892022-01-17 12:37:026358#endif // #if BUILDFLAG(IS_CHROMEOS_LACROS)
6359
Eric Willigers02f80aa2022-04-29 01:29:326360#if BUILDFLAG(IS_CHROMEOS)
Hsin-Yu Chaoe46eb5992022-03-18 13:34:276361const char kCrOSDspBasedAecAllowedName[] =
6362 "Allow CRAS to use a DSP-based AEC if available";
6363const char kCrOSDspBasedAecAllowedDescription[] =
6364 "Allows the system variant of the AEC in CRAS to be run on DSP ";
6365
6366const char kCrOSDspBasedNsAllowedName[] =
6367 "Allow CRAS to use a DSP-based NS if available";
6368const char kCrOSDspBasedNsAllowedDescription[] =
6369 "Allows the system variant of the NS in CRAS to be run on DSP ";
6370
6371const char kCrOSDspBasedAgcAllowedName[] =
6372 "Allow CRAS to use a DSP-based AGC if available";
6373const char kCrOSDspBasedAgcAllowedDescription[] =
6374 "Allows the system variant of the AGC in CRAS to be run on DSP ";
6375
6376const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS";
6377const char kCrOSEnforceSystemAecDescription[] =
6378 "Enforces using the system variant in CrAS of the AEC";
6379
6380const char kCrOSEnforceSystemAecAgcName[] =
6381 "Enforce using the system AEC and AGC in CrAS";
6382const char kCrOSEnforceSystemAecAgcDescription[] =
6383 "Enforces using the system variants in CrAS of the AEC and AGC.";
6384
6385const char kCrOSEnforceSystemAecNsName[] =
6386 "Enforce using the system AEC and NS in CrAS";
6387const char kCrOSEnforceSystemAecNsDescription[] =
6388 "Enforces using the system variants in CrAS of the AEC and NS.";
6389
6390const char kCrOSEnforceSystemAecNsAgcName[] =
6391 "Enforce using the system AEC, NS and AGC in CrAS";
6392const char kCrOSEnforceSystemAecNsAgcDescription[] =
6393 "Enforces using the system variants in CrAS of the AEC, NS and AGC.";
6394
Jan Lanik1812e6882022-05-24 18:43:356395const char kCrosPrivacyHubName[] = "Enable ChromeOS Privacy Hub";
6396const char kCrosPrivacyHubDescription[] = "Enables ChromeOS Privacy Hub.";
6397
Jan Lanik3f592332022-10-06 21:08:006398const char kCrosPrivacyHubV0Name[] =
6399 "Enable ChromeOS Privacy Hub without the location switch.";
6400const char kCrosPrivacyHubV0Description[] =
6401 "Enables ChromeOS Privacy Hub without the location switch.";
Jan Lanik4aa0d0f12022-08-08 20:50:476402
Pavol Marko798ffdb42022-06-23 13:22:426403const char kDisableIdleSocketsCloseOnMemoryPressureName[] =
6404 "Disable closing idle sockets on memory pressure";
6405const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] =
6406 "If enabled, idle sockets will not be closed when chrome detects memory "
6407 "pressure. This applies to web pages only and not to internal requests.";
6408
Jenny Zhang0f8cb4fc2022-05-27 00:03:506409const char kDisableOfficeEditingComponentAppName[] =
6410 "Disable Office Editing for Docs, Sheets & Slides";
6411const char kDisableOfficeEditingComponentAppDescription[] =
6412 "Disables Office Editing for Docs, Sheets & Slides component app so "
6413 "handlers won't be registered, making it possible to install another "
6414 "version for testing.";
6415
Tim Sergeante9c45c42022-03-17 21:53:526416const char kIntentChipSkipsPickerName[] =
6417 "Link capturing intent chip skips the intent picker bubble";
6418const char kIntentChipSkipsPickerDescription[] =
6419 "When enabled, clicking the intent chip in the Omnibox will skip the "
6420 "intent picker bubble and launch directly into the app. If multiple apps "
6421 "are installed for a URL, the intent picker will still be shown for "
6422 "disambigation.";
6423
Tim Sergeantb1ba003d2022-03-21 07:09:106424const char kIntentChipAppIconName[] =
6425 "Show app icons in the link capturing intent chip";
6426const char kIntentChipAppIconDescription[] =
6427 "When enabled, the intent chip in the Omnibox will show the app icon for "
6428 "the app which can handle the current URL.";
6429
Yi Xieac082b42022-08-03 09:58:376430const char kKioskEnableAppServiceName[] = "Enable App Service in Kiosk.";
6431const char kKioskEnableAppServiceDescription[] =
6432 "Uses App Service to install web apps and launch both Chrome apps and web "
6433 "apps in Kiosk sessions.";
6434
Femi Adegunloyec22dc3e2022-09-08 15:25:586435const char kLacrosColorManagementName[] = "Enable Chrome Color Management.";
6436const char kLacrosColorManagementDescription[] =
Femi Adegunloyea465b4f2023-03-02 21:59:036437 "When enabled, this should allow for HDR content to be displayed on "
6438 "compatible devices.";
Femi Adegunloyec22dc3e2022-09-08 15:25:586439
Tim Sergeanta596e2f2022-07-06 05:27:306440const char kLinkCapturingAutoDisplayIntentPickerName[] =
6441 "Enable auto-display of intent picker bubble";
6442const char kLinkCapturingAutoDisplayIntentPickerDescription[] =
6443 "When enabled, the intent picker bubble will automatically display when "
6444 "clicking a link which can be opened in installed apps. Only applies when "
6445 "'Enable updated link capturing UI' is enabled.";
6446
Tim Sergeante9c45c42022-03-17 21:53:526447const char kLinkCapturingInfoBarName[] = "Enable link capturing info bar";
6448const char kLinkCapturingInfoBarDescription[] =
6449 "Enables an info bar which appears when launching a web app through the "
6450 "Omnibox intent chip, prompting to update the link capturing setting for "
6451 "that app.";
6452
Lei Zhang44abd5d22022-01-11 00:32:346453const char kLinkCapturingUiUpdateName[] = "Enable updated link capturing UI";
6454const char kLinkCapturingUiUpdateDescription[] =
Tim Sergeante47c0ad52021-12-19 23:43:576455 "Enables updated UI for link capturing flows from the browser to apps, "
6456 "including the intent picker and an in-app link capturing prompt.";
Jon Mannf67d2fb2022-02-28 06:26:226457
6458const char kMessagesPreinstallName[] = "Preinstall Messages PWA";
6459const char kMessagesPreinstallDescription[] =
6460 "Enables preinstallation of the Messages for Web PWA for unmanaged users.";
Maksim Moskvitin70a77cb2022-04-06 12:26:406461
Alan Cutter2fc3ff932022-09-28 09:44:576462const char kMicrosoftOfficeWebAppExperimentName[] =
6463 "Microsoft Office web app experiment";
6464const char kMicrosoftOfficeWebAppExperimentDescription[] =
6465 "A ChromeOS experiment on the Microsoft Office web app that overrides the "
6466 "scope and theme color. Not intended for public release; this is testing "
6467 "capabilites that will be available to websites at a later date.";
6468
Youssef Esmatc732bf82022-05-27 00:47:196469const char kOneGroupPerRendererName[] =
6470 "Use one cgroup for each foreground renderer";
6471const char kOneGroupPerRendererDescription[] =
6472 "Places each Chrome foreground renderer into its own cgroup";
6473
Glen Robertson371a2df2023-02-15 04:18:196474const char kPreinstalledWebAppWindowExperimentName[] =
6475 "Preinstalled web app window experiment.";
6476const char kPreinstalledWebAppWindowExperimentDescription[] =
6477 "A ChromeOS experiment for new users that makes all preinstalled web apps "
6478 "open in windows with link capturing enabled, or tabs, instead of the "
6479 "default behavior.";
6480
Yue Li806e5d82022-09-14 00:16:026481const char kDisableQuickAnswersV2TranslationName[] =
6482 "Disable Quick Answers Translation";
6483const char kDisableQuickAnswersV2TranslationDescription[] =
6484 "Disable translation services of the Quick Answers.";
6485
Maksim Moskvitin70a77cb2022-04-06 12:26:406486const char kSyncChromeOSExplicitPassphraseSharingName[] =
6487 "Sync passphrase sharing";
6488const char kSyncChromeOSExplicitPassphraseSharingDescription[] =
6489 "Allows sharing custom sync passphrase between OS and Browser on ChromeOS";
Michelle724c6bfb22022-12-15 04:55:386490
Jason Rhee7fba0eb2023-01-17 02:21:086491const char kChromeOSSyncedSessionSharingName[] =
6492 "Synced session sharing on ChromeOS";
6493const char kChromeOSSyncedSessionSharingDescription[] =
6494 "Allows sharing synced sessions between OS and Browser on ChromeOS";
6495
Michelle724c6bfb22022-12-15 04:55:386496const char kTouchTextEditingRedesignName[] = "Touch Text Editing Redesign";
6497const char kTouchTextEditingRedesignDescription[] =
6498 "Enables new touch text editing features.";
Xiaohan Wang55ae2c012022-01-20 21:49:116499#endif // BUILDFLAG(IS_CHROMEOS)
Pilar Molina Lopez40a3e2d2021-03-04 21:01:086500
Pilar Molina Lopezae61dfc2022-01-21 21:04:456501#if defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS)
Miguel Casasb93a0e352021-07-16 04:07:216502const char kVaapiVP9kSVCEncoderName[] =
6503 "VA-API encode acceleration for k-SVC VP9";
6504const char kVaapiVP9kSVCEncoderDescription[] =
6505 "Enable or disable k-SVC VP9 encode acceleration using VA-API.";
Pilar Molina Lopezae61dfc2022-01-21 21:04:456506#endif // defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS)
Miguel Casasb93a0e352021-07-16 04:07:216507
Xiaohan Wang55ae2c012022-01-20 21:49:116508#if BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
Pilar Molina Lopezfb5103b72021-02-26 23:35:526509const char kChromeOSDirectVideoDecoderName[] = "ChromeOS Direct Video Decoder";
6510const char kChromeOSDirectVideoDecoderDescription[] =
6511 "Enables the hardware-accelerated ChromeOS direct media::VideoDecoder "
6512 "implementation. Note that this might be entirely disallowed by the "
6513 "--platform-disallows-chromeos-direct-video-decoder command line switch "
6514 "which is added for platforms where said direct VideoDecoder does not work "
6515 "or is not well tested (see the disable_cros_video_decoder USE flag in "
Richard Chuia9ed7be12022-04-13 21:30:356516 "ChromeOS)";
Hirokazu Honda5a3450c2022-06-17 14:16:256517const char kChromeOSHWVBREncodingName[] =
6518 "ChromeOS Hardware Variable Bitrate Encoding";
6519const char kChromeOSHWVBREncodingDescription[] =
6520 "Enables the hardware-accelerated variable bitrate (VBR) encoding on "
6521 "ChromeOS. If the hardware encoder supports VBR for a specified codec, a "
6522 "video is recorded in VBR encoding in MediaRecoder API automatically and "
6523 "WebCodecs API if configured so.";
Fritz Koeniga0770f5c2022-04-06 18:17:556524#if defined(ARCH_CPU_ARM_FAMILY)
Justin Green0b5c48992022-10-10 22:16:046525const char kPreferGLImageProcessorName[] = "Prefer GL image processor";
6526const char kPreferGLImageProcessorDescription[] =
6527 "Prefers the GL image processor for format conversion of video frames over"
6528 " both the libYUV and hardware implementations";
Fritz Koeniga0770f5c2022-04-06 18:17:556529#endif // defined(ARCH_CPU_ARM_FAMILY)
Xiaohan Wang55ae2c012022-01-20 21:49:116530#endif // BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
Pilar Molina Lopezfb5103b72021-02-26 23:35:526531
Xiaohan Wang55ae2c012022-01-20 21:49:116532#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
Hirokazu Honda8ef07cd2020-04-17 03:36:386533const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture";
6534const char kZeroCopyVideoCaptureDescription[] =
6535 "Camera produces a gpu friendly buffer on capture and, if there is, "
6536 "hardware accelerated video encoder consumes the buffer";
Xiaohan Wang55ae2c012022-01-20 21:49:116537#endif // BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
yhanadac5bff5b2017-05-18 06:37:096538
Collin Baker75a29462019-03-13 19:57:316539// All views-based platforms --------------------------------------------------
6540
6541#if defined(TOOLKIT_VIEWS)
6542
Mohamed Amir Yosef4d5d526b2022-11-10 11:05:256543const char kRevampedPasswordManagementBubbleName[] =
6544 "Revamped Password Managment Bubble (Desktop)";
6545const char kRevampedPasswordManagementBubbleDescription[] =
6546 "Enable the new password managment bubble triggered by clicking the key "
6547 "icon in the omnibox.";
6548
Pengchao Cai74b3379d2022-09-09 18:55:186549const char kSearchWebInSidePanelName[] = "Search web in side panel";
6550const char kSearchWebInSidePanelDescription[] =
6551 "Displays right-click search results of a highlighted text in side panel";
6552
Collin Baker75a29462019-03-13 19:57:316553#endif // defined(TOOLKIT_VIEWS)
6554
Brett Wilson7b44537e2017-08-18 01:38:286555// Random platform combinations -----------------------------------------------
6556
Xiaohan Wang55ae2c012022-01-20 21:49:116557#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
Xiaohan Wang55ae2c012022-01-20 21:49:116558 BUILDFLAG(IS_FUCHSIA)
Leonard Greye2b8fe92022-03-04 20:36:016559const char kQuickCommandsName[] = "Quick Commands";
6560const char kQuickCommandsDescription[] =
6561 "Enable a text interface to browser features. Invoke with Ctrl-Space.";
6562
Xiaohan Wang55ae2c012022-01-20 21:49:116563#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
6564 // BUILDFLAG(IS_FUCHSIA)
Josh Santana0863d7042021-02-04 20:56:456565
Jonathan Freed4d92f282022-08-12 19:01:056566#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
6567 BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS)
6568const char kFollowingFeedSidepanelName[] = "Following feed in the sidepanel";
6569const char kFollowingFeedSidepanelDescription[] =
6570 "Enables the following feed in the sidepanel.";
6571#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
6572 // BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS)
6573
James Lee89b449e52022-12-13 18:14:526574#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_ANDROID)
6575const char kLocalWebApprovalsName[] = "Local web approvals";
6576const char kLocalWebApprovalsDescription[] =
6577 "Enable local web approvals for Family Link users. Web filter interstitial "
6578 "refresh needs to also be enabled.";
6579#endif
6580
Andres Calderon Jaramilloa55fccb2023-03-24 19:22:116581#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
6582const char kUseOutOfProcessVideoDecodingName[] =
6583 "Use out-of-process video decoding (OOP-VD)";
6584const char kUseOutOfProcessVideoDecodingDescription[] =
6585 "Start utility processes to do hardware video decoding. Note: on LaCrOS, "
6586 "this task is delegated to ash-chrome by requesting a "
6587 "media.stable.mojom.StableVideoDecoderFactory through the crosapi (so "
6588 "chrome://flags#expose-out-of-process-video-decoding-to-lacros must be "
6589 "enabled in ash-chrome).";
6590#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
6591
Xiaohan Wang55ae2c012022-01-20 21:49:116592#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:276593const char kWebShareName[] = "Web Share";
6594const char kWebShareDescription[] =
6595 "Enables the Web Share (navigator.share) APIs on experimentally supported "
6596 "platforms.";
Xiaohan Wang55ae2c012022-01-20 21:49:116597#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:276598
Xiaohan Wang55ae2c012022-01-20 21:49:116599#if BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)
Alexander Dunaev43cfb2f2021-10-19 06:08:066600const char kOzonePlatformHintChoiceDefault[] = "Default";
6601const char kOzonePlatformHintChoiceAuto[] = "Auto";
6602const char kOzonePlatformHintChoiceX11[] = "X11";
6603const char kOzonePlatformHintChoiceWayland[] = "Wayland";
6604
6605const char kOzonePlatformHintName[] = "Preferred Ozone platform";
6606const char kOzonePlatformHintDescription[] =
6607 "Selects the preferred platform backend used on Linux. The default one is "
6608 "\"X11\". \"Auto\" selects Wayland if possible, X11 otherwise. ";
Xiaohan Wang55ae2c012022-01-20 21:49:116609#endif // BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)
Alexander Dunaev43cfb2f2021-10-19 06:08:066610
Alvin Ji3443b9b2022-06-17 19:57:476611#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
6612const char kWebBluetoothConfirmPairingSupportName[] =
6613 "Web Bluetooth confirm pairing support";
6614const char kWebBluetoothConfirmPairingSupportDescription[] =
6615 "Enable confirm-only and confirm-pin pairing mode support for Web "
6616 "Bluetooth";
6617#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
6618
Adem Derinel64bdf052022-02-02 08:14:236619#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
6620const char kSkipUndecryptablePasswordsName[] =
6621 "Skip undecryptable passwords to use the available decryptable "
6622 "passwords.";
6623const char kSkipUndecryptablePasswordsDescription[] =
6624 "Makes the decryptable passwords available in the password manager when "
6625 "there are undecryptable ones.";
Adem Derinel72376572022-12-06 10:42:546626const char kForcePasswordInitialSyncWhenDecryptionFailsName[] =
6627 "Force initial sync to clean local undecryptable passwords during startup";
6628const char kForcePasswordInitialSyncWhenDecryptionFailsDescription[] =
6629 "During startup checks if there are undecryptable passwords in the local "
6630 "storage and requests initial sync.";
Adem Derinel64bdf052022-02-02 08:14:236631#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
6632
David Benjamin371481f2022-06-15 15:57:406633#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
6634const char kAsyncDnsName[] = "Async DNS resolver";
6635const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
6636#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
6637
Brett Wilson7b44537e2017-08-18 01:38:286638// Feature flags --------------------------------------------------------------
6639
Sam Zackrissonb49345a2022-03-25 11:15:046640#if BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
6641extern const char kChromeWideEchoCancellationName[] =
6642 "Chrome-wide echo cancellation";
6643extern const char kChromeWideEchoCancellationDescription[] =
6644 "Run WebRTC capture audio processing in the audio process instead of the "
6645 "renderer processes, thereby cancelling echoes from more audio sources.";
6646#endif // BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
6647
Wez02cedeba2022-07-26 12:48:386648#if BUILDFLAG(DCHECK_IS_CONFIGURABLE)
Lei Zhang0a318af2018-11-14 02:19:466649const char kDcheckIsFatalName[] = "DCHECKs are fatal";
6650const char kDcheckIsFatalDescription[] =
6651 "By default Chrome will evaluate in this build, but only log failures, "
6652 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
Wez02cedeba2022-07-26 12:48:386653#endif // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
Lei Zhang0a318af2018-11-14 02:19:466654
Alex Cooperbdd9a762023-01-24 23:29:546655#if BUILDFLAG(ENABLE_CARDBOARD)
6656extern const char kEnableCardboardName[] = "Enable Cardboard VR WebXR Runtime";
6657extern const char kEnableCardboardDescription[] =
6658 "Enables the use of the Cardboard SDK runtime for WebXR instead of the"
6659 "Google VR Services (or GVR) runtime to start a WebXR-based immersive-vr"
6660 "session.";
6661#endif // ENABLE_CARDBOARD
6662
Derek Schuff71d9a922019-04-24 21:36:006663#if BUILDFLAG(ENABLE_NACL)
6664const char kNaclName[] = "Native Client";
6665const char kNaclDescription[] =
6666 "Support Native Client for all web applications, even those that were not "
6667 "installed from the Chrome Web Store.";
Fabian Sommer0d6568b2022-01-05 16:58:346668const char kVerboseLoggingInNaclName[] = "Verbose logging in Native Client";
6669const char kVerboseLoggingInNaclDescription[] =
6670 "Control the level of verbose logging in Native Client modules for "
6671 "debugging purposes.";
6672const char kVerboseLoggingInNaclChoiceDefault[] = "Default";
6673const char kVerboseLoggingInNaclChoiceLow[] = "Low";
6674const char kVerboseLoggingInNaclChoiceMedium[] = "Medium";
6675const char kVerboseLoggingInNaclChoiceHigh[] = "High";
6676const char kVerboseLoggingInNaclChoiceHighest[] = "Highest";
6677const char kVerboseLoggingInNaclChoiceDisabled[] = "Disabled";
Derek Schuff71d9a922019-04-24 21:36:006678#endif // ENABLE_NACL
6679
Alan Screened2fdda2021-09-15 17:24:466680#if BUILDFLAG(ENABLE_OOP_PRINTING)
6681const char kEnableOopPrintDriversName[] =
6682 "Enables Out-of-Process Printer Drivers";
6683const char kEnableOopPrintDriversDescription[] =
6684 "Enables printing interactions with the operating system to be performed "
6685 "out-of-process.";
6686#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
6687
Xiaohan Wang55ae2c012022-01-20 21:49:116688#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && BUILDFLAG(IS_ANDROID)
Mehran Mahmoudib8d0b7c2020-03-14 18:10:566689const char kPaintPreviewDemoName[] = "Paint Preview Demo";
6690const char kPaintPreviewDemoDescription[] =
6691 "If enabled a menu item is added to the Android main menu to demo paint "
ckitagawa8dad53d2020-01-07 16:03:356692 "previews.";
Xiaohan Wang55ae2c012022-01-20 21:49:116693#endif // ENABLE_PAINT_PREVIEW && BUILDFLAG(IS_ANDROID)
ckitagawa8dad53d2020-01-07 16:03:356694
Lei Zhangc05af2a2020-05-15 20:54:056695#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
Yuheng Huang4d0b941fc2021-10-12 05:30:366696const char kWebUITabStripFlagId[] = "webui-tab-strip";
Lei Zhangc05af2a2020-05-15 20:54:056697const char kWebUITabStripName[] = "WebUI tab strip";
6698const char kWebUITabStripDescription[] =
6699 "When enabled makes use of a WebUI-based tab strip.";
Tombae388942021-08-17 02:44:006700
6701const char kWebUITabStripContextMenuAfterTapName[] =
6702 "WebUI tab strip context menu after tap";
6703const char kWebUITabStripContextMenuAfterTapDescription[] =
6704 "Enables the context menu to appear after a tap gesture rather than "
6705 "following a press gesture.";
Lei Zhangc05af2a2020-05-15 20:54:056706#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
6707
Yuta Hijikata235fc62b2020-12-08 03:48:326708#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:486709const char kWebUITabStripTabDragIntegrationName[] =
6710 "ChromeOS drag-drop extensions for WebUI tab strip";
6711const char kWebUITabStripTabDragIntegrationDescription[] =
6712 "Enables special handling in ash for WebUI tab strip tab drags. Allows "
6713 "dragging tabs out to new windows.";
Yuta Hijikata235fc62b2020-12-08 03:48:326714#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:486715
Xiaohan Wang55ae2c012022-01-20 21:49:116716#if defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:286717
6718const char kAutofillCreditCardUploadName[] =
6719 "Enable offering upload of Autofilled credit cards";
6720const char kAutofillCreditCardUploadDescription[] =
6721 "Enables a new option to upload credit cards to Google Payments for sync "
6722 "to all Chrome devices.";
6723
Xiaohan Wang55ae2c012022-01-20 21:49:116724#endif // defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:286725
Xiaohan Wang55ae2c012022-01-20 21:49:116726#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
Robert Flackd69659f2021-06-02 22:32:336727const char kElasticOverscrollName[] = "Elastic Overscroll";
6728const char kElasticOverscrollDescription[] =
6729 "Enables Elastic Overscrolling on touchscreens and precision touchpads.";
Xiaohan Wang55ae2c012022-01-20 21:49:116730#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
Robert Flackd69659f2021-06-02 22:32:336731
Xiaohan Wang55ae2c012022-01-20 21:49:116732#if BUILDFLAG(IS_WIN) || \
6733 (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || \
6734 BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA)
Wei Li51e9c162021-02-01 19:53:356735const char kUIDebugToolsName[] = "Debugging tools for UI";
6736const char kUIDebugToolsDescription[] =
6737 "Enables additional keyboard shortcuts to help debugging.";
Andrea Gomez6536254b2022-08-03 09:07:596738
6739const char kDesktopDetailedLanguageSettingsName[] =
6740 "Detailed Language Settings (Desktop)";
6741const char kDesktopDetailedLanguageSettingsDescription[] =
6742 "Enable the new detailed language settings page";
Gabriel Oliveirac1792c82022-08-17 17:31:416743
Tibor Goldschwendtf9501a62023-03-23 03:11:196744const char kSyncPollImmediatelyOnEveryStartupName[] =
6745 "Sync Poll Immediately On Every Startup";
6746const char kSyncPollImmediatelyOnEveryStartupDescription[] =
6747 "Sends a poll GetUpdates request on every browser startup.";
6748
Gabriel Oliveirac1792c82022-08-17 17:31:416749const char kSyncPromoAfterSigninInterceptName[] =
6750 "Sync Promo After Sign-in Intercept";
6751const char kSyncPromoAfterSigninInterceptDescription[] =
6752 "Enable updates in the first run experience for a new profile in the "
6753 "Sign-in Intercept, such as a Sync Promo step and an updated Profile "
6754 "Customization UI, which is also used for local profile creation.";
6755
6756const char kSigninInterceptBubbleV2Name[] = "Sign-in Intercept Bubble V2";
6757const char kSigninInterceptBubbleV2Description[] =
6758 "Enable visual updates to the sign-in intercept bubble, such as updated "
6759 "illustration, strings and an enterprise disclaimer.";
Wei Li51e9c162021-02-01 19:53:356760#endif
6761
Tomas Popela253a5832019-01-14 17:22:106762#if defined(WEBRTC_USE_PIPEWIRE)
Lei Zhang507fffd2020-01-29 23:47:546763const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support";
6764const char kWebrtcPipeWireCapturerDescription[] =
Tomas Popela253a5832019-01-14 17:22:106765 "When enabled the WebRTC will use the PipeWire multimedia server for "
6766 "capturing the desktop content on the Wayland display server.";
Tomas Popela253a5832019-01-14 17:22:106767#endif // #if defined(WEBRTC_USE_PIPEWIRE)
6768
ananubisff476b02021-07-27 07:09:586769#if BUILDFLAG(IS_CHROMEOS_ASH)
Ben Franz441a84c2022-04-05 08:44:556770const char kChromeKioskEnableLacrosName[] =
6771 "Enables Lacros in the chrome app Kiosk";
6772const char kChromeKioskEnableLacrosDescription[] =
6773 "Uses Lacros-chrome as the web browser in the chrome app Kiosk session on "
Richard Chuia9ed7be12022-04-13 21:30:356774 "ChromeOS. When disabled, the Ash-chrome will be used";
Ben Franz441a84c2022-04-05 08:44:556775
ananubisff476b02021-07-27 07:09:586776const char kWebKioskEnableLacrosName[] =
6777 "Enables Lacros in the web (PWA) Kiosk";
6778const char kWebKioskEnableLacrosDescription[] =
6779 "Uses Lacros-chrome as the web browser in the web (PWA) Kiosk session on "
Richard Chuia9ed7be12022-04-13 21:30:356780 "ChromeOS. When disabled, the Ash-chrome will be used";
Jenny Zhang6bdaa162022-07-14 01:22:306781
6782const char kDisableLacrosTtsSupportName[] = "Disable lacros tts support";
6783const char kDisableLacrosTtsSupportDescription[] =
6784 "Disable lacros support for text to speech.";
6785
Vivian Paofc22288b2022-12-07 03:00:116786const char kPromiseIconsName[] = "Promise Icons";
6787const char kPromiseIconsDescription[] =
6788 "Enables promise icons in the Launcher and Shelf (if the app is pinned) "
6789 "for app installations.";
6790
ananubisff476b02021-07-27 07:09:586791#endif // BUILDFLAG(IS_CHROMEOS_ASH)
6792
Brett Wilson7b44537e2017-08-18 01:38:286793// ============================================================================
6794// Don't just add flags to the end, put them in the right section in
6795// alphabetical order just like the header file.
6796// ============================================================================
6797
vabr0215a8e2017-03-28 12:47:346798} // namespace flag_descriptions