blob: 1b59b7e6cd682089417737f0de2152e5b302993a [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
Xiaohui Chencd2db09e2023-06-12 18:20:267#include "ash/constants/ash_features.h"
Xiaohan Wang55ae2c012022-01-20 21:49:118#include "build/build_config.h"
Yuta Hijikata235fc62b2020-12-08 03:48:329#include "build/chromeos_buildflags.h"
Greg Thompson96e19b292023-05-25 08:33:5910#include "components/supervised_user/core/common/buildflags.h"
Colin Blundell120bc902023-01-12 15:33:2711#include "flag_descriptions.h"
David Dorwin7d75ca92022-03-10 21:59:5612#include "pdf/buildflags.h"
Yuta Hijikata235fc62b2020-12-08 03:48:3213
Brett Wilson7b44537e2017-08-18 01:38:2814// Keep in identical order as the header file, see the comment at the top
15// for formatting rules.
16
vabr0215a8e2017-03-28 12:47:3417namespace flag_descriptions {
18
Brett Wilsonf27ff602017-07-07 22:28:4719const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
20const char kAccelerated2dCanvasDescription[] =
21 "Enables the use of the GPU to perform 2d canvas rendering instead of "
22 "using software rendering.";
horodb71a5a2017-06-09 16:08:2423
Justin Novosad8faf6952021-08-20 22:36:4924const char kCanvasOopRasterizationName[] =
25 "Out-of-process 2D canvas rasterization.";
26const char kCanvasOopRasterizationDescription[] =
27 "The rasterization of 2d canvas contents is performed in the GPU process. "
28 "Requires that out-of-process rasterization be enabled.";
29
Brett Wilsonf27ff602017-07-07 22:28:4730const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
31const char kAcceleratedVideoDecodeDescription[] =
32 "Hardware-accelerated video decode where available.";
33
Hirokazu Honda732d3e622019-06-12 01:13:4434const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode";
35const char kAcceleratedVideoEncodeDescription[] =
36 "Hardware-accelerated video encode where available.";
37
David Dorwin7d75ca92022-03-10 21:59:5638#if BUILDFLAG(ENABLE_PDF)
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3039const char kAccessiblePDFFormName[] = "Accessible PDF Forms";
40const char kAccessiblePDFFormDescription[] =
41 "Enables accessibility support for PDF forms.";
Hui Yingst058c23702022-11-06 18:59:2242
Hui Yingsta4a03ec82023-05-16 00:00:1743const char kPdfUseSkiaRendererName[] =
44 "Use Skia Renderer. This flag will have no effect if the renderer choice "
45 "is controlled by an enterprise policy.";
Hui Yingst058c23702022-11-06 18:59:2246const char kPdfUseSkiaRendererDescription[] = "Use Skia as the PDF renderer.";
David Dorwin7d75ca92022-03-10 21:59:5647#endif
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3048
Nikki Fang32bf6282023-01-04 05:28:4149const char kAppDeduplicationServiceFondueName[] =
50 "Identify duplicate app groups.";
51const char kAppDeduplicationServiceFondueDescription[] =
52 "Enables pulling app duplicate data from a Google server to allow clients "
53 "to determine app duplicates.";
54
Etienne Pierre-dorayb6e0b672022-07-06 17:17:3655const char kAlignWakeUpsName[] = "Align delayed wake ups at 125 Hz";
56const char kAlignWakeUpsDescription[] =
57 "Run most delayed tasks with a non-zero delay (including DOM Timers) on a "
58 "periodic 125Hz tick, instead of as soon as their delay has passed.";
59
Brett Wilsonf27ff602017-07-07 22:28:4760const char kAllowInsecureLocalhostName[] =
61 "Allow invalid certificates for resources loaded from localhost.";
62const char kAllowInsecureLocalhostDescription[] =
63 "Allows requests to localhost over HTTPS even when an invalid certificate "
64 "is presented.";
65
sophiewencc86b2c2023-02-07 18:29:4666const char kWindowLayoutMenu[] = "New Window Layout Menu";
67const char kWindowLayoutMenuDescription[] =
68 "Enables the new Window Layout menu for adjusting window layouts. Also "
69 "enables Floating windows and partial split-screen layouts.";
70
Gang Wu83ac7ee2023-04-19 23:22:4771const char kAndroidAppIntegrationName[] = "Integrate with Android App Search";
72const char kAndroidAppIntegrationDescription[] =
73 "If enabled, allows Chrome to integrate with the Android App Search.";
74
Thao Nguyenf8482bc2023-06-13 22:19:5775const char kAndroidAppIntegrationSafeSearchName[] =
76 "SafeSearch in Android App Search";
77const char kAndroidAppIntegrationSafeSearchDescription[] =
78 "If enabled, allows Chrome to filter out sensitive urls";
79
Wayne Jackson Jrc70686e82023-04-24 14:12:1080const char kAndroidExtendedKeyboardShortcutsName[] =
81 "Android Extended Keyboard Shortcuts";
82const char kAndroidExtendedKeyboardShortcutsDescription[] =
83 "If enabled, allows for extended keyboard shortcuts (i.e. Alt + Backspace "
84 "to delete line).";
85
Chris Blumed5d85872021-02-17 18:21:0186const char kAnimatedImageResumeName[] = "Use animated image resume behavior";
87const char kAnimatedImageResumeDescription[] =
88 "Resumes animated images from the last frame drawn rather than attempt "
89 "to catch up to the frame that should be drawn based on current time.";
90
Wen-Chien Wangecbea052023-03-02 00:02:2391const char kAppCollectionFolderRefreshName[] =
92 "App Collection feature: Folder icon refresh";
93const char kAppCollectionFolderRefreshDescription[] =
94 "Enables the App Collection feature: the new folder icon style in the app "
95 "list.";
96
Dominic Mazzoni34dfc6482020-11-18 22:17:5897const char kAriaElementReflectionName[] = "Enable ARIA element reflection";
98const char kAriaElementReflectionDescription[] =
99 "Enable setting ARIA relationship attributes that reference other elements "
100 "directly without an IDREF";
101
Andrew Paseltiner11afa4e2022-07-26 14:23:49102const char kAttributionReportingDebugModeName[] =
103 "Attribution Reporting Debug Mode";
104const char kAttributionReportingDebugModeDescription[] =
105 "Enables debug mode for the Attribution Reporting API. This removes all "
106 "reporting delays and noise. Only works if the Attribution Reporting API "
107 "is already enabled.";
108
Tsuyoshi Horo41b0fe002023-01-30 03:04:57109const char kBackgroundResourceFetchName[] = "Background Resource Fetch";
110const char kBackgroundResourceFetchDescription[] =
111 "Process resource requests in a background thread inside Blink.";
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
Christopher Cameron39af14a2023-04-18 17:35:09167const char kGainmapHdrImagesName[] = "Gainmap HDR image rendering";
168const char kGainmapHdrImagesDescription[] =
169 "If enabled, renders images that include an gainmap in HDR";
170
Tanmoy Mollik429d21a2022-11-28 15:42:06171const char kIdentityStatusConsistencyName[] = "Identity Status Consistency";
172const char kIdentityStatusConsistencyDescription[] =
173 "If enabled, always show identity status - even for signed-out users";
174
Alice Wang97469582022-05-09 08:00:26175const char kTangibleSyncName[] = "Tangible Sync";
176const char kTangibleSyncDescription[] =
177 "Enables the tangible sync when a user starts the sync consent flow";
178
shivanigithub99368382021-06-16 18:33:37179const char kDebugHistoryInterventionNoUserActivationName[] =
180 "Debug flag for history intervention on no user activation";
181const char kDebugHistoryInterventionNoUserActivationDescription[] =
182 "This flag when enabled, will be used to debug an issue where a page that "
183 "did not get user activation "
184 "is able to work around the history intervention which is not the expected "
185 "behavior";
186
Jonathan Njeunje9dc4e6c2023-04-10 03:05:32187const char kDIPSName[] = "Bounce Tracking Mitigations";
188const char kDIPSDescription[] =
189 "This flag controls bounce tracking mitigations. Setting the flag to "
190 "\"Enabled With Deletion\" will cause the browser to delete state for "
191 "sites that appear to be performing cross-site tracking using the bounce "
192 "tracking technique.";
193
Tommy Steimelc79b2e02022-07-07 19:07:51194const char kDocumentPictureInPictureApiName[] =
195 "Document Picture-in-Picture API";
196const char kDocumentPictureInPictureApiDescription[] =
197 "Enables API to open an always-on-top window with a full HTML document";
198
Erik Chen92f2f0d2023-03-13 00:09:48199const char kEnableBenchmarkingName[] = "Enable benchmarking";
200const char kEnableBenchmarkingDescription[] =
201 "Sets all features to their default state; that is, disables randomization "
202 "for feature states. This is used by developers and testers to "
203 "diagnose whether an observed problem is caused by a non-default "
204 "base::Feature configuration. This flag is automatically reset "
205 "after 3 restarts. On the third restart, the flag will appear to be off "
206 "but the effect is still active.";
207
Andre Le29427c22022-09-23 23:01:57208const char kPrivacyIndicatorsName[] = "Enable Privacy Indicators";
209const char kPrivacyIndicatorsDescription[] =
210 "While screen sharing or camera/microphone is being accessed, show a green "
211 "icon in the status area as well as add a silent notification to the tray.";
212
Vicky Minb02c3e92020-07-07 20:56:52213const char kEnableBluetoothSerialPortProfileInSerialApiName[] =
214 "Enable Bluetooth Serial Port Profile in Serial API";
215const char kEnableBluetoothSerialPortProfileInSerialApiDescription[] =
216 "When enabled, Bluetooth Serial Port Profile devices will be enumerated "
217 "for use with the Serial API.";
218
Vikas Soni7981a2d2021-07-30 18:51:11219const char kEnableDrDcName[] =
220 "Enables Display Compositor to use a new gpu thread.";
221const char kEnableDrDcDescription[] =
222 "When enabled, chrome uses 2 gpu threads instead of 1. "
223 " Display compositor uses new dr-dc gpu thread and all other clients "
224 "(raster, webgl, video) "
225 " continues using the gpu main thread.";
226
vikassoni93f244b2022-05-12 21:58:26227const char kEnableDrDcVulkanName[] =
228 " Use this flag along with flag enable-drdc to enable DrDc on Vulkan. "
229 " Note that this flag will be a no-op if enable-drdc is disabled. ";
230
Le Hoang Quyend6ceade62022-05-20 07:13:10231const char kForceGpuMainThreadToNormalPriorityDrDcName[] =
232 "Force GPU main thread priority to normal for DrDc.";
233const char kForceGpuMainThreadToNormalPriorityDrDcDescription[] =
234 "When enabled, force GPU main thread priority to be normal for DrDc mode. "
235 "In that case DrDc thread continues to use DISPLAY thread priority and "
236 "hence have higher thread priority than GPU main. Note that this flag will "
237 "be a no-op when DrDc is disabled.";
238
Vikas Soni973650612023-05-24 08:59:46239const char kUseClientGmbInterfaceName[] =
240 "Use ClientGmb interface to create GpuMemoryBuffers.";
241const char kUseClientGmbInterfaceDescription[] =
242 " Use new ClientGmb interface to create GpuMemoryBuffers when enabled."
243 " This is expected to reduce number of IPCs happening while creating "
244 " GpuMemoryBuffers.";
245
Aashna Shethec3b89f2022-09-15 13:06:50246const char kTextBasedAudioDescriptionName[] = "Enable audio descriptions.";
247const char kTextBasedAudioDescriptionDescription[] =
248 "When enabled, HTML5 video elements with a 'descriptions' WebVTT track "
249 "will speak the audio descriptions aloud as the video plays.";
250
Aga Wronska344fa8282021-10-07 14:18:05251#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
252const char kWebFilterInterstitialRefreshName[] =
253 "Web filter interstitial refresh.";
254const char kWebFilterInterstitialRefreshDescription[] =
James Lee89b449e52022-12-13 18:14:52255 "Enable web filter interstitial refresh for Family Link users.";
James Leee2190152023-06-06 11:45:39256
257const char kEnableSupervisionOnDesktopName[] =
258 "Enable parental supervision infrastructure";
259const char kEnableSupervisionOnDesktopDescription[] =
260 "Enables the infrastructure for Family Link supervision features. "
261 "Individual features are controlled by separate flags.";
262
263const char kFilterWebsitesForSupervisedUsersOnDesktopName[] =
264 "Enable website filtering for supervised users";
265const char kFilterWebsitesForSupervisedUsersOnDesktopDescription[] =
266 "Enable filtering of web content for Family Link supervised users. "
267 "The enable-family-link-supervision flag must also be enabled.";
268
269const char kEnableExtensionsPermissionsForSupervisedUsersOnDesktopName[] =
270 "Require parent permissions for extensions";
271const char
272 kEnableExtensionsPermissionsForSupervisedUsersOnDesktopDescription[] =
273 "Apply Family Link parental control settings for extension "
274 "installation. "
275 "The enable-family-link-supervision flag must also be enabled.";
276
277const char kSupervisedPrefsControlledBySupervisedStoreName[] =
278 "Display updated UI for preferences managed by Family Link";
279const char kSupervisedPrefsControlledBySupervisedStoreDescription[] =
280 "Display updated UI for preferences managed by Family Link. "
281 "The enable-family-link-supervision flag must also be enabled.";
282
283const char kEnableManagedByParentUiName[] = "Enable Family Link management UI";
284const char kEnableManagedByParentUiDescription[] =
285 "Enables UI indicating if a Profile is managed by Family Link parental "
286 "controls."
287 "The enable-family-link-supervision flag must also be enabled.";
Aga Wronska344fa8282021-10-07 14:18:05288#endif // ENABLE_SUPERVISED_USERS
289
Elly Fong-Jones43624372023-02-16 19:36:11290const char kUpcomingFollowFeaturesName[] = "Enable upcoming follow features.";
291const char kUpcomingFollowFeaturesDescription[] =
292 "This flag enables all upcoming follow features, in the experiment "
293 "arms that are most likely to be shipped. This is a meta-flag to which "
294 "features are upcoming at any given time may change.";
295
Chad Duffin73b2226f2023-05-29 16:53:32296const char kUseAndroidStagingSmdsName[] = "Use Android staging SM-DS";
297const char kUseAndroidStagingSmdsDescription[] =
298 "Use the Android staging address when fetching pending eSIM profiles.";
299
Regan Hsu3243afa2021-06-21 18:27:27300const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address";
301const char kUseStorkSmdsServerAddressDescription[] =
302 "Use the Stork SM-DS address to fetch pending eSIM profiles managed by the "
303 "Stork prod server. Note that Stork profiles can be created with an EID at "
304 "go/stork-profile, and managed at go/stork-batch > View Profiles. Also "
Jason Zhang26cacea2022-04-04 18:55:04305 "note that an test EUICC card is required to use this feature, usually "
306 "that requires the kCellularUseSecond flag to be enabled. Go to "
Regan Hsu3243afa2021-06-21 18:27:27307 "go/cros-connectivity > Dev Tips for more instructions.";
308
Regan Hsu1ffea922020-09-10 17:08:47309const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL";
310const char kUseWallpaperStagingUrlDescription[] =
311 "Use the staging server as part of the Wallpaper App to verify "
312 "additions/removals of wallpapers.";
313
Kyle Horimoto874554a2019-01-31 00:52:09314const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
315const char kUseMessagesStagingUrlDescription[] =
316 "Use the staging server as part of the \"Messages\" feature under "
317 "\"Connected Devices\" settings.";
318
Jon Mann5ebbd1532020-04-17 22:12:05319const char kUseCustomMessagesDomainName[] = "Use custom Messages domain";
320const char kUseCustomMessagesDomainDescription[] =
321 "Use a custom URL as part of the \"Messages\" feature under "
322 "\"Connected Devices\" settings.";
323
Vasiliy Telezhnikova4164812022-10-03 18:38:20324const char kUseDMSAAForTilesName[] = "Use DMSAA for tiles";
325const char kUseDMSAAForTilesDescription[] =
326 "Switches skia to use DMSAA instead of MSAA for tile raster";
327
Tsuyoshi Horod81149602022-07-04 01:34:09328const char kUseDnsHttpsSvcbAlpnName[] = "Use DNS https alpn";
329const char kUseDnsHttpsSvcbAlpnDescription[] =
330 "When enabled, Chrome may try QUIC on the first connection using the ALPN"
331 " information in the DNS HTTPS record.";
332
cfredric6f155762020-12-10 18:52:40333const char kEnableFirstPartySetsName[] = "Enable First-Party Sets";
334const char kEnableFirstPartySetsDescription[] =
Chris Fredricksonbebf42e2023-05-18 19:14:40335 "When enabled, Chrome will enable First-Party Sets and the Storage Access "
336 "API.";
cfredric6f155762020-12-10 18:52:40337
Bob Beckd9873c22023-02-21 22:56:45338extern const char kSHA1ServerSignatureName[] =
339 "Allow SHA-1 server signatures in TLS.";
340extern const char kSHA1ServerSignatureDescription[] =
341 "When enabled, Chrome will allow the use of SHA-1 in signatures from the "
342 "server during a TLS handshake";
343
David Benjamin371481f2022-06-15 15:57:40344extern const char kEncryptedClientHelloName[] = "Encrypted ClientHello";
345extern const char kEncryptedClientHelloDescription[] =
346 "When enabled, Chrome will enable Encrypted ClientHello support. This will "
347 "encrypt TLS ClientHello if the server enables the extension via the HTTPS "
348 "DNS record.";
349
W. James MacLean0d757fa2022-02-16 16:13:31350extern const char kIsolatedSandboxedIframesName[] =
351 "Isolated sandboxed iframes";
352extern const char kIsolatedSandboxedIframesDescription[] =
353 "When enabled, applies process isolation to iframes with the 'sandbox' "
354 "attribute and without the 'allow-same-origin' permission set on that "
W. James MacLean3b6d0872022-06-24 16:16:14355 "attribute. This also applies to documents with a similar CSP sandbox "
356 "header, even in the main frame. The affected sandboxed documents can be "
357 "grouped into processes based on their URL's site or origin. The default "
358 "grouping when enabled is per-site.";
W. James MacLean0d757fa2022-02-16 16:13:31359
Anne Lim24031e9d2019-09-12 23:03:19360const char kAutofillAlwaysReturnCloudTokenizedCardName[] =
361 "Return cloud token details for server credit cards when possible";
362const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] =
363 "When enabled and where available, forms filled using Google Payments "
364 "server cards are populated with cloud token details, including CPAN "
365 "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic "
366 "CVV).";
367
siashah2b698e2b2021-04-21 15:09:55368const char kAutofillAutoTriggerManualFallbackForCardsName[] =
369 "Auto trigger manual fallback for credit card form-filling failure cases";
370const char kAutofillAutoTriggerManualFallbackForCardsDescription[] =
371 "When enabled, manual fallback will be auto-triggered on form interaction "
372 "in the case where autofill failed to fill a credit card form accurately.";
373
Yi An8b28bef2022-06-29 19:11:32374const char kAutofillEnableFIDOProgressDialogName[] =
375 "Show FIDO progress dialog on Android";
376const char kAutofillEnableFIDOProgressDialogDescription[] =
377 "When enabled, a progress dialog is displayed while authenticating with "
378 "FIDO on Android.";
379
Vinny Perskye6677d52023-02-22 22:22:19380const char kAutofillEnableIbanClientSideUrlFilteringName[] =
381 "Enable Autofill IBAN client side URL filtering";
382const char kAutofillEnableIbanClientSideUrlFilteringDescription[] =
383 "When enabled, client side URL filtering will be triggered for the IBAN "
384 "use-case, so that IBAN autofill is not offered on websites that are "
385 "blocked.";
386
siashahd779824402022-03-31 20:06:55387const char kAutofillEnableManualFallbackForVirtualCardsName[] =
388 "Show manual fallback for virtual cards";
389const char kAutofillEnableManualFallbackForVirtualCardsDescription[] =
390 "When enabled, manual fallback will be enabled for virtual cards on "
391 "Android.";
392
Vinny Persky5a0ac3a32023-03-02 18:35:50393const char kAutofillEnableMerchantOptOutClientSideUrlFilteringName[] =
394 "Enable Autofill merchant opt-out client side URL filtering";
395const char kAutofillEnableMerchantOptOutClientSideUrlFilteringDescription[] =
396 "When enabled, client side URL filtering will be triggered for the "
397 "merchant opt-out use-case, so that virtual card suggestions are not shown "
398 "on websites that are opted-out of virtual cards.";
399
Siyu An042eac82022-09-19 23:55:03400const char kAutofillEnableCardArtImageName[] = "Enable showing card art images";
401const char kAutofillEnableCardArtImageDescription[] =
402 "When enabled, card product images (instead of network icons) will be "
403 "shown in Payments Autofill UI.";
404
Vishwas Uppoor89303a92022-08-03 00:56:26405const char kAutofillEnableCardProductNameName[] =
406 "Enable showing card product name";
407const char kAutofillEnableCardProductNameDescription[] =
408 "When enabled, card product name (instead of issuer network) will be shown "
Siyu An042eac82022-09-19 23:55:03409 "in Payments Autofill UI.";
Vishwas Uppoor89303a92022-08-03 00:56:26410
Junhui He9896c7b2023-03-27 18:39:53411const char kAutofillEnableEmailOtpForVcnYellowPathName[] =
412 "Enable email OTP authentication in the yellow path of the VCN retrieval "
413 "flow";
414const char kAutofillEnableEmailOtpForVcnYellowPathDescription[] =
415 "When enabled, if the user encounters the yellow path (challenge path) in "
416 "the VCN retrieval flow and the server denotes that the card is eligible "
417 "for email OTP authentication, email OTP authentication will be offered as "
418 "one of the challenge options.";
419
Alexander Teklea82c4142023-02-22 01:33:42420const char kAutofillEnableNewCardArtAndNetworkImagesName[] =
421 "Enable showing new card art and network images";
422const char kAutofillEnableNewCardArtAndNetworkImagesDescription[] =
423 "When enabled, new and larger card art and network icons will be shown.";
424
Jared Saul702563e2021-09-20 22:36:52425const char kAutofillEnableOfferNotificationForPromoCodesName[] =
426 "Extend Autofill offers and rewards notification to promo code offers";
427const char kAutofillEnableOfferNotificationForPromoCodesDescription[] =
428 "When enabled, a notification will be displayed on page navigation if the "
429 "domain has an eligible merchant promo code offer or reward.";
430
siashaheb118ad52020-12-15 00:17:07431const char kAutofillEnableOffersInClankKeyboardAccessoryName[] =
432 "Enable Autofill offers in keyboard accessory";
433const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] =
434 "When enabled, offers will be displayed in the keyboard accessory when "
435 "available.";
436
Vinny Persky7442638c2023-03-24 01:02:54437const char kAutofillEnablePaymentsMandatoryReauthName[] =
438 "Enable mandatory re-auth for payments autofill";
439const char kAutofillEnablePaymentsMandatoryReauthDescription[] =
440 "When enabled, in use-cases where we would not have triggered any "
Vinny Persky470d1292023-05-10 20:38:05441 "interactive authentication to autofill payment methods, we will trigger "
Vinny Persky7442638c2023-03-24 01:02:54442 "a device authentication.";
443
Alexander Tekleb4643812023-01-06 23:12:30444const char kAutofillEnableRankingFormulaAddressProfilesName[] =
445 "Enable new Autofill suggestion ranking formula for profiles";
446const char kAutofillEnableRankingFormulaAddressProfilesDescription[] =
447 "When enabled, Autofill will use a new ranking formula to rank Autofill "
448 "profile suggestions.";
449
Alexander Tekle35dfbbd2023-01-31 08:32:39450const char kAutofillEnableRankingFormulaCreditCardsName[] =
451 "Enable new Autofill suggestion ranking formula for credit cards";
452const char kAutofillEnableRankingFormulaCreditCardsDescription[] =
453 "When enabled, Autofill will use a new ranking formula to rank Autofill "
454 "credit card suggestions.";
455
Siyu An3194bda2022-07-13 19:30:37456const char kAutofillEnableRemadeDownstreamMetricsName[] =
457 "Enable remade Autofill Downstream metrics logging";
458const char kAutofillEnableRemadeDownstreamMetricsDescription[] =
459 "When enabled, some extra metrics logging for Autofill Downstream will "
460 "start.";
461
siashah2b698e2b2021-04-21 15:09:55462const char kAutofillEnableStickyManualFallbackForCardsName[] =
463 "Make manual fallback sticky for credit cards";
464const char kAutofillEnableStickyManualFallbackForCardsDescription[] =
465 "When enabled, if the user interacts with the manual fallback bottom "
466 "sheet, it'll remain sticky until the user dismisses it.";
467
Norge Vizcay7346a982023-05-17 09:02:08468const char kAutofillEnableSupportForLandmarkName[] =
469 "Enable autofill support for landmark fields";
470const char kAutofillEnableSupportForLandmarkDescription[] =
471 "Enables support for filling and importing landmark fields.";
Norge Vizcay541719c42023-05-12 12:05:15472
Vinny Perskyf98de022022-01-05 22:14:10473const char kAutofillEnableUpdateVirtualCardEnrollmentName[] =
474 "Enable Update Virtual Card Enrollment";
475const char kAutofillEnableUpdateVirtualCardEnrollmentDescription[] =
476 "When enabled, the user will have the ability to update the virtual card "
477 "enrollment of a credit card through their chrome browser after certain "
478 "autofill flows (for example, downstream and upstream), and from the "
479 "settings page.";
480
Vinny Persky650f84402022-04-14 18:46:18481const char kAutofillEnableVirtualCardFidoEnrollmentName[] =
482 "Enable FIDO enrollment for virtual cards";
483const char kAutofillEnableVirtualCardFidoEnrollmentDescription[] =
484 "When enabled, after a successful authentication to autofill a virtual "
485 "card, the user will be prompted to opt-in to FIDO if the user is not "
486 "currently opted-in, and if the user is opted-in already and the virtual "
487 "card is FIDO eligible the user will be prompted to register the virtual "
488 "card into FIDO.";
489
siyua19593222019-12-04 22:27:06490const char kAutofillEnableVirtualCardName[] =
491 "Offer to use cloud token virtual card in Autofill";
492const char kAutofillEnableVirtualCardDescription[] =
493 "When enabled, if all requirements are met, Autofill will offer to use "
494 "virtual credit cards in form filling.";
495
Vipul Vinod Koul633bbf652023-02-21 23:34:11496const char kAutofillEnableNewSaveCardBubbleUiName[] =
497 "Update UI messaging and banner image for credit card upload save";
498const char kAutofillEnableNewSaveCardBubbleUiDescription[] =
499 "When enabled, the user will see a new banner logo and text in the bubble "
500 "offering to upload their cards to Google Pay.";
501
Siyu Ana8b9a0bc2022-01-31 19:40:41502const char kAutofillEnableVirtualCardManagementInDesktopSettingsPageName[] =
503 "Enable virtual card enrollment management in desktop payments settings "
504 "page";
505const char
506 kAutofillEnableVirtualCardManagementInDesktopSettingsPageDescription[] =
507 "When enabled, chrome://settings/payments will offer the option to "
508 "enroll in virtual card if the card is eligible and to unenroll if the "
509 "card has been enrolled.";
510
Siyu An003243c2022-04-07 22:13:11511const char kAutofillEnableVirtualCardMetadataName[] =
512 "Enable showing metadata for virtual cards";
513const char kAutofillEnableVirtualCardMetadataDescription[] =
514 "When enabled, Chrome will show metadata together with other card "
515 "information when the virtual card is presented to users.";
516
Siyu Anff02e742022-04-07 19:08:22517const char kAutofillEnforceDelaysInStrikeDatabaseName[] =
518 "Enforce delay between offering Autofill opportunities in the strike "
519 "database";
520const char kAutofillEnforceDelaysInStrikeDatabaseDescription[] =
521 "When enabled, if previous Autofill feature offer was declined, "
522 "Chrome will wait for some time before showing the offer again.";
523
Qihui Zhao30bf4ca2022-07-26 20:24:59524extern const char kAutofillFillIbanFieldsName[] =
525 "Enable Autofill of IBAN fields in forms";
526extern const char kAutofillFillIbanFieldsDescription[] =
527 "When enabled, Autofill will attempt to fill IBAN (International Bank "
528 "Account Number) fields when data is available.";
529
Jared Saul2188f762021-08-02 21:22:23530const char kAutofillFillMerchantPromoCodeFieldsName[] =
531 "Enable Autofill of promo code fields in forms";
532const char kAutofillFillMerchantPromoCodeFieldsDescription[] =
533 "When enabled, Autofill will attempt to fill merchant promo/coupon/gift "
534 "code fields when data is available.";
535
Matthias Körber44082a492021-09-15 18:29:18536const char kAutofillHighlightOnlyChangedValuesInPreviewModeName[] =
537 "Highlight only changed values in preview mode.";
538const char kAutofillHighlightOnlyChangedValuesInPreviewModeDescription[] =
539 "When Autofill is previewing filling a form, already autofilled values "
540 "and other values that are not changed by accepting the preview should "
541 "not be highlighted.";
542
Yishui Liub55635462023-05-23 04:22:29543const char kAutofillMoveLegalTermsAndIconForNewCardEnrollmentName[] =
544 "Move legal terms and icon for new card enrollment";
545const char kAutofillMoveLegalTermsAndIconForNewCardEnrollmentDescription[] =
546 "When enabled, legal terms will be moved before action buttons and GPay "
547 "icon will be moved after the title in autofill save card and virtual "
548 "card enrollment bubbles and dialogs.";
549
Qihui Zhao72836c62022-12-16 04:31:41550const char kAutofillOfferToSaveCardWithSameLastFourName[] =
551 "Offer credit card save for cards with same last-4 but different "
552 "expiration dates";
553const char kAutofillOfferToSaveCardWithSameLastFourDescription[] =
554 "Offer credit card save when Chrome detects a card number with the same "
555 "last 4 digits as an existing server card, but a different expiration "
556 "date.";
557
Nakul Vaidya876210f2022-08-08 17:47:19558const char kAutofillParseIBANFieldsName[] = "Parse IBAN fields in forms";
559const char kAutofillParseIBANFieldsDescription[] =
Nakul Vaidyaddfdfbc2022-06-28 23:43:32560 "When enabled, Autofill will attempt to find International Bank Account "
561 "Number (IBAN) fields when parsing forms.";
562
Nakul Vaidya13ca2042022-07-27 01:59:55563const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsName[] =
564 "Parse standalone CVC fields for VCN card on file in forms";
565const char kAutofillParseVcnCardOnFileStandaloneCvcFieldsDescription[] =
566 "When enabled, Autofill will attempt to find standalone CVC fields for VCN "
567 "card on file when parsing forms.";
568
Vidhan5885afa2022-06-23 15:18:16569const char kAutofillPreventOverridingPrefilledValuesName[] =
570 "Prevent Autofill from overriding prefilled field values";
571const char kAutofillPreventOverridingPrefilledValuesDescription[] =
572 "When enabled, Autofill won't override any field values that have not been "
573 "filled by Autofill";
574
Dmitry Vykochko91af82b02022-12-09 17:37:37575const char kAutofillMoreProminentPopupName[] = "More prominent Autofill popup";
576const char kAutofillMoreProminentPopupDescription[] =
577 "If enabled Autofill's popup becomes more prominent, i.e. its shadow "
578 "becomes more emphasized, position is also updated";
579
Qihui Zhao69ac9eee2022-12-15 21:36:39580const char kAutofillRemoveCardExpirationAndTypeTitlesName[] =
581 "Remove expiration and type titles from Chrome Payment Settings page on "
582 "desktop";
583const char kAutofillRemoveCardExpirationAndTypeTitlesDescription[] =
584 "When enabled, expiration and type titles will be removed from the Chrome "
585 "Payment Settings page on desktop platforms.";
586
Lei Zhang507fffd2020-01-29 23:47:54587const char kAutofillSaveAndFillVPAName[] =
Christos Froussios13b412df2019-09-19 19:12:47588 "Offer save and autofill of UPI/VPA values";
Lei Zhang507fffd2020-01-29 23:47:54589const char kAutofillSaveAndFillVPADescription[] =
Christos Froussios13b412df2019-09-19 19:12:47590 "If enabled, when autofill recognizes a UPI/VPA value in a payment form, "
591 "it will offer to save it. If saved, it will be offered for filling in "
592 "fields which expect a VPA.";
593
Jan Keitel05180472023-03-01 11:01:42594const char kAutofillShowAutocompleteDeleteButtonName[] =
595 "Show a delete button for Autocomplete entries";
596const char kAutofillShowAutocompleteDeleteButtonDescription[] =
597 "When enabled, Autocomplete entries in filling popups will contain a "
598 "delete button";
599
Vidhanb03b1ea2022-05-19 12:07:58600const char kAutofillShowManualFallbackInContextMenuName[] =
601 "Show Autofill options in Context Menu";
602const char kAutofillShowManualFallbackInContextMenuDescription[] =
603 "When enabled, users would get address/credit cards/passwords autofilling "
604 "options in the context menu if the context menu is opened on a text field";
605
Vipul Vinod Koulaebbcb3a2023-01-05 19:50:50606const char kAutofillSuggestServerCardInsteadOfLocalCardName[] =
607 "Suggest Server card instead of Local card for deduped cards";
608const char kAutofillSuggestServerCardInsteadOfLocalCardDescription[] =
609 "When enabled, Autofill suggestions that consist of a local and server "
610 "version of the same card will attempt to fill the server card upon "
611 "selection instead of the local card.";
612
Vishwas Uppoor940bd242022-12-15 09:49:42613const char kAutofillTouchToFillForCreditCardsAndroidName[] =
614 "Enable Touch To Fill bottomsheet for Autofill credit card suggestions";
615const char kAutofillTouchToFillForCreditCardsAndroidDescription[] =
616 "When enabled, Autofill credit card suggestions are shown on the "
617 "Touch To Fill bottomsheet";
618
Jared Saulb0473bd2022-04-20 00:03:41619const char kAutofillUpstreamAllowAdditionalEmailDomainsName[] =
620 "Allow Autofill credit card upload save for select non-Google-based "
621 "accounts";
622const char kAutofillUpstreamAllowAdditionalEmailDomainsDescription[] =
623 "When enabled, credit card upload is offered if the user's logged-in "
624 "account's domain is from a common email provider.";
625
626const char kAutofillUpstreamAllowAllEmailDomainsName[] =
627 "Allow Autofill credit card upload save for all non-Google-based accounts";
628const char kAutofillUpstreamAllowAllEmailDomainsDescription[] =
629 "When enabled, credit card upload is offered without regard to the user's "
630 "logged-in account's domain.";
631
Jared Saul5363f3962023-03-10 23:03:51632const char kAutofillUpstreamAuthenticatePreflightCallName[] =
633 "Set authentication token in credit card upload preflight call";
634const char kAutofillUpstreamAuthenticatePreflightCallDescription[] =
635 "When enabled, sets the OAuth2 token in GetUploadDetails requests to "
636 "Google Payments, in order to provide a better experience for users with "
637 "server-side features disabled but not client-side features.";
638
Jared Saul5ea8b257f2023-02-22 18:53:27639const char kAutofillUpstreamUseAlternateSecureDataTypeName[] =
640 "Use alternate secure data type for credit card upload save";
641const char kAutofillUpstreamUseAlternateSecureDataTypeDescription[] =
642 "When enabled, the secure data type for cards sent during credit card "
643 "upload save is updated to match newer server requirements.";
644
Caitlin Fischer43edd90a2019-05-01 13:24:30645const char kAutofillUseImprovedLabelDisambiguationName[] =
646 "Autofill Uses Improved Label Disambiguation";
647const char kAutofillUseImprovedLabelDisambiguationDescription[] =
648 "When enabled, the Autofill dropdown's suggestions' labels are displayed "
649 "using the improved disambiguation format.";
650
Vishwas Uppoor416acea2023-03-09 02:25:22651const char kAutofillVirtualCardsOnTouchToFillAndroidName[] =
652 "Enable virtual cards on Touch To Fill bottomsheet for credit cards";
653const char kAutofillVirtualCardsOnTouchToFillAndroidDescription[] =
654 "When enabled, virtual credit card suggestions are shown on the Touch To "
655 "Fill bottomsheet for credit cards.";
656
Alexander Timin6ae060b62019-09-17 11:21:37657const char kBackForwardCacheName[] = "Back-forward cache";
658const char kBackForwardCacheDescription[] =
Rakina Zata Amni95a2a91d2020-07-14 12:41:44659 "If enabled, caches eligible pages after cross-site navigations."
660 "To enable caching pages on same-site navigations too, choose 'enabled "
661 "same-site support'.";
Alexander Timin6ae060b62019-09-17 11:21:37662
Yuzu Saijo312b8432022-03-01 03:27:31663const char kEnableBackForwardCacheForScreenReaderName[] =
664 "Enable Back-forward cache for screen readers";
665const char kEnableBackForwardCacheForScreenReaderDescription[] =
666 "If enabled, allow pages to enter back/forward cache even if a screen "
667 "reader is in use. The page might still not be cached for other reasons.";
668
Ioana Pandele69fe4672021-04-28 08:06:37669const char kBiometricReauthForPasswordFillingName[] =
670 "Biometric reauth for password filling";
671const char kBiometricReauthForPasswordFillingDescription[] =
672 "Enables biometric"
673 "re-authentication before password filling";
674
Norge Vizcay5f6bfb42022-06-10 08:33:14675const char kFastCheckoutName[] = "Fast Checkout";
676const char kFastCheckoutDescription[] =
677 "Enables Fast Checkout experiences in Chrome.";
678
Illia Klimove406ecc12022-11-22 15:53:29679const char kFailFastQuietChipName[] = "Fail fast quiet chip";
680const char kFailFastQuietChipDescription[] =
681 "Enables fast finalization of a permission request if it is displayed as a "
682 "quiet chip.";
683
danielngdd3ef942021-10-28 06:42:48684const char kBorealisBigGlName[] = "Borealis Big GL";
685const char kBorealisBigGlDescription[] = "Enable Big GL when running Borealis.";
686
Dominik Behr03b5c24f2023-04-18 21:20:52687const char kBorealisDGPUName[] = "Borealis dGPU";
688const char kBorealisDGPUDescription[] = "Enable dGPU when running Borealis.";
689
danielng1078c6372021-06-28 06:31:36690const char kBorealisDiskManagementName[] = "Borealis Disk management";
691const char kBorealisDiskManagementDescription[] =
692 "Enable experimental disk management settings.";
693
Nicholas Hollingum449d8252021-11-29 00:18:29694const char kBorealisForceBetaClientName[] = "Borealis Force Beta Client";
695const char kBorealisForceBetaClientDescription[] =
696 "Force the client to run its beta version.";
697
Nicholas Hollingume8672092022-08-25 04:23:16698const char kBorealisForceDoubleScaleName[] = "Borealis Force Double Scale";
699const char kBorealisForceDoubleScaleDescription[] =
700 "Force the client to run in 2x visual zoom.";
701
Nicholas Hollingum449d8252021-11-29 00:18:29702const char kBorealisLinuxModeName[] = "Borealis Linux Mode";
703const char kBorealisLinuxModeDescription[] =
704 "Do not run ChromeOS-specific code in the client.";
705
Nicholas Hollingum97500cc12022-03-03 22:44:43706// For UX reasons we prefer "enabled", but that is used internally to refer to
707// whether borealis is installed or not, so the name of the variable is a bit
708// different to the user-facing name.
709const char kBorealisPermittedName[] = "Borealis Enabled";
710const char kBorealisPermittedDescription[] =
711 "Allows Borealis to run on your device. Borealis may still be blocked for "
712 "other reasons, including: administrator settings, device hardware "
713 "capabilities, or other security measures.";
714
danielng573ad3742022-07-06 05:26:24715const char kBorealisStorageBallooningName[] = "Borealis Storage Ballooning";
716const char kBorealisStorageBallooningDescription[] =
717 "Enables storage balloning for Borealis. This takes precedence over the "
718 "other Borealis Disk management flag.";
719
Brett Wilsonf27ff602017-07-07 22:28:47720const char kBypassAppBannerEngagementChecksName[] =
721 "Bypass user engagement checks";
722const char kBypassAppBannerEngagementChecksDescription[] =
723 "Bypasses user engagement checks for displaying app banners, such as "
724 "requiring that users have visited the site before and that the banner "
725 "hasn't been shown recently. This allows developers to test that other "
726 "eligibility requirements for showing app banners, such as having a "
727 "manifest, are met.";
728
sisidovskia29a3022023-04-20 07:53:54729const char kServiceWorkerBypassFetchHandlerName[] =
730 "Bypass Service Worker Fetch Handler";
731const char kServiceWorkerBypassFetchHandlerDescription[] =
732 "Bypass starting a service worker and its fetch handler when the fetch "
733 "event meets the conditions. The service worker may start after sending a "
734 "resource request, or conduct a race between the network request and its "
735 "fetch handler. If the resource could be handled in the fetch handler, the "
736 "feature may affect the page load. This feature will override "
737 "chrome://flags/#service-worker-bypass-fetch-handler-for-main-resource";
738
sisidovski62b577f22022-12-15 03:10:00739const char kServiceWorkerBypassFetchHandlerForMainResourceName[] =
740 "Bypass Service Worker Fetch Handler for main resource";
741const char kServiceWorkerBypassFetchHandlerForMainResourceDescription[] =
742 "Bypass starting a service worker and its fetch handler for main resource "
743 "requests. The service worker starts after sending a main resource request "
744 "and handles subresources. If the main resource could be handled in the "
sisidovskia29a3022023-04-20 07:53:54745 "fetch handler, the feature may affect the page load. This feature will be "
746 "overridden by chrome://flags/#service-worker-bypass-fetch-handler";
sisidovski62b577f22022-12-15 03:10:00747
Yoshisato Yanagisawa9dc8ebe2023-06-13 07:07:04748const char kServiceWorkerStaticRouterName[] = "Service Worker Static Router";
749const char kServiceWorkerStaticRouterDescription[] =
750 "When enabled, Chrome will enable the Service Worker Static Routing API. "
751 "https://chromestatus.com/feature/5185352976826368";
752
Bryant Chandlerdcd994e2023-06-13 18:23:31753#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
754const char kCameraMicPreviewName[] = "Camera and Mic Preview";
755const char kCameraMicPreviewDescription[] =
756 "Enables camera and mic preview in permission bubble and site settings.";
757#endif
758
Elaine Chienaeb4adc2020-12-08 04:22:05759const char kChromeLabsName[] = "Chrome Labs";
760const char kChromeLabsDescription[] =
761 "Access Chrome Labs through the toolbar menu to see featured user-facing "
762 "experimental features.";
763
Elaine Chienaef6d932023-05-15 18:29:41764const char kChromeRefresh2023Id[] = "chrome-refresh-2023";
Elaine Chienf90ffa72023-01-25 19:18:32765const char kChromeRefresh2023Name[] = "Chrome Refresh 2023";
Elaine Chienaef6d932023-05-15 18:29:41766const char kChromeRefresh2023Description[] = "Enables the new desktop design.";
Elaine Chienf90ffa72023-01-25 19:18:32767
John Leee6d9a8682023-04-22 00:58:39768const char kChromeWebuiRefresh2023Name[] = "Chrome WebUI Refresh 2023";
769const char kChromeWebuiRefresh2023Description[] =
770 "Enables Chrome Refresh 2023 styles for various WebUI surfaces.";
771
Yue Zhang25d72962022-06-13 21:14:05772const char kCommerceHintAndroidName[] = "Commerce Hint Android";
773const char kCommerceHintAndroidDescription[] =
774 "Enables commerce hint detection on Android.";
775
Jae Hoon Kim2d4256e2022-04-15 21:59:09776const char kConsumerAutoUpdateToggleAllowedName[] =
777 "Allow Consumer Auto Update Toggle";
778const char kConsumerAutoUpdateToggleAllowedDescription[] =
779 "Allow enabling the consumer auto update toggle in settings";
780
Nandhini11a6a87b2019-08-22 22:45:24781const char kContextMenuSearchWithGoogleLensName[] =
782 "Google Lens powered image search in the context menu.";
783const char kContextMenuSearchWithGoogleLensDescription[] =
784 "Replaces default image search with an intent to Google Lens when "
785 "supported.";
786
Anudeep Palankic903c59e2023-01-26 16:46:55787const char kContextMenuGoogleLensSearchOptimizationsName[] =
788 "Google Lens powered image search string variations in the context menu.";
789const char kContextMenuGoogleLensSearchOptimizationsDescription[] =
790 "Replaces Google Lens string variations when Google Lens is supported.";
791
Shuran Huangd11e73e2021-04-14 16:10:12792const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] =
793 "Clear window name in top-level cross-site cross-browsing-context-group "
794 "navigation";
795const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] =
796 "Clear the preserved window.name property when it's a top-level cross-site "
797 "navigation that swaps BrowsingContextGroup.";
Shuran Huanga5be08b2021-01-20 18:46:29798
rbpottere877c1f2021-06-15 00:23:55799const char kChromeWhatsNewUIName[] =
800 "Show Chrome What's New page at chrome://whats-new";
801const char kChromeWhatsNewUIDescription[] =
802 "Enables Chrome What's New page at chrome://whats-new.";
803
Sanja Perisica1e5cd82022-02-24 11:52:50804extern const char kDeviceForceScheduledRebootName[] =
805 "Enable DeviceScheduledReboot policy for all sessions.";
806extern const char kDeviceForceScheduledRebootDescription[] =
807 "Schedule recurring reboot for the device. Reboots are always executed at "
808 "a scheduled time. If the session is active, user will be notified about "
809 "the reboot, but the reboot will not be delayed.";
810
Alexis Menard61ecb91d2021-07-17 04:10:33811const char kDevicePostureName[] = "Device Posture API";
812const char kDevicePostureDescription[] =
813 "Enables Device Posture API (foldable devices)";
814
Mei Liang36e41a5e2022-02-10 01:43:50815const char kDiscountConsentV2Name[] = "Discount Consent V2";
816const char kDiscountConsentV2Description[] = "Enables Discount Consent V2";
817
Kamila5e9935682022-08-05 12:43:29818const char kDisruptiveNotificationPermissionRevocationName[] =
819 "Disruptive notification permission revocation";
820const char kDisruptiveNotificationPermissionRevocationDescription[] =
821 "Enables revoking the notification permission on sites that send "
822 "disruptive notifications unless the permission was granted through a "
823 "prompt that informed the user about this possibility.";
824
Daniele Castagna6a5cbdeb62020-02-18 22:48:14825const char kDoubleBufferCompositingName[] = "Double buffered compositing";
826const char kDoubleBufferCompositingDescription[] =
827 "Use double buffer for compositing (instead of triple-buffering). "
828 "Latency should be reduced in some cases. On the other hand, more skipped "
829 "frames are expected.";
830
Youssef Esmat9cdb6b42022-12-21 19:28:45831const char kMainThreadCompositingPriorityName[] =
832 "Main thread runs as compositing";
833const char kMainThreadCompositingPriorityDescription[] =
834 "Runs the main thread at compositing priority since it responds to input "
835 "and is on the critical path.";
836
Mei Liangd79d3822022-10-26 21:55:25837const char kMerchantWidePromotionsName[] = "Merchant wide promotions";
838const char kMerchantWidePromotionsDescription[] =
839 "Enables the discount consent for all merchants, and show merchant wide "
840 "promotions if they are available";
841
Mei Liangd5813c32022-10-29 01:09:07842const char kCodeBasedRBDName[] = "Code-based RBD";
843const char kCodeBasedRBDDescription[] = "Enables the Code-based RBD.";
844
Tsuyoshi Horo2fbde5b2023-04-04 22:52:55845const char kCompressionDictionaryTransportName[] =
846 "Compression dictionary transport";
847const char kCompressionDictionaryTransportDescription[] =
848 "Enables compression dictionary transport features. Requires "
849 "chrome://flags/#enable-compression-dictionary-transport-backend to be "
850 "enabled.";
851
852const char kCompressionDictionaryTransportBackendName[] =
853 "Compression dictionary transport backend";
854const char kCompressionDictionaryTransportBackendDescription[] =
855 "Enables the backend of compression dictionary transport features. "
856 "Requires chrome://flags/#enable-compression-dictionary-transport to be "
857 "enabled for testing the feature.";
858
Christopher Cameronceb8727d2017-09-07 23:53:16859const char kForceColorProfileSRGB[] = "sRGB";
860const char kForceColorProfileP3[] = "Display P3 D65";
Christopher Cameronb15ffe62022-11-15 10:25:31861const char kForceColorProfileRec2020[] = "ITU-R BT.2020";
Christopher Cameronceb8727d2017-09-07 23:53:16862const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
Sunny Sachanandani71e474a2019-06-11 02:32:03863const char kForceColorProfileSCRGBLinear[] =
864 "scRGB linear (HDR where available)";
865const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)";
Christopher Cameronceb8727d2017-09-07 23:53:16866
867const char kForceColorProfileName[] = "Force color profile";
868const char kForceColorProfileDescription[] =
869 "Forces Chrome to use a specific color profile instead of the color "
870 "of the window's current monitor, as specified by the operating system.";
871
Chris Blumeb504da1f22020-04-27 00:21:44872const char kDynamicColorGamutName[] = "Dynamic color gamut";
873const char kDynamicColorGamutDescription[] =
874 "Displays in wide color when the content is wide. When the content is "
875 "not wide, displays sRGB";
876
Keishi Hattori15299742020-04-20 04:00:09877const char kCooperativeSchedulingName[] = "Cooperative Scheduling";
878const char kCooperativeSchedulingDescription[] =
879 "Enables cooperative scheduling in Blink.";
880
Lijin Shen5feade62019-09-17 03:01:01881const char kDarkenWebsitesCheckboxInThemesSettingName[] =
882 "Darken websites checkbox in themes setting";
883const char kDarkenWebsitesCheckboxInThemesSettingDescription[] =
884 "Show a darken websites checkbox in themes settings when system default or "
885 "dark is selected. The checkbox can toggle the auto-darkening web contents "
886 "feature";
887
Brett Wilsonf27ff602017-07-07 22:28:47888const char kDebugPackedAppName[] = "Debugging for packed apps";
889const char kDebugPackedAppDescription[] =
890 "Enables debugging context menu options such as Inspect Element for packed "
891 "applications.";
892
Brett Wilsonf27ff602017-07-07 22:28:47893const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
894const char kDebugShortcutsDescription[] =
895 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
896
Sharon Yangf390ea92021-06-23 19:55:40897const char kDisableProcessReuse[] = "Disable subframe process reuse";
898const char kDisableProcessReuseDescription[] =
899 "Prevents out-of-process iframes from reusing compatible processes from "
900 "unrelated tabs. This is an experimental mode that will result in more "
901 "processes being created.";
902
Brett Wilsonf27ff602017-07-07 22:28:47903const char kDisallowDocWrittenScriptsUiName[] =
904 "Block scripts loaded via document.write";
905const char kDisallowDocWrittenScriptsUiDescription[] =
906 "Disallows fetches for third-party parser-blocking scripts inserted into "
907 "the main frame via document.write.";
908
Yann Dagoc9bca0352023-02-28 16:30:50909#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
910const char kDisallowManagedProfileSignoutName[] =
911 "Disallow managed profile signout";
912const char kDisallowManagedProfileSignoutDescription[] =
913 "Disallows signing out from managed profiles.";
914#endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
915
Vladimir Levin501455e2022-11-04 20:04:54916const char kViewTransitionName[] = "viewTransition API";
917const char kViewTransitionDescription[] =
918 "Controls the availability of the viewTransition JavaScript API.";
Vladimir Levin4fd9269d2021-03-12 20:07:21919
Khushal Sagarb5af36e2022-11-09 22:33:29920const char kViewTransitionOnNavigationName[] =
921 "viewTransition API for navigations";
922const char kViewTransitionOnNavigationDescription[] =
923 "Controls the availability of the viewTransition API on document "
924 "navigations.";
925
Mark Schillaci402301cb2022-02-02 18:36:37926const char kEnableAutoDisableAccessibilityName[] = "Auto-disable Accessibility";
927const char kEnableAutoDisableAccessibilityDescription[] =
928 "When accessibility APIs are no longer being requested, automatically "
929 "disables accessibility. This might happen if an assistive technology is "
930 "turned off or if an extension which uses accessibility APIs no longer "
931 "needs them.";
932
Jack Lynchef0bac52022-11-01 21:22:18933const char kEnableAutoDisableAccessibilityV2Name[] =
934 "Auto-disable Accessibility V2";
935const char kEnableAutoDisableAccessibilityV2Description[] =
936 "Automatically disable accessibility when Android reports no assistive "
937 "technologies are running. Might break accessibility for assistive "
938 "technologies without isAccessibilityTool set.";
939
Mohamed Amir Yoseff6763132021-02-18 15:53:14940const char kEnableAutofillAddressSavePromptName[] =
941 "Autofill Address Save Prompts";
942const char kEnableAutofillAddressSavePromptDescription[] =
943 "Enable the Autofill address save prompts.";
944
Lily Chen17c57972020-04-22 19:27:44945const char kEnableExperimentalCookieFeaturesName[] =
946 "Enable experimental cookie features";
947const char kEnableExperimentalCookieFeaturesDescription[] =
948 "Enable new features that affect setting, sending, and managing cookies. "
949 "The enabled features are subject to change at any time.";
950
Peng Huanga0f7d7e52021-09-29 13:27:13951const char kEnableRawDrawName[] = "Enable raw draw";
952const char kEnableRawDrawDescription[] =
953 "When enabled, web content will be rastered on output surface directly.";
954
Peter McNeeley8a0156d22022-02-01 20:37:54955const char kEnableDelegatedCompositingName[] = "Enable delegated compositing";
956const char kEnableDelegatedCompositingDescription[] =
957 "When enabled and applicable, the act of compositing is delegated to Ash.";
958
Jenny Blessing45326bf2019-08-29 23:50:37959const char kEnableRemovingAllThirdPartyCookiesName[] =
960 "Enable removing SameSite=None cookies";
961const char kEnableRemovingAllThirdPartyCookiesDescription[] =
962 "Enables UI on chrome://settings/siteData to remove all third-party "
963 "cookies and site data.";
964
Sonja Laurilac0492c852021-09-17 14:49:32965const char kDesktopPWAsAdditionalWindowingControlsName[] =
966 "Desktop PWA Window Minimize/maximize/restore";
967const char kDesktopPWAsAdditionalWindowingControlsDescription[] =
968 "Enable PWAs to manually recreate the minimize, maximize and restore "
969 "window functionalities with respective APIs.";
970
liqining.keiling151bedd62022-08-17 19:18:26971#if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
972
973const char kDesktopPWAsAppHomePageFlagId[] =
974 "enable-desktop-pwas-app-home-page";
975const char kDesktopPWAsAppHomePageName[] = "desktop PWAs app home page";
976const char kDesktopPWAsAppHomePageDescription[] =
977 "Use new chrome://apps page which has different UX on desktop";
978
979#endif // !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
980
Alan Cuttereaae7f42020-12-07 02:24:11981const char kDesktopPWAsElidedExtensionsMenuName[] =
982 "Desktop PWAs elided extensions menu";
983const char kDesktopPWAsElidedExtensionsMenuDescription[] =
984 "Moves the Extensions \"puzzle piece\" icon from the title bar into the "
985 "app menu for web app windows.";
986
Alan Cutter62704892021-08-31 21:27:17987const char kDesktopPWAsLaunchHandlerName[] = "Desktop PWA launch handler";
988const char kDesktopPWAsLaunchHandlerDescription[] =
989 "Enable web app manifests to declare app launch behavior. Prototype "
990 "implementation of: "
Alan Cutter203d5de2022-10-28 04:53:37991 "https://github.com/WICG/web-app-launch/blob/main/launch_handler.md";
Alan Cutter62704892021-08-31 21:27:17992
Lei Zhang507fffd2020-01-29 23:47:54993const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips";
994const char kDesktopPWAsTabStripDescription[] =
Louise Brett01158472023-04-26 08:06:13995 "Tabbed application mode - enables the `tabbed` display mode which allows "
996 "web apps to add a tab strip to their app.";
Alan Cutter121812d2020-01-09 05:03:37997
Louise Brett51548fb2021-06-18 00:27:21998const char kDesktopPWAsTabStripSettingsName[] =
999 "Desktop PWA tab strips settings";
1000const char kDesktopPWAsTabStripSettingsDescription[] =
1001 "Experimental UI for selecting whether a PWA should open in tabbed mode.";
1002
Louise Brett01158472023-04-26 08:06:131003const char kDesktopPWAsTabStripCustomizationsName[] =
1004 "Desktop PWA tab strip customizations";
1005const char kDesktopPWAsTabStripCustomizationsDescription[] =
1006 "Enable PWAs to customize their tab strip when in tabbed mode by adding "
1007 "the `tab_strip` manifest field.";
1008
Ivan Šandrk8a710392021-05-20 13:53:131009const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps";
1010const char kDesktopPWAsSubAppsDescription[] =
1011 "Enable installed PWAs to create shortcuts by installing their sub apps. "
1012 "Prototype implementation of: "
1013 "https://github.com/ivansandrk/multi-apps/blob/main/explainer.md";
1014
Abhinav Kasamsettyd7bb22c2023-01-31 08:18:321015const char kDesktopPWAsScopeExtensionsName[] = "Desktop PWA Scope Extensions";
1016const char kDesktopPWAsScopeExtensionsDescription[] =
1017 "Enable web app manifests to declare scope extensions to extend app scope "
1018 "to other origins. Prototype implementation of: "
1019 "https://github.com/WICG/manifest-incubations/blob/gh-pages/"
1020 "scope_extensions-explainer.md";
1021
Sonja Laurila67ab70d2022-05-13 13:57:261022const char kDesktopPWAsBorderlessName[] = "Desktop PWA Borderless";
1023const char kDesktopPWAsBorderlessDescription[] =
1024 "Enable web app manifests to declare borderless mode as a display "
1025 "override. Prototype implementation of: go/borderless-mode.";
1026
Alexey Baskakovd913a1272021-07-09 02:12:191027const char kDesktopPWAsWebBundlesName[] = "Desktop PWAs Web Bundles";
1028const char kDesktopPWAsWebBundlesDescription[] =
1029 "Adds support for web bundles, making web apps able to be launched "
1030 "offline.";
1031
Alan Cutterb85c0d22022-01-28 01:46:101032const char kEnablePreinstalledWebAppDuplicationFixerName[] =
1033 "Enable the app deduplication fix for migrated preinstalled web apps";
1034const char kEnablePreinstalledWebAppDuplicationFixerDescription[] =
1035 "The preinstalled web app migration encountered app duplication issues "
1036 "when it rolled out. This code path will attempt to re-migrate instances "
1037 "of app duplication where the old app failed to stay removed. See "
1038 "https://crbug.com/1290716.";
1039
Steven Valdez89a44ea92019-05-01 15:18:491040const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data";
1041const char kEnableTLS13EarlyDataDescription[] =
1042 "This option enables TLS 1.3 Early Data, allowing GET requests to be sent "
1043 "during the handshake when resuming a connection to a compatible TLS 1.3 "
1044 "server.";
1045
Adam Langley664d93d2023-05-02 19:38:221046const char kEnableTLS13KyberName[] = "TLS 1.3 hybridized Kyber support";
1047const char kEnableTLS13KyberDescription[] =
1048 "This option enables a combination of X25519 and Kyber in TLS 1.3.";
1049
Katie Dektar7faf40ba2023-01-11 22:19:301050const char kAccessibilityAcceleratorNotificationsTimeoutName[] =
1051 "Allows accelerator notifications for accessibility features to time out";
1052const char kAccessibilityAcceleratorNotificationsTimeoutDescription[] =
1053 "Enables notifications for accessibility features turned on by keyboard "
1054 "shortcut (docked magnifier, screen magnifier and high contrast) to time "
1055 "out instead of remaining pinned.";
1056
Katie Dektar29e670d82022-08-23 17:54:401057const char kAccessibilityServiceName[] = "Experimental Accessibility Service";
1058const char kAccessibilityServiceDescription[] =
1059 "This option enables the experimental Accessibility Service and runs some "
1060 "accessibility features in the service.";
1061
Katie Dektar4cf2df72022-08-26 22:31:191062const char kExperimentalAccessibilityColorEnhancementSettingsName[] =
1063 "Experimental Accessibility color enhancement settings";
1064const char kExperimentalAccessibilityColorEnhancementSettingsDescription[] =
1065 "This option enables the experimental Accessibility color enhancement "
1066 "settings found in the OS Accessibility settings.";
1067
Katie Dektar7143fb02023-03-20 21:01:511068const char kAccessibilityDeprecateChromeVoxTabsName[] =
1069 "This option enables the ChromeVox tabs menu deprecation";
1070const char kAccessibilityDeprecateChromeVoxTabsDescription[] =
1071 "Enabling this option will remove the ChromeVox tabs menu from the "
1072 "ChromeVox menus.";
1073
Josiah Krutzc796db12022-09-02 23:38:371074const char kAccessibilitySelectToSpeakPageMigrationName[] =
1075 "Select-to-Speak Page Migration";
1076const char kAccessibilitySelectToSpeakPageMigrationDescription[] =
1077 "This option enables Select-to-Speak page migration from extension options "
1078 "page to a Chrome OS settings page.";
1079
Josiah Krutzef021612023-02-10 05:04:541080const char kAccessibilityChromeVoxPageMigrationName[] =
1081 "ChromeVox Page Migration";
1082const char kAccessibilityChromeVoxPageMigrationDescription[] =
Josiah Krutz48a658612023-04-26 17:31:151083 "This option enables ChromeVox page migration from extension options page "
Josiah Krutzef021612023-02-10 05:04:541084 "to a Chrome OS settings page.";
1085
Josiah Krutzf581bb02022-10-13 22:57:011086const char kAccessibilitySelectToSpeakHoverTextImprovementsName[] =
1087 "Select-to-Speak Hover Text Improvements";
1088const char kAccessibilitySelectToSpeakHoverTextImprovementsDescription[] =
1089 "This option enables improvements in the text shown when hovering over the "
1090 "Select-to-Speak feature icon in the system tray.";
1091
Mark Schillacifcf19922023-03-30 20:20:071092const char kAccessibilityUnserializeOptimizationsName[] =
1093 "Experimental optimzations for accessibility";
1094const char kAccessibilityUnserializeOptimizationsDescription[] =
1095 "This option enables the use of experimental optimzations to the "
1096 "AXTree::Unserialize method, which may improve browser-side accessibility "
1097 "performance.";
1098
James Hollyer1b943edb2020-10-28 03:28:061099const char kMacCoreLocationBackendName[] = "Core Location Backend";
1100const char kMacCoreLocationBackendDescription[] =
1101 "Enables usage of the Core Location APIs as the backend for Geolocation "
1102 "API";
James Hollyer070f60a2020-05-05 06:13:151103
Mohamed Adel52ac1ae2020-09-08 16:10:271104const char kNewMacNotificationAPIName[] =
1105 "Determines which notification API to use on macOS devices";
1106const char kNewMacNotificationAPIDescription[] =
1107 "Enables the usage of Apple's new notification API which will run on macOS "
1108 "10.14+";
1109
Pete Lavallee2d4415c72019-10-07 20:43:561110const char kWinrtGeolocationImplementationName[] =
1111 "WinRT Geolocation Implementation";
1112const char kWinrtGeolocationImplementationDescription[] =
1113 "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows "
1114 "for geolocation";
1115
Dominic Farolinoaf2f3b72021-05-03 23:44:161116const char kEnableFencedFramesName[] = "Enable the <fencedframe> element.";
1117const char kEnableFencedFramesDescription[] =
1118 "Fenced frames are an experimental web platform feature that allows "
Nan Lin066a81a2022-04-20 18:46:541119 "embedding an isolated top-level page. This requires "
1120 "#privacy-sandbox-ads-apis to also be enabled. See "
Dominic Farolinoaf2f3b72021-05-03 23:44:161121 "https://github.com/shivanigithub/fenced-frame";
1122
Liam Brady1ead36c2023-05-30 17:37:381123const char kEnableFencedFramesDeveloperModeName[] =
1124 "Enable the `FencedFrameConfig` constructor.";
1125const char kEnableFencedFramesDeveloperModeDescription[] =
1126 "The `FencedFrameConfig` constructor allows you to test the <fencedframe> "
1127 "element without running an ad auction, as you can manually supply a URL "
1128 "to navigate the fenced frame to.";
1129
James Hollyer24f30cb722021-06-18 21:22:241130const char kEnableGamepadButtonAxisEventsName[] =
1131 "Gamepad Button and Axis Events";
1132const char kEnableGamepadButtonAxisEventsDescription[] =
1133 "Enables the ability to subscribe to changes in buttons and/or axes "
1134 "on the gamepad object.";
1135
Bradley Needham835f0f492023-04-04 23:00:541136extern const char kEnableGamepadMultitouchName[] = "Gamepad Multitouch";
1137extern const char kEnableGamepadMultitouchDescription[] =
1138 "Enables the ability to receive input from multitouch surface "
1139 "on the gamepad object.";
1140
Mikhail Pozdnyakov73373a62017-08-24 17:31:251141const char kEnableGenericSensorExtraClassesName[] =
1142 "Generic Sensor Extra Classes";
1143const char kEnableGenericSensorExtraClassesDescription[] =
1144 "Enables an extra set of sensor classes based on Generic Sensor API, which "
1145 "expose previously unavailable platform features, i.e. AmbientLightSensor "
1146 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:471147
Vikas Soni78daa632019-01-12 01:32:521148const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
1149const char kEnableGpuServiceLoggingDescription[] =
1150 "Enable printing the actual GL driver calls.";
1151
Christian Flach3de81af12022-06-10 17:53:111152const char kEnableIsolatedWebAppsName[] = "Enable Isolated Web Apps";
1153const char kEnableIsolatedWebAppsDescription[] =
1154 "Enables experimental support for isolated web apps. "
1155 "See https://github.com/reillyeon/isolated-web-apps for more information.";
1156
Robbie McElrath8bc8f2b2022-11-14 19:59:021157const char kEnableIsolatedWebAppDevModeName[] =
1158 "Enable Isolated Web App Developer Mode";
1159const char kEnableIsolatedWebAppDevModeDescription[] =
1160 "Enables the installation of unverified Isolated Web Apps";
1161
Chase Phillipsf29be252023-02-02 22:19:391162const char kEnableIwaControlledFrameName[] = "Enable IWA Controlled Frame";
1163const char kEnableIwaControlledFrameDescription[] =
1164 "Enables experimental support for IWA Controlled Frame. "
1165 "See "
1166 "https://github.com/chasephillips/controlled-frame/blob/main/EXPLAINER.md "
1167 "for more information.";
1168
Jimmy Gong07656e42021-04-08 02:31:081169const char kEnableShortcutCustomizationAppName[] =
1170 "Enable shortcut customization app";
1171const char kEnableShortcutCustomizationAppDescription[] =
1172 "Enable the shortcut customization SWA, allowing users to customize system "
1173 "shortcuts.";
1174
Cam Bickeld363a1792022-10-06 16:59:091175extern const char kEnableShortcutCustomizationName[] =
1176 "Enable customization in new shortcuts app";
1177extern const char kEnableShortcutCustomizationDescription[] =
1178 "Enable customization of shortcuts in the new shortcuts app.";
1179
xiangdong kong72ae8d12023-06-13 16:47:521180extern const char kEnableSearchCustomizableShortcutsInLauncherName[] =
1181 "Enable search for customizable shortcuts in launcher";
1182extern const char kEnableSearchCustomizableShortcutsInLauncherDescription[] =
1183 "Enable searching for customizable shortcuts in launcher.";
1184
Cam Bickelfd253282023-02-09 20:12:221185extern const char kEnableSearchInShortcutsAppName[] =
1186 "Enable search in new shortcuts app";
1187extern const char kEnableSearchInShortcutsAppDescription[] =
1188 "Enable searching for shortcuts in the new shortcuts app.";
1189
David Padlipskya68a56442022-11-02 22:06:131190const char kEnableInputDeviceSettingsSplitName[] =
1191 "Enable input device settings split";
1192const char kEnableInputDeviceSettingsSplitDescription[] =
1193 "Enable input device settings to be split per-device.";
1194
YuhanYangf34f292f2023-06-01 23:56:231195const char kEnablePeripheralCustomizationName[] =
1196 "Enable peripheral customization";
1197const char kEnablePeripheralCustomizationDescription[] =
1198 "Enable peripheral customization to allow users to customize buttons on "
1199 "their peripherals.";
1200
Michael Checo26110cc92022-05-04 00:55:071201const char kExperimentalRgbKeyboardPatternsName[] =
1202 "Enable experimental RGB Keyboard patterns support";
1203const char kExperimentalRgbKeyboardPatternsDescription[] =
1204 "Enable experimental RGB Keyboard patterns support on supported devices.";
1205
Varun Khanejae493d2b22022-02-18 18:17:311206const char kDownloadBubbleName[] = "Enable download bubble";
1207const char kDownloadBubbleDescription[] =
1208 "Enables the download bubble instead of the download shelf.";
1209
thefroge0ea8bd2022-06-24 15:04:531210const char kDownloadBubbleV2Name[] = "Enable download bubble V2";
1211const char kDownloadBubbleV2Description[] =
1212 "Adds features to the download bubble not available on the download shelf. "
1213 "Only works if the base download bubble flag download-bubble is also "
1214 "enabled.";
1215
Xing Liua8d6b272021-11-11 00:02:161216const char kDownloadRangeName[] = "Enable download range support";
1217const char kDownloadRangeDescription[] =
1218 "Enables arbitrary download range request support.";
1219
Awad Osman33029872022-12-02 19:04:261220const char kEnableEnhancedSafeBrowsingSettingsImprovementsName[] =
1221 "Enable enhanced safe browsing settings improvements";
1222const char kEnableEnhancedSafeBrowsingSettingsImprovementsDescription[] =
1223 "Adds an in-product-help bubble to the ESB settings options when users are "
1224 "directed to the chrome security settings page through ESB promotions and "
1225 "also collapses the ESB option.";
1226
Awad Osmana930e9c2023-06-12 17:33:011227const char kEnableFriendlierSafeBrowsingSettingsName[] =
1228 "Enable friendlier safe browsing settings";
1229const char kEnableFriendlierSafeBrowsingSettingsDescription[] =
1230 "Updates the text, layout, and icons on both the privacy guide and the "
1231 "security settings page.";
1232
Awad Osman0bbaafd2023-04-14 01:35:291233const char kEnableTailoredSecurityUpdatedMessagesName[] =
1234 "Enable tailored security updated messages";
1235const char kEnableTailoredSecurityUpdatedMessagesDescription[] =
1236 "Updates the tailored security dialog strings and icons for their "
1237 "respective platforms.";
1238
Bernhard Bauer5533f9912017-11-06 17:56:021239const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
1240const char kEnableNetworkLoggingToFileDescription[] =
1241 "Enables network logging to a file named netlog.json in the user data "
1242 "directory. The file can be imported into chrome://net-internals.";
1243
Shakti Sahu5a046f62019-03-12 19:25:341244const char kEnableNewDownloadBackendName[] = "Enable new download backend";
1245const char kEnableNewDownloadBackendDescription[] =
1246 "Enables the new download backend that uses offline content provider";
1247
Alexander Timina812932f2022-06-29 23:39:341248const char kEnablePerfettoSystemTracingName[] =
1249 "Enable Perfetto system tracing";
1250const char kEnablePerfettoSystemTracingDescription[] =
1251 "When enabled, Chrome will attempt to connect to the system tracing "
1252 "service";
1253
Doug Arnettc52291a2020-05-07 18:52:301254const char kEnableTranslateSubFramesName[] = "Translate sub frames";
1255const char kEnableTranslateSubFramesDescription[] =
1256 "Enable the translation of sub frames (as well as the main frame)";
1257
Matt Reynolds9e96d08d2022-09-30 01:28:501258const char kEnableWebUsbOnExtensionServiceWorkerName[] =
1259 "Enable WebUSB on extension service workers";
1260const char kEnableWebUsbOnExtensionServiceWorkerDescription[] =
1261 "When enabled, WebUSB API is available on extension service workers.";
1262
Qiaofei Yebeb9a232020-07-22 23:47:041263const char kEnableWindowsGamingInputDataFetcherName[] =
1264 "Enable Windows.Gaming.Input";
1265const char kEnableWindowsGamingInputDataFetcherDescription[] =
1266 "Enable Windows.Gaming.Input by default to provide game controller "
1267 "support on Windows 10 desktop.";
1268
Titouan Rigoudyf619f5462020-09-25 16:35:491269const char kBlockInsecurePrivateNetworkRequestsName[] =
1270 "Block insecure private network requests.";
1271const char kBlockInsecurePrivateNetworkRequestsDescription[] =
Titouan Rigoudy449de9d2022-02-16 19:14:061272 "Prevents non-secure contexts from making subresource requests to "
1273 "more-private IP addresses. See also: "
1274 "https://developer.chrome.com/blog/private-network-access-update/";
1275
1276const char kPrivateNetworkAccessSendPreflightsName[] =
1277 "Send Private Network Access preflights";
1278const char kPrivateNetworkAccessSendPreflightsDescription[] =
1279 "Enables sending Private Network Access preflights ahead of requests to "
1280 "more-private IP addresses. Failed preflights display warnings in DevTools "
1281 "without failing entire request. See also: "
1282 "https://developer.chrome.com/blog/private-network-access-preflight/";
1283
1284const char kPrivateNetworkAccessRespectPreflightResultsName[] =
1285 "Respect the result of Private Network Access preflights";
1286const char kPrivateNetworkAccessRespectPreflightResultsDescription[] =
1287 "Enables sending Private Network Access preflights ahead of requests to "
1288 "more-private IP addresses. These preflight requests must succeed in order "
1289 "for the request to proceed. See also: "
1290 "https://developer.chrome.com/blog/private-network-access-preflight/";
Titouan Rigoudyf619f5462020-09-25 16:35:491291
Yifan Luo6e4029d52022-08-11 17:28:111292const char kPrivateNetworkAccessPreflightShortTimeoutName[] =
1293 "Reduce waiting time for Private Network Access preflights response";
1294const char kPrivateNetworkAccessPreflightShortTimeoutDescription[] =
1295 "Reduce the waiting time for Private Network Access preflights to 200 "
1296 "milliseconds. The default timeout period for requests is 5 minutes."
1297 "See also: "
1298 "https://developer.chrome.com/blog/private-network-access-preflight/";
1299
Zentaro Kavanagh53c48cb22021-03-25 00:19:061300const char kDeprecateAltClickName[] =
1301 "Enable Alt+Click deprecation notifications";
1302const char kDeprecateAltClickDescription[] =
1303 "Start providing notifications about Alt+Click deprecation and enable "
1304 "Search+Click as an alternative.";
1305
Zentaro Kavanaghc1898fe2021-06-25 00:31:451306const char kDeprecateAltBasedSixPackName[] =
1307 "Deprecate Alt based six-pack (PgUp, PgDn, Home, End, Delete, Insert)";
1308const char kDeprecateAltBasedSixPackDescription[] =
1309 "Show deprecation notifications and disable functionality for Alt based "
1310 "six pack deprecations. The Search based versions continue to work.";
1311
Cam Bickelc4f81892023-05-10 23:29:591312const char kDeprecateOldKeyboardShortcutsAcceleratorName[] =
1313 "Enable deprecation notifications for Ctrl+Alt+/ to open Keyboard "
1314 "shortcuts app";
1315const char kDeprecateOldKeyboardShortcutsAcceleratorDescription[] =
1316 "Show deprecation notifications and disable functionality for Ctrl+Alt+/ "
1317 "as the shortcut to open the Keyboard shortcuts app. The new shortcut is "
1318 "Ctrl+Search+S.";
1319
Chris Hall4a4225f62019-01-18 03:07:161320const char kExperimentalAccessibilityLanguageDetectionName[] =
1321 "Experimental accessibility language detection";
1322const char kExperimentalAccessibilityLanguageDetectionDescription[] =
1323 "Enable language detection for in-page content which is then exposed to "
Chris Hall31e92b22019-11-15 05:57:221324 "assistive technologies such as screen readers.";
Chris Hall4a4225f62019-01-18 03:07:161325
Chris Hall4f3ca5582019-11-19 02:55:491326const char kExperimentalAccessibilityLanguageDetectionDynamicName[] =
1327 "Experimental accessibility language detection for dynamic content";
1328const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] =
1329 "Enable language detection for dynamic content which is then exposed to "
1330 "assistive technologies such as screen readers.";
1331
Alexei Filippov522a5222019-03-29 03:33:181332const char kMemlogName[] = "Chrome heap profiler start mode.";
1333const char kMemlogDescription[] =
1334 "Starts heap profiling service that records sampled memory allocation "
1335 "profile having each sample attributed with a callstack. "
1336 "The sampling resolution is controlled with --memlog-sampling-rate flag. "
1337 "Recorded heap dumps can be obtained at chrome://tracing "
1338 "[category:memory-infra] and chrome://memory-internals. This setting "
1339 "controls which processes will be profiled since their start. To profile "
1340 "any given process at a later time use chrome://memory-internals page.";
1341const char kMemlogModeMinimal[] = "Browser and GPU";
1342const char kMemlogModeAll[] = "All processes";
1343const char kMemlogModeAllRenderers[] = "All renderers";
1344const char kMemlogModeRendererSampling[] = "Single renderer";
1345const char kMemlogModeBrowser[] = "Browser only";
1346const char kMemlogModeGpu[] = "GPU only";
Alexei Filippov2e8bfee2019-03-07 21:51:271347
Alexei Filippov522a5222019-03-29 03:33:181348const char kMemlogSamplingRateName[] =
1349 "Heap profiling sampling interval (in bytes).";
1350const char kMemlogSamplingRateDescription[] =
1351 "Heap profiling service uses Poisson process to sample allocations. "
Erik Chend0ec40e2021-09-17 22:43:561352 "Default value for the interval between samples is 1000000 (1MB). "
Alexei Filippov522a5222019-03-29 03:33:181353 "This results in low noise for large and/or frequent allocations "
Erik Chend0ec40e2021-09-17 22:43:561354 "[size * frequency >> 1MB]. This means that aggregate numbers [e.g. "
erikchen99bfce02018-02-14 20:29:221355 "total size of malloc-ed objects] and large and/or frequent allocations "
Alexei Filippov522a5222019-03-29 03:33:181356 "can be trusted with high fidelity. "
1357 "Lower intervals produce higher samples resolution, but come at a cost of "
1358 "higher performance overhead.";
1359const char kMemlogSamplingRate10KB[] = "10KB";
1360const char kMemlogSamplingRate50KB[] = "50KB";
1361const char kMemlogSamplingRate100KB[] = "100KB";
1362const char kMemlogSamplingRate500KB[] = "500KB";
1363const char kMemlogSamplingRate1MB[] = "1MB";
1364const char kMemlogSamplingRate5MB[] = "5MB";
erikchen8bc20d82018-02-14 03:21:511365
Alexei Filippov522a5222019-03-29 03:33:181366const char kMemlogStackModeName[] = "Heap profiling stack traces type.";
1367const char kMemlogStackModeDescription[] =
1368 "By default heap profiling service records native stacks. "
1369 "A post-processing step is required to symbolize the stacks. "
1370 "'Native with thread names' adds the thread name as the first frame of "
1371 "each native stack. It's also possible to record a pseudo stack using "
1372 "trace events as identifiers. It's also possible to do a mix of both.";
Alexei Filippov522a5222019-03-29 03:33:181373const char kMemlogStackModeNative[] = "Native";
1374const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names";
Erik Chen3303fd0232018-01-11 20:29:051375
Anupam Snigdhaecc5739e2022-02-14 18:35:581376const char kEditContextName[] = "EditContext API";
1377const char kEditContextDescription[] =
1378 "Allows web pages to use the experimental EditContext API to better "
1379 "control text input.";
1380
Juan Mojica6ea85d072022-03-17 20:33:191381const char kEnableLensStandaloneFlagId[] = "enable-lens-standalone";
1382const char kEnableLensStandaloneName[] = "Enable Lens features in Chrome.";
1383const char kEnableLensStandaloneDescription[] =
1384 "Enables Lens image and region search to learn about the visual content "
1385 "you see while you browse and shop on the web.";
Ali Stanfield980a7492021-07-21 19:21:261386
Anatoliy Potapchukf096475c2021-04-06 15:51:591387const char kEnableManagedConfigurationWebApiName[] =
1388 "Enable Managed Configuration Web API";
1389const char kEnableManagedConfigurationWebApiDescription[] =
1390 "Allows website to access a managed configuration provided by the device "
1391 "administrator for the origin.";
1392
F#m59d036e2017-09-13 07:22:171393const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
1394const char kEnablePixelCanvasRecordingDescription[] =
1395 "Pixel canvas recording allows the compositor to raster contents aligned "
1396 "with the pixel and improves text rendering. This should be enabled when a "
1397 "device is using fractional scale factor.";
1398
Kenichi Ishibashied0f1d22023-06-09 00:27:311399const char kEnableProcessPerSiteUpToMainFrameThresholdName[] =
1400 "Enable ProcessPerSite up to main frame threshold";
1401const char kEnableProcessPerSiteUpToMainFrameThresholdDescription[] =
1402 "Proactively reuses same-site renderer processes to host multiple main "
1403 "frames, up to a certain threshold.";
1404
Mehdi Kazemi4db00b92022-07-08 14:25:201405extern const char kDropInputEventsBeforeFirstPaintName[] =
1406 "Drop Input Events Before First Paint";
1407extern const char kDropInputEventsBeforeFirstPaintDescription[] =
1408 "Before the user can see the first paint of a new page they cannot "
1409 "intentionally interact with elements on that page. By dropping the events "
1410 "we prevent accidental interaction with a page the user has not seen yet.";
1411
Mehdi Kazemif155bc92021-11-22 18:35:521412const char kEnableCssSelectorFragmentAnchorName[] =
1413 "Enables CSS selector fragment anchors";
1414const char kEnableCssSelectorFragmentAnchorDescription[] =
1415 "Similar to text directives, CSS selector directives can be specified "
1416 "in a url which is to be scrolled into view and highlighted.";
1417
Mei Liang267ee2482021-09-17 02:54:511418const char kRetailCouponsName[] = "Enable to fetch for retail coupons";
1419const char kRetailCouponsDescription[] =
1420 "Allow to fetch retail coupons for consented users";
1421
Marc Treibe9f79ea72023-03-14 10:25:421422const char kEnablePreferencesAccountStorageName[] =
1423 "Enable the account data storage for preferences for syncing users";
1424const char kEnablePreferencesAccountStorageDescription[] =
1425 "Enables storing preferences in a second, Gaia-account-scoped storage for "
1426 "syncing users";
1427
Joao Victor Almeida371702c2021-01-08 18:41:561428const char kEnableResamplingScrollEventsExperimentalPredictionName[] =
1429 "Enable experimental prediction for scroll events";
1430const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] =
1431 "Predicts the scroll amount after the vsync time to more closely match "
1432 "when the frame is visible.";
Ella Gebee81c92018-08-14 15:51:091433
Lei Zhang1a6fd01b2021-03-24 17:03:481434const char kEnableRestrictedWebApisName[] =
Felipe Andrade579b7fd2022-10-14 15:17:281435 "Enable the restricted web APIs for high-trusted apps.";
Lei Zhang1a6fd01b2021-03-24 17:03:481436const char kEnableRestrictedWebApisDescription[] =
Anqing Zhaoc7136af2021-01-20 05:52:391437 "Enable the restricted web APIs for dev trial. This will be replaced with "
1438 "permission policies to control the capabilities afterwards.";
1439
Yicheng Li0a78f462020-08-14 00:08:121440const char kEnableWebAuthenticationChromeOSAuthenticatorName[] =
1441 "ChromeOS platform Web Authentication support";
1442const char kEnableWebAuthenticationChromeOSAuthenticatorDescription[] =
1443 "Enable the ChromeOS platform authenticator for the Web Authentication "
1444 "API.";
1445
Piotr Bialecki0fe14632022-03-09 00:49:241446const char kEnableZeroCopyTabCaptureName[] = "Zero-copy tab capture";
1447const char kEnableZeroCopyTabCaptureDescription[] =
1448 "Enable zero-copy content tab for getDisplayMedia() APIs.";
1449
Andreas Haasb400d912019-08-28 18:54:101450const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly";
1451const char kExperimentalWebAssemblyFeaturesDescription[] =
1452 "Enable web pages to use experimental WebAssembly features.";
1453
Francis McCabecfc1e47d2023-01-09 22:55:491454const char kExperimentalWebAssemblyJSPIName[] =
1455 "Experimental WebAssembly JavaScript Promise Integration (JSPI)";
1456const char kExperimentalWebAssemblyJSPIDescription[] =
1457 "Enable web pages to use experimental WebAssembly JavaScript Promise "
1458 "Integration (JSPI) "
1459 "API.";
Francis McCabef3548832022-05-26 15:11:271460
Elena Scobici74eb9cf2023-05-30 19:55:321461const char kEnablePolicyTestPageName[] =
Elena Scobicidb1e74e2023-06-08 22:52:241462 "Enable access to the policy test page";
Elena Scobici74eb9cf2023-05-30 19:55:321463const char kEnablePolicyTestPageDescription[] =
1464 "When enabled, allows the policy test page to be accessed at "
1465 "chrome://policy/test.";
1466
Clemens Hammacher0c8a15a2018-04-27 13:45:321467const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
1468const char kEnableWasmBaselineDescription[] =
1469 "Enables WebAssembly baseline compilation and tier up.";
1470
Clemens Backes50e0ecd2020-01-20 10:43:241471const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation";
1472const char kEnableWasmLazyCompilationDescription[] =
1473 "Enables lazy (JIT on first call) compilation of WebAssembly modules.";
1474
Adam Kleinadbd0ef2022-12-15 00:07:151475const char kEnableWasmGarbageCollectionName[] =
1476 "WebAssembly Garbage Collection";
1477const char kEnableWasmGarbageCollectionDescription[] =
1478 "Enables the experimental Garbage Collection (GC) extensions to "
1479 "WebAssembly.";
1480
Deepti Gandluri377ba8cc2022-11-11 18:09:381481const char kEnableWasmRelaxedSimdName[] = "WebAssembly Relaxed SIMD";
1482const char kEnableWasmRelaxedSimdDescription[] =
1483 "Enables the use of WebAssembly vector operations with relaxed semantics";
1484
Matthias Liedtke731a77c2023-03-14 16:11:331485const char kEnableWasmStringrefName[] = "WebAssembly Stringref";
1486const char kEnableWasmStringrefDescription[] =
1487 "Enables the experimental stringref (reference-typed strings) extensions "
1488 "to WebAssembly.";
1489
Clemens Backes963eb37be2020-01-10 11:56:491490const char kEnableWasmTieringName[] = "WebAssembly tiering";
1491const char kEnableWasmTieringDescription[] =
1492 "Enables tiered compilation of WebAssembly (will tier up to TurboFan if "
Clemens Backes50e0ecd2020-01-20 10:43:241493 "#enable-webassembly-baseline is enabled).";
Clemens Backes963eb37be2020-01-10 11:56:491494
Christopher Thompsonf3ba20122019-06-06 22:01:011495const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info.";
1496const char kEvDetailsInPageInfoDescription[] =
1497 "Shows the EV certificate details in the Page Info bubble.";
1498
Brett Wilsonf27ff602017-07-07 22:28:471499const char kExperimentalWebPlatformFeaturesName[] =
1500 "Experimental Web Platform features";
1501const char kExperimentalWebPlatformFeaturesDescription[] =
1502 "Enables experimental Web Platform features that are in development.";
1503
1504const char kExtensionContentVerificationName[] =
1505 "Extension Content Verification";
1506const char kExtensionContentVerificationDescription[] =
1507 "This flag can be used to turn on verification that the contents of the "
1508 "files on disk for extensions from the webstore match what they're "
1509 "expected to be. This can be used to turn on this feature if it would not "
1510 "otherwise have been turned on, but cannot be used to turn it off (because "
1511 "this setting can be tampered with by malware).";
1512const char kExtensionContentVerificationBootstrap[] =
1513 "Bootstrap (get expected hashes, but do not enforce them)";
1514const char kExtensionContentVerificationEnforce[] =
1515 "Enforce (try to get hashes, and enforce them if successful)";
1516const char kExtensionContentVerificationEnforceStrict[] =
1517 "Enforce strict (hard fail if we can't get hashes)";
1518
Devlin Cronin15608c32022-06-01 01:39:521519#if BUILDFLAG(ENABLE_EXTENSIONS)
Emilia Pazd7cce422021-08-14 00:50:481520const char kExtensionsMenuAccessControlName[] =
1521 "Extensions Menu Access Control";
1522const char kExtensionsMenuAccessControlDescription[] =
1523 "Enables a redesigned extensions menu that allows the user to control "
1524 "extensions site access.";
Kevin McNee96b3a1b2023-02-02 20:24:501525const char kWebViewTagMPArchBehaviorName[] =
Kevin McNee9c146d392023-06-06 14:58:371526 "MPArch behavior change for <webview> tags";
Kevin McNee96b3a1b2023-02-02 20:24:501527const char kWebViewTagMPArchBehaviorDescription[] =
Kevin McNee9c146d392023-06-06 14:58:371528 "Enables a behavior change associated with the migration of "
Kevin McNee96b3a1b2023-02-02 20:24:501529 "<webview> tags to MPArch. See https://crbug.com/1261928. Specifically, "
Kevin McNee96b3a1b2023-02-02 20:24:501530 "cross-WebContents newwindow event usage invalidates some window.open "
1531 "usage within <webview>s. For enterprise, the "
1532 "ChromeAppsWebViewPermissiveBehaviorAllowed policy serves as an escape "
1533 "hatch during the roll out of this change.";
Solomon Kinard6b014f0b2023-02-24 02:20:341534
Ryan Sultanembff00a92023-03-06 11:45:101535const char kWebAuthFlowInBrowserTabName[] =
1536 "Web Authentication Flow in Browser Tab";
1537const char kWebAuthFlowInBrowserTabDescription[] =
1538 "Web authentication flows to be displayed in a Browser Tab instead of an "
1539 "App Window. The flows are used via the Chrome Extension API, using "
1540 "`chrome.identity` functions. Browser Tab can be displayed either in a New "
1541 "Tab or a Popup Window via the feature paramters.";
1542
Anunoy Ghosh24ebac02023-06-14 19:32:191543const char kCWSInfoFastCheckName[] = "CWS Info Fast Check";
1544const char kCWSInfoFastCheckDescription[] =
1545 "When enabled, Chrome checks and fetches metadata for installed extensions "
1546 "more frequently.";
1547
1548const char kSafetyCheckExtensionsName[] = "Extensions Module in Safety Check";
1549const char kSafetyCheckExtensionsDescription[] =
1550 "When enabled, adds the Extensions Module to Safety Check on "
1551 "desktop. The module will be shown if there are potentially unsafe "
1552 "extensions to review.";
1553
Solomon Kinard6b014f0b2023-02-24 02:20:341554#if BUILDFLAG(IS_CHROMEOS_ASH)
1555extern const char kExtensionWebFileHandlersName[] =
1556 "Extensions Web File Handlers";
1557extern const char kExtensionWebFileHandlersDescription[] =
1558 "Enable Extension Web File Handlers, which allows extensions to operate on "
1559 "the native file system. An extension can register to read and edit files, "
1560 "specified in the manifest, by their file extension or mime type.";
1561#endif // IS_CHROMEOS_ASH
1562#endif // ENABLE_EXTENSIONS
Emilia Pazd7cce422021-08-14 00:50:481563
Brett Wilsonf27ff602017-07-07 22:28:471564const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1565const char kExtensionsOnChromeUrlsDescription[] =
1566 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1567 "request this permission.";
galinapae72e152017-05-12 13:12:281568
David Bokan432978d2019-08-15 18:18:521569const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets";
1570const char kFractionalScrollOffsetsDescription[] =
1571 "Enables fractional scroll offsets inside Blink, exposing non-integer "
1572 "offsets to web APIs.";
1573
Peter Kotwicz980079f2021-12-02 07:18:341574const char kFedCmName[] = "FedCM";
1575const char kFedCmDescription[] =
1576 "Enables JavaScript API to intermediate federated identity requests.";
1577
Sam Goto0b64ffc2023-04-01 00:02:301578const char kFedCmAuthzName[] = "FedCmAuthz";
1579const char kFedCmAuthzDescription[] =
1580 "Enables RPs to request authorization for custom IdP scopes.";
1581
Zachary Tan3a4144f2023-02-06 21:28:451582const char kFedCmAutoReauthnName[] = "FedCmAutoReauthn";
1583const char kFedCmAutoReauthnDescription[] =
1584 "Enables auto re-authentication in the FedCM API. Requires FedCM to be "
1585 "enabled.";
Zachary Tan517e7ebc2023-01-18 20:15:351586
Sam Gotoa0b477b2023-02-07 06:37:291587const char kFedCmIdPRegistrationName[] = "FedCM with IdP Registration support";
1588const char kFedCmIdPRegistrationDescription[] =
1589 "Enables RPs to get identity credentials from registered IdPs.";
1590
Nicolás Peña Moreno473267382022-12-15 18:42:401591const char kFedCmIframeSupportName[] = "FedCM with iframe support";
1592const char kFedCmIframeSupportDescription[] =
1593 "Enables the 'identity-credentials-get' Permissions-Policy for the FedCM "
1594 "API.";
1595
Nicolás Peña Moreno8e558562022-12-20 18:57:441596const char kFedCmLoginHintName[] = "FedCmLoginHint";
1597const char kFedCmLoginHintDescription[] =
1598 "Allows the FedCM API to be used with a login hint which specifies a "
1599 "specific IDP account that needs to be displayed in the FedCM UI.";
Zachary Tan33092722022-11-15 18:59:381600
Yi Guc1648582022-10-13 19:45:241601const char kFedCmMetricsEndpointName[] = "FedCmMetricsEndpoint";
1602const char kFedCmMetricsEndpointDescription[] =
1603 "Allows the FedCM API to send performance measurement to the metrics "
1604 "endpoint on the identity provider side. Requires FedCM to be enabled.";
1605
Nicolás Peña Moreno8e558562022-12-20 18:57:441606const char kFedCmMultiIdpName[] = "FedCmMultiIdp";
1607const char kFedCmMultiIdpDescription[] =
1608 "Allows the FedCM API to request multiple identity providers "
1609 "simultaneously. Requires FedCM to be enabled as well.";
1610
Sam Goto2cff8a52022-12-21 00:50:341611const char kFedCmSelectiveDisclosureName[] = "FedCmSelectiveDisclosure";
1612const char kFedCmSelectiveDisclosureDescription[] =
1613 "Allows a relying party to selectively request a set of identity "
1614 "attributes to be disclosed.";
1615
Yi Gu344f8a52022-12-12 21:11:231616const char kFedCmUserInfoName[] = "FedCmUserInfo";
1617const char kFedCmUserInfoDescription[] =
1618 "Allows an identity provider to request user info instead of token from "
1619 "its own iframe. Requires FedCM to be enabled.";
1620
Nicolás Peña Moreno8e558562022-12-20 18:57:441621const char kFedCmWithoutThirdPartyCookiesName[] =
1622 "FedCmWithoutThirdPartyCookies";
1623const char kFedCmWithoutThirdPartyCookiesDescription[] =
1624 "Allows the FedCM API to be enabled when third party cookies are disabled.";
Nicolás Peña Moreno4f77c4b2022-09-06 22:16:541625
Zachary Taneb4b4962023-01-12 03:08:421626const char kFedCmRpContextName[] = "FedCmRpContext";
1627const char kFedCmRpContextDescription[] =
1628 "Allows relying parties to describe which context (e.g. sign-up vs "
1629 "sign-in) the FedCM is executing on.";
1630
Sam Goto4edd6392023-02-28 16:15:281631const char kWebIdentityMDocsName[] = "MDocs";
1632const char kWebIdentityMDocsDescription[] =
1633 "Allows relying parties to request the presentation of ISO mdocs.";
1634
Darwin Huang1473bc32021-06-18 01:56:231635const char kFileHandlingIconsName[] = "File Handling Icons";
1636const char kFileHandlingIconsDescription[] =
1637 "Allows websites using the file handling API to also register file type "
1638 "icons. See https://github.com/WICG/file-handling/blob/main/explainer.md "
1639 "for more information.";
1640
Viktor Semeniukd5cfc262021-02-25 12:51:221641const char kFillingAcrossAffiliatedWebsitesName[] =
1642 "Fill passwords across affiliated websites.";
1643const char kFillingAcrossAffiliatedWebsitesDescription[] =
1644 "Enables filling password on a website when there is saved "
1645 "password on affiliated website.";
1646
Din Nezametdinov9e537c22023-04-25 11:42:441647const char kFillingAcrossGroupedSitesName[] =
1648 "Password filling across grouped websites";
1649const char kFillingAcrossGroupedSitesDescription[] =
1650 "This flag enables password filling across grouped websites. Information "
1651 "about website groups is provided by the affiliation service.";
1652
Mason Freede8de8802023-05-22 23:54:131653const char kMutationEventsName[] =
1654 "Enable (deprecated) synchronous mutation events";
1655const char kMutationEventsDescription[] =
1656 "Mutation Events are a deprecated set of events which cause performance "
1657 "issues. Disabling this feature turns off Mutation Events. NOTE: Disabling "
1658 "these events can cause breakage on some sites that are still reliant on "
1659 "these deprecated features.";
1660
Mason Freed7e294a82023-06-05 23:46:141661const char kHTMLPopoverAttributeName[] = "Enable the popover API";
1662const char kHTMLPopoverAttributeDescription[] =
1663 "The popover API is a set of features built into the Web to enable the "
1664 "construction of popovers. It is accessed primarily via the `popover` "
1665 "attribute.";
1666
Brett Wilsonecb80982017-07-12 20:34:511667const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1668const char kFillOnAccountSelectDescription[] =
1669 "Filling of passwords when an account is explicitly selected by the user "
1670 "rather than autofilling credentials on page load.";
1671
Brett Wilsonecb80982017-07-12 20:34:511672const char kForceTextDirectionName[] = "Force text direction";
1673const char kForceTextDirectionDescription[] =
1674 "Explicitly force the per-character directionality of UI text to "
1675 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1676 "direction of the character language.";
1677const char kForceDirectionLtr[] = "Left-to-right";
1678const char kForceDirectionRtl[] = "Right-to-left";
1679
1680const char kForceUiDirectionName[] = "Force UI direction";
1681const char kForceUiDirectionDescription[] =
1682 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1683 "mode, overriding the default direction of the UI language.";
1684
Mike Wasserman90ee63f2023-04-10 22:35:481685const char kFullscreenPopupWindowsName[] = "Fullscreen popup windows";
1686const char kFullscreenPopupWindowsDescription[] =
1687 "Enables sites with Window Management permission to open fullscreen popup "
1688 "windows with a `fullscreen` window.open() features parameter. See "
1689 "https://chromestatus.com/feature/6002307972464640 for more information.";
1690
Yuki Awanoeeaad0f2022-11-22 22:44:591691const char kGalleryAppPdfEditNotificationName[] =
1692 "Gallery App Pdf Edit Notification";
1693const char kGalleryAppPdfEditNotificationDescription[] =
1694 "Shows a notification to provide an option to open Gallery app for a "
1695 "downloaded pdf file";
1696
Muyao Xu217663c2023-01-17 18:55:581697const char kMediaRemotingWithoutFullscreenName[] =
1698 "Media Remoting without videos in fullscreen mode";
1699const char kMediaRemotingWithoutFullscreenDescription[] =
1700 "Starts Media Remoting from Global Media Controls without making the "
1701 "videos fullscreen.";
1702
Jazz Xu7b2047a2023-01-19 10:44:091703#if BUILDFLAG(IS_CHROMEOS)
1704const char kGlobalMediaControlsCrOSUpdatedUIName[] =
1705 "Global Media Controls CrOS updated UI";
1706const char kGlobalMediaControlsCrOSUpdatedUIDescription[] =
1707 "Show updated UI for Global Media Controls in CrOS.";
1708#endif
1709
Yuki Awano6ac1a1dc2023-01-21 00:50:241710const char kGoogleOneOfferFilesBannerName[] = "Google One offer Files banner";
1711const char kGoogleOneOfferFilesBannerDescription[] =
1712 "Shows a Files banner about Google One offer.";
1713
Jordan Baylesb3160b262021-08-18 00:33:011714const char kOpenscreenCastStreamingSessionName[] =
1715 "Enable Open Screen Library (libcast) as the Mirroring Service's Cast "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501716 "Streaming implementation";
Jordan Baylesb3160b262021-08-18 00:33:011717const char kOpenscreenCastStreamingSessionDescription[] =
1718 "Enables Open Screen Library's (libcast) Cast Streaming implementation to "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501719 "be used for negotiating and executing mirroring and remoting sessions.";
1720
Kennan Gumbsdf768ce92021-08-25 19:09:511721const char kCastStreamingAv1Name[] =
Jordan Baylesef6d0252022-11-18 02:25:171722 "Enable AV1 video encoding for Cast Streaming";
Kennan Gumbsdf768ce92021-08-25 19:09:511723const char kCastStreamingAv1Description[] =
Jordan Baylesef6d0252022-11-18 02:25:171724 "Offers the AV1 video codec when negotiating Cast Streaming, and uses AV1 "
1725 "if selected for the session.";
1726
1727const char kCastStreamingHardwareH264Name[] =
1728 "Toggle hardware accelerated H.264 video encoding for Cast Streaming";
1729const char kCastStreamingHardwareH264Description[] =
1730 "The default is to allow hardware H.264 encoding when recommended for the "
1731 "platform. If enabled, hardware H.264 encoding will always be allowed when "
1732 "supported by the platform. If disabled, hardware H.264 encoding will "
1733 "never be used.";
1734
1735const char kCastStreamingHardwareVp8Name[] =
1736 "Toggle hardware accelerated VP8 video encoding for Cast Streaming";
1737const char kCastStreamingHardwareVp8Description[] =
1738 "The default is to allow hardware VP8 encoding when recommended for the "
1739 "platform. If enabled, hardware VP8 encoding will always be allowed when "
1740 "supported by the platform (regardless of recommendation). If disabled, "
1741 "hardware VP8 encoding will never be used.";
Kennan Gumbsdf768ce92021-08-25 19:09:511742
mark a. foltzfdcf2ee2023-06-09 18:15:361743const char kCastStreamingPerformanceOverlayName[] =
1744 "Toggle a performance metrics overlay while Cast Streaming";
1745const char kCastStreamingPerformanceOverlayDescription[] =
1746 "When enabled, a text overlay is rendered on top of each frame sent while "
1747 "Cast Streaming that includes frame duration, resolution, timestamp, "
1748 "low latency mode, capture duration, target playout delay, target bitrate, "
1749 "and encoder utilitization.";
1750
Abraham Corea Diaze4c3abe2021-08-24 17:43:501751const char kCastStreamingVp9Name[] =
Jordan Baylesef6d0252022-11-18 02:25:171752 "Enable VP9 video encoding for Cast Streaming";
Abraham Corea Diaze4c3abe2021-08-24 17:43:501753const char kCastStreamingVp9Description[] =
Jordan Baylesef6d0252022-11-18 02:25:171754 "Offers the VP9 video codec when negotiating Cast Streaming, and uses VP9 "
1755 "if selected for the session.";
Jordan Baylesb3160b262021-08-18 00:33:011756
Jordan Bayles5cbeb3502023-02-09 03:30:451757const char kCastEnableStreamingWithHiDPIName[] =
1758 "HiDPI tab capture support for Cast Streaming";
1759const char kCastEnableStreamingWithHiDPIDescription[] =
1760 "Enables HiDPI tab capture during Cast Streaming mirroring sessions. May "
1761 "reduce performance on some platforms and also improve quality of video "
1762 "frames.";
1763
Brett Wilsonecb80982017-07-12 20:34:511764const char kGpuRasterizationName[] = "GPU rasterization";
danakj51faabd2020-03-31 17:25:051765const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content.";
Brett Wilsonecb80982017-07-12 20:34:511766
Salvador Guerrerocd7b24bb2022-07-20 00:32:481767const char kContextualPageActionsName[] = "Contextual page actions";
1768const char kContextualPageActionsDescription[] =
1769 "Enables contextual page action feature.";
1770
Salvador Guerrero3ac349f2022-10-12 02:44:531771const char kContextualPageActionsPriceTrackingName[] =
1772 "Contextual page actions - price tracking";
1773const char kContextualPageActionsPriceTrackingDescription[] =
Shakti Sahu28a76012022-05-30 15:29:141774 "Enables price tracking as a contextual page action.";
1775
Salvador Guerrero3ac349f2022-10-12 02:44:531776const char kContextualPageActionsReaderModeName[] =
1777 "Contextual page actions - reader mode";
1778const char kContextualPageActionsReaderModeDescription[] =
1779 "Enables reader mode as a contextual page action.";
1780
Hailey Wang0ed879a2023-01-10 21:17:361781const char kContextualPageActionsShareModelName[] =
1782 "Contextual page actions - share model";
1783const char kContextualPageActionsShareModelDescription[] =
1784 "Enables share model data collection.";
1785
Dibyajyoti Palbe5f0012022-11-29 00:39:341786const char kEnableOsIntegrationSubManagersName[] =
1787 "OS Integration sub managers";
1788const char kEnableOsIntegrationSubManagersDescription[] =
1789 "Enable OS integration sub managers to either just write new OS "
1790 "integration states to DB or execute on the OS integration states before "
1791 "writing to the DB";
1792
Curtis McMullanf2e45bf2020-08-26 09:51:391793const char kHandwritingGestureEditingName[] = "Handwriting Gestures Editing";
1794const char kHandwritingGestureEditingDescription[] =
1795 "Enables editing with handwriting gestures within the virtual keyboard.";
1796
Curtis McMullan88e039e2021-07-27 08:06:311797const char kHandwritingLegacyRecognitionName[] =
1798 "Handwriting Legacy Recognition";
1799const char kHandwritingLegacyRecognitionDescription[] =
1800 "Enables new on-device recognition for handwriting legacy paths.";
1801
Darren Shenb42629a2022-08-17 02:52:311802const char kHandwritingLibraryDlcName[] =
1803 "Handwriting recognition with library from DLC";
1804const char kHandwritingLibraryDlcDescription[] =
1805 "Enables new on-device recognition with the handwriting library installed "
1806 "from DLC";
1807
Tommy Steimel1aadd7b2019-01-18 19:39:421808const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
1809const char kHardwareMediaKeyHandlingDescription[] =
1810 "Enables using media keys to control the active media session. This "
1811 "requires MediaSessionService to be enabled too";
1812
John Delaney521fe9f2020-04-29 22:18:191813const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations";
1814const char kHeavyAdPrivacyMitigationsDescription[] =
1815 "Enables privacy mitigations for the heavy ad intervention. Disabling "
1816 "this makes the intervention deterministic. Defaults to enabled.";
John Delaney782c77762019-10-28 15:53:561817
1818const char kHeavyAdInterventionName[] = "Heavy Ad Intervention";
1819const char kHeavyAdInterventionDescription[] =
1820 "Unloads ads that use too many device resources.";
1821
rudranshd650903892022-06-16 18:42:301822const char kHiddenNetworkMigrationName[] = "Hidden Network Migration";
1823
1824const char kHiddenNetworkMigrationDescription[] =
1825 "Enables a privacy improvement that removes wrongly configured hidden"
1826 "networks and mitigates the creation of these networks.";
1827
Jason Zhangb9ee1ed2022-07-25 18:27:341828extern const char kHotspotName[] = "Hotspot";
1829extern const char kHotspotDescription[] =
1830 "Enables the Chromebook to share its cellular internet connection to other "
Kyle Horimoto67d73222023-03-07 18:59:291831 "devices through WiFi. While this feature is under development, enabling "
1832 "this flag may cause your device's non-tethering traffic to use a "
1833 "tethering APN, which can result in carrier limits or fees.";
Jason Zhangb9ee1ed2022-07-25 18:27:341834
evliue454a132022-01-25 23:03:431835const char kTabAudioMutingName[] = "Tab audio muting UI control";
1836const char kTabAudioMutingDescription[] =
1837 "When enabled, the audio indicators in the tab strip double as tab audio "
1838 "mute controls.";
1839
whalechangd4b2ca942023-02-11 16:35:191840const char kCrasSplitAlsaUsbInternalName[] =
1841 "CRAS Split USB/Internal refactor control";
1842const char kCrasSplitAlsaUsbInternalDescription[] =
1843 "When enable, CRAS will create different iodev with USB and internal "
1844 "device.";
1845
Calder Kitagawa621534c2022-09-20 19:12:511846const char kTabSelectionEditorV2Name[] = "Tab selection editor V2";
1847const char kTabSelectionEditorV2Description[] =
1848 "Enable improved bulk tab editing capabilities.";
1849
Xi Han3dec5782022-10-26 20:23:191850const char kStartSurfaceReturnTimeName[] = "Start surface return time";
1851const char kStartSurfaceReturnTimeDescription[] =
1852 "Enable showing start surface at startup after specified time has elapsed";
1853
Ayu Ishii1e06316f2022-12-14 14:54:501854const char kStorageBucketsName[] = "Storage Buckets API";
1855const char kStorageBucketsDescription[] =
1856 "Enable experimental Storage Buckets API, allowing websites to create "
1857 "multiple buckets of storage to organize their data, allowing user agents "
1858 "to delete each bucket independently of other buckets.";
1859
Emily Stark70158ce2021-07-16 18:26:311860const char kHttpsOnlyModeName[] = "HTTPS-First Mode Setting";
Chris Thompson8bc143b2021-06-28 19:20:321861const char kHttpsOnlyModeDescription[] =
Emily Stark70158ce2021-07-16 18:26:311862 "Adds a setting under chrome://settings/security to opt-in to HTTPS-First "
Chris Thompson8bc143b2021-06-28 19:20:321863 "Mode.";
1864
Chris Thompson69d09012022-12-21 01:26:051865const char kHttpsFirstModeV2Name[] = "HTTPS-First Mode V2";
1866const char kHttpsFirstModeV2Description[] =
1867 "Enable rearchitected version of HTTPS-First Mode.";
1868
Mustafa Emre Acer002821e2023-05-09 23:47:021869const char kHttpsFirstModeV2ForEngagedSitesName[] =
1870 "HTTPS-First Mode V2 For Engaged Sites";
1871const char kHttpsFirstModeV2ForEngagedSitesDescription[] =
1872 "Enable Site-Engagement based HTTPS-First Mode. Shows HTTPS-First Mode "
1873 "interstitial on sites whose HTTPS URLs have high Site Engagement scores. "
1874 "Requires #https-upgrades feature to be enabled";
1875
Chris Thompsonde18f3d62022-12-08 01:23:271876const char kHttpsUpgradesName[] = "HTTPS Upgrades";
1877const char kHttpsUpgradesDescription[] =
1878 "Enable automatically upgrading all top-level navigations to HTTPS with "
1879 "fast fallback to HTTP.";
1880
Corentin Walleze660b152020-07-15 16:07:541881const char kIgnoreGpuBlocklistName[] = "Override software rendering list";
1882const char kIgnoreGpuBlocklistDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511883 "Overrides the built-in software rendering list and enables "
1884 "GPU-acceleration on unsupported system configurations.";
1885
Victor Hugo Vianna Silva020f8dc2022-06-27 19:36:431886const char kIgnoreSyncEncryptionKeysLongMissingName[] =
1887 "Ignore Chrome Sync encryption keys long missing";
1888const char kIgnoreSyncEncryptionKeysLongMissingDescription[] =
1889 "Drops pending encrypted updates if their key has been missing for a "
1890 "(configurable) number of consecutive GetUpdates. Restarting the browser "
1891 "resets the counter. The threshold is configurable via the "
1892 "MinGuResponsesToIgnoreKey feature parameter.";
1893
Zaina Al-Mashni9ff754072023-06-13 11:39:141894const char kImprovedIncognitoScreenshotName[] =
1895 "Improved Incognito Screenshots";
1896const char kImprovedIncognitoScreenshotDescription[] =
1897 "Enable Incognito screenshots on Android except while the user is on "
1898 "recents screen. Only affects devices on API version >= 33. The "
1899 "IncognitoScreenshot flag will be ignored when this flag is enabled.";
1900
Jimmy Gong6de11b02021-02-04 21:35:011901const char kImprovedKeyboardShortcutsName[] =
1902 "Enable improved keyboard shortcuts";
1903const char kImprovedKeyboardShortcutsDescription[] =
1904 "Ensure keyboard shortcuts work consistently with international keyboard "
1905 "layouts and deprecate legacy shortcuts.";
1906
Alex Ilasiab901f92021-09-13 09:27:271907const char kIncognitoDownloadsWarningName[] =
1908 "Enable Incognito downloads warning";
1909const char kIncognitoDownloadsWarningDescription[] =
1910 "When enabled, users will be warned that downloaded files are saved on the "
1911 "device and might be seen by other users even if they are in Incognito.";
1912
Rohit Agarwal6e9b6022021-08-10 19:44:371913const char kIncognitoReauthenticationForAndroidName[] =
1914 "Enable device reauthentication for Incognito.";
1915const char kIncognitoReauthenticationForAndroidDescription[] =
1916 "When enabled, a setting appears in Settings > Privacy and Security, to "
1917 "enable reauthentication for accessing your existing Incognito tabs.";
1918
Saba Khukhunashvilif7a4f822021-07-23 10:59:211919const char kIncognitoNtpRevampName[] = "Revamped Incognito New Tab Page";
1920const char kIncognitoNtpRevampDescription[] =
1921 "When enabled, Incognito new tab page will have an updated UI";
1922
Ramin Halavatidf9668c2020-10-30 15:35:531923const char kIncognitoScreenshotName[] = "Incognito Screenshot";
1924const char kIncognitoScreenshotDescription[] =
1925 "Enables Incognito screenshots on Android. It will also make Incognito "
Zaina Al-Mashni9ff754072023-06-13 11:39:141926 "thumbnails visible. This flag will be ignored when the "
1927 "ImprovedIncognitoScreenshot flag is enabled.";
Ramin Halavatidf9668c2020-10-30 15:35:531928
Lijin Shenf3215dcd2022-08-30 00:34:141929const char kInfobarScrollOptimizationName[] = "Infobar scroll optimiaztion";
1930const char kInfobarScrollOptimizationDescription[] =
1931 "Optimize Infobar scroll on Android.";
1932
Brett Wilsonecb80982017-07-12 20:34:511933const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1934const char kInProductHelpDemoModeChoiceDescription[] =
1935 "Selects the In-Product Help demo mode.";
1936
Hailey Wanga7607f02021-08-12 19:37:511937const char kInProductHelpSnoozeName[] = "In-Product Help Snooze";
1938const char kInProductHelpSnoozeDescription[] =
1939 "Enables the snooze button on In-Product Help.";
1940
Hailey Wang5f048eb82021-10-27 01:29:131941const char kInProductHelpUseClientConfigName[] = "IPH Use Client Config";
1942const char kInProductHelpUseClientConfigDescription[] =
1943 "Enable In-Product Help to use client side configuration.";
1944
Joe DeBlasiob82518ad2023-05-18 17:42:191945const char kInsecureDownloadWarningsName[] = "Warn on insecure downloads";
1946const char kInsecureDownloadWarningsDescription[] =
1947 "Enables insecure download warnings. Requires users to bypass a warning "
1948 "when they attempt to download a file over insecure transports (e.g. HTTP) "
1949 "either directly or via an insecure redirect.";
1950
Robbie McElrathb66ff502022-10-12 01:50:591951const char kInstallIsolatedWebAppFromUrl[] =
1952 "Install Isolated Web App from Proxy URL";
1953const char kInstallIsolatedWebAppFromUrlDescription[] =
1954 "Installs a new developer mode Isolated Web App whose contents are hosted "
1955 "at the provided HTTP(S) URL.";
Dmitrii Kuragin053a3c602022-06-07 16:34:421956
Brett Wilsonecb80982017-07-12 20:34:511957const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1958const char kJavascriptHarmonyDescription[] =
1959 "Enable web pages to use experimental JavaScript features.";
1960
1961const char kJavascriptHarmonyShippingName[] =
1962 "Latest stable JavaScript features";
1963const char kJavascriptHarmonyShippingDescription[] =
1964 "Some web pages use legacy or non-standard JavaScript extensions that may "
1965 "conflict with the latest JavaScript features. This flag allows disabling "
1966 "support of those features for compatibility with such pages.";
1967
Shu-yu Guob5461a52022-09-02 01:22:241968const char kJavascriptExperimentalSharedMemoryName[] =
1969 "Experimental JavaScript shared memory features";
1970const char kJavascriptExperimentalSharedMemoryDescription[] =
1971 "Enable web pages to use non-standard, experimental JavaScript shared "
1972 "memory features. Their use requires the same HTTP headers required by "
1973 "cross-thread usage of SharedArrayBuffers (i.e. COOP and COEP).";
1974
Tommy Lia142e2c2021-09-29 20:35:161975const char kJourneysName[] = "History Journeys";
1976const char kJourneysDescription[] = "Enables the History Journeys UI.";
1977
Sophie Chang19b579d2022-09-27 22:30:351978const char kJourneysContentClusteringName[] =
1979 "History Journeys Content Clustering";
1980const char kJourneysContentClusteringDescription[] =
1981 "Enables clustering page loads using content annotations.";
1982
Tommy C. Lie99770072022-10-26 23:24:161983const char kJourneysImagesName[] = "History Journeys Images";
1984const char kJourneysImagesDescription[] =
1985 "Enables Images for the History Journeys UI.";
1986
Tommy C. Li1d8296b52022-04-27 22:12:171987const char kJourneysLabelsName[] = "History Journeys Labels";
1988const char kJourneysLabelsDescription[] =
1989 "Enables labels for Journeys within the History Journeys UI.";
1990
Tommy Lia142e2c2021-09-29 20:35:161991const char kJourneysOmniboxActionName[] = "History Journeys Omnibox Action";
1992const char kJourneysOmniboxActionDescription[] =
1993 "Enables the History Journeys Omnibox Action.";
1994
manukh37c48752022-06-21 15:38:101995const char kJourneysOmniboxHistoryClusterProviderName[] =
1996 "History Journeys Omnibox History Cluster Provider";
1997const char kJourneysOmniboxHistoryClusterProviderDescription[] =
1998 "Enables the History Journeys Omnibox History Cluster Provider to surface "
1999 "Journeys as a suggestion row instead of an action chip.";
2000
Patrick Nolanda62bf462023-03-20 18:09:342001const char kJourneysPersistCachesToPrefsName[] =
2002 "History Journeys Persist Caches to Prefs";
2003const char kJourneysPersistCachesToPrefsDescription[] =
2004 "Enables the persistence of Journeys keyword caches via the pref service.";
2005
Sophie Changd30f4dc4f2022-10-18 16:10:172006const char kJourneysShowAllClustersName[] =
2007 "History Journeys Show All Clusters";
2008const char kJourneysShowAllClustersDescription[] =
2009 "Enables all Journeys clusters to be shown on prominent UI surfaces";
2010
Sophie Chang4b7eff72022-12-08 16:43:292011const char kJourneysIncludeSyncedVisitsName[] =
2012 "History Journeys Include SyncedVisits";
2013const char kJourneysIncludeSyncedVisitsDescription[] =
2014 "Enabled synced visits to be included in History Journeys clusters.";
2015
Sophie Chang8ee03ca2023-04-17 17:30:462016const char kJourneysZeroStateFilteringName[] =
2017 "History Journeys Zero-State Filtering";
2018const char kJourneysZeroStateFilteringDescription[] =
2019 "Enables filtering of clusters in the zero state of the History Journeys "
2020 "WebUI.";
2021
Khalid Peer197c7462022-11-28 21:20:362022const char kExtractRelatedSearchesFromPrefetchedZPSResponseName[] =
2023 "Extract Related Searches from Prefetched ZPS Response";
2024const char kExtractRelatedSearchesFromPrefetchedZPSResponseDescription[] =
2025 "Enables page annotation logic to source related searches data from "
2026 "prefetched ZPS responses";
2027
bttk90927fd2021-11-12 19:38:272028const char kLargeFaviconFromGoogleName[] = "Large favicons from Google";
2029const char kLargeFaviconFromGoogleDescription[] =
2030 "Request large favicons from Google's favicon service";
2031
Yu Suc19bb6cc2021-02-25 06:38:292032const char kLensCameraAssistedSearchName[] =
2033 "Google Lens in Omnibox and New Tab Page";
2034const char kLensCameraAssistedSearchDescription[] =
2035 "Enable an entry point to Google Lens to allow users to search what they "
2036 "see using their mobile camera.";
2037
Juan Mojicaa2c06482022-10-14 18:27:012038const char kLensRegionSearchStaticPageName[] =
2039 "Use a static page with the Lens region search feature.";
2040const char kLensRegionSearchStaticPageDescription[] =
2041 "Enables use of a static page in a new tab when using the Lens region "
2042 "search feature.";
2043
Duncan Mercer10a2000a2022-11-07 23:00:532044const char kLensImageFormatOptimizationsName[] = "Lens Optimized Image Formats";
2045const char kLensImageFormatOptimizationsDescription[] =
2046 "Enables the use of either WebP or JPEG on all Lens quries to reduce "
2047 "network load and improve latency";
2048
Bryan Nguyend7f0cd742023-02-10 21:16:222049const char kLensImageTranslateName[] =
2050 "Translate text in images with Google Lens";
2051const char kLensImageTranslateDescription[] =
2052 "Enables a context menu item to translate text in images using Google "
2053 "Lens. The context menu item appears when the current page is being "
2054 "translated.";
2055
Jason Hua755d79832023-04-27 00:26:442056const char kEnableLensPingName[] =
2057 "Enable the ping to Lens before Lens requests";
2058const char kEnableLensPingDescription[] =
2059 "Enables a ping to the Lens Standalone server before a request is sent. "
2060 "This ping is used to proactively set cookies needed by Lens.";
2061
Ali Stanfield561043282023-03-10 03:04:302062const char kCscName[] = "CSC";
2063const char kCscDescription[] = "";
2064
mcrouseff4a6cf2023-05-31 04:46:422065const char kCscPinnedName[] = "CSC Pin State";
2066const char kCscPinnedDescription[] = "";
2067
Pierre St Juste9bc615e32023-05-26 01:58:322068const char kCscVssName[] = "CSC-VSS";
2069const char kCscVssDescription[] = "";
2070
Hazem Ashmawyf1cd7e42019-03-25 18:17:322071const char kLogJsConsoleMessagesName[] =
2072 "Log JS console messages in system logs";
2073const char kLogJsConsoleMessagesDescription[] =
2074 "Enable logging JS console messages in system logs, please note that they "
2075 "may contain PII.";
2076
Etienne Pierre-doray247abce2022-03-08 18:45:482077const char kUnthrottledNestedTimeoutName[] =
2078 "Increase the nesting threshold before which setTimeout(..., <4ms) start "
2079 "being clamped.";
2080const char kUnthrottledNestedTimeoutDescription[] =
2081 "setTimeout(..., 0) is commonly used to break down long Javascript tasks. "
2082 "Under this flag, setTimeouts and setIntervals with an interval < 4ms are "
2083 "not clamped as aggressively. This improves short horizon performance, but "
2084 "websites abusing the API will still eventually have their setTimeouts "
2085 "clamped.";
2086
spqchanb87755692018-04-05 00:46:092087const char kMediaRouterCastAllowAllIPsName[] =
2088 "Connect to Cast devices on all IP addresses";
2089const char kMediaRouterCastAllowAllIPsDescription[] =
2090 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:312091 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:092092
Andrey Zaytsevad83cbc32020-09-30 15:43:182093const char kMetricsSettingsAndroidName[] = "Metrics Settings on Android";
2094const char kMetricsSettingsAndroidDescription[] =
2095 "Enables the new design of metrics settings.";
2096
Brian Geffon12b581a2021-02-03 23:48:032097const char kMojoLinuxChannelSharedMemName[] =
2098 "Enable Mojo Shared Memory Channel";
2099const char kMojoLinuxChannelSharedMemDescription[] =
2100 "If enabled Mojo on Linux based platforms can use shared memory as an "
2101 "alternate channel for most messages.";
2102
Alisa Lin79251142021-06-15 20:22:122103const char kCanvas2DLayersName[] =
2104 "Enables canvas 2D methods BeginLayer and EndLayer";
2105const char kCanvas2DLayersDescription[] =
2106 "Enables the canvas 2D methods BeginLayer and EndLayer.";
2107
Honglin Yua0a14fa2022-03-31 22:40:052108const char kEnableMachineLearningModelLoaderWebPlatformApiName[] =
2109 "Enables Machine Learning Model Loader Web Platform API";
2110const char kEnableMachineLearningModelLoaderWebPlatformApiDescription[] =
2111 "Enables the Machine Learning Model Loader Web Platform API.";
2112
Andreea Costinas1e592142021-04-20 13:24:252113const char kSystemProxyForSystemServicesName[] =
2114 "Enable system-proxy for selected system services";
2115const char kSystemProxyForSystemServicesDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:352116 "Enabling this flag will allow ChromeOS system service which require "
Andreea Costinas1e592142021-04-20 13:24:252117 "network connectivity to use the system-proxy daemon for authentication to "
2118 "remote HTTP web proxies.";
2119
Nicolas Ouellet-Payeura77464c2020-10-14 15:19:492120const char kDestroyProfileOnBrowserCloseName[] =
2121 "Destroy Profile on browser close";
2122const char kDestroyProfileOnBrowserCloseDescription[] =
2123 "Release memory and other resources when a Profile's last browser window "
2124 "is closed, rather than when Chrome closes completely.";
2125
Nicolas Ouellet-Payeur4aff8682022-01-26 16:03:162126const char kDestroySystemProfilesName[] = "Destroy System Profile";
2127const char kDestroySystemProfilesDescription[] =
2128 "After you close the Profile Picker, release memory and other resources "
2129 "owned by the System Profile. This requires "
2130 "#destroy-profile-on-browser-close.";
2131
Side Yilmazd828f162022-10-11 00:05:242132const char kNotificationInteractionHistoryName[] =
2133 "Notification Interaction History";
2134const char kNotificationInteractionHistoryDescription[] =
2135 "Enable recording notification count and interaction.";
2136
Xing Liub9070262021-01-07 20:52:162137const char kNotificationSchedulerName[] = "Notification scheduler";
2138const char kNotificationSchedulerDescription[] =
2139 "Enable notification scheduler feature.";
2140
Xing Liu1919ec232019-07-22 20:38:042141const char kNotificationSchedulerDebugOptionName[] =
2142 "Notification scheduler debug options";
2143const char kNotificationSchedulerDebugOptionDescription[] =
2144 "Enable debugging mode to override certain behavior of notification "
2145 "scheduler system for easier manual testing.";
2146const char kNotificationSchedulerImmediateBackgroundTaskDescription[] =
2147 "Show scheduled notification right away.";
2148
Peter Beverlooc30c9ddf2021-02-24 19:56:032149const char kNotificationsSystemFlagName[] = "Enable system notifications.";
2150const char kNotificationsSystemFlagDescription[] =
2151 "Enable support for using the system notification toasts and notification "
Brett Wilsonecb80982017-07-12 20:34:512152 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:342153
momoka0122yda18aeb2022-03-15 08:23:542154const char kOmitCorsClientCertName[] =
2155 "Omit TLS client certificates if credential mode disallows";
2156const char kOmitCorsClientCertDescription[] =
2157 "Strictly conform the Fetch spec to omit TLS client certificates if "
2158 "credential mode disallows. Without this flag enabled, Chrome will always "
2159 "try sending client certificates regardless of the credential mode.";
2160
Moe Ahmadi82cd8302023-04-13 04:04:412161const char kOmniboxActionsInSuggestName[] = "Action in Suggest";
2162const char kOmniboxActionsInSuggestDescription[] =
2163 "Actions in Suggest permits optional Action Chips to be attached to "
2164 "Entity suggestions.";
2165
Tomasz Wiszkowski8a0e0dc42020-02-19 00:06:372166const char kOmniboxAdaptiveSuggestionsCountName[] =
2167 "Adaptive Omnibox Suggestions count";
2168const char kOmniboxAdaptiveSuggestionsCountDescription[] =
2169 "Dynamically adjust number of presented Omnibox suggestions depending on "
2170 "available space. When enabled, this feature will increase (or decrease) "
2171 "amount of offered Omnibox suggestions to fill in the space between the "
2172 "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches "
2173 "flag to adjust the limit of offered suggestions. The number of shown "
2174 "suggestions will be no less than the platform default limit.";
2175
Tomasz Wiszkowski1b7e75db82023-04-11 06:27:362176const char kOmniboxAdaptiveSuggestionsVisibleGroupEligibilityUpdateName[] =
2177 "Adaptive Suggestions Visible Group Eligibility Update";
2178const char
2179 kOmniboxAdaptiveSuggestionsVisibleGroupEligibilityUpdateDescription[] =
2180 "When enabled, considers suggestions exposed 50% or more as fully "
2181 "visible, and suggestions concealed 51% or more as fully hidden. This "
2182 "changes the former behavior, where a suggestion exposed 1% or more "
2183 "was considered fully visible.";
2184
Patrick Nolanddd4774952023-03-09 23:59:582185const char kOmniboxAdaptNarrowTabletWindowsName[] =
2186 "Omnibox adapts to narrow tablet windows";
2187const char kOmniboxAdaptNarrowTabletWindowsDescription[] =
2188 "When enabled the omnibox uses a phone-like appearance for windows that "
2189 "are less than 600dp wide, regardless of the overall display width.";
2190
Patrick Noland49cbd3d92023-04-05 21:54:412191const char kOmniboxCacheSuggestionResourcesName[] =
2192 "Omnibox cache suggestion resources";
2193const char kOmniboxCacheSuggestionResourcesDescription[] =
2194 "When enabled, the omnibox will cache frequently used drawables and "
2195 "strings rather than loading them from Android every time they're needed.";
2196
Patrick Noland299fa6582023-03-03 16:41:592197const char kOmniboxConsumesImeInsetsName[] =
2198 "Omnibox Consumes IME (keyboard) insets directly";
2199const char kOmniboxConsumesImeInsetsDescription[] =
2200 "When enabled, the Android Omnibox will directly handle IME (keyboard) "
2201 "inset changes while visible.";
2202
manukh221345f2023-04-14 18:46:342203const char kOmniboxCR23ActionChipsName[] = "Omnibox CR 2023 Action Chips";
2204const char kOmniboxCR23ActionChipsDescription[] =
2205 "Updates Omnibox Action Chips to comply with CR23 guidelines.";
2206
Khalid Peerfe882042023-04-11 20:34:242207const char kOmniboxCR23ExpandedStateColorsName[] =
2208 "Omnibox Expanded State Colors";
2209const char kOmniboxCR23ExpandedStateColorsDescription[] =
2210 "Updates colors in Omnibox expanded state to comply with CR23 guidelines.";
2211
Justin Donnelly87f3c562023-03-30 02:55:402212const char kOmniboxCR23ExpandedStateHeightName[] =
2213 "Omnibox Expanded State Height";
2214const char kOmniboxCR23ExpandedStateHeightDescription[] =
2215 "Updates Omnibox expanded state height to comply with CR23 guidelines.";
2216
manukhb82b26f02023-05-02 18:59:192217const char kOmniboxCR23ExpandedStateLayoutName[] =
2218 "Omnibox Expanded State Layout";
2219const char kOmniboxCR23ExpandedStateLayoutDescription[] =
2220 "Updates Omnibox expanded state layout to comply with CR23 guidelines.";
2221
Justin Donnelly87f3c562023-03-30 02:55:402222const char kOmniboxCR23ExpandedStateShapeName[] =
2223 "Omnibox Expanded State Shape";
2224const char kOmniboxCR23ExpandedStateShapeDescription[] =
2225 "Updates Omnibox expanded state shape to comply with CR23 guidelines.";
2226
Khalid Peer49592462023-04-19 17:16:072227const char kOmniboxCR23ExpandedStateSuggestIconsName[] =
2228 "Omnibox Expanded State Suggest Icons";
2229const char kOmniboxCR23ExpandedStateSuggestIconsDescription[] =
2230 "Updates suggestion icons in Omnibox query row and expanded state to "
2231 "comply with CR23 guidelines.";
2232
Shibalik Mohapatra3477e6d52023-04-03 17:24:372233const char kOmniboxCR23SteadyStateIconsName[] = "Omnibox Steady State Icons";
2234const char kOmniboxCR23SteadyStateIconsDescription[] =
2235 "Updates Omnibox steady state icons to comply with CR23 guidelines.";
2236
Khalid Peer55a25642023-06-14 19:08:302237const char kOmniboxCR23SuggestionHoverFillShapeName[] =
2238 "Omnibox Suggestion Hover Fill Shape";
2239const char kOmniboxCR23SuggestionHoverFillShapeDescription[] =
2240 "Updates Omnibox suggestion hover fill shape to comply with CR23 "
2241 "guidelines.";
2242
Tomasz Wiszkowskia382fc62023-04-12 00:28:362243const char kOmniboxIgnoreIntermediateResultsName[] =
2244 "Ignore intermediate Autocomplete results.";
2245const char kOmniboxIgnoreIntermediateResultsDescription[] =
2246 "When active, reduces number of Autocomplete updates to cover only the "
2247 "first (synchronous) and last (final) Autocomplete result. This reduces "
2248 "resource utlization (CPU, memory) during active Omnibox input session.";
2249
manukh8fcd3932023-02-28 06:10:522250const char kOmniboxDiscardTemporaryInputOnTabSwitchName[] =
2251 "Omnibox discard temporary input on tab switch";
2252const char kOmniboxDiscardTemporaryInputOnTabSwitchDescription[] =
2253 "Discards temporary input in the omnibox when switching tabs.";
2254
manukh37b13bd32022-10-04 16:01:512255const char kOmniboxDomainSuggestionsName[] = "Omnibox Domain Suggestions";
manukh918d82552022-10-11 01:12:222256const char kOmniboxDomainSuggestionsDescription[] =
manukh37b13bd32022-10-04 16:01:512257 "If enabled, history URL suggestions from hosts visited often bypass the "
2258 "per provider limit.";
2259
Orin Jaworski291b0a32022-05-17 17:29:052260const char kOmniboxFuzzyUrlSuggestionsName[] = "Omnibox Fuzzy URL Suggestions";
2261const char kOmniboxFuzzyUrlSuggestionsDescription[] =
2262 "Enables URL suggestions for inputs that may contain typos.";
2263
Khalid Peer93f49312023-03-06 22:28:132264const char kOmniboxGM3SteadyStateBackgroundColorName[] =
2265 "Omnibox Steady State Background Color";
2266const char kOmniboxGM3SteadyStateBackgroundColorDescription[] =
2267 "Updates Omnibox steady state background color to comply with GM3 "
2268 "guidelines.";
2269
Khalid Peer3b6c61fb2023-02-17 01:43:282270const char kOmniboxGM3SteadyStateHeightName[] = "Omnibox Steady State Height";
2271const char kOmniboxGM3SteadyStateHeightDescription[] =
2272 "Updates Omnibox steady state height to comply with GM3 guidelines.";
2273
Khalid Peer4520af92023-03-02 21:50:512274const char kOmniboxGM3SteadyStateTextStyleName[] =
2275 "Omnibox Steady State Text Style";
2276const char kOmniboxGM3SteadyStateTextStyleDescription[] =
2277 "Updates Omnibox steady state text style to comply with GM3 guidelines.";
2278
Khalid Peer4ef65ef52023-03-27 23:29:072279const char kOmniboxGM3SteadyStateTextColorName[] =
2280 "Omnibox Steady State Text Color";
2281const char kOmniboxGM3SteadyStateTextColorDescription[] =
2282 "Updates Omnibox steady state text color to comply with GM3 guidelines.";
2283
Ender19574f92023-03-16 01:14:262284const char kOmniboxGroupingFrameworkZPSName[] =
2285 "Omnibox Grouping Framework for ZPS";
2286const char kOmniboxGroupingFrameworkNonZPSName[] =
2287 "Omnibox Grouping Framework for Typed Suggestions";
manukh01e47192022-12-23 00:50:252288const char kOmniboxGroupingFrameworkDescription[] =
2289 "Enables an alternative grouping implementation for omnibox "
2290 "autocompletion.";
2291
Tomasz Wiszkowski539249962023-03-16 01:01:422292const char kOmniboxInspireMeName[] = "Omnibox Trending and Related Queries";
2293const char kOmniboxInspireMeDescription[] =
2294 "When enabled, appends additional suggestions based on local trends and/or "
2295 "related to the recently executed queries.";
2296
Rong Tan01c989902022-10-28 04:06:252297const char kOmniboxMatchToolbarAndStatusBarColorName[] =
2298 "Omnibox Omnibox Match Toolbar And Status Bar Color";
2299const char kOmniboxMatchToolbarAndStatusBarColorDescription[] =
2300 "When enabled, the color of the toolbar and the status bar will be "
2301 "synchronized.";
2302
Gang Wu67847242022-06-30 06:18:512303const char kOmniboxModernizeVisualUpdateName[] =
2304 "Omnibox Modernize Visual Update";
2305const char kOmniboxModernizeVisualUpdateDescription[] =
2306 "When enabled, Omnibox will show a new UI which is visually "
2307 "updated. This flag is for the step 1 in the Clank Omnibox revamp plan.";
2308
Filip Gorskib116dee2020-08-20 14:12:102309const char kOmniboxMostVisitedTilesName[] = "Omnibox Most Visited Tiles";
2310const char kOmniboxMostVisitedTilesDescription[] =
manukhd9801bfc2022-01-04 22:43:582311 "Display a list of frequently visited pages from history as a single row "
Filip Gorskib116dee2020-08-20 14:12:102312 "with a carousel instead of one URL per line.";
2313
Rong Tanef44d632022-11-18 19:02:312314const char kOmniboxMostVisitedTilesAddRecycledViewPoolName[] =
2315 "Omnibox Most Visited Tiles Add Recycled View Pool";
2316const char kOmniboxMostVisitedTilesAddRecycledViewPoolDescription[] =
2317 "Add a recycled view pool to omnibox most visited tiles carousel to "
2318 "increase tile view reuse and reduce jackiness.";
2319
manukh539d958b2023-03-01 16:50:252320const char kOmniboxRedoCurrentMatchName[] = "Omnibox redo current match";
2321const char kOmniboxRedoCurrentMatchDescription[] =
2322 "Use an alternative implementation of calculating the cached omnibox "
2323 "current match that is valid more often.";
2324
Patrick Nolanda12a190e2023-04-13 20:15:102325const char kOmniboxWarmRecycledViewPoolName[] =
2326 "Omnibox warm recycled view pool";
2327const char kOmniboxWarmRecycledViewPoolDescription[] =
2328 "Pre-warms the Android Omnibox's RecyclerView pool by inflating "
2329 "views before the omnibox is focused.";
2330
Moe Ahmadi7c889d82022-10-27 20:35:242331const char kOmniboxReportAssistedQueryStatsName[] =
2332 "Omnibox Assisted Query Stats param";
2333const char kOmniboxReportAssistedQueryStatsDescription[] =
2334 "Enables reporting the Assisted Query Stats param in search destination "
2335 "URLs originated from the Omnibox.";
2336
2337const char kOmniboxReportSearchboxStatsName[] =
2338 "Omnibox Searchbox Stats proto param";
2339const char kOmniboxReportSearchboxStatsDescription[] =
2340 "Enables reporting the serialized Searchbox Stats proto param in search "
2341 "destination URLs originated from the Omnibox.";
2342
manukh539d958b2023-03-01 16:50:252343const char kOmniboxRevertModelBeforeClosingPopupName[] =
2344 "Omnibox revert model before closing popup";
2345const char kOmniboxRevertModelBeforeClosingPopupDescription[] =
2346 "When reverting the omnibox view, revert the model before closing the "
2347 "popup to avoid some extra calculations.";
2348
Ryan Sturmb9aaea22023-03-07 21:35:012349const char kOmniboxUseExistingAutocompleteClientName[] =
2350 "Omnibox use exisitng autocomplete client";
2351const char kOmniboxUseExistingAutocompleteClientDescription[] =
2352 "When querying autocomplete client from the omnibox edit model, use the "
2353 "existing one instead of creating a new one.";
2354
Moe Ahmadi4d6f27b2021-11-19 01:40:362355const char kOmniboxZeroSuggestPrefetchingName[] =
Khalid Peere26e6962022-07-26 22:39:552356 "Omnibox Zero Prefix Suggestion Prefetching on NTP";
Moe Ahmadi4d6f27b2021-11-19 01:40:362357const char kOmniboxZeroSuggestPrefetchingDescription[] =
Khalid Peere26e6962022-07-26 22:39:552358 "Enables prefetching of the zero prefix suggestions for eligible users "
2359 "on the New Tab page.";
2360
2361const char kOmniboxZeroSuggestPrefetchingOnSRPName[] =
2362 "Omnibox Zero Prefix Suggestion Prefetching on SRP";
2363const char kOmniboxZeroSuggestPrefetchingOnSRPDescription[] =
2364 "Enables prefetching of the zero prefix suggestions for eligible users "
2365 "on the Search Results page.";
Moe Ahmadi4d6f27b2021-11-19 01:40:362366
Khalid Peer28546042022-08-12 23:18:082367const char kOmniboxZeroSuggestPrefetchingOnWebName[] =
2368 "Omnibox Zero Prefix Suggestion Prefetching on the Web";
2369const char kOmniboxZeroSuggestPrefetchingOnWebDescription[] =
2370 "Enables prefetching of the zero prefix suggestions for eligible users "
2371 "on the Web (i.e. non-NTP and non-SRP URLs).";
2372
Khalid Peer4bca7ea2022-08-26 22:51:292373const char kOmniboxZeroSuggestInMemoryCachingName[] =
2374 "Omnibox Zero Prefix Suggestion in-memory caching";
2375const char kOmniboxZeroSuggestInMemoryCachingDescription[] =
2376 "Enables in-memory caching of zero prefix suggestions.";
2377
Ce Chen7762ef32022-06-17 14:34:172378const char kOmniboxOnDeviceHeadSuggestionsName[] =
2379 "Omnibox on device head suggestions (non-incognito only)";
2380const char kOmniboxOnDeviceHeadSuggestionsDescription[] =
2381 "Google head non personalized search suggestions provided by a compact on "
2382 "device model for non-incognito. Turn off this feature if you have other "
2383 "apps running which affects local file access (e.g. anti-virus software) "
2384 "and are experiencing searchbox typing lags.";
2385const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] =
2386 "Omnibox on device head suggestions (incognito only)";
2387const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] =
2388 "Google head non personalized search suggestions provided by a compact on "
2389 "device model for incognito. Turn off this feature if you have other "
2390 "apps running which affects local file access (e.g. anti-virus software) "
2391 "and are experiencing searchbox typing lags.";
Ce Chenbdfaed22022-10-20 16:08:352392const char kOmniboxOnDeviceTailSuggestionsName[] =
2393 "Omnibox on device tail suggestions";
2394const char kOmniboxOnDeviceTailSuggestionsDescription[] =
2395 "Google tail non personalized search suggestions provided by a compact on "
2396 "device model.";
Ce Chen7762ef32022-06-17 14:34:172397
manukh6b9c59c2020-08-28 19:29:252398const char kOmniboxRichAutocompletionPromisingName[] =
2399 "Omnibox Rich Autocompletion Promising Combinations";
2400const char kOmniboxRichAutocompletionPromisingDescription[] =
manukh6a6aeb82022-06-24 21:11:012401 "Allow autocompletion for titles and non-prefixes. Suggestions whose "
2402 "titles or URLs contain the user input as a continuous chunk, but not "
2403 "necessarily a prefix, can be the default suggestion. Otherwise, only "
2404 "suggestions whose URLs are prefixed by the user input can be.";
manukhf6414512022-06-15 01:26:192405
Moe Ahmadi01028f22022-08-06 17:57:352406const char kOmniboxLocalHistoryZeroSuggestBeyondNTPName[] =
2407 "Allow local history zero-prefix suggestions beyond NTP";
2408const char kOmniboxLocalHistoryZeroSuggestBeyondNTPDescription[] =
2409 "Enables local history zero-prefix suggestions in every context in which "
2410 "the remote zero-prefix suggestions are enabled.";
2411
Moe Ahmadi50223462022-06-30 22:37:272412const char kOmniboxFocusTriggersSRPZeroSuggestName[] =
Tomasz Wiszkowski8d447752021-07-20 02:58:262413 "Allow Omnibox contextual web on-focus suggestions on the SRP";
Moe Ahmadi50223462022-06-30 22:37:272414const char kOmniboxFocusTriggersSRPZeroSuggestDescription[] =
Tomasz Wiszkowski8d447752021-07-20 02:58:262415 "Enables on-focus suggestions on the Search Results page. "
2416 "Requires on-focus suggestions for the contextual web to be enabled. "
2417 "Will only work if user is signed-in and syncing.";
2418
Moe Ahmadi50223462022-06-30 22:37:272419const char kOmniboxFocusTriggersContextualWebZeroSuggestName[] =
Tommy Li55784022020-04-28 20:58:182420 "Omnibox on-focus suggestions for the contextual Web";
Moe Ahmadi50223462022-06-30 22:37:272421const char kOmniboxFocusTriggersContextualWebZeroSuggestDescription[] =
Tommy Li55784022020-04-28 20:58:182422 "Enables on-focus suggestions on the Open Web, that are contextual to the "
2423 "current URL. Will only work if user is signed-in and syncing, or is "
2424 "otherwise eligible to send the current page URL to the suggest server.";
2425
Jun Zoud1e35932b2022-12-01 20:01:372426const char kOmniboxMlLogUrlScoringSignalsName[] =
2427 "Log Omnibox URL Scoring Signals";
2428const char kOmniboxMlLogUrlScoringSignalsDescription[] =
2429 "Enables Omnibox to log scoring signals of URL suggestions.";
2430
Moe Ahmadi6ca4dc52023-04-14 22:47:342431const char kOmniboxMlUrlScoringName[] = "Omnibox ML URL Scoring";
2432const char kOmniboxMlUrlScoringDescription[] =
2433 "Enables ML-based relevance scoring for Omnibox URL Suggestions.";
Angela Yoeurngd75d0dfe2023-01-12 23:17:092434
Moe Ahmadi6ca4dc52023-04-14 22:47:342435const char kOmniboxMlUrlScoringModelName[] = "Omnibox URL Scoring Model";
Jun Zoub695a0a2023-01-20 18:55:022436const char kOmniboxMlUrlScoringModelDescription[] =
Moe Ahmadi6ca4dc52023-04-14 22:47:342437 "Enables ML scoring model for Omnibox URL sugestions.";
Jun Zoub695a0a2023-01-20 18:55:022438
Moe Ahmadi3c2569e2022-10-06 23:41:392439const char kOmniboxOnClobberFocusTypeOnContentName[] =
2440 "Omnibox On Clobber Focus Type On Content";
2441const char kOmniboxOnClobberFocusTypeOnContentDescription[] =
Rong Tan390e219c2022-09-30 23:56:282442 "Send ON_CLOBBER focus type for zero-prefix requests with an empty input "
Moe Ahmadi3c2569e2022-10-06 23:41:392443 "on Web/SRP.";
Rong Tan390e219c2022-09-30 23:56:282444
manukh453ab7e2023-02-02 21:09:572445const char kOmniboxShortcutBoostName[] = "Omnibox shortcut boosting";
2446const char kOmniboxShortcutBoostDescription[] =
2447 "Promote shortcuts to be default when available.";
2448
Yohanes Shimelis53d0f6b2023-01-12 19:09:102449const char kOmniboxSimplifiedUiUniformRowHeightName[] =
2450 "Omnibox Suggestion Row Height";
2451const char kOmniboxSimplifiedUiUniformRowHeightDescription[] =
2452 "Changes the row height of omnibox suggetions.";
2453
2454const char kOmniboxSimplifiedUiSquareSuggestIconName[] =
2455 "Omnibox Square Suggest Icons";
2456const char kOmniboxSimplifiedUiSquareSuggestIconDescription[] =
2457 "Adds a grey square background to suggestion icons, and makes the answer "
2458 "icon square.";
2459
manukfdd97402020-07-22 18:19:172460const char kOmniboxMaxZeroSuggestMatchesName[] =
2461 "Omnibox Max Zero Suggest Matches";
2462const char kOmniboxMaxZeroSuggestMatchesDescription[] =
2463 "Changes the maximum number of autocomplete matches displayed when zero "
2464 "suggest is active (i.e. displaying suggestions without input).";
2465
Brett Wilsonecb80982017-07-12 20:34:512466const char kOmniboxUIMaxAutocompleteMatchesName[] =
2467 "Omnibox UI Max Autocomplete Matches";
Brett Wilsonecb80982017-07-12 20:34:512468const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
2469 "Changes the maximum number of autocomplete matches displayed in the "
2470 "Omnibox UI.";
2471
Mustafa Emre Acer0626cbb2021-07-14 20:35:042472const char kOmniboxUpdatedConnectionSecurityIndicatorsName[] =
2473 "Omnibox Updated connection security indicators";
2474const char kOmniboxUpdatedConnectionSecurityIndicatorsDescription[] =
2475 "Use new connection security indicators for https pages in the omnibox.";
2476
Moe Ahmadi40e0eba52022-12-22 01:44:252477const char kWebUIOmniboxPopupName[] = "WebUI Omnibox Popup";
2478const char kWebUIOmniboxPopupDescription[] =
2479 "If enabled, shows the omnibox suggestions popup in WebUI.";
2480
dpapad36b3a3b22023-04-19 17:07:462481#if !BUILDFLAG(IS_LINUX)
dpapad7c00cc7f02023-03-24 17:54:352482const char kWebUiSystemFontName[] = "WebUI System font";
2483const char kWebUiSystemFontDescription[] =
2484 "If enabled, all WebUI surfaces will use the default UI font of the "
2485 "underlying platform.";
dpapad36b3a3b22023-04-19 17:07:462486#endif
dpapad7c00cc7f02023-03-24 17:54:352487
Kevin Baileycd6889922019-05-30 17:22:552488const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches";
2489const char kOmniboxMaxURLMatchesDescription[] =
2490 "The maximum number of URL matches to show, unless there are no "
2491 "replacements.";
2492
manuk4e2979d2020-07-08 23:29:282493const char kOmniboxDynamicMaxAutocompleteName[] =
2494 "Omnibox Dynamic Max Autocomplete";
2495const char kOmniboxDynamicMaxAutocompleteDescription[] =
2496 "Configures the maximum number of autocomplete matches displayed in the "
2497 "Omnibox UI dynamically based on the number of URL matches.";
2498
Michael Checo91977f562023-01-25 01:02:222499const char kOnlyShowNewShortcutsAppName[] =
2500 "Only show the new Shortcut Viewer app";
2501const char kOnlyShowNewShortcutsAppDescription[] =
2502 "If enabled, the existing Shortcut Viewer app will be hidden and only the "
2503 "new Shortcut Customization app will be discoverable.";
2504
Florian Jacky3560a402023-04-03 16:39:032505const char kOneTimePermissionName[] = "One time permission";
2506const char kOneTimePermissionDescription[] =
2507 "Enables experimental one time permissions for Geolocation, Microphone and "
2508 "Camera.";
2509
rajendrant277b1ba2022-02-18 01:59:362510const char kOptimizationGuideDebugLogsName[] =
2511 "Enable optimization guide debug logs";
2512const char kOptimizationGuideDebugLogsDescription[] =
2513 "Enables the optimization guide to log and save debug messages that can be "
2514 "shown in the internals page.";
2515
rajendrantb6ef55fd2022-10-20 20:25:242516const char kOptimizationGuideInstallWideModelStoreName[] =
2517 "Enables the new optimization guide install-wide model store";
2518const char kOptimizationGuideInstallWideModelStoreDescription[] =
2519 "Enables the new model store that is per Chrome installation and can "
2520 "share models across user profiles.";
2521
Tarun Bansalca4fae3d2022-04-05 21:17:342522const char kOptimizationGuidePushNotificationName[] =
Robert Ogden52285a52021-07-01 19:26:202523 "Enable optimization guide push notifications";
Tarun Bansalca4fae3d2022-04-05 21:17:342524const char kOptimizationGuidePushNotificationDescription[] =
Robert Ogden52285a52021-07-01 19:26:202525 "Enables the optimization guide to receive push notifications.";
2526
Moe Ahmadi359d0722022-05-16 23:17:332527const char kOrganicRepeatableQueriesName[] =
2528 "Organic repeatable queries in Most Visited tiles";
2529const char kOrganicRepeatableQueriesDescription[] =
2530 "Enables showing the most repeated queries, from the device browsing "
2531 "history, organically among the most visited sites in the MV tiles.";
2532
Daniel Vogelheim88d1ca9e2022-02-04 19:53:452533const char kOriginAgentClusterDefaultName[] =
2534 "Origin-keyed Agent Clusters by default";
2535const char kOriginAgentClusterDefaultDescription[] =
2536 "Select the default behaviour for the Origin-Agent-Cluster http header. "
2537 "If enabled, an absent header will cause pages to be assigned to an "
2538 "origin-keyed agent cluster, and to a site-keyed agent cluster when "
2539 "disabled. Documents whose agent clusters are origin-keyed cannot set "
2540 "document.domain to relax the same-origin policy.";
2541
W. James MacLean2f339dc2023-05-25 14:43:412542const char kOriginKeyedProcessesByDefaultName[] =
2543 "Origin-keyed Processes by default";
2544const char kOriginKeyedProcessesByDefaultDescription[] =
2545 "Enables origin-keyed process isolation for most pages (i.e., those "
2546 "assigned to an origin-keyed agent cluster by default). This improves "
2547 "security but also increases the number of processes created. Note: "
2548 "enabling this feature also enables 'Origin-keyed Agent Clusters by "
2549 "default'.";
2550
Ethan Mooney01e6f192021-06-10 13:14:072551const char kOsSettingsAppNotificationsPageName[] =
2552 "CrOS Settings App Notifications Page";
2553const char kOsSettingsAppNotificationsPageDescription[] =
2554 "If enabled, a new App Notifications subpage will appear in the "
2555 "CrOS Settings Apps section.";
2556
Wez600f06c2021-03-05 20:32:302557const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
2558const char kOverlayScrollbarsDescription[] =
2559 "Enable the experimental overlay scrollbars implementation. You must also "
2560 "enable threaded compositing to have the scrollbars animate.";
2561
Daniele Castagna74ddb9c2018-06-21 22:59:022562const char kOverlayStrategiesName[] = "Select HW overlay strategies";
2563const char kOverlayStrategiesDescription[] =
Harry Cutts14a1da052023-05-15 16:41:162564 "Select strategies used to promote quads to HW overlays. Note that "
2565 "strategies other than Default may break playback of protected content.";
Daniele Castagna74ddb9c2018-06-21 22:59:022566const char kOverlayStrategiesDefault[] = "Default";
2567const char kOverlayStrategiesNone[] = "None";
2568const char kOverlayStrategiesUnoccludedFullscreen[] =
2569 "Unoccluded fullscreen buffers (single-fullscreen)";
2570const char kOverlayStrategiesUnoccluded[] =
2571 "Unoccluded buffers (single-fullscreen,single-on-top)";
2572const char kOverlayStrategiesOccludedAndUnoccluded[] =
2573 "Occluded and unoccluded buffers "
2574 "(single-fullscreen,single-on-top,underlay)";
2575
Jinsuk Kim2e139e432021-02-26 03:46:562576const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
2577const char kOverscrollHistoryNavigationDescription[] =
2578 "History navigation in response to horizontal overscroll.";
2579
minch1ad858c2021-06-24 20:30:012580const char kOverviewButtonName[] = "Overview button at the status area";
2581const char kOverviewButtonDescription[] =
2582 "If enabled, always show the overview button at the status area.";
2583
Richard Chui9bb649182022-12-09 07:12:022584const char kOverviewDeskNavigationName[] =
2585 "CrOS Labs: Overview Desk Navigation";
2586const char kOverviewDeskNavigationDescription[] =
2587 "Stay in overview when navigating between desks using a swipe gesture or "
2588 "keyboard shortcut.";
2589
Sophie Chang9081cb32021-09-28 22:39:102590const char kPageContentAnnotationsName[] = "Page content annotations";
2591const char kPageContentAnnotationsDescription[] =
2592 "Enables page content to be annotated on-device.";
2593
Sophie Chang854625a2023-03-22 19:57:332594const char kPageContentAnnotationsPersistSalientImageMetadataName[] =
2595 "Page content annotations - Persist salient image metadata";
2596const char kPageContentAnnotationsPersistSalientImageMetadataDescription[] =
2597 "Enables salient image metadata per page load to be persisted on-device.";
2598
Sophie Chang0f519332023-03-28 21:45:302599const char kPageContentAnnotationsRemotePageMetadataName[] =
2600 "Page content annotations - Remote page metadata";
2601const char kPageContentAnnotationsRemotePageMetadataDescription[] =
2602 "Enables fetching of page load metadata to be persisted on-device.";
2603
Sophie Chang8d500672022-02-09 22:45:302604const char kPageEntitiesPageContentAnnotationsName[] =
2605 "Page entities content annotations";
2606const char kPageEntitiesPageContentAnnotationsDescription[] =
2607 "Enables annotating the page entities model for each page load on-device.";
2608
Tommy C. Li7960fc82023-03-03 00:56:452609const char kPageImageServiceOptimizationGuideSalientImagesName[] =
2610 "Page Image Service - Optimization Guide Salient Images";
2611const char kPageImageServiceOptimizationGuideSalientImagesDescription[] =
2612 "Enables the PageImageService fetching images from the Optimization Guide "
2613 "Salient Images source.";
2614
Tommy C. Li315f9ff62023-03-16 16:13:152615const char kPageImageServiceSuggestPoweredImagesName[] =
2616 "Page Image Service - Suggest Powered Images";
2617const char kPageImageServiceSuggestPoweredImagesDescription[] =
2618 "Enables the PageImageService fetching images from the Suggest source.";
2619
Filipa Senrafc3fb4522023-03-17 18:12:222620const char kPageInfoAboutThisSiteKeepSidePanelOnSameTabNavs[] =
2621 "'About this site' keep side panel on same tab navs";
2622const char kPageInfoAboutThisSiteKeepSidePanelOnSameTabNavsDescription[] =
2623 "Keeps the 'About this site' side panel open and updated on same tab "
2624 "navigations.";
2625
Filipa Senrab5787562023-02-20 11:03:502626const char kPageInfoAboutThisSiteNewIconName[] = "'About this site' new icon";
2627const char kPageInfoAboutThisSiteNewIconDescription[] =
2628 "Shows the 'About this site' section in the page info UI with a new google "
2629 "branded icon.";
2630
Christian Dullweber77ae6752022-12-14 18:58:382631const char kPageInfoAboutThisSiteNonEnName[] =
2632 "'About this site' section in page info in all languages";
2633const char kPageInfoAboutThisSiteNonEnDescription[] =
2634 "Enable the 'About this site' section in the page info UI in languages "
2635 "other than English.";
Olesia Marukhno0fc754b2021-09-17 15:05:062636
Christian Dullweber8fdeb5d2022-08-24 20:14:572637const char kPageInfoboutThisPageDescriptionPlaceholderName[] =
2638 "AboutThisPage description placeholder";
2639const char kPageInfoboutThisPageDescriptionPlaceholderDescription[] =
2640 "Shows a placeholder when no description is availble instead of not "
2641 "showing an entry at all";
2642
2643const char kPageInfoboutThisPagePersistentEntryName[] =
2644 "AboutThisPage persistent SidePanel entry";
2645const char kPageInfoboutThisPagePersistentEntryDescription[] =
2646 "Registers a SidePanel entry on pageload if 'AboutThisPage' info is "
2647 "available";
2648
Zofia Salatad830d4b2022-09-19 09:22:362649const char kPageInfoCookiesSubpageName[] = "Cookies subpage in page info";
2650const char kPageInfoCookiesSubpageDescription[] =
2651 "Enable the Cookies subpage in page info for managing cookies and site "
2652 "data.";
2653
Christian Dullweberec4715a82022-04-28 17:12:012654const char kPageInfoMoreAboutThisPageName[] =
2655 "'More about this page' link in page info";
2656const char kPageInfoMoreAboutThisPageDescription[] =
2657 "Enable the 'More about this page' link in the 'From the web' section of "
2658 "page info.";
2659
Zofia Salata1f9c6ae2022-07-21 16:23:312660const char kPageInfoHideSiteSettingsName[] = "Page info hide site settings";
2661const char kPageInfoHideSiteSettingsDescription[] =
2662 "Hides site settings row in the page info menu.";
2663
Olesia Marukhno4f39c7fb2021-12-14 16:55:482664const char kPageInfoHistoryDesktopName[] = "Page info history";
2665const char kPageInfoHistoryDesktopDescription[] =
2666 "Enable a history section in the page info.";
2667
Sophie Chang8d500672022-02-09 22:45:302668const char kPageVisibilityPageContentAnnotationsName[] =
2669 "Page visibility content annotations";
2670const char kPageVisibilityPageContentAnnotationsDescription[] =
2671 "Enables annotating the page visibility model for each page load "
2672 "on-device.";
2673
Xing Liu5400a002017-09-15 21:48:292674const char kParallelDownloadingName[] = "Parallel downloading";
2675const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:062676 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:292677
rgod9bbe0a52023-05-10 16:04:292678const char kPasswordGenerationExperimentName[] =
2679 "Password generation experiment";
2680const char kPasswordGenerationExperimentDescription[] =
2681 "Enables different experiments that modify content and behavior of the "
2682 "existing generated password suggestion dropdown.";
2683
Andrii Natiahlyid9fd4282023-04-14 10:38:522684const char kPasswordsImportM2Name[] = "Passwords Import M2";
2685const char kPasswordsImportM2Description[] =
2686 "Extends passwords import flow in password settings with conflict "
2687 "resolution functionality.";
2688
Maria Timburddb9d422022-07-20 12:41:492689const char kPasswordStrengthIndicatorName[] = "Password strength indicator";
2690const char kPasswordStrengthIndicatorDescription[] =
2691 "Enables password strength indicator when typing a password during a "
2692 "sign-up and password change flows.";
2693
Norge Vizcay81af8802022-09-06 09:57:122694const char kForceEnableFastCheckoutCapabilitiesName[] =
2695 "Force enable fast checkout capabilities";
2696const char kForceEnableFastCheckoutCapabilitiesDescription[] =
2697 "Force enables fast checkout capabilities for every domain, regardless "
2698 "of the server response.";
2699
Nektarios Paisios989068702022-03-02 09:06:562700const char kPdfOcrName[] = "Performs OCR on inaccessible PDFs";
2701const char kPdfOcrDescription[] =
2702 "Enables a feature whereby inaccessible (i.e. untagged) PDFs are made "
2703 "accessible using an optical character recognition service.";
2704
Carlos ILc5c2e2702020-12-15 21:19:502705const char kPdfXfaFormsName[] = "PDF XFA support";
2706const char kPdfXfaFormsDescription[] =
2707 "Enables support for XFA forms in PDFs. "
2708 "Has no effect if Chrome was not built with XFA support.";
2709
Max Leefb53d9c2022-09-01 00:23:342710const char kVmPerBootShaderCacheName[] = "VM per-boot shader cache";
2711const char kVmPerBootShaderCacheDescription[] =
Max Lee324065832022-09-08 07:15:242712 "If enabled, VM shader cache is refreshed per boot. If disabled, VM shader "
2713 "cache is refreshed per OS build.";
Max Leefb53d9c2022-09-01 00:23:342714
Peter Beverloodcd5d9652021-10-11 23:30:592715const char kAutoWebContentsDarkModeName[] = "Auto Dark Mode for Web Contents";
2716const char kAutoWebContentsDarkModeDescription[] =
Aran Gilman5e9672bed2019-08-02 19:07:492717 "Automatically render all web contents using a dark theme.";
2718
Alison Maherc07a3fb2019-10-07 21:25:032719const char kForcedColorsName[] = "Forced Colors";
2720const char kForcedColorsDescription[] =
2721 "Enables forced colors mode for web content.";
2722
Gaston Rodriguez Lopez8baf0132022-07-13 18:58:242723const char kWindowsScrollingPersonalityName[] = "Windows Scrolling Personality";
2724const char kWindowsScrollingPersonalityDescription[] =
Matt Amertecf4bf32019-09-25 19:50:392725 "If enabled, mousewheel and keyboard scrolls will scroll by a percentage "
Gaston Rodriguez Lopez8baf0132022-07-13 18:58:242726 "of the scroller size and the default scroll animation is replaced with "
2727 "Impulse-style scroll animations.";
Matt Amertecf4bf32019-09-25 19:50:392728
Olesia Marukhno16fdd647a2020-05-04 09:34:002729const char kPermissionChipName[] = "Permissions Chip Experiment";
2730const char kPermissionChipDescription[] =
2731 "Enables an experimental permission prompt that uses a chip in the location"
2732 " bar.";
2733
Florian Jackyca9da172022-09-26 16:29:462734const char kChipLocationBarIconOverrideName[] =
2735 "Chip Location Bar Icon Override Experiment.";
2736const char kChipLocationBarIconOverrideDescription[] =
2737 "Enables an experimental location bar icon override while a chip is shown "
2738 "in the location bar. Takes effect when #permission-chip or "
2739 "#confirmation-chip are active.";
2740
2741const char kConfirmationChipName[] = "Confirmation Chip Experiment";
2742const char kConfirmationChipNameDescription[] =
2743 "Enables an experimental confirmation chip in the location bar after a "
Florian Jackycb018cb2022-10-10 09:57:362744 "permission prompt shown has been decided by the user.";
Florian Jackyca9da172022-09-26 16:29:462745
Andy Paicu204a1bb82020-11-12 21:50:142746const char kPermissionPredictionsName[] = "Permission Predictions";
2747const char kPermissionPredictionsDescription[] =
2748 "Use the Permission Predictions Service to surface permission requests "
2749 "using a quieter UI when the likelihood of the user granting the "
2750 "permission is predicted to be low. Requires "
Balazs Engedy6f94e1c2021-11-22 14:16:352751 "chrome://flags/#quiet-notification-prompts and `Safe Browsing` to be "
2752 "enabled.";
Andy Paicu204a1bb82020-11-12 21:50:142753
Illia Klimovdf283b02021-07-07 17:33:252754const char kPermissionQuietChipName[] = "Quiet Permission Chip Experiment";
2755const char kPermissionQuietChipDescription[] =
Illia Klimov1b2ca40c2022-06-09 20:02:412756 "Enables a permission prompt that uses the quiet chip instead of the "
2757 "right-hand side address bar icon for quiet permission prompts. Requires "
2758 "chrome://flags/#quiet-notification-prompts to be enabled.";
Illia Klimovdf283b02021-07-07 17:33:252759
Tom Van Goethem7ad67c082022-12-13 18:56:262760const char kRecordPermissionExpirationTimestampsName[] =
2761 "Record permission expiration timestamps";
2762const char kRecordPermissionExpirationTimestampsDescription[] =
2763 "When enabled, permissions grants with a durable session model will have "
2764 "an expiration date set.";
2765
Brandon Wylie130e5792023-02-23 23:59:382766const char kPowerBookmarkBackendName[] = "Power bookmark backend";
2767const char kPowerBookmarkBackendDescription[] =
2768 "Enables storing additional metadata to support power bookmark features.";
2769
Emily Shack675ca992022-11-18 22:07:242770const char kPowerBookmarksSidePanel[] = "Power bookmarks side panel";
2771const char kPowerBookmarksSidePanelDescription[] =
2772 "Enables the power bookmarks version of the bookmarks side panel content.";
2773
Brandon Wylie955a16942021-09-24 22:43:102774const char kBookmarksImprovedSaveFlowName[] = "Improved bookmarks save flow";
2775const char kBookmarksImprovedSaveFlowDescription[] =
2776 "Enabled an improved save flow for bookmarks.";
2777
Brandon Wylief203eee2021-10-11 22:55:452778const char kBookmarksRefreshName[] = "Bookmarks refresh";
Brandon Wylie9fe37582021-08-24 01:22:532779const char kBookmarksRefreshDescription[] =
Brandon Wylief203eee2021-10-11 22:55:452780 "Enable various changes to bookmarks.";
Brandon Wylie9fe37582021-08-24 01:22:532781
Robert Lin4035ebb2021-10-08 12:23:412782const char kOmniboxTriggerForPrerender2Name[] =
2783 "Omnibox trigger for Prerender2";
2784const char kOmniboxTriggerForPrerender2Description[] =
2785 "Enables the new omnibox trigger prerenderer implementation.";
2786
Lingqi Chi357fcda12022-02-18 03:34:152787const char kSupportSearchSuggestionForPrerender2Name[] =
2788 "Prerender search suggestions";
2789const char kSupportSearchSuggestionForPrerender2Description[] =
2790 "Allows Prerender2 to prerender search suggestions provided by the default "
Johann6299c232022-11-21 03:10:442791 "search engine.";
Lingqi Chi357fcda12022-02-18 03:34:152792
Ryan Sturm0c7162f72022-09-16 15:13:412793const char kEnableOmniboxSearchPrefetchName[] = "Omnibox prefetch Search";
2794const char kEnableOmniboxSearchPrefetchDescription[] =
2795 "Allows omnibox to prefetch likely search suggestions provided by the "
2796 "Default Search Engine";
2797
2798const char kEnableOmniboxClientSearchPrefetchName[] =
2799 "Omnibox client prefetch Search";
2800const char kEnableOmniboxClientSearchPrefetchDescription[] =
2801 "Allows omnibox to prefetch search suggestions provided by the Default "
2802 "Search Engine that the client thinks are likely to be navigated. Requires "
2803 "chrome://flags/#omnibox-search-prefetch";
2804
Andrey Zaytsev7c790c12022-05-23 13:07:302805const char kPrivacyGuideAndroidName[] = "Privacy Guide on Android";
2806const char kPrivacyGuideAndroidDescription[] =
2807 "Shows a new subpage in Settings that helps the user to review various "
2808 "privacy settings.";
2809
John Delaney1d6e4b5c2022-03-25 02:19:222810const char kPrivacySandboxAdsAPIsOverrideName[] = "Privacy Sandbox Ads APIs";
2811const char kPrivacySandboxAdsAPIsOverrideDescription[] =
Nan Lin066a81a2022-04-20 18:46:542812 "Enables Privacy Sandbox APIs: Attribution Reporting, Fledge, Topics, "
Alex Turner64f3bef2022-09-09 18:56:582813 "Fenced Frames, Shared Storage, Private Aggregation, and their associated "
2814 "features.";
John Delaney1d6e4b5c2022-03-25 02:19:222815
Theodore Olsauskas-Warren474cdb52023-01-04 10:16:342816const char kPrivacySandboxSettings4Name[] = "Privacy Sandbox Settings V4";
2817const char kPrivacySandboxSettings4Description[] =
2818 "Enables updated Privacy Sandbox UI";
2819
Alex Turnerb6d89fa2022-10-12 18:33:572820const char kPrivateAggregationDeveloperModeName[] =
2821 "Private Aggregation developer mode";
2822const char kPrivateAggregationDeveloperModeDescription[] =
2823 "Enables the developer mode for the Private Aggregation API. This removes "
2824 "all reporting delays. Only works if the Private Aggregation API is "
2825 "already enabled.";
Alex Turner2d504952022-09-21 23:56:492826
Mohsen Izadi93faac12017-07-29 04:45:152827const char kPullToRefreshName[] = "Pull-to-refresh gesture";
2828const char kPullToRefreshDescription[] =
2829 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:012830const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:152831
Finnur Thorarinssonfb625e12022-09-06 17:22:532832const char kPWAsDefaultOfflinePageName[] = "Default offline page for PWAs";
2833const char kPWAsDefaultOfflinePageDescription[] =
2834 "Shows customised default offline page when web app is offline.";
2835
Finnur Thorarinsson528355742022-03-07 10:57:012836const char kPwaUpdateDialogForAppIconName[] =
2837 "Enable PWA install update dialog for icon changes";
2838const char kPwaUpdateDialogForAppIconDescription[] =
2839 "Enable a confirmation dialog that shows up when a PWA changes its icon";
2840
Rakina Zata Amnibd37a572023-06-14 09:58:162841const char kRenderDocumentName[] = "Enable RenderDocument";
2842const char kRenderDocumentDescription[] =
2843 "Enable swapping RenderFrameHosts on same-site navigations";
2844
Brett Wilsonecb80982017-07-12 20:34:512845const char kQuicName[] = "Experimental QUIC protocol";
2846const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
2847
Matthew Mourgos467fb1e2023-04-26 21:28:302848extern const char kQuickAppAccessTestUIName[] =
2849 "Internal test: quick app access";
2850extern const char kQuickAppAccessTestUIDescription[] =
2851 "Show an app in the quick app access area at the start of the session";
2852
Jiahe Zhangc3577e332022-06-22 11:20:382853const char kQuickIntensiveWakeUpThrottlingAfterLoadingName[] =
2854 "Quick intensive throttling after loading";
2855const char kQuickIntensiveWakeUpThrottlingAfterLoadingDescription[] =
2856 "For pages that are loaded when backgrounded, activates intensive "
Jiahe Zhang498669852022-12-12 17:21:102857 "throttling after 1 minute instead of the default 5 minutes. Intensive "
Jiahe Zhangc3577e332022-06-22 11:20:382858 "throttling will limit wake ups, from setTimeout and setInterval tasks "
2859 "with a high nesting level and delayed scheduler.postTask tasks, to 1 per "
2860 "minute. See https://chromestatus.com/feature/5580139453743104 for more "
2861 "info.";
2862
Rohit Agarwal5e1c17fc2023-02-03 11:44:152863extern const char kQuickDeleteForAndroidName[] = "Enable quick delete";
2864extern const char kQuickDeleteForAndroidDescription[] =
2865 "When enabled, a new quick delete option appears in the three dots menu, "
2866 "allowing users to quickly delete their last 15 mins of data.";
2867
Yulun Wuc7439a652021-06-18 17:24:182868const char kSettingsAppNotificationSettingsName[] =
2869 "Split notification permission settings";
2870const char kSettingsAppNotificationSettingsDescription[] =
2871 "Remove per-app notification permissions settings from the quick settings "
2872 "menu. Notification permission settings will be split between the "
2873 "lacros-chrome browser's notification permission page "
2874 "and the ChromeOS settings app.";
2875
Alan Cutter20fd08f2020-12-01 13:39:162876const char kRecordWebAppDebugInfoName[] = "Record web app debug info";
2877const char kRecordWebAppDebugInfoDescription[] =
2878 "Enables recording additional web app related debugging data to be "
Alan Cutter919b4592021-07-08 05:50:442879 "displayed in: chrome://web-app-internals";
Alan Cutter20fd08f2020-12-01 13:39:162880
Victor Tan0e75ea52022-08-12 16:46:282881const char kReduceAcceptLanguageName[] =
2882 "Reduce Accept-Language request header";
2883const char kReduceAcceptLanguageDescription[] =
2884 "Reduce the amount of information available in the Accept-Language request "
2885 "header. See https://github.com/Tanych/accept-language for more info.";
2886
James Hollyer6e5f5c32020-07-27 21:18:102887const char kRestrictGamepadAccessName[] = "Restrict gamepad access";
2888const char kRestrictGamepadAccessDescription[] =
Charlie Hudb284b3f2021-03-19 19:52:222889 "Enables Permissions Policy and Secure Context restrictions on the Gamepad "
2890 "API";
James Hollyer6e5f5c32020-07-27 21:18:102891
Zoraiz Naeem82fa01072022-06-14 20:13:092892const char kRoundedDisplay[] = "Rounded display";
2893const char kRoundedDisplayDescription[] =
2894 "Enables rounded corners for the display";
2895
Zoraiz Naeem056fe4b2023-05-23 00:35:382896const char kRoundedWindows[] = "Use rounded windows";
2897const char kRoundedWindowsDescription[] =
2898 "Specifies the radius of rounded windows in DIPs (Device Independent "
2899 "Pixels)";
2900
Dominic Farolino0e1f9a1a2020-11-25 23:25:002901const char kMBIModeName[] = "MBI Scheduling Mode";
2902const char kMBIModeDescription[] =
2903 "Enables independent agent cluster scheduling, via the "
2904 "AgentSchedulingGroup infrastructure.";
2905
Eduard Hez0141dce2022-09-22 11:46:502906const char kSafetyCheckNotificationPermissionsName[] =
2907 "Permission Module for notifications in Safety Check";
2908const char kSafetyCheckNotificationPermissionsDescription[] =
2909 "When enabled, adds the notification permission module to Safety Check on "
2910 "desktop. The module will be shown depending on the browser state.";
2911
2912const char kSafetyCheckUnusedSitePermissionsName[] =
2913 "Permission Module for unused sites in Safety Check";
2914const char kSafetyCheckUnusedSitePermissionsDescription[] =
2915 "When enabled, adds the unused sites permission module to Safety Check on "
2916 "desktop. The module will be shown depending on the browser state.";
Side Yilmazcdd69f782022-07-22 08:05:302917
Side Yilmaz468cad22023-05-10 10:43:062918const char kSafetyHubName[] = "Safety Hub";
2919const char kSafetyHubDescription[] =
2920 "When enabled, Safety Hub will be visible in settings.";
2921
Andrew Pantera67b07b42022-12-06 19:32:002922const char kSameAppWindowCycleName[] = "Cros Labs: Same App Window Cycling";
2923const char kSameAppWindowCycleDescription[] =
2924 "Use Alt+` to cycle through the windows of the active application.";
2925
Dylan Cutlerc2988fe2021-08-05 14:24:372926const char kPartitionedCookiesName[] = "Partitioned cookies";
2927const char kPartitionedCookiesDescription[] =
2928 "Controls if the Partitioned cookie attribute is enabled.";
2929
Nathan Eliason320cf312022-07-26 23:02:322930const char kThirdPartyStoragePartitioningName[] =
2931 "Experimental third-party storage partitioning.";
2932const char kThirdPartyStoragePartitioningDescription[] =
2933 "Enables partitioning of third-party storage by top-level site. "
2934 "Note: this is under active development and may result in unexpected "
2935 "behavior. Please file bugs at https://bugs.chromium.org/p/chromium/issues/"
2936 "entry?labels=StoragePartitioning-trial-bugs&components=Blink%3EStorage.";
2937
Jerry Liu3c11fe892023-03-20 21:00:502938const char kScreenSaverDurationName[] = "Screen saver duration settings";
2939const char kScreenSaverDurationDescription[] =
2940 "Allow users to customize screen saver running time.";
2941
Ilkin Safarli2692d5d12022-12-09 00:03:212942const char kScreenSaverPreviewName[] = "Screen saver preview";
2943const char kScreenSaverPreviewDescription[] =
2944 "Enables the screen saver preview feature which allows the users to "
2945 "preview current screen saver.";
2946
Elaine Chien2b731c82021-01-28 17:50:562947const char kScrollableTabStripFlagId[] = "scrollable-tabstrip";
Taylor Bergquist6e2cbe32021-02-03 21:46:142948const char kScrollableTabStripName[] = "Tab Scrolling";
Charlene Yan0ccd7f52019-04-12 23:20:592949const char kScrollableTabStripDescription[] =
Taylor Bergquist6e2cbe32021-02-03 21:46:142950 "Enables tab strip to scroll left and right when full.";
Charlene Yan0ccd7f52019-04-12 23:20:592951
David Pennington423db8f2022-10-24 22:30:042952const char kTabScrollingButtonPositionFlagId[] =
2953 "tab-scrolling-button-position";
2954const char kTabScrollingButtonPositionName[] = "Tab Scrolling Buttons";
2955const char kTabScrollingButtonPositionDescription[] =
2956 "Enables buttons on the tab strip to scroll left and right when full";
2957
Shibalik Mohapatra9a31f7d32022-10-26 23:53:592958const char kScrollableTabStripWithDraggingFlagId[] =
2959 "scrollable-tabstrip-with-dragging";
2960const char kScrollableTabStripWithDraggingName[] =
2961 "Tab Scrolling With Dragging";
2962const char kScrollableTabStripWithDraggingDescription[] =
2963 "Scrolls the tabstrip while dragging tabs towards the end of the visible "
2964 "view.";
2965
David Pennington02c635e2022-11-18 01:03:452966const char kScrollableTabStripOverflowFlagId[] = "scrollable-tabstrip-overflow";
2967const char kScrollableTabStripOverflowName[] =
2968 "Tab Scrolling Overflow Indicator";
2969const char kScrollableTabStripOverflowDescription[] =
2970 "Choices for overflow indicators shown when the tabstrip is in scrolling "
2971 "mode.";
2972
Taylor Bergquist9adeb292022-08-25 20:33:082973const char kSplitTabStripName[] = "Split TabStrip";
2974const char kSplitTabStripDescription[] =
2975 "Splits pinned and unpinned tabs into separate TabStrips under the hood. "
2976 "Pure refactoring, no user-visible behavioral changes are included.";
2977
David Bokanebe23cc52020-05-11 18:20:462978const char kScrollUnificationName[] = "Scroll Unification";
2979const char kScrollUnificationDescription[] =
2980 "Refactoring project that eliminates scroll handling code from Blink. "
2981 "Does not affect behavior or performance.";
2982
Yulun Wu04255512022-02-15 01:34:152983extern const char kSearchResultInlineIconName[] = "Search Result Inline Icons";
2984extern const char kSearchResultInlineIconDescription[] =
2985 "Show iconified text and vector icons "
2986 "in launcher search results.";
2987
Yulun Wu1cd0faa2022-03-03 06:59:212988extern const char kDynamicSearchUpdateAnimationName[] =
2989 "Dynamic Search Result Update Animation";
2990extern const char kDynamicSearchUpdateAnimationDescription[] =
2991 "Dynamically adjust the search result update animation when those update "
2992 "animations are preempted. Shortened animation durations configurable "
2993 "(unit: milliseconds).";
2994
Rouslan Solomakhine73fa7852020-08-28 10:33:462995const char kSecurePaymentConfirmationDebugName[] =
2996 "Secure Payment Confirmation Debug Mode";
2997const char kSecurePaymentConfirmationDebugDescription[] =
2998 "This flag removes the restriction that PaymentCredential in WebAuthn and "
2999 "secure payment confirmation in PaymentRequest API must use user verifying "
3000 "platform authenticators.";
3001
Victor Hugo Vianna Silvaf0a44002022-02-16 10:38:003002const char kSendTabToSelfSigninPromoName[] = "Send tab to self sign-in promo";
3003const char kSendTabToSelfSigninPromoDescription[] =
3004 "Enables a sign-in promo if the user attempts to share a tab while being "
3005 "signed out";
3006
Marlon Faceyfce1a9e2022-03-31 23:48:063007const char kSidePanelJourneysFlagId[] = "side-panel-journeys";
3008const char kSidePanelJourneysName[] = "Side panel journeys";
3009const char kSidePanelJourneysDescription[] =
3010 "Enables Journeys within the side panel.";
3011
Marlon Facey41373d72b2022-10-11 02:34:093012const char kSidePanelJourneysQuerylessFlagId[] =
3013 "side-panel-journeys-queryless";
3014const char kSidePanelJourneysQuerylessName[] = "Side panel journeys queryless";
3015const char kSidePanelJourneysQuerylessDescription[] =
3016 "Enables Journeys queryless view within the side panel.";
3017
Kyle Milkacf3aa6e12021-07-28 00:34:023018const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots";
3019const char kSharingDesktopScreenshotsDescription[] =
3020 "Enables taking"
3021 " screenshots from the desktop sharing hub.";
3022
Yulun Wuee444262023-01-31 22:40:523023const char kShelfStackedHotseatName[] = "Shelf Stacked Hotseat";
3024const char kShelfStackedHotseatDescription[] =
3025 "Stack the hotseat app bar above the shelf button panels/system tray when "
3026 "there is not enough space for the app bar.";
3027
Brett Wilsonecb80982017-07-12 20:34:513028const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
3029const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:383030 "Annotates web forms with Autofill signatures as HTML attributes. Also "
3031 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:513032
3033const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
3034const char kShowAutofillTypePredictionsDescription[] =
3035 "Annotates web forms with Autofill field type predictions as placeholder "
3036 "text.";
3037
Lei Zhang1a6fd01b2021-03-24 17:03:483038const char kShowPerformanceMetricsHudName[] = "Show performance metrics in HUD";
3039const char kShowPerformanceMetricsHudDescription[] =
Weiliang Chene39e7652020-11-18 05:30:153040 "Display the performance metrics of current page in a heads up display on "
3041 "the page.";
3042
pwarren878671672019-12-13 19:18:163043const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
3044const char kShowOverdrawFeedbackDescription[] =
3045 "Visualize overdraw by color-coding elements based on if they have other "
3046 "elements drawn underneath.";
3047
Lukasz Anforowiczd2e16e62019-03-28 19:06:593048const char kIsolateOriginsName[] = "Isolate additional origins";
3049const char kIsolateOriginsDescription[] =
3050 "Requires dedicated processes for an additional set of origins, "
3051 "specified as a comma-separated list.";
3052
Mike West6b2bd752020-12-02 06:36:593053const char kIsolationByDefaultName[] =
3054 "Change web-facing behaviors that prevent origin-level isolation";
3055const char kIsolationByDefaultDescription[] =
3056 "Change several web APIs that make it difficult to isolate origins into "
3057 "distinct processes. While these changes will ideally become new default "
3058 "behaviors for the web, this flag is likely to break your experience on "
3059 "sites you visit today.";
3060
Lukasz Anforowicz738a88d2018-11-05 19:19:343061const char kSiteIsolationOptOutName[] = "Disable site isolation";
3062const char kSiteIsolationOptOutDescription[] =
3063 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:573064 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
3065 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:223066 "isolation is force-enabled using a command line switch or using an "
3067 "enterprise policy. "
3068 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:573069 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:343070const char kSiteIsolationOptOutChoiceDefault[] = "Default";
3071const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:513072
Sunny Sachanandaniad91d1a2023-05-18 23:31:313073const char kSkiaGraphiteName[] = "Skia Graphite";
3074const char kSkiaGraphiteDescription[] =
3075 "Enable Skia Graphite. This will use the Dawn backend by default, but can "
3076 "be overridden with command line flags for testing on non-official "
3077 "developer builds. See --skia-graphite-backend flag in gpu_switches.h.";
3078
Brett Wilsonecb80982017-07-12 20:34:513079const char kSmoothScrollingName[] = "Smooth Scrolling";
3080const char kSmoothScrollingDescription[] =
3081 "Animate smoothly when scrolling page content.";
3082
shivanigithub75489e352021-02-22 19:24:303083const char kSplitCacheByNetworkIsolationKeyName[] = "HTTP Cache Partitioning";
3084const char kSplitCacheByNetworkIsolationKeyDescription[] =
3085 "Partitions the HTTP Cache by (top-level site, current-frame site) to "
3086 "disallow cross-site tracking.";
3087
Lei Zhang507fffd2020-01-29 23:47:543088const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation";
3089const char kStrictOriginIsolationDescription[] =
W. James MacLeanf79c97e2019-05-02 20:35:463090 "Experimental security mode that strengthens the site isolation policy. "
3091 "Controls whether site isolation should use origins instead of scheme and "
3092 "eTLD+1.";
3093
Brandon Maslenda12cf82019-08-23 20:54:183094const char kStorageAccessAPIName[] = "Storage Access API";
3095const char kStorageAccessAPIDescription[] =
3096 "Enables the Storage Access API, allowing websites to request storage "
3097 "access when it would otherwise be restricted.";
3098
Lexi Stavrakos094fd642020-06-17 23:26:433099const char kStoragePressureEventName[] = "Enable storage pressure Event";
3100const char kStoragePressureEventDescription[] =
3101 "If enabled, Chrome will dispatch a DOM event, informing applications "
3102 "about storage pressure (low disk space)";
3103
Brett Wilsonecb80982017-07-12 20:34:513104const char kSuggestionsWithSubStringMatchName[] =
3105 "Substring matching for Autofill suggestions";
3106const char kSuggestionsWithSubStringMatchDescription[] =
3107 "Match Autofill suggestions based on substrings (token prefixes) rather "
3108 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:343109
Irem Uguza84737922022-05-19 09:37:153110const char kSupportTool[] = "Support Tool";
3111const char kSupportToolDescription[] =
3112 "Support Tool collects and exports logs to help debugging the issues. It's"
3113 " available in chrome://support-tool.";
3114
Irem Uguz1eca96212023-04-24 14:04:153115const char kSupportToolCopyTokenButton[] = "Support Tool Copy Token Button";
3116const char kSupportToolCopyTokenButtonDescription[] =
3117 "Enables the copy token button on Support Tool URL generation page.";
3118
Yumin Su90c764de2022-09-28 19:56:153119const char kSupportToolScreenshot[] = "Support Tool Screenshot";
3120const char kSupportToolScreenshotDescription[] =
3121 "Enables the Support Tool to capture and include a screenshot in the "
3122 "exported packet.";
3123
Patrick Nolandfa5abf92022-02-02 20:26:133124const char kSuppressToolbarCapturesName[] = "Suppress Toolbar Captures";
3125const char kSuppressToolbarCapturesDescription[] =
3126 "Suppress Toolbar Captures except when certain properties change.";
3127
Alexander Tekle629b1be2022-12-05 23:55:123128const char kSyncAutofillWalletUsageDataName[] =
3129 "Sync Autofill Wallet Usage Data";
3130const char kSyncAutofillWalletUsageDataDescription[] =
3131 "When enabled, allows syncing of the autofill wallet usage data type.";
3132
Marc Treibb9d8ed802022-07-05 15:15:493133const char kSyncEnableHistoryDataTypeName[] = "Enable History sync data type";
3134const char kSyncEnableHistoryDataTypeDescription[] =
3135 "Enables the History sync data type instead of TypedURLs";
3136
Brett Wilsonecb80982017-07-12 20:34:513137const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
3138const char kSyncSandboxDescription[] =
3139 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:343140
Mikel Astiz850b0fe2021-06-16 09:47:273141const char kSyncTrustedVaultPassphrasePromoName[] =
3142 "Enable promos for sync trusted vault passphrase.";
3143const char kSyncTrustedVaultPassphrasePromoDescription[] =
3144 "Enables promos for an experimental sync passphrase type, referred to as "
3145 "trusted vault.";
3146
Joe Downing8cbbc192018-05-14 17:37:073147const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
3148const char kSystemKeyboardLockDescription[] =
3149 "Enables websites to use the keyboard.lock() API to intercept system "
3150 "keyboard shortcuts and have the events routed directly to the website "
3151 "when in fullscreen mode.";
3152
Hongyu Long3bd31e52022-11-21 20:08:303153const char kSystemSoundsName[] = "Power Sounds";
3154const char kSystemSoundsDescription[] =
3155 "Enable device charging and low battery warning sounds.";
3156
Ahmed Mehfoozf719a672020-12-17 23:32:523157const char kStylusBatteryStatusName[] =
3158 "Show stylus battery stylus in the stylus tools menu";
3159const char kStylusBatteryStatusDescription[] =
3160 "Enables viewing the current stylus battery level in the stylus tools "
3161 "menu.";
3162
Ranjith Kagathi Anandad13a1a72023-05-20 00:28:303163const char kTabDragDropName[] = "Tab Drag and Drop";
3164const char kTabDragDropDescription[] =
3165 "Enables Tab drag and drop UI to move tab across windows.";
3166
Matt Simmons1fd0c9f2019-04-15 19:08:223167const char kTabEngagementReportingName[] = "Tab Engagement Metrics";
3168const char kTabEngagementReportingDescription[] =
3169 "Tracks tab engagement and lifetime metrics.";
3170
Yusuf Ozuysal67f05a02019-02-15 19:30:523171const char kTabGridLayoutAndroidName[] = "Tab Grid Layout";
3172const char kTabGridLayoutAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:463173 "Allows users to see their tabs in a grid layout in the tab switcher on "
3174 "phones.";
Yusuf Ozuysal67f05a02019-02-15 19:30:523175
Mei Liang6b296982021-10-06 22:49:043176const char kCommerceDeveloperName[] = "Commerce developer mode";
3177const char kCommerceDeveloperDescription[] =
3178 "Allows users in the allowlist to enter the developer mode";
3179
Ayman Almadhoun5a72fa742021-04-28 05:49:153180const char kCommerceMerchantViewerAndroidName[] = "Merchant Viewer";
3181const char kCommerceMerchantViewerAndroidDescription[] =
3182 "Allows users to view merchant trust signals on eligible pages.";
3183
Yue Zhange5610102019-11-01 19:46:393184const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation";
3185const char kTabGroupsContinuationAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:463186 "Allows users to access continuation features in Tab Group on phones.";
Yue Zhange5610102019-11-01 19:46:393187
Alyssa Frederickab694f22021-07-02 20:05:393188const char kTabGroupsSaveName[] = "Tab Groups Save";
3189const char kTabGroupsSaveDescription[] =
3190 "Enables users to explicitly save and recall tab groups.";
3191
Eshwar Stalinf1bb82c2023-05-16 17:12:423192const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
3193const char kTabHoverCardImagesDescription[] =
3194 "Shows a preview image in tab hover cards, if tab hover cards are enabled.";
3195
Yuheng Huang59d1d302021-10-29 21:21:143196const char kTabSearchFuzzySearchName[] = "Fuzzy search for Tab Search";
3197const char kTabSearchFuzzySearchDescription[] =
3198 "Enable fuzzy search for Tab Search.";
3199
Wen-Chien Wange893a8d2022-10-05 16:53:253200const char kTextInShelfName[] = "Internal test: text in shelf";
3201const char kTextInShelfDescription[] =
3202 "Extend text in shelf timeout to learn about user education";
3203
Daniele Castagnaac71d892020-07-07 17:30:373204const char kTintCompositedContentName[] = "Tint composited content";
3205const char kTintCompositedContentDescription[] =
3206 "Tint contents composited using Viz with a shade of red to help debug and "
Daniele Castagna0fead93e2018-01-10 20:40:293207 "study overlay support.";
3208
Peter Kastingd77428352018-10-26 15:20:253209const char kTopChromeTouchUiName[] = "Touch UI Layout";
3210const char kTopChromeTouchUiDescription[] =
3211 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:343212
Brett Wilsonecb80982017-07-12 20:34:513213const char kThreadedScrollingName[] = "Threaded scrolling";
3214const char kThreadedScrollingDescription[] =
3215 "Threaded handling of scroll-related input events. Disabling this will "
3216 "force all such scroll events to be handled on the main thread. Note that "
3217 "this can dramatically hurt scrolling performance of most websites and is "
3218 "intended for testing purposes only.";
3219
W. James MacLean17fc6852021-05-06 18:29:293220const char kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesName[] =
3221 "Throttle non-visible cross-origin iframes";
3222const char
3223 kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesDescription[] =
3224 "When enabled, all cross-origin iframes with zero visibility (either "
W. James MacLean86b04de2022-03-25 15:00:033225 "display:none or zero viewport intersection with non-zero area) will be"
3226 " throttled, regardless of whether they are same-process or "
3227 "cross-process. When disabled, throttling for cross-process iframes is "
3228 "the same, but for same-process iframes throttling only occurs when "
3229 "the frame has zero viewport intersection, a non-zero area, and is "
3230 "not display:none.";
W. James MacLean17fc6852021-05-06 18:29:293231
Calder Kitagawae13c23912023-02-08 22:50:283232const char kThumbnailCacheRefactorName[] = "Thumbnail Cache Refactor";
3233const char kThumbnailCacheRefactorDescription[] =
3234 "When enabled the thumbnail cache for Android is updated to improve "
3235 "memory usage and performance.";
3236
W. James MacLean853cd422022-10-17 14:08:583237const char kNewBaseUrlInheritanceBehaviorName[] =
3238 "Enable new base url inheritance behaviors for srcdoc and about:blank";
3239const char kNewBaseUrlInheritanceBehaviorDescription[] =
3240 "When enabled, about:blank and srcdoc frames will use newly proposed "
3241 "behaviors around inheriting their base urls, as discussed on "
3242 "https://crbug.com/1356658. Note: this is automatically enabled when "
3243 "'isolate sandboxed iframes' is enabled.";
3244
Brett Wilsonecb80982017-07-12 20:34:513245const char kTouchDragDropName[] = "Touch initiated drag and drop";
3246const char kTouchDragDropDescription[] =
3247 "Touch drag and drop can be initiated through long press on a draggable "
3248 "element.";
3249
Brett Wilsonecb80982017-07-12 20:34:513250const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
3251const char kTouchSelectionStrategyDescription[] =
3252 "Controls how text selection granularity changes when touch text selection "
3253 "handles are dragged. Non-default behavior is experimental.";
3254const char kTouchSelectionStrategyCharacter[] = "Character";
3255const char kTouchSelectionStrategyDirection[] = "Direction";
3256
Josh Simmons7a8e7a942021-06-19 01:08:563257const char kTranslateAssistContentName[] = "Translate AssistContent";
3258const char kTranslateAssistContentDescription[] =
3259 "Enables populating translate details for the current page in "
3260 "AssistContent.";
3261
Anthony Vallee-Dubois265c5692018-06-01 15:57:143262const char kTranslateForceTriggerOnEnglishName[] =
3263 "Select which language model to use to trigger translate on English "
3264 "content";
3265const char kTranslateForceTriggerOnEnglishDescription[] =
3266 "Force the Translate Triggering on English pages experiment to be enabled "
3267 "with the selected language model active.";
3268
Josh Simmons8c98484872021-05-05 20:50:013269const char kTranslateIntentName[] = "Translate intent";
3270const char kTranslateIntentDescription[] =
3271 "Enables an intent that allows Assistant to initiate a translation of the "
3272 "foreground tab.";
Haohao Wang5b525f722019-05-18 15:37:523273
Mustafa Emre Acerb3aa36a82018-05-22 21:44:053274const char kTreatInsecureOriginAsSecureName[] =
3275 "Insecure origins treated as secure";
3276const char kTreatInsecureOriginAsSecureDescription[] =
3277 "Treat given (insecure) origins as secure origins. Multiple origins can be "
Alan Cutter733ec9a2019-08-27 15:33:133278 "supplied as a comma-separated list. Origins must have their protocol "
3279 "specified e.g. \"http://example.com\". For the definition of secure "
3280 "contexts, see https://w3c.github.io/webappsec-secure-contexts/";
Mustafa Emre Acerb3aa36a82018-05-22 21:44:053281
Sergey Kataevc3be71f12022-11-18 20:11:553282const char kPrivateStateTokensName[] = "Enable Private State Tokens";
3283const char kPrivateStateTokensDescription[] =
3284 "Enables the prototype Private State Token API "
David Van Cleve08c5bc012020-03-26 17:31:463285 "(https://github.com/wicg/trust-token-api).";
3286
Vasilii Sukhanov36365432021-07-02 08:38:213287const char kUnifiedPasswordManagerAndroidName[] =
3288 "Google Mobile Services for passwords";
Friedrich Horschig2683d832021-06-09 15:47:563289const char kUnifiedPasswordManagerAndroidDescription[] =
3290 "Uses Google Mobile Services to store and retrieve passwords."
3291 "Warning: Highly experimental. May lead to loss of passwords and "
3292 "impact performance.";
3293
Maria Kazinova32748352022-09-27 10:34:193294const char kUnifiedPasswordManagerAndroidReenrollmentName[] =
3295 "Automatic reenrollement of users who were evicted from using Google "
3296 "Mobile Services after experiencing errors.";
3297const char kUnifiedPasswordManagerAndroidReenrollmentDescription[] =
3298 "Requires UnifiedPasswordManagerAndroid flag enabled. Allows automatic "
3299 "reenrollment into Google Mobile Services if sync and backend "
3300 "communication work.";
3301
Corentin Wallez6af45da2023-04-28 12:50:543302const char kUnsafeWebGPUName[] = "Unsafe WebGPU Support";
François Beaufortdb160c12019-05-01 06:28:143303const char kUnsafeWebGPUDescription[] =
Corentin Wallez6af45da2023-04-28 12:50:543304 "Convenience flag for WebGPU development. Enables best-effort WebGPU "
3305 "support on unsupported configurations and more! Note that this flag could "
3306 "expose security issues to websites so only use it for your own "
3307 "development.";
François Beaufortdb160c12019-05-01 06:28:143308
Brett Wilsonecb80982017-07-12 20:34:513309const char kUiPartialSwapName[] = "Partial swap";
3310const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
3311
Maksim Sisovdc5d70a2022-11-23 08:03:023312const char kUIEnableSharedImageCacheForGpuName[] = "Shared GPUImageDecodeCache";
3313const char kUIEnableSharedImageCacheForGpuDescription[] =
3314 "Enables shared GPUImageDecodeCache for UI if gpu rasterization is "
3315 "enabled.";
3316
Momoka Yamamotof1accfce2022-10-13 10:00:193317const char kUseNAT64ForIPv4LiteralName[] =
3318 "Use NAT64 translation for IPv4 literals";
3319const char kUseNAT64ForIPv4LiteralDescription[] =
3320 "Enables IPv4 to IPv6 address translation for IPv4 literals when chrome is "
3321 "on an IPv6 only network";
3322
Olesia Marukhnocfcb3882023-06-06 08:55:113323const char kUserBypassUIName[] = "User Bypass UI";
3324const char kUserBypassUIDescription[] = "Enables the User Bypass UI. ";
3325
Caroline Rising19c84902023-02-27 23:46:003326const char kUserNotesSidePanelName[] = "User notes side panel";
3327const char kUserNotesSidePanelDescription[] =
3328 "Enables the user notes feature in the side panel. "
3329 "Only works if Power bookmark backend is also enabled.";
3330
Maria Kazinova58cedc02021-08-02 17:15:113331const char kUsernameFirstFlowFallbackCrowdsourcingName[] =
3332 "Username first flow fallback crowdsourcing";
3333const char kUsernameFirstFlowFallbackCrowdsourcingDescription[] =
3334 "Support of sending additional votes on username first flow i.e. login "
3335 "flows where a user has to type username first on one page and then "
3336 "password on another page. These votes are sent on single password forms "
3337 "and contain information whether a 1-password form follows a 1-text form "
3338 "and the value's type(or pattern) in the latter (e.g. email-like, "
3339 "phone-like, arbitrary string).";
Maria Kazinova85a2ece2021-06-14 19:24:283340
Zentaro Kavanagh892851f2019-05-29 15:13:313341const char kUseSearchClickForRightClickName[] =
3342 "Use Search+Click for right click";
3343const char kUseSearchClickForRightClickDescription[] =
3344 "When enabled search+click will be remapped to right click, allowing "
3345 "webpages and apps to consume alt+click. When disabled the legacy "
3346 "behavior of remapping alt+click to right click will remain unchanged.";
3347
Guoxing Zhao7e129632023-01-25 03:58:553348const char kVideoConferenceName[] = "Enable video conference features";
3349const char kVideoConferenceDescription[] =
3350 "Enables all features for ChromeOS built-in video conferencing UI.";
Guoxing Zhao13538c62022-09-15 06:08:163351
Guoxing Zhao7e129632023-01-25 03:58:553352const char kVcBackgroundReplaceName[] = "Enable vc background replacement";
3353const char kVcBackgroundReplaceDescription[] =
Jim Pollockc74e3822022-10-17 03:56:503354 "Enables background replacement feature for video conferencing on "
3355 "chromebooks. THIS WILL OVERRIDE BACKGROUND BLUR.";
3356
Ard Oerlemansc550dd02023-03-13 10:02:153357const char kVcSegmentationModelName[] = "Use a different segmentation model";
3358const char kVcSegmentationModelDescription[] =
3359 "Allows a different segmentation model to be used for blur and relighting, "
3360 "which may reduce the workload on the GPU.";
3361
Nikolas Bowe2d3e0c52023-05-22 00:20:123362const char kVcLightIntensityName[] = "VC relighting intensity";
3363const char kVcLightIntensityDescription[] =
3364 "Allows different light intenisty to be used for relighting.";
3365
Michael Hablich896d52662017-10-23 15:59:573366const char kV8VmFutureName[] = "Future V8 VM features";
3367const char kV8VmFutureDescription[] =
3368 "This enables upcoming and experimental V8 VM features. "
3369 "This flag does not enable experimental JavaScript features.";
3370
Jeff Chen64a0458a2022-01-13 17:12:173371const char kGlobalVaapiLockName[] = "Global lock on the VA-API wrapper.";
3372const char kGlobalVaapiLockDescription[] =
3373 "Enable or disable the global VA-API lock for platforms and paths that "
3374 "support controlling this.";
3375
Hirokazu Honda22eb73a2021-10-29 03:58:383376const char kVp9kSVCHWDecodingName[] =
3377 "Hardware decode acceleration for k-SVC VP9";
3378const char kVp9kSVCHWDecodingDescription[] =
3379 "Enable or disable k-SVC VP9 hardware decode acceleration";
3380
Brett Wilsonecb80982017-07-12 20:34:513381const char kWalletServiceUseSandboxName[] =
3382 "Use Google Payments sandbox servers";
3383const char kWalletServiceUseSandboxDescription[] =
3384 "For developers: use the sandbox service for Google Payments API calls.";
3385
Simon Hanglf8a8cf52023-05-16 19:58:103386const char kTaskManagerEndProcessDisabledForExtensionName[] =
3387 "Disable extension process termination through task manager";
3388const char kTaskManagerEndProcessDisabledForExtensionDescription[] =
3389 "Allows admnistrators to configure managed devices to prevent users from "
3390 "closing terminating the process for certain extensions";
3391
Colin Kincaid292cfc42022-05-03 19:17:073392const char kWallpaperFastRefreshName[] =
3393 "Enable shortened wallpaper daily refresh interval for manual testing";
3394const char kWallpaperFastRefreshDescription[] =
3395 "Allows developers to see a new wallpaper once every ten seconds rather "
3396 "than once per day when using the daily refresh feature.";
3397
Jerry Liua21b61622022-12-20 00:52:123398const char kWallpaperGooglePhotosSharedAlbumsName[] =
3399 "Enable Google Photos shared albums for wallpaper";
3400const char kWallpaperGooglePhotosSharedAlbumsDescription[] =
3401 "Allow users to set shared Google Photos albums as the source for their "
3402 "wallpaper.";
3403
Sean Kau1d8791e32021-11-08 22:51:543404const char kWallpaperPerDeskName[] =
3405 "Enable setting different wallpapers per desk";
3406const char kWallpaperPerDeskDescription[] =
3407 "Allow users to set different wallpapers on each of their active desks";
3408
François Beaufort7aace812022-02-02 13:57:173409const char kWebBluetoothName[] = "Web Bluetooth";
3410const char kWebBluetoothDescription[] =
3411 "Enables the Web Bluetooth API on platforms without official support";
3412
Ovidio Henriquez3d729f62020-02-07 00:43:293413const char kWebBluetoothNewPermissionsBackendName[] =
3414 "Use the new permissions backend for Web Bluetooth";
3415const char kWebBluetoothNewPermissionsBackendDescription[] =
3416 "Enables the new permissions backend for Web Bluetooth. This will enable "
François Beaufort2b916752021-12-06 13:05:173417 "persistent storage of device permissions and Web Bluetooth features such "
3418 "as BluetoothDevice.watchAdvertisements() and Bluetooth.getDevices()";
Ovidio Henriquez3d729f62020-02-07 00:43:293419
Klaus Weidner90b78032022-06-01 22:48:333420const char kWebContentsCaptureHiDpiName[] = "HiDPI Tab Capture";
3421const char kWebContentsCaptureHiDpiDescription[] =
3422 "Enables HiDPI rendering for tab capture if the displayed content's "
3423 "resolution is low compared to the capture size. This improves "
3424 "legibility for viewers with higher-resolution screens.";
3425
Reilly Grant679f59d2021-09-29 18:39:383426const char kWebMidiName[] = "Web MIDI";
3427const char kWebMidiDescription[] =
3428 "Enables the implementation of the Web MIDI API. When disabled the "
3429 "interface will still be exposed by Blink.";
3430
Ayu Ishiidbdd5c92020-03-20 23:40:523431const char kWebOtpBackendName[] = "Web OTP";
3432const char kWebOtpBackendDescription[] =
3433 "Enables Web OTP API that uses the specified backend.";
Yi Gu13cc7242020-12-10 03:23:373434const char kWebOtpBackendSmsVerification[] = "Code Browser API";
3435const char kWebOtpBackendUserConsent[] = "User Consent API";
3436const char kWebOtpBackendAuto[] = "Automatically select the backend";
Ayu Ishiidbdd5c92020-03-20 23:40:523437
Kenneth Russell08c7dc32021-07-09 08:06:593438const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions";
3439const char kWebglDeveloperExtensionsDescription[] =
3440 "Enabling this option allows web applications to access WebGL extensions "
3441 "intended only for use during development time.";
3442
Brett Wilsonecb80982017-07-12 20:34:513443const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
3444const char kWebglDraftExtensionsDescription[] =
3445 "Enabling this option allows web applications to access the WebGL "
Kenneth Russell08c7dc32021-07-09 08:06:593446 "extensions that are still in draft status.";
Brett Wilsonecb80982017-07-12 20:34:513447
Brandon Jones2ebd9a62022-06-15 19:55:593448const char kWebGpuDeveloperFeaturesName[] = "WebGPU Developer Features";
3449const char kWebGpuDeveloperFeaturesDescription[] =
3450 "Enables web applications to access WebGPU features intended only for use "
3451 "during development.";
3452
Danyao Wang47a0f312019-05-09 20:52:243453const char kWebPaymentsExperimentalFeaturesName[] =
3454 "Experimental Web Payments API features";
3455const char kWebPaymentsExperimentalFeaturesDescription[] =
3456 "Enable experimental Web Payments API features";
3457
Rouslan Solomakhin8c770f582023-01-03 22:23:513458const char kIgnoreCSPInWebPaymentAPIName[] = "Ignore CSP in Web Payment API";
3459const char kIgnoreCSPInWebPaymentAPIDescription[] =
3460 "Temporarily disable enforcing Content Security Policy connect-src "
3461 "directive for Web Payment API when fetching manifest files, app icons, "
3462 "and service worker JavaScript files.";
Rouslan Solomakhin6cc11082022-08-09 14:02:573463
Rouslan Solomakhin1b63d252023-01-04 15:36:333464const char kAddIdentityInCanMakePaymentEventName[] =
3465 "Add identity to canmakepayment event";
3466const char kAddIdentityInCanMakePaymentEventDescription[] =
3467 "Temporarily re-enable the deprecated feature of sharing the merchant and "
3468 "user identity with the payment app when the merchant checks whether the "
3469 "payment app can make payments.";
Rouslan Solomakhinfb386b12022-06-24 01:41:203470
Liquan (Max) Gu8fcb9192020-05-20 16:22:183471const char kAppStoreBillingDebugName[] =
3472 "Web Payments App Store Billing Debug Mode";
3473const char kAppStoreBillingDebugDescription[] =
3474 "App-store purchases (e.g., Google Play Store) within a TWA can be "
3475 "requested using the Payment Request API. This flag removes the "
3476 "restriction that the TWA has to be installed from the app-store.";
3477
Qingsi Wangec2dbf942018-11-03 05:33:043478const char kWebrtcHideLocalIpsWithMdnsName[] =
3479 "Anonymize local IPs exposed by WebRTC.";
3480const char kWebrtcHideLocalIpsWithMdnsDecription[] =
3481 "Conceal local IP addresses with mDNS hostnames.";
3482
Alessio Bazzica570a4f62022-10-17 11:16:303483const char kWebRtcAllowInputVolumeAdjustmentName[] =
3484 "Allow WebRTC to adjust the input volume.";
3485const char kWebRtcAllowInputVolumeAdjustmentDescription[] =
3486 "Allow the Audio Processing Module in WebRTC to adjust the input volume "
3487 "during a real-time call. Disable if microphone muting or clipping issues "
3488 "are observed when the browser is running and used for a real-time call. "
3489 "This flag is experimental and may be removed at any time.";
3490
Alessio Bazzica76a45022022-12-06 17:13:173491const char kWebRtcApmDownmixCaptureAudioMethodName[] =
3492 "WebRTC downmix capture audio method.";
3493const char kWebRtcApmDownmixCaptureAudioMethodDescription[] =
3494 "Override the method that the Audio Processing Module in WebRTC uses to "
3495 "downmix the captured audio to mono (when needed) during a real-time call. "
3496 "This flag is experimental and may be removed at any time.";
3497
Brett Wilsonecb80982017-07-12 20:34:513498const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
3499const char kWebrtcHwDecodingDescription[] =
3500 "Support in WebRTC for decoding video streams using platform hardware.";
3501
3502const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
3503const char kWebrtcHwEncodingDescription[] =
3504 "Support in WebRTC for encoding video streams using platform hardware.";
3505
Elad Alon85e0d0be2018-06-26 10:38:373506const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
3507const char kWebRtcRemoteEventLogDescription[] =
3508 "Allow collecting WebRTC event logs and uploading them to Crash. "
3509 "Please note that, even if enabled, this will still require "
3510 "a policy to be set, for it to have an effect.";
3511
Sergey Silkinc33244f2020-01-31 17:21:303512const char kWebrtcUseMinMaxVEADimensionsName[] =
3513 "WebRTC Min/Max Video Encode Accelerator dimensions";
3514const char kWebrtcUseMinMaxVEADimensionsDescription[] =
3515 "When enabled, WebRTC will only use the Video Encode Accelerator for "
3516 "video resolutions inside those published as supported.";
3517
Reilly Grant3c560fa2021-09-25 01:27:253518const char kWebUsbDeviceDetectionName[] =
3519 "Automatic detection of WebUSB-compatible devices";
3520const char kWebUsbDeviceDetectionDescription[] =
3521 "When enabled, the user will be notified when a device which advertises "
3522 "support for WebUSB is connected. Disable if problems with USB devices are "
3523 "observed when the browser is running.";
3524
Alex Cooper01f110e2020-01-08 02:24:163525const char kWebXrForceRuntimeName[] = "Force WebXr Runtime";
3526const char kWebXrForceRuntimeDescription[] =
3527 "Force the browser to use a particular runtime, even if it would not "
3528 "usually be enabled or would otherwise not be selected based on the "
3529 "attached hardware.";
3530
3531const char kWebXrRuntimeChoiceNone[] = "No Runtime";
Alexander Cooper98a8edb2023-05-23 18:04:053532const char kWebXrRuntimeChoiceCardboard[] = "Cardboard";
3533const char kWebXrRuntimeChoiceGVR[] = "Google VR Services";
Alex Cooper01f110e2020-01-08 02:24:163534const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR";
Alex Cooper01f110e2020-01-08 02:24:163535
Will Cassellaa1a4d1112019-12-27 20:52:313536const char kWebXrIncubationsName[] = "WebXR Incubations";
3537const char kWebXrIncubationsDescription[] =
3538 "Enables experimental features for WebXR.";
Piotr Bialeckid77fb9c2019-04-26 17:06:243539
Brett Wilsonecb80982017-07-12 20:34:513540const char kZeroCopyName[] = "Zero-copy rasterizer";
3541const char kZeroCopyDescription[] =
3542 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:343543
Peng Huang70021682019-09-18 19:42:283544const char kEnableVulkanName[] = "Vulkan";
Sean Gilhulyab1dbc62020-01-28 22:49:473545const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend.";
Peng Huang70021682019-09-18 19:42:283546
Cheick Cisseb8f706032021-06-22 01:50:473547const char kSharedHighlightingAmpName[] = "Shared Highlighting for AMP Viewers";
3548const char kSharedHighlightingAmpDescription[] =
3549 "Enables Shared Highlighting for AMP Viwers.";
3550
Cheick Cisse006ab4e12022-06-03 17:30:053551const char kSharedHighlightingManagerName[] = "Refactoring Shared Highlighting";
3552const char kSharedHighlightingManagerDescription[] =
3553 "Refactors Shared Highlighting by centralizing the IPC calls in a Manager.";
3554
Mario Bianucci3be046eb2021-02-26 18:41:483555const char kDraw1PredictedPoint12Ms[] = "1 point 12ms ahead.";
3556const char kDraw2PredictedPoints6Ms[] = "2 points, each 6ms ahead.";
3557const char kDraw1PredictedPoint6Ms[] = "1 point 6ms ahead.";
3558const char kDraw2PredictedPoints3Ms[] = "2 points, each 3ms ahead.";
Mario Bianucci3be046eb2021-02-26 18:41:483559const char kDrawPredictedPointsDescription[] =
3560 "Draw predicted points when using the delegated ink trails API. Requires "
3561 "experimental web platform features to be enabled.";
3562const char kDrawPredictedPointsName[] = "Draw predicted delegated ink points";
3563
Daniel Vogelheim236d9a82021-04-01 15:40:533564const char kSanitizerApiName[] = "Sanitizer API";
3565const char kSanitizerApiDescription[] =
3566 "Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api";
3567
Peng Huang723f26e2021-06-04 01:55:103568const char kUsePassthroughCommandDecoderName[] =
3569 "Use passthrough command decoder";
3570const char kUsePassthroughCommandDecoderDescription[] =
3571 "Use chrome passthrough command decoder instead of validating command "
3572 "decoder.";
3573
Saifuddin Hitawala74627fe2023-02-14 20:25:453574const char kPassthroughYuvRgbConversionName[] =
3575 "Enable video YUV <-> RGB conversion through passthrough command decoder";
3576const char kPassthroughYuvRgbConversionDescription[] =
3577 "Enable YUV to RGB and RGB to YUV conversion for media clients through "
3578 "passthrough command decoder";
3579
Saifuddin Hitawala0c647802023-03-22 21:20:493580const char kUseMultiPlaneFormatForHardwareVideoName[] =
3581 "Enable multi-plane formats for hardware video decoder";
3582const char kUseMultiPlaneFormatForHardwareVideoDescription[] =
3583 "Enable single shared image and mailbox for multi-plane formats for "
3584 "hardware video decoder";
3585
Saifuddin Hitawalae3b5ec82023-03-30 17:08:033586const char kUseMultiPlaneFormatForSoftwareVideoName[] =
3587 "Enable multi-plane formats for software video decoder";
3588const char kUseMultiPlaneFormatForSoftwareVideoDescription[] =
3589 "Enable single shared image and mailbox for multi-plane formats for "
3590 "software video decoder";
3591
Yoshisato Yanagisawa577d82822022-08-17 01:51:103592const char kSkipServiceWorkerFetchHandlerName[] =
3593 "Skip Service Worker Fetch Handler if skippable";
3594const char kSkipServiceWorkerFetchHandlerDescription[] =
3595 "Skips starting the service worker and run the fetch handler if the fetch "
3596 "handler is recognized as skippable.";
3597
Ari Chivukula8edcb692022-03-10 19:22:313598const char kWebSQLAccessName[] = "Allows access to WebSQL APIs";
3599const char kWebSQLAccessDescription[] =
3600 "The WebSQL API is enabled by default, but can be disabled here.";
3601
Vikas Sonif7d55a32023-06-05 18:52:403602const char kUseGpuSchedulerDfsName[] = "Use new gpu scheduler.";
3603const char kUseGpuSchedulerDfsDescription[] =
3604 "Enables using the new gpu "
3605 "scheduler called GpuSchedulerDfs.";
3606
Mustafa Emre Acerc6b51352022-11-18 18:43:513607const char kUseIDNA2008NonTransitionalName[] =
3608 "Enable IDNA 2008 Non-Transitional Mode";
3609const char kUseIDNA2008NonTransitionalDescription[] =
3610 "Enables IDNA 2008 in Non-Transitional Mode in URL processing, allowing "
3611 "deviation characters in domain names.";
3612
Igor Ruvinov3755731f2023-02-17 17:16:243613const char kPolicyMergeMultiSourceName[] =
3614 "Merge policies from multiple sources";
3615const char kPolicyMergeMultiSourceDescription[] =
3616 "Only merge policies that are set from multiple sources. Policies set from "
3617 "a single source will not be treated as merged and will keep their "
3618 "original source.";
3619
James Leeed090a1b2023-03-16 22:51:583620const char kEnableVariationsGoogleGroupFilteringName[] =
3621 "Enables filtering experiments by Google group membership";
3622const char kEnableVariationsGoogleGroupFilteringDescription[] =
3623 "Enables filtering of experiments by Google group membership. This feature "
3624 "is experimental and is used only for dogfooding, and only for users who "
3625 "are signed in and have Chrome Sync enabled.";
3626
Brett Wilsonff596952017-07-14 01:06:553627// Android ---------------------------------------------------------------------
3628
Xiaohan Wang55ae2c012022-01-20 21:49:113629#if BUILDFLAG(IS_ANDROID)
Brett Wilsonff596952017-07-14 01:06:553630
Mark Schillacid9ce86c2021-09-30 16:37:533631const char kAccessibilityPageZoomName[] = "Accessibility Page Zoom";
3632const char kAccessibilityPageZoomDescription[] =
3633 "Whether the UI and underlying code for page zoom should be enabled to"
3634 " allow a user to increase/decrease the web contents zoom factor.";
3635
Amanda Lin Dietzfad213752023-05-16 22:09:573636const char kAccessibilityPerformanceFilteringName[] =
3637 "Accessibility Performance Filtering";
3638const char kAccessibilityPerformanceFilteringDescription[] =
3639 "Enable experimental accessibility filters to improve performance by"
3640 " supporting different levels of the accessibility engine depending on what"
3641 " accessibility services and assistive technologies are running.";
3642
Shakti Sahu1c04a2872021-03-17 16:38:483643const char kAddToHomescreenIPHName[] = "Add to homescreen IPH";
3644const char kAddToHomescreenIPHDescription[] =
3645 " Shows in-product-help messages educating users about add to homescreen "
3646 "option in chrome.";
3647
Vikas Soni5463f1a2020-08-17 22:47:303648const char kAImageReaderName[] = "Android ImageReader";
3649const char kAImageReaderDescription[] =
3650 " Enables MediaPlayer and MediaCodec to use AImageReader on Android. "
3651 " This feature is only available for android P+ devices. Disabling it also "
3652 " disables SurfaceControl.";
3653
Trevor Perrierc1384bb2021-06-04 23:54:033654const char kAndroidForceAppLanguagePromptName[] =
3655 "Force second run app language prompt";
3656const char kAndroidForceAppLanguagePromptDescription[] =
3657 "When enabled the app language prompt to change the UI language will"
3658 "always be shown.";
3659
Vikas Sonif14e32c2020-08-15 06:17:223660const char kAndroidSurfaceControlName[] = "Android SurfaceControl";
3661const char kAndroidSurfaceControlDescription[] =
Vikas Soni5463f1a2020-08-17 22:47:303662 " Enables SurfaceControl to manage the buffer queue for the "
3663 " DisplayCompositor on Android. This feature is only available on "
3664 " android Q+ devices";
Vikas Sonif14e32c2020-08-15 06:17:223665
Sky Malice300d5fc2023-01-12 19:37:333666const char kAndroidImprovedBookmarksName[] = "Android Visual Bookmark Manager";
3667const char kAndroidImprovedBookmarksDescription[] =
3668 "More visual changes to the bookmarks surfaces, with more thumbnails and a "
3669 "focus on search instead of folders/hierarchy";
3670
Shu Yang95506102023-01-11 19:16:323671const char kAnimatedImageDragShadowName[] =
3672 "Enable animated image drag shadow on Android.";
3673const char kAnimatedImageDragShadowDescription[] =
3674 "Animate the shadow image from its original bound to the touch point. "
3675 "Image drag on Android is available when flag touch-drag-and-context-menu "
3676 "is enabled.";
3677
Caitlin Fischer43edd90a2019-05-01 13:24:303678const char kAutofillUseMobileLabelDisambiguationName[] =
3679 "Autofill Uses Mobile Label Disambiguation";
3680const char kAutofillUseMobileLabelDisambiguationDescription[] =
3681 "When enabled, Autofill suggestions' labels are displayed using a "
3682 "mobile-friendly format.";
3683
Gang Wua7bfb5f42021-04-09 18:54:213684const char kAppMenuMobileSiteOptionName[] =
3685 "Show Mobile Site option in app menu";
3686const char kAppMenuMobileSiteOptionDescription[] =
3687 "When enabled, app menu should show 'Mobile site' when showing desktop "
3688 "site, instead of showing 'Desktop Site' with checkbox";
3689
Lijin Shen88a1b422023-03-31 22:08:213690const char kBackGestureActivityTabProviderName[] =
3691 "Back Gesture Refactor (Activity Tab Provider)";
3692const char kBackGestureActivityTabProviderDescription[] =
3693 "When enabled, ChromeTabActivity will use getActivityTabProvider to "
3694 "get current tab, rather than getActivityTab if predictive back gesture"
3695 "is disabled.";
3696
Lijin Shen7c494d72023-01-17 23:54:553697const char kBackGestureRefactorActivityAndroidName[] =
3698 "Back Gesture Refactor (Secondary Activities)";
3699const char kBackGestureRefactorActivityAndroidDescription[] =
3700 "Enable Back Gesture Refactor for Secondary Activities to support in-app "
3701 "activity-to-activity predictive back gestures";
3702
Lijin Shence2f5722022-04-26 23:11:523703const char kBackGestureRefactorAndroidName[] = "Back Gesture Refactor";
3704const char kBackGestureRefactorAndroidDescription[] =
3705 "Enable Back Gesture Refactor.";
3706
Wenyu Fuf929f732022-07-08 19:48:473707const char kCCTBrandTransparencyName[] =
3708 "Chrome Custom Tabs Brand Transparency";
3709const char kCCTBrandTransparencyDescription[] =
3710 "When enabled, CCT will show more Chrome branding information when start, "
3711 "giving user more transparency that the web page is running in Chrome.";
3712
Ramin Halavatiba7ddcc2019-11-13 06:19:283713const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode";
3714const char kCCTIncognitoDescription[] =
3715 "Enables incognito mode for Chrome Custom Tabs, on Android.";
3716
Rohit Agarwalc3973312020-11-18 14:40:233717const char kCCTIncognitoAvailableToThirdPartyName[] =
3718 "Allow third party to open Custom Tabs Incognito mode";
3719const char kCCTIncognitoAvailableToThirdPartyDescription[] =
3720 "Enabling it would allow third party apps to open incognito mode for "
3721 "Chrome Custom Tabs, on Android.";
3722
Jinsuk Kim9d042572023-05-16 03:31:343723const char kCCTPageInsightsHubName[] = "PageInsights Hub";
3724const char kCCTPageInsightsHubDescription[] =
3725 "Show PageInsights Hub on Chrome Custom Tabs.";
3726
Shimi Zhangdabb3c22021-09-16 22:10:253727const char kCCTResizable90MaximumHeightName[] =
3728 "Bottom sheet Custom Tabs maximum height";
3729const char kCCTResizable90MaximumHeightDescription[] =
3730 "When enabled, the bottom sheet Custom Tabs will have maximum height 90% "
3731 "of the screen height, otherwise the maximum height is 100% of the screen "
3732 "height. In both cases, Custom Tabs will yield to the top status bar when "
3733 "at full stop";
Shimi Zhangdabb3c22021-09-16 22:10:253734const char kCCTResizableForThirdPartiesName[] =
3735 "Bottom sheet Custom Tabs (third party)";
3736const char kCCTResizableForThirdPartiesDescription[] =
3737 "Enable bottom sheet Custom Tabs for third party apps.";
Kevin Grosu617332a2022-11-22 23:24:553738const char kCCTResizableSideSheetName[] = "Side sheet Custom Tabs";
3739const char kCCTResizableSideSheetDescription[] =
3740 "Enable side sheet Custom Tabs";
Zach Katzadd35f12023-03-24 19:48:433741const char kCCTResizableSideSheetDiscoverFeedSettingsName[] =
3742 "Discover feed settings Partial Custom Tab";
3743const char kCCTResizableSideSheetDiscoverFeedSettingsDescription[] =
3744 "Enable discover feed settings Partial Custom Tabs";
Zach Katzec1cc2f2023-01-26 01:37:463745const char kCCTResizableSideSheetForThirdPartiesName[] =
3746 "Side sheet Custom Tabs (third party)";
3747const char kCCTResizableSideSheetForThirdPartiesDescription[] =
3748 "Enable side sheet Custom Tabs for third party apps.";
Kevin Grosu617332a2022-11-22 23:24:553749
Zach Katzdc587ef2022-10-28 18:35:263750const char kCCTRetainingStateInMemoryName[] =
3751 "Enable restoring of previous Custom Tab session";
3752const char kCCTRetainingStateInMemoryDescription[] =
3753 "Enables ability to fully restore a recently engaged with Custom Tab.";
Sinan Sahinc04b1c62022-07-01 18:14:023754const char kCCTRealTimeEngagementSignalsName[] =
3755 "Enable CCT real-time engagement signals.";
3756const char kCCTRealTimeEngagementSignalsDescription[] =
3757 "Enables sending real-time engagement signals (e.g. scroll) through "
3758 "CustomTabsCallback.";
Sinan Sahind9fa5c52023-03-02 02:57:043759const char kCCTRealTimeEngagementSignalsAlternativeImplName[] =
3760 "Enable alternative implementation for CCT real-time engagement signals.";
3761const char kCCTRealTimeEngagementSignalsAlternativeImplDescription[] =
3762 "Enables an alternative implementation for sending real-time engagement "
3763 "signals (e.g. scroll) through CustomTabsCallback.";
Sinan Sahinc04b1c62022-07-01 18:14:023764
Tarun Bansal41f3cf22023-04-25 16:16:293765const char kCCTTextFragmentLookupApiEnabledName[] =
3766 "Enable CCT API to lookup text fragments";
3767const char kCCTTextFragmentLookupApiEnabledDescription[] =
3768 "Enable CCT API to lookup text fragments";
3769
Xing Liu1e6b43d2021-03-15 19:26:453770const char kChimeAlwaysShowNotificationDescription[] =
3771 "A debug flag to always show Chime notification after receiving a payload.";
3772const char kChimeAlwaysShowNotificationName[] =
3773 "Always show Chime notification";
3774
3775const char kChimeAndroidSdkDescription[] =
3776 "Enable Chime SDK to receive push notification.";
3777const char kChimeAndroidSdkName[] = "Use Chime SDK";
3778
David Maunder915c7ef2019-09-20 16:22:083779const char kCloseTabSuggestionsName[] = "Suggest to close Tabs";
3780const char kCloseTabSuggestionsDescription[] =
3781 "Suggests to the user to close Tabs that haven't been used beyond a "
3782 "configurable threshold or where duplicates of Tabs exist. "
3783 "The threshold is configurable.";
Richard Knoll368596e52019-08-14 09:16:283784
David Maunder8cf7fd82020-08-20 19:31:543785const char kCriticalPersistedTabDataName[] = "Enable CriticalPersistedTabData";
3786const char kCriticalPersistedTabDataDescription[] =
3787 "A new method of persisting Tab data across restarts has been devised "
3788 "and implemented. This actives the new approach.";
3789
Wenyu Fu54672f42022-09-22 17:51:513790const char kContextMenuPopupForAllScreenSizesName[] =
3791 "Context menu popup for all screen sizes";
3792const char kContextMenuPopupForAllScreenSizesDescription[] =
3793 "When disabled, context menu will be shown as pop-up window only for "
3794 "devices in tablet mode, while shown as a fullscreen dialog for mobile "
3795 "devices; when enabled, context menu will be shown as a pop-up window "
3796 "for all form factors regardless of the screen sizes.";
3797
Donn Denman19688bc2021-03-05 18:48:403798const char kContextualSearchForceCaptionName[] =
3799 "Contextual Search force a caption";
3800const char kContextualSearchForceCaptionDescription[] =
3801 "Forces a caption to always be shown in the Touch to Search Bar.";
Donn Denman4315f262019-03-02 02:47:413802
Donn Denman05a5b99b2022-07-27 23:38:443803const char kContextualSearchSuppressShortViewName[] =
3804 "Contextual Search suppress short view";
3805const char kContextualSearchSuppressShortViewDescription[] =
3806 "Contextual Search suppress when the base page view is too short";
3807
Michael van Ouwerkerk99b42f42023-04-24 16:15:413808const char kConvertTrackpadEventsToMouseName[] =
3809 "Convert trackpad events to mouse events";
3810const char kConvertTrackpadEventsToMouseDescription[] =
3811 "Convert trackpad events to mouse events to improve gesture support";
3812
David Bokane2396e22023-04-18 20:27:143813const char kDefaultViewportIsDeviceWidthName[] =
3814 "Default viewport width is device width";
3815const char kDefaultViewportIsDeviceWidthDescription[] =
3816 "Sets the default viewport layout width to be equivalent to "
3817 "width=device-width";
3818
Finnur Thorarinsson118fc3f2023-06-05 10:54:013819const char kDeprecatedExternalPickerFunctionName[] =
3820 "Use deprecated External Picker method";
3821const char kDeprecatedExternalPickerFunctionDescription[] =
3822 "Use the old-style opening of an External Picker when uploading files";
3823
Donn Denmanc2db1e622023-04-12 17:28:083824const char kDrawEdgeToEdgeName[] = "DrawEdgeToEdge";
3825const char kDrawEdgeToEdgeDescription[] =
3826 "Enables the Android feature Edge-to-Edge to draw below the Nav Bar.";
3827
Fabio Tirelo918089a2018-10-22 21:24:083828const char kAutofillManualFallbackAndroidName[] =
3829 "Enable Autofill manual fallback for Addresses and Payments (Android)";
3830const char kAutofillManualFallbackAndroidDescription[] =
3831 "If enabled, adds toggle for addresses and payments bottom sheet to the "
3832 "keyboard accessory.";
3833
Lei Tianbd5a3bf2018-02-28 19:01:163834const char kEnableCommandLineOnNonRootedName[] =
3835 "Enable command line on non-rooted devices";
3836const char kEnableCommandLineOnNoRootedDescription[] =
3837 "Enable reading command line file on non-rooted devices (DANGEROUS).";
3838
Victor Hugo Vianna Silvabb878dea2022-10-18 10:19:043839const char kEnablePasswordsAccountStorageName[] =
3840 "Enable the account data storage for passwords";
3841const char kEnablePasswordsAccountStorageDescription[] =
3842 "Enables storing passwords in a second, Gaia-account-scoped storage for "
3843 "signed-in but not syncing users";
3844
Lei Zhang0a318af2018-11-14 02:19:463845const char kExploreSitesName[] = "Explore websites";
3846const char kExploreSitesDescription[] =
3847 "Enables portal from new tab page to explore websites.";
3848
Michael Thiessen495a0d32022-08-24 17:58:193849const char kExternalNavigationDebugLogsName[] =
3850 "External Navigation Debug Logs";
3851const char kExternalNavigationDebugLogsDescription[] =
3852 "Enables detailed logging to logcat about why Chrome is making decisions "
3853 "about whether to allow or block navigation to other apps";
3854
Shakti Sahuedcbaef2022-01-18 19:54:213855const char kFeatureNotificationGuideName[] = "Feature notification guide";
3856const char kFeatureNotificationGuideDescription[] =
3857 "Enables notifications about chrome features.";
3858
Shakti Sahu6c4afcde2022-01-31 23:03:543859const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersName[] =
3860 "Feature notification guide - Skip check for low engaged users";
3861const char kFeatureNotificationGuideSkipCheckForLowEngagedUsersDescription[] =
3862 "Skips check for low engaged users.";
3863
Jian Lic22a3ce2021-08-31 15:46:593864const char kFeedBackToTopName[] = "Back to top of the feeds";
3865const char kFeedBackToTopDescription[] =
3866 "Enables showing a callout to help users return to the top of the feeds "
3867 "quickly.";
3868
Nick Birnie3e6ed412023-01-10 22:36:173869const char kFeedBottomSyncBannerName[] = "Show Sync Promotion";
3870const char kFeedBottomSyncBannerDescription[] =
3871 "Enables the Sync promo banner to be"
3872 " shown at bottom of Chrome Feed.";
3873
Nick Birnie7982fbe2023-03-01 22:22:523874const char kFeedBoCSigninInterstitialName[] = "Show Signin Interstitial";
3875const char kFeedBoCSigninInterstitialDescription[] =
3876 "Enables the sign in interstitial to be"
3877 " shown in a bottom sheet when triggered.";
3878
Cathy Weie5c7d612022-10-14 18:55:073879const char kFeedHeaderStickToTopName[] = "Feed header stick to top";
3880const char kFeedHeaderStickToTopDescription[] =
3881 "Stick feed header to top on scroll.";
3882
Justin DeWitt3eca4372021-09-17 19:44:523883const char kFeedLoadingPlaceholderName[] = "Feed loading placeholder";
3884const char kFeedLoadingPlaceholderDescription[] =
3885 "Enables a placeholder UI in "
3886 "the feed instead of the loading spinner at first load.";
3887
Jonathan Freedaa862a542021-09-03 17:42:253888const char kFeedStampName[] = "StAMP cards in the feed";
3889const char kFeedStampDescription[] = "Enables StAMP cards in the feed.";
3890
Ian Wells6cf75a82022-07-13 02:11:023891const char kFeedCloseRefreshName[] = "Feed-close refresh";
3892const char kFeedCloseRefreshDescription[] =
3893 "Enables scheduling a background refresh of the feed following feed use.";
3894
Jian Li20f07f592022-08-23 22:21:553895const char kFeedVideoInlinePlaybackName[] = "Feed video inline playback";
3896const char kFeedVideoInlinePlaybackDescription[] =
3897 "Enable playing feed video in inline playback mode.";
3898
Jonathan Freed4adf604f2022-08-31 17:06:143899const char kFeedDiscoFeedEndpointName[] =
3900 "Feed using the DiscoFeed backend endpoint";
3901const char kFeedDiscoFeedEndpointDescription[] =
3902 "Uses the DiscoFeed endpoint for serving the feed instead of GWS.";
3903
Cathy Lid4f39a852023-05-18 00:27:313904const char kFeedDynamicColorsName[] = "Enable dynamic colors in the feed";
3905const char kFeedDynamicColorsDescription[] =
3906 "Allows feed to fully respect dynamic colors if supported by the client.";
3907
Jian Lie41ddcb2022-05-04 01:11:563908const char kInfoCardAcknowledgementTrackingName[] =
3909 "Info card acknowledgement tracking";
3910const char kInfoCardAcknowledgementTrackingDescription[] =
3911 "Enable acknowledgement tracking for info cards.";
3912
Jinsuk Kimfa1b7eb2021-06-30 00:04:323913const char kInstanceSwitcherName[] = "Enable instance switcher";
3914const char kInstanceSwitcherDescription[] =
3915 "Enable instance switcher dialog UI that helps users manage multiple "
3916 "instances of Chrome.";
3917
Wei-Yin Chen (陳威尹)85149442020-06-30 22:28:463918const char kInstantStartName[] = "Instant start";
Wei-Yin Chen (陳威尹)50c2f462020-05-14 07:27:423919const char kInstantStartDescription[] =
3920 "Show start surface before native library is loaded.";
3921
Ian Wells34ce1482020-04-03 17:36:163922const char kInterestFeedV2Name[] = "Interest Feed v2";
3923const char kInterestFeedV2Description[] =
3924 "Show content suggestions on the New Tab Page and Start Surface using the "
3925 "new Feed Component.";
3926
Dan Harrington4043b222021-01-15 18:33:423927const char kInterestFeedV2HeartsName[] = "Interest Feed v2 Hearts";
3928const char kInterestFeedV2HeartsDescription[] = "Enable hearts on Feedv2.";
3929
Jian Lifb04af72021-04-01 21:17:173930const char kInterestFeedV2AutoplayName[] = "Interest Feed v2 Autoplay";
3931const char kInterestFeedV2AutoplayDescription[] = "Enable autoplay on Feedv2.";
3932
Finnur Thorarinsson4e43a0852023-03-23 09:20:023933const char kMediaPickerAdoptionStudyName[] = "Android Media Picker Adoption";
3934const char kMediaPickerAdoptionStudyDescription[] =
3935 "Controls how to launch the Android Media Picker";
3936
Aishwarya Rajesh0dd71922021-07-28 20:22:383937const char kMessagesForAndroidAdsBlockedName[] = "Ads Blocked Messages UI";
3938const char kMessagesForAndroidAdsBlockedDescription[] =
3939 "When enabled, ads blocked message will use the new Messages UI.";
3940
Pavel Yatsuk358291752020-09-03 18:25:223941const char kMessagesForAndroidInfrastructureName[] = "Messages infrastructure";
3942const char kMessagesForAndroidInfrastructureDescription[] =
3943 "When enabled, will initialize Messages UI infrastructure";
Pavel Yatsukb3a7475e2021-05-10 21:20:153944
Vishwas Uppoor8031d642022-05-10 01:28:513945extern const char kMessagesForAndroidOfferNotificationName[] =
3946 "Offer Notification Messages UI";
3947extern const char kMessagesForAndroidOfferNotificationDescription[] =
3948 "When enabled, offer notification will use the new Messages UI";
3949
Lijin Shen2d61a0a32021-07-20 23:15:523950const char kMessagesForAndroidPermissionUpdateName[] =
3951 "Permission Update Messages UI";
3952const char kMessagesForAndroidPermissionUpdateDescription[] =
3953 "When enabled, permission update prompt will use the new Messages UI.";
3954
Lijin Shenba9a6b0e2021-02-18 01:59:063955const char kMessagesForAndroidPopupBlockedName[] = "Popup Blocked Messages UI";
3956const char kMessagesForAndroidPopupBlockedDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153957 "When enabled, popup blocked prompt will use the new Messages UI.";
3958
Pavel Yatsukb7307fa2021-09-15 18:02:303959const char kMessagesForAndroidPWAInstallName[] = "PWA Installation Messages UI";
3960const char kMessagesForAndroidPWAInstallDescription[] =
3961 "When enabled, PWA Installation prompt will use the new Messages UI.";
3962
Lei Zhang44abd5d22022-01-11 00:32:343963const char kMessagesForAndroidSaveCardName[] = "Save Card Messages UI";
3964const char kMessagesForAndroidSaveCardDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153965 "When enabled, save card prompt will use the new Messages UI.";
3966
Lijin Shen0e049c432022-04-05 23:12:433967const char kMessagesForAndroidStackingAnimationName[] =
3968 "Stacking Animation of Messages UI";
3969const char kMessagesForAndroidStackingAnimationDescription[] =
3970 "When enabled, Messages UI will use the new stacking animation.";
3971
Yutaka Hirano639d9742022-05-13 12:35:163972const char kNetworkServiceInProcessName[] =
3973 "Run the network service on the browser process";
3974const char kNetworkServiceInProcessDescription[] =
3975 "When enabled, the network service runs on the browser process. Otherwise, "
3976 "it runs on a dedicated process.";
3977
Salvador Guerrero4d5ff6e62022-03-24 00:03:203978const char kNotificationPermissionRationaleName[] =
3979 "Notification Permission Rationale UI";
3980const char kNotificationPermissionRationaleDescription[] =
3981 "Configure the dialog shown before requesting notification permission. "
3982 "Only works with builds targeting Android T.";
3983
Salvador Guerrero0af36992023-01-23 20:46:473984const char kNotificationPermissionRationaleBottomSheetName[] =
3985 "Notification Permission Rationale Bottom Sheet UI";
3986const char kNotificationPermissionRationaleBottomSheetDescription[] =
3987 "Enable the alternative bottom sheet UI for the notification permission "
3988 "flow. "
3989 "Only works with builds targeting Android T+.";
3990
Yafei Duan36b4b5b2018-08-07 00:40:033991const char kOfflinePagesLivePageSharingName[] =
3992 "Enables live page sharing of offline pages";
3993const char kOfflinePagesLivePageSharingDescription[] =
3994 "Enables to share current loaded page as offline page by saving as MHTML "
3995 "first.";
3996
Jordan Oroshiba244e9ff2021-02-04 22:20:393997const char kPageInfoHistoryName[] = "Page info history";
3998const char kPageInfoHistoryDescription[] =
3999 "Enable a history sub page to the page info menu, and a button to forget "
4000 "a site, removing all preferences and history.";
4001
Zaina Al-Mashni2df0e5f2023-01-20 11:09:264002const char kPageInfoAboutThisSiteImprovedBottomSheetName[] =
4003 "Page info 'About this site' improved bottomsheet";
4004const char kPageInfoAboutThisSiteImprovedBottomSheetDescription[] =
4005 "Enable an improved 'About this site' bottomsheet, which includes a "
4006 "less cluttered toolbar view and opening navigations in a new tab.";
4007
Anna Tsvirchkova0891e9da2023-03-08 12:42:094008const char kPasswordGenerationBottomSheetName[] =
4009 "Password generation bottom sheet";
4010const char kPasswordGenerationBottomSheetDescription[] =
4011 "Enabled showing the password generation bottom sheet.";
4012
Adem Derinelee646e212023-05-12 13:46:564013const char kPasswordsInCredManName[] = "Passwords in Credential Management API";
4014const char kPasswordsInCredManDescription[] =
4015 "Enable saving and logging in with passwords using Credential Management "
4016 "API. Requires Android 14 or higher.";
4017
Salma Elmahallawydcdfa9e2023-01-30 18:42:244018const char kPolicyLogsPageAndroidName[] = "Policy Logs Page on Android";
4019const char kPolicyLogsPageAndroidDescription[] =
Jiewei Qianb25c74502023-05-24 01:36:124020 "Enable the new chrome://policy-logs page containing logs for debugging "
Salma Elmahallawydcdfa9e2023-01-30 18:42:244021 "policy related issues on Android.";
4022
Shakti Sahu1f8a9422020-03-12 05:50:504023const char kQueryTilesName[] = "Show query tiles";
4024const char kQueryTilesDescription[] = "Shows query tiles in Chrome";
Shakti Sahucad2a0a2020-10-23 06:42:284025const char kQueryTilesNTPName[] = "Show query tiles in NTP";
4026const char kQueryTilesNTPDescription[] = "Shows query tiles in NTP";
Min Qineb0c2152022-08-26 19:13:124027const char kQueryTilesOnStartName[] = "Query tiles on start";
4028const char kQueryTilesOnStartDescription[] =
4029 "Show query tiles on start surface";
Shakti Sahu8fe5edd2020-05-14 18:57:134030const char kQueryTilesSingleTierName[] = "Show only one level of query tiles";
4031const char kQueryTilesSingleTierDescription[] =
4032 "Show only one level of query tiles";
Shakti Sahudfb40992020-05-12 14:54:544033const char kQueryTilesEnableQueryEditingName[] =
4034 "Query Tiles - Enable query edit mode";
4035const char kQueryTilesEnableQueryEditingDescription[] =
4036 "When a query tile is tapped, the query text will be shown in the omnibox "
4037 "and user will have a chance to edit the text before submitting";
Min Qineac94ae2020-08-14 06:38:454038const char kQueryTilesEnableTrendingName[] =
4039 "Query Tiles - Enable trending queries";
4040const char kQueryTilesEnableTrendingDescription[] =
4041 "Allow tiles of trending queries to show up in front of curated tiles";
Min Qindb99e6f2020-04-29 06:37:264042const char kQueryTilesCountryCode[] = "Country code for getting tiles";
4043const char kQueryTilesCountryCodeDescription[] =
4044 "When query tiles are enabled, this value determines tiles for which "
4045 "country should be displayed.";
4046const char kQueryTilesCountryCodeUS[] = "US";
4047const char kQueryTilesCountryCodeIndia[] = "IN";
4048const char kQueryTilesCountryCodeBrazil[] = "BR";
4049const char kQueryTilesCountryCodeNigeria[] = "NG";
4050const char kQueryTilesCountryCodeIndonesia[] = "ID";
Shakti Sahu8fe5edd2020-05-14 18:57:134051const char kQueryTilesInstantFetchName[] = "Query tile instant fetch";
Xing Liu06f2fa02020-04-30 02:45:194052const char kQueryTilesInstantFetchDescription[] =
4053 "Immediately schedule background task to fetch query tiles";
Min Qinbe050b72021-06-26 01:32:394054const char kQueryTilesRankTilesName[] = "Query Tiles - rank tiles on server";
4055const char kQueryTilesRankTilesDescription[] =
4056 "Rank tiles on server based on client context";
Min Qindb789462021-08-26 04:00:114057const char kQueryTilesSegmentationName[] =
4058 "Query Tiles - use segmentation rules";
4059const char kQueryTilesSegmentationDescription[] =
4060 "enable segmentation rules to decide whether to show query tiles";
Min Qin60ae5b82021-01-07 07:07:504061const char kQueryTilesSwapTrendingName[] =
4062 "Query Tiles - Swap trending queries";
4063const char kQueryTilesSwapTrendingDescription[] =
4064 "Swap trending queries if user didn't click on them after several "
4065 "impressions";
Min Qindb99e6f2020-04-29 06:37:264066
Caroline Risingdb7df182021-01-11 19:49:144067const char kReadLaterFlagId[] = "read-later";
4068const char kReadLaterName[] = "Reading List";
4069const char kReadLaterDescription[] =
4070 "Allow users to save tabs for later. Enables a new button and menu for "
4071 "accessing tabs saved for later.";
4072
Brett Wilsonff596952017-07-14 01:06:554073const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
4074const char kReaderModeHeuristicsDescription[] =
4075 "Determines what pages the Reader Mode infobar is shown on.";
4076const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
4077const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
4078const char kReaderModeHeuristicsAllArticles[] = "All articles";
4079const char kReaderModeHeuristicsAlwaysOff[] = "Never";
4080const char kReaderModeHeuristicsAlwaysOn[] = "Always";
4081
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:184082const char kReaderModeInCCTName[] = "Reader Mode in CCT";
4083const char kReaderModeInCCTDescription[] =
4084 "Open Reader Mode in Chrome Custom Tabs.";
4085
Ioana Pandele9fc19b2f2020-01-23 22:16:504086const char kRecoverFromNeverSaveAndroidName[] =
4087 "UI to recover from never save passwords on Android";
4088const char kRecoverFromNeverSaveAndroidDescription[] =
4089 "Enables showing UI which allows for easy reverting of the decision to "
4090 "never save passwords on a certain webiste";
4091
Victor Tan5980f4e52022-11-11 20:21:454092const char kReduceUserAgentAndroidVersionDeviceModelName[] =
4093 "Reduce the device model and Android version in the andriod User-Agent "
4094 "string";
4095const char kReduceUserAgentAndroidVersionDeviceModelDescription[] =
4096 "Enables reducing the device model and Android version in the andriod "
4097 "User-Agent string. The device model will be reported as `K` and the "
4098 "Android version will be reported as a static `10` string.";
4099
David Trainora38e60e2020-08-04 23:43:254100const char kReengagementNotificationName[] =
4101 "Enable re-engagement notifications";
4102const char kReengagementNotificationDescription[] =
4103 "Enables Chrome to use the in-product help system to decide when "
4104 "to show re-engagement notifications.";
4105
Donn Denmanc42123c2020-03-19 01:44:244106const char kRelatedSearchesName[] =
4107 "Enables an experiment for Related Searches on Android";
4108const char kRelatedSearchesDescription[] =
Donn Denman15522f42021-02-09 22:49:494109 "Enables requesting related searches suggestions. These will be requested "
4110 "but not shown unless the UI flag is also enabled.";
4111
Shu Yangd1d8f6b82022-06-30 18:46:284112const char kRequestDesktopSiteAdditionsName[] =
4113 "Secondary settings for request desktop site on Android.";
4114const char kRequestDesktopSiteAdditionsDescription[] =
4115 "Secondary options in `Site settings` to request the desktop version of "
4116 "websites based on external display or peripheral.";
4117
Aishwarya Rajesh3d0bd212022-07-22 22:48:314118const char kRequestDesktopSiteDefaultsName[] =
4119 "Default settings for request desktop site on Android.";
4120const char kRequestDesktopSiteDefaultsDescription[] =
4121 "Request the desktop version of websites by default based on device "
4122 "conditions.";
4123
Aishwarya Rajeshed9865f82022-09-12 22:46:574124const char kRequestDesktopSiteDefaultsDowngradeName[] =
4125 "Downgrade default settings for request desktop site on Android.";
4126const char kRequestDesktopSiteDefaultsDowngradeDescription[] =
4127 "Disable the request desktop site global setting if it was enabled by "
4128 "default based on device conditions.";
4129
Shu Yang6673a042023-02-28 00:27:364130const char kRequestDesktopSiteDefaultsLoggingName[] =
4131 "Silently report crashes for debugging request desktop site on Android.";
4132const char kRequestDesktopSiteDefaultsLoggingDescription[] =
4133 "Silently report crashes with display spec when ineligible device shows "
4134 "up in cohort or device screen size exceeds threshold.";
4135
Aishwarya Rajesh63e60f72022-08-26 00:34:194136const char kRequestDesktopSiteExceptionsDowngradeName[] =
4137 "Downgrade request desktop site exceptions on Android.";
4138const char kRequestDesktopSiteExceptionsDowngradeDescription[] =
4139 "Downgrade request desktop site domain level settings to tab level "
4140 "settings.";
4141
Shu Yanga2ec2d12021-11-15 22:13:154142const char kRequestDesktopSiteExceptionsName[] =
4143 "Per-site setting to request desktop site on Android.";
4144const char kRequestDesktopSiteExceptionsDescription[] =
4145 "An option in `Site settings` to request the desktop version of websites "
Shu Yangd1d8f6b82022-06-30 18:46:284146 "based on site level settings.";
Shu Yanga2ec2d12021-11-15 22:13:154147
Aishwarya Rajesha327b162023-01-06 01:34:424148const char kRequestDesktopSitePerSiteIphName[] =
4149 "Contextual help for request desktop site site-level settings on Android.";
4150const char kRequestDesktopSitePerSiteIphDescription[] =
4151 "Provide in-product help for desktop site site-level settings.";
4152
Aishwarya Rajesh7b43f262022-11-02 20:22:044153const char kRequestDesktopSiteZoomName[] =
4154 "Default zoom for request desktop site on Android.";
4155const char kRequestDesktopSiteZoomDescription[] =
4156 "Apply default page zoom on the desktop version of websites.";
4157
Philip Rogers388e07a2023-03-27 17:54:334158const char kForceOffTextAutosizingName[] =
4159 "Force off heuristics for inflating text sizes on devices with small "
4160 "screens.";
4161const char kForceOffTextAutosizingDescription[] = "Disable text autosizing.";
4162
Illia Klimov352f34a2022-08-18 13:45:134163const char kRevokeNotificationsPermissionIfDisabledOnAppLevelName[] =
4164 "Revoke site-level notification permission on Android";
4165const char kRevokeNotificationsPermissionIfDisabledOnAppLevelDescription[] =
4166 "Allow revoking site-level notification permission if Chrome has no "
4167 "app-level notification permission on Android.";
4168
Henrique Nakashimaaa6c3142022-07-14 21:53:114169const char kSafeModeForCachedFlagsName[] = "Safe Mode for Cached Flags";
4170const char kSafeModeForCachedFlagsDescription[] =
4171 "Attempts recovery from startup crash loops caused by a bad field trial "
4172 "by rolling back to previous known safe flag values.";
4173
Fabio Tirelo343dcc82023-03-13 16:34:104174extern const char kSafeSitesFilterBehaviorPolicyAndroidName[] =
4175 "Allow SafeSitesFilterBehavior policy on Android";
4176extern const char kSafeSitesFilterBehaviorPolicyAndroidDescription[] =
4177 "Allows the SafeSitesFilterBehavior policy to be applied on Android.";
4178
Kenechi Okoyeff5bd5f2022-06-13 20:47:534179const char kScreenshotsForAndroidV2Name[] = "Screenshots for Android V2";
4180const char kScreenshotsForAndroidV2Description[] =
4181 "Adds functionality to the share screenshot panel within Chrome Browser"
4182 " on Android";
4183
spdonghaoe4b51242022-03-14 23:06:184184const char kShowScrollableMVTOnNTPAndroidName[] = "Show scrollable MVT on NTP";
4185const char kShowScrollableMVTOnNTPAndroidDescription[] =
4186 "Enable showing the scrollable most visited tiles on NTP.";
4187
Liquan (Max) Guf2834612021-08-31 14:49:164188const char kSecurePaymentConfirmationAndroidName[] =
4189 "Secure Payment Confirmation on Android";
4190const char kSecurePaymentConfirmationAndroidDescription[] =
4191 "Enables Secure Payment Confirmation on Android.";
4192
Elly Fong-Jones6fde14c2022-01-05 18:10:584193const char kSendTabToSelfV2Name[] = "Send tab to self 2.0";
4194const char kSendTabToSelfV2Description[] =
4195 "Enables new received tab "
4196 "UI shown next to the profile icon instead of using system notifications.";
4197
Brett Wilsonff596952017-07-14 01:06:554198const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
4199const char kSetMarketUrlForTestingDescription[] =
4200 "When enabled, sets the market URL for use in testing the update menu "
4201 "item.";
4202
Wenyu Fu385c4962023-04-07 22:19:534203const char kShareSheetCustomActionsPolishName[] =
4204 "Share sheet custom actions polish";
4205const char kShareSheetCustomActionsPolishDescription[] =
4206 "Polish Chrome provided custom actions for share sheet including dropping "
4207 "low engagement actions, and shuffle the ordering. Android only.";
4208
Wenyu Fu2518c9802023-02-08 23:52:264209const char kShareSheetMigrationAndroidName[] = "Share sheet refactor Android";
4210const char kShareSheetMigrationAndroidDescription[] =
4211 "When enabled, use the Android OS share sheet.";
4212
Alex Moshchuk07e1bb42019-03-08 04:44:084213const char kSiteIsolationForPasswordSitesName[] =
4214 "Site Isolation For Password Sites";
4215const char kSiteIsolationForPasswordSitesDescription[] =
4216 "Security mode that enables site isolation for sites based on "
4217 "password-oriented heuristics, such as a user typing in a password.";
4218
Bo Liude36ab62023-02-24 20:08:294219const char kSlimCompositorName[] = "Slim browser compositor";
4220const char kSlimCompositorDescription[] = "Use new simpler browser compositor";
4221
Hung Vuc394db62020-08-21 21:26:524222const char kSmartSuggestionForLargeDownloadsName[] =
4223 "Smart suggestion for large downloads";
4224const char kSmartSuggestionForLargeDownloadsDescription[] =
4225 "Smart suggestion that offers download locations for large files.";
4226
Ioana Pandele9fc19b2f2020-01-23 22:16:504227const char kStartSurfaceAndroidName[] = "Start Surface";
4228const char kStartSurfaceAndroidDescription[] =
4229 "Enable showing the start surface when launching Chrome via the "
4230 "launcher.";
4231
Xi Han8e1b2452022-05-26 15:43:164232const char kFeedPositionAndroidName[] = "Feed Position";
4233const char kFeedPositionAndroidDescription[] =
4234 "Enable pushing down or pulling up of Feeds on NTP";
4235
Xi Hanfe309c02022-06-07 16:57:264236const char kSearchResumptionModuleAndroidName[] = "Search Resumption Module";
4237const char kSearchResumptionModuleAndroidDescription[] =
4238 "Enable showing search suggestions on NTP";
4239
Andrey Zaytsev5794f892022-07-14 16:16:554240const char kSiteDataImprovementsName[] = "Site data improvements";
4241const char kSiteDataImprovementsDescription[] =
4242 "Improved 'All sites' and 'Site settings' pages on Android.";
4243
spdonghao86345d52022-09-20 20:13:154244const char kStartSurfaceDisabledFeedImprovementName[] =
4245 "Start Surface Disabled Feed Improvement";
4246const char kStartSurfaceDisabledFeedImprovementDescription[] =
4247 "Enable improving Start surface when Feed is disabled";
4248
Xinyi Ji411f38f2023-02-10 23:32:504249const char kStartSurfaceOnTabletName[] = "Start Surface On Tablet";
4250const char kStartSurfaceOnTabletDescription[] =
4251 "Enable Start Surface On Tablet.";
4252
spdonghao921dbdf42022-07-12 19:02:344253const char kStartSurfaceRefactorName[] = "Start Surface Refactor";
4254const char kStartSurfaceRefactorDescription[] =
4255 "Enable splitting Tab switcher from Start surface";
4256
Sreeja Kamishetty0ecfb5602023-05-02 16:20:524257const char kStartSurfaceSpareTabName[] = "Start Surface Spare Tab";
4258const char kStartSurfaceSpareTabDescription[] =
4259 "Enable using Spare Tab for navigations from Start Surface.";
4260
Xinyi Jie3289432023-03-08 20:42:224261const char kStartSurfaceWithAccessibilityName[] =
4262 "Start Surface With Accessibility";
4263const char kStartSurfaceWithAccessibilityDescription[] =
4264 "Enable Start Surface with Accessibility.";
4265
Lei Zhang0a318af2018-11-14 02:19:464266const char kStrictSiteIsolationName[] = "Strict site isolation";
4267const char kStrictSiteIsolationDescription[] =
4268 "Security mode that enables site isolation for all sites (SitePerProcess). "
4269 "In this mode, each renderer process will contain pages from at most one "
4270 "site, using out-of-process iframes when needed. "
4271 "Check chrome://process-internals to see the current isolation mode. "
4272 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
4273 "default. Here, 'Disabled' is a legacy value that actually means "
4274 "'Default,' in which case site isolation may be already enabled based on "
4275 "platform, enterprise policy, or field trial. See also "
4276 "#site-isolation-trial-opt-out for how to disable site isolation for "
4277 "testing.";
4278
Alex Mitrac4bcea22023-02-09 11:10:154279const char kStylusRichGesturesName[] = "Stylus rich gestures";
4280const char kStylusRichGesturesDescription[] =
4281 "Enable rich gestures for stylus which can be used to modify text in "
4282 "editable web content.";
4283
Bo Liu2f247292023-05-15 18:28:324284const char kSurfaceControlMagnifierName[] = "Surface control magnifier";
4285const char kSurfaceControlMagnifierDescription[] =
4286 "Use magnifier built using SurfaceControl. Depends on SurfaceControl, "
4287 "Slim compositor, and Android OS support. No effect if enabled on "
4288 "unsupported environment.";
4289
Xinyi Ji55e1c77db2023-05-29 19:22:224290const char kSurfacePolishName[] = "Surface Polish";
4291const char kSurfacePolishDescription[] =
4292 "Enable clank home surface polish for Start surface and NTP.";
4293
Sirisha Kavuluru003e0962021-12-08 21:40:304294const char kTabGroupsForTabletsName[] = "Tab groups on tablets";
4295const char kTabGroupsForTabletsDescription[] = "Enable tab groups on tablets.";
4296
Calder Kitagawa04cc6942023-06-14 18:38:464297const char kThumbnailPlaceholderName[] = "Thumbnail placeholder";
4298const char kThumbnailPlaceholderDescription[] =
4299 "Display a placeholder image for missing thumbnails.";
4300
Sirisha Kavuluru263350ba2022-09-08 21:40:214301const char kDiscoverFeedMultiColumnAndroidName[] =
4302 "Multi-column Discover feed Android.";
4303const char kDiscoverFeedMultiColumnAndroidDescription[] =
Sirisha Kavulurue968d502022-10-27 19:37:404304 "Enables single or multi-column Discover feed based on screen width on "
Sirisha Kavuluru263350ba2022-09-08 21:40:214305 "Android.";
4306
Zhe Li5d302c82022-10-12 16:56:544307const char kTabStripRedesignAndroidName[] = "Tab Strip Redesign Android.";
4308const char kTabStripRedesignAndroidDescription[] =
4309 "Enabled Tab Strip Redesign on Android - A visual redesign of Clank Tab "
4310 "Strip that is consistent with GM3.";
4311
Zhe Lidbe38d12023-05-17 23:55:524312const char kTabletToolbarReorderingAndroidName[] =
4313 "Tablet Toolbar Reordering Android.";
4314const char kTabletToolbarReorderingAndroidDescription[] =
4315 "Enable Tablet Toolbar Reordering on Android - Reorder the toolbar by "
4316 "placing the Home button from 1st to the 4th position after the Refresh"
4317 "button to match the Desktop toolbar";
4318
Zhe Li6ed8d9c2023-04-14 18:24:214319const char kEmptyStatesAndroidName[] = "Empty States Android.";
4320const char kEmptyStatesAndroidDescription[] =
4321 "Enabled Clank Empty States on Android - Add illustrations to Clank empty "
4322 "states to update tab switcher UI, recent tabs, bookmarks, reading list "
4323 "and history zero states";
4324
Sirisha Kavulurue968d502022-10-27 19:37:404325const char kFoldableJankFixAndroidName[] = "Fix for jank seen on foldables.";
4326const char kFoldableJankFixAndroidDescription[] =
4327 "Enables fix for jank seen during fold to unfold transition on foldables "
4328 "with Android 12+";
4329
Neil Coronado6a12ed82023-05-11 23:59:004330const char kTabStripStartupRefactoringName[] =
4331 "Refactor for tablet tab strip startup.";
4332const char kTabStripStartupRefactoringDescription[] =
4333 "Enables refactor for tablet tab strip startup. This creates placeholder "
4334 "tabs before the tab strip is initialized to prevent "
4335 "jank (tabs seeming to quickly flicker / scroll).";
4336
Neil Coronado97e135512023-01-11 20:21:094337const char kBaselineGM3SurfaceColorsName[] = "Baseline GM3 Surface Colors";
4338const char kBaselineGM3SurfaceColorsDescription[] =
4339 "Updates baseline surface colors to match the GM3 formula.";
4340
Neil Coronado28176942023-05-01 23:17:454341const char kDelayTempStripRemovalName[] =
4342 "Delay temp tab strip removal on startup";
4343const char kDelayTempStripRemovalDescription[] =
4344 "By delaying the removal of the placeholder tab strip, we mitigate the "
4345 "jank seen as tabs are being restored on startup.";
4346
Mustaq Ahmeda130fec2022-02-09 19:03:264347const char kTouchDragAndContextMenuName[] =
4348 "Simultaneous touch drag and context menu";
4349const char kTouchDragAndContextMenuDescription[] =
4350 "Enables touch dragging and a context menu to start simultaneously, with"
4351 "the assumption that the menu is non-modal.";
4352
Scott Littlec0f9a472022-03-23 19:23:224353const char kTranslateMessageUIName[] = "Translate Message UI";
4354const char kTranslateMessageUIDescription[] =
4355 "Controls whether the Translate Message UI will be shown instead of the "
4356 "Translate InfoBar.";
4357
Peter E Conn9eea1c0b2023-04-24 15:53:454358const char kTwaPostMessageName[] = "PostMessage for Trusted Web Activities";
4359const char kTwaPostMessageDescription[] =
4360 "Enables PostMessage between the "
4361 "shell app and the web page in Trusted Web Activities.";
4362
Brett Wilsonff596952017-07-14 01:06:554363const char kUpdateMenuBadgeName[] = "Force show update menu badge";
4364const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:444365 "When enabled, a badge will be shown on the app menu button if the update "
4366 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:554367
4368const char kUpdateMenuItemCustomSummaryDescription[] =
4369 "When this flag and the force show update menu item flag are enabled, a "
4370 "custom summary string will be displayed below the update menu item.";
4371const char kUpdateMenuItemCustomSummaryName[] =
4372 "Update menu item custom summary";
4373
Tommy Nyquist3c02e592018-10-18 23:36:444374const char kUpdateMenuTypeName[] =
4375 "Forces the update menu type to a specific type";
4376const char kUpdateMenuTypeDescription[] =
4377 "When set, forces the update type to be a specific one, which impacts "
Tommy Nyquistb0f8692e2021-10-15 19:13:054378 "the app menu badge and menu item for updates.";
Tommy Nyquist3c02e592018-10-18 23:36:444379const char kUpdateMenuTypeNone[] = "None";
4380const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
4381const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Brett Wilsonff596952017-07-14 01:06:554382
Tommy Nyquist5b7ac1a02022-08-16 16:56:004383const char kOmahaMinSdkVersionAndroidName[] =
4384 "Forces the minumum Android SDK version to a particular value.";
4385const char kOmahaMinSdkVersionAndroidDescription[] =
4386 "When set, the minimum Android minimum SDK version is set to a particular "
4387 "value which impact the app menu badge, menu items, and settings about "
4388 "screen regarding whether Chrome can be updated.";
4389const char kOmahaMinSdkVersionAndroidMinSdk1Description[] = "Minimum SDK = 1";
4390const char kOmahaMinSdkVersionAndroidMinSdk1000Description[] =
4391 "Minimum SDK = 1000";
4392
Shakti Sahu2741f8d2020-08-14 03:38:364393const char kVideoTutorialsName[] = "Enable video tutorials";
4394const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome";
4395
bttk8031f3fb2021-02-25 20:21:244396const char kAdaptiveButtonInTopToolbarName[] = "Adaptive button in top toolbar";
4397const char kAdaptiveButtonInTopToolbarDescription[] =
4398 "Enables showing an adaptive action button in the top toolbar";
Salvador Guerrerob5d9c762023-03-22 21:24:034399
Salvador Guerreroa071de302023-03-18 00:34:274400const char kAdaptiveButtonInTopToolbarTranslateName[] =
4401 "Adaptive button in top toolbar - Translate button";
4402const char kAdaptiveButtonInTopToolbarTranslateDescription[] =
4403 "Enables a translate button in the top toolbar. Must be selected in "
4404 "Settings > Toolbar Shortcut.";
Salvador Guerrerob5d9c762023-03-22 21:24:034405const char kAdaptiveButtonInTopToolbarAddToBookmarksName[] =
4406 "Adaptive button in top toolbar - Add to bookmarks button";
4407const char kAdaptiveButtonInTopToolbarAddToBookmarksDescription[] =
4408 "Enables an add to bookmarks button in the top toolbar. Must be selected "
4409 "in "
4410 "Settings > Toolbar Shortcut.";
4411
bttk74acf1b2021-05-19 20:20:594412const char kAdaptiveButtonInTopToolbarCustomizationName[] =
4413 "Adaptive button in top toolbar customization";
4414const char kAdaptiveButtonInTopToolbarCustomizationDescription[] =
4415 "Enables UI for customizing the adaptive action button in the top toolbar";
Josh Simmons68941d122020-11-11 02:49:044416
Ken Buchanan3e7f855d2023-04-12 01:03:224417const char kWebAuthnAndroidCredManName[] =
4418 "Android Credential Management for passkeys";
4419const char kWebAuthnAndroidCredManDescription[] =
4420 "Use Credential Management API for passkeys. Requires Android 14 or "
4421 "higher.";
4422
Carlos Knippschild0cf5a072020-12-01 00:15:534423const char kWebFeedName[] = "Web Feed";
4424const char kWebFeedDescription[] =
4425 "Allows users to keep up with and consume web content.";
4426
Pete Williamson55cbb162022-04-09 02:41:524427const char kWebFeedAwarenessName[] = "Web Feed Awareness";
4428const char kWebFeedAwarenessDescription[] =
4429 "Helps the user discover the web feed.";
4430
Pete Williamson06a50ba2022-03-10 02:08:534431const char kWebFeedOnboardingName[] = "Web Feed Onboarding";
4432const char kWebFeedOnboardingDescription[] =
Pete Williamson55cbb162022-04-09 02:41:524433 "Helps the user understand how to use the web feed.";
Pete Williamson06a50ba2022-03-10 02:08:534434
Cathy Lie949b3c2021-09-10 20:15:454435const char kWebFeedSortName[] = "Web Feed Sort";
4436const char kWebFeedSortDescription[] =
4437 "Allows users to sort their web content in the web feed. "
4438 "Only works if Web Feed is also enabled.";
4439
Alex Cooper5fca205f2023-03-20 23:13:274440const char kWebXrSharedBuffersName[] = "WebXR Shared Buffers";
4441const char kWebXrSharedBuffersDescription[] =
4442 "Toggles whether or not WebXR attempts to use SharedBuffers for moving "
4443 "textures from the device to the renderer. When this flag is set to either "
4444 "enabled or default SharedBuffer support will be dependent on what the "
4445 "device can actually support.";
4446
Justin DeWitt83faf9d12020-12-17 23:18:034447const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting";
4448const char kXsurfaceMetricsReportingDescription[] =
4449 "Allows metrics reporting state to be passed to Xsurface";
4450
Anna Tsvirchkova94fecb5f2022-04-14 10:34:044451const char kPasswordEditDialogWithDetailsName[] =
4452 "Password edit dialog with details UI";
4453const char kPasswordEditDialogWithDetailsDescription[] =
4454 "Enables UI which shows the dialog after clicking on save/update password"
4455 " with the functionality to choose user account and edit the password.";
4456
liyanbo.monster41ebdd12022-06-30 04:32:324457const char kEnableAndroidGamepadVibrationName[] = "Gamepad vibration";
4458const char kEnableAndroidGamepadVibrationDescription[] =
4459 "Enables the ability to play vibration effects on supported gamepads.";
4460
Wissem Gamra2a91d862022-08-17 18:17:224461const char kCormorantName[] = "Cormorant";
4462const char kCormorantDescription[] = "Enables the experimental Cormorant UI.";
4463
Alexander Cooper98a8edb2023-05-23 18:04:054464#if BUILDFLAG(ENABLE_VR) && BUILDFLAG(ENABLE_OPENXR)
4465const char kOpenXRName[] = "Enable OpenXR WebXR Runtime";
4466const char kOpenXRDescription[] =
4467 "Enables the use of the OpenXR runtime to create WebXR sessions.";
4468#endif
4469
Brett Wilson7b44537e2017-08-18 01:38:284470// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:554471
Xiaohan Wang55ae2c012022-01-20 21:49:114472#else // BUILDFLAG(IS_ANDROID)
brettw5f9c1642017-05-14 17:12:484473
Benjamin Zielinski04f8c802023-04-13 23:26:554474const char kAccessCodeCastFreezeUiName[] =
4475 "Pause Cast sessions (Access Code Cast users only)";
4476const char kAccessCodeCastFreezeUiDescription[] =
4477 "When enabled, adds controls to pause Cast sessions when sharing tab or "
4478 "screen, if using Access Code Casting.";
4479
echo linkerb7f43382022-02-10 23:20:344480const char kAppManagementAppDetailsName[] =
4481 "Enable App Details in App Management.";
4482const char kAppManagementAppDetailsDescription[] =
4483 "Show app details on an app's App Management page.";
4484
Lei Zhang1a6fd01b2021-03-24 17:03:484485const char kAllowAllSitesToInitiateMirroringName[] =
Takumi Fujimotobf466ac2020-08-18 20:55:154486 "Allow all sites to initiate mirroring";
Lei Zhang1a6fd01b2021-03-24 17:03:484487const char kAllowAllSitesToInitiateMirroringDescription[] =
Takumi Fujimotobf466ac2020-08-18 20:55:154488 "When enabled, allows all websites to request to initiate tab mirroring "
4489 "via Presentation API. Requires #cast-media-route-provider to also be "
4490 "enabled";
4491
mark a. foltz8d3e26ed2023-03-17 17:46:574492const char kMediaRouterOtrInstanceName[] =
4493 "Create a separate Media Router instance for off-the-record "
4494 "profiles.";
4495const char kMediaRouterOtrInstanceDescription[] =
4496 "When enabled, a separate Media Router instance will be created for "
4497 "off-the-record (\"incognito\") profiles.";
4498
George Benz05086302023-05-02 23:39:104499const char kCastMirroringTargetPlayoutDelayName[] =
4500 "Changes the target playout delay for cast mirroring.";
4501const char kCastMirroringTargetPlayoutDelayDescription[] =
4502 "Choose a target playout delay for cast mirroring. A lower delay will "
4503 "decrease latency, but may come at the cost of other quality standards "
4504 "such as dropped frames or FPS.";
4505const char kCastMirroringTargetPlayoutDelayDefault[] = "400ms (default)";
4506const char kCastMirroringTargetPlayoutDelay100ms[] = "100ms.";
4507const char kCastMirroringTargetPlayoutDelay150ms[] = "150ms.";
4508const char kCastMirroringTargetPlayoutDelay200ms[] = "200ms.";
4509const char kCastMirroringTargetPlayoutDelay250ms[] = "250ms.";
4510const char kCastMirroringTargetPlayoutDelay300ms[] = "300ms.";
4511const char kCastMirroringTargetPlayoutDelay350ms[] = "3500ms.";
4512
Anthony Cuie4109852022-07-27 19:01:014513const char kCopyLinkToTextName[] = "Copy Link To Text";
4514const char kCopyLinkToTextDescription[] =
4515 "Adds an item to the context menu to allow a user to copy a link to the "
4516 "page with the selected text highlighted.";
4517
4518const char kDesktopPartialTranslateName[] = "Desktop Partial Translate";
4519const char kDesktopPartialTranslateDescription[] =
4520 "Enables the Partial Translate feature on Desktop, which allows users to "
4521 "translate text selections on the page through the right click context "
4522 "menu.";
4523
evliu467c11b82020-11-17 01:29:304524const char kEnableAccessibilityLiveCaptionName[] = "Live Caption";
4525const char kEnableAccessibilityLiveCaptionDescription[] =
4526 "Enables the live caption feature which generates captions for "
Katie Df558c1a2020-04-21 20:33:594527 "media playing in Chrome. Turn the feature on in "
4528 "chrome://settings/accessibility.";
4529
Jocelyn Tran48b694aa2023-03-03 21:00:114530const char kReadAnythingName[] = "Reading Mode";
Abigail Kleincef69482023-01-24 22:14:374531const char kReadAnythingDescription[] =
Jocelyn Tran48b694aa2023-03-03 21:00:114532 "Enables the Reading Mode feature which generates a reader-friendly view "
4533 "of web pages. Open the side panel and select Reading Mode to try the "
Abigail Kleincef69482023-01-24 22:14:374534 "feature.";
4535
Jocelyn Tran48b694aa2023-03-03 21:00:114536const char kReadAnythingWithScreen2xName[] = "Reading Mode with Screen2x";
Abigail Kleincef69482023-01-24 22:14:374537const char kReadAnythingWithScreen2xDescription[] =
Jocelyn Tran48b694aa2023-03-03 21:00:114538 "Have Reading Mode use a local machine learning model for web page "
Abigail Kleincef69482023-01-24 22:14:374539 "distillation.";
4540
Jack Hsieh1e6d84a2022-07-01 16:18:574541const char kEnableWebHidOnExtensionServiceWorkerName[] =
4542 "Enable WebHID on extension service workers";
4543const char kEnableWebHidOnExtensionServiceWorkerDescription[] =
4544 "When enabled, WebHID API is available on extension service workers.";
4545
John Williamse5a683b2020-07-28 03:01:484546const char kGlobalMediaControlsCastStartStopName[] =
4547 "Global media controls control Cast start/stop";
4548const char kGlobalMediaControlsCastStartStopDescription[] =
4549 "Allows global media controls to control when a Cast session is started "
4550 "or stopped instead of relying on the Cast dialog.";
4551
Anthony Vallee-Dubois3d3039fb2023-03-17 16:11:154552extern const char kHeuristicMemorySaverName[] =
4553 "Enable the heuristics-based policy for Memory Saver Mode.";
4554extern const char kHeuristicMemorySaverDescription[] =
4555 "When enabled, Memory Saver will take multiple signals into account before "
4556 "discarding a tab rather than doing it after a fixed amount of time in the "
4557 "background.";
4558
Baitinq8e9648d2023-06-05 10:52:344559const char kHideIncognitoMediaMetadataName[] =
4560 "Hide media metadata when in Incognito";
4561const char kHideIncognitoMediaMetadataDescription[] =
4562 "When enabled, media metadata will be hidden from your OS' media player "
4563 "if you are in an Incognito session.";
4564
Alison Galea48e0e12023-05-10 22:57:524565extern const char kHighEfficiencyMultistateModeAvailableName[] =
4566 "Enable the multi-state option for Memory Saver Mode.";
4567extern const char kHighEfficiencyMultistateModeAvailableDescription[] =
4568 "When enabled, Memory Saver can take one of three options: enabled with a "
4569 "hueristic mode, enabled with a fixed timer, and discabled. Configure this "
4570 "through the settings page.";
4571
Alison Galee124dea32023-05-05 21:39:054572extern const char kHighEfficiencyDiscardedTabTreatmentName[] =
4573 "Enable discarded tab treatment for Memory Saver Mode.";
4574extern const char kHighEfficiencyDiscardedTabTreatmentDescription[] =
4575 "When enabled, discarded tabs will have a modified favicon to indicate "
4576 "that state.";
4577
Alison Galeeebae682023-06-06 20:30:534578extern const char kHighEfficiencyMemoryUsageInHovercardsName[] =
4579 "Show memory usage in hovercards.";
4580extern const char kHighEfficiencyMemoryUsageInHovercardsDescription[] =
4581 "When enabled, memory usage for active tabs can be found in their "
4582 "hovercards.";
4583
Alison Galeaf767012023-05-12 18:27:064584extern const char kHighEfficiencyDiscardExceptionsImprovementsName[] =
4585 "Enable improvements to creating tab discard exceptions.";
4586extern const char kHighEfficiencyDiscardExceptionsImprovementsDescription[] =
4587 "When enabled, tab discard exceptions can be created from the Memory Saver "
4588 "page action chip dialog and they can be created from currently open tabs "
4589 "via the settings page.";
4590
Alison Gale56cd69b2023-04-25 16:56:324591extern const char kHighEfficiencySavingsReportingImprovementsName[] =
4592 "Enable improvements to how memory savings are reported.";
4593extern const char kHighEfficiencySavingsReportingImprovementsDescription[] =
4594 "When enabled, the Memory Saver page action chip and dialog will be used "
4595 "to highlight memory savings.";
4596
Nicolas MacBeth3dcf7532023-04-21 21:30:134597#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
4598extern const char kIOSPromoPasswordBubbleName[] =
4599 "Contextual Chrome for iOS promo in the password save/update bubble.";
4600extern const char kIOSPromoPasswordBubbleDecription[] =
4601 "When enabled, a contextual Chrome for iOS promo will be shown to eligible "
4602 "users. The different flag options are for the promo's activation.";
4603#endif
4604
Richard Knoll7b293562021-07-08 08:49:064605const char kMuteNotificationSnoozeActionName[] =
4606 "Snooze action for mute notifications";
4607const char kMuteNotificationSnoozeActionDescription[] =
4608 "Adds a Snooze action to mute notifications shown while sharing a screen.";
4609
Paul Adedejiabbaf292023-04-03 21:21:184610const char kNtpAlphaBackgroundCollectionsName[] =
4611 "NTP Alpha Background Collections";
4612const char kNtpAlphaBackgroundCollectionsDescription[] =
4613 "Shows alpha NTP background collections in Customize Chrome.";
4614
Paul Adedejic4acd3092023-05-22 19:29:134615const char kNtpBackgroundImageErrorDetectionName[] =
4616 "NTP Background Image Error Detection";
4617const char kNtpBackgroundImageErrorDetectionDescription[] =
4618 "Checks NTP background image links for HTTP status errors.";
4619
Esmael El-Moslimanyf85849d2021-01-15 02:18:104620const char kNtpCacheOneGoogleBarName[] = "Cache OneGoogleBar";
4621const char kNtpCacheOneGoogleBarDescription[] =
4622 "Enables using the OneGoogleBar cached response in chrome://new-tab-page, "
4623 "when available.";
4624
Paul Adedeji1ed53002022-06-13 20:15:304625const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module";
4626const char kNtpChromeCartModuleDescription[] =
4627 "Shows the chrome cart module on the New Tab Page.";
Tibor Goldschwendt16a63cb2020-08-04 19:08:154628
Roman Arora201df092022-10-20 16:53:514629const char kNtpComprehensiveThemeRealboxName[] =
4630 "NTP Comprehensive Theme Realbox";
4631const char kNtpComprehensiveThemeRealboxDescription[] =
4632 "Applies theme based colors to the NTP Realbox element";
4633
Yo Wakitadcd38802022-10-12 17:27:074634const char kNtpDesktopLensName[] = "NTP Desktop Lens Entrypoint";
4635const char kNtpDesktopLensDescription[] =
4636 "Shows a Lens entrypoint and upload dialog in desktop NTP when enabled.";
4637
Andre Vincent60a5c5d2020-12-24 02:53:014638const char kNtpDriveModuleName[] = "NTP Drive Module";
4639const char kNtpDriveModuleDescription[] =
4640 "Shows the Google Drive module on the New Tab Page";
4641
Paul Adedeji680466942022-01-13 22:10:504642#if !defined(OFFICIAL_BUILD)
4643const char kNtpDummyModulesName[] = "NTP Dummy Modules";
4644const char kNtpDummyModulesDescription[] =
4645 "Adds dummy modules to New Tab Page when 'NTP Modules Redesigned' is "
4646 "enabled.";
4647#endif
4648
Roman Arorac7579c92023-02-27 22:17:174649const char kNtpHistoryClustersModuleName[] = "NTP Journeys Module";
4650const char kNtpHistoryClustersModuleDescription[] =
4651 "Shows the Journeys module on the New Tab Page.";
4652
Sophie Changdf637c982023-05-14 17:06:314653const char kNtpHistoryClustersModuleUseModelRankingName[] =
4654 "NTP Journeys Module Model Ranking";
4655const char kNtpHistoryClustersModuleUseModelRankingDescription[] =
4656 "Leverages a machine learning model to rank clusters for the Journeys "
4657 "module on the New Tab Page.";
4658
Yue Zhangb7a521b2023-04-11 22:33:194659const char kNtpChromeCartInHistoryClustersModuleName[] =
4660 "NTP ChromeCart in Journeys Module";
4661const char kNtpChromeCartInHistoryClustersModuleDescription[] =
4662 "Shows ChromeCart tile in the Journeys module when available on the New "
4663 "Tab Page.";
4664
Yue Zhang9d4bff02023-04-26 15:32:054665const char kNtpChromeCartHistoryClusterCoexistName[] =
4666 "NTP ChromeCart and Journeys Module Coexist";
4667const char kNtpChromeCartHistoryClusterCoexistDescription[] =
4668 "Shows ChromeCart module and ChromeCart+Journeys module together when "
4669 "available on the New Tab Page.";
4670
Paul Adedeji1ed53002022-06-13 20:15:304671const char kNtpMiddleSlotPromoDismissalName[] =
4672 "NTP Middle Slot Promo Dismissal";
4673const char kNtpMiddleSlotPromoDismissalDescription[] =
4674 "Allows middle slot promo to be dismissed from New Tab Page until "
4675 "new promo message is populated.";
Rohit Bhatia34189362021-09-04 03:55:204676
Lydia Lam44eea142021-06-10 01:19:004677const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop";
4678const char kNtpModulesDragAndDropDescription[] =
4679 "Enables modules to be reordered via dragging and dropping on the "
4680 "New Tab Page.";
4681
Paul Adedejid25542d32022-03-09 03:06:374682const char kNtpModulesFirstRunExperienceName[] =
4683 "NTP Modules First Run Experience";
4684const char kNtpModulesFirstRunExperienceDescription[] =
4685 "Shows first run experience for Modular NTP Desktop v1.";
4686
Tibor Goldschwendtf9501a62023-03-23 03:11:194687const char kNtpModulesHeaderIconName[] = "NTP Modules Header Icon";
4688const char kNtpModulesHeaderIconDescription[] =
4689 "Shows icons in NTP module headers.";
4690
Paul Adedeji1ed53002022-06-13 20:15:304691const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned";
4692const char kNtpModulesRedesignedDescription[] =
4693 "Shows the redesigned modules on the New Tab Page.";
4694
4695const char kNtpPhotosModuleName[] = "NTP Photos Module";
4696const char kNtpPhotosModuleDescription[] =
4697 "Shows the Google Photos module on the New Tab Page";
4698
4699const char kNtpPhotosModuleOptInArtWorkName[] =
4700 "NTP Photos Module Opt In ArtWork";
4701const char kNtpPhotosModuleOptInArtWorkDescription[] =
4702 "Determines the art work in the NTP Photos Opt-In card";
4703
4704const char kNtpPhotosModuleOptInTitleName[] = "NTP Photos Module Opt In Title";
4705const char kNtpPhotosModuleOptInTitleDescription[] =
4706 "Determines the title of the NTP Photos Opt-In card";
4707
4708const char kNtpPhotosModuleSoftOptOutName[] = "NTP Photos Module Soft Opt-Out";
4709const char kNtpPhotosModuleSoftOptOutDescription[] =
4710 "Enables soft opt-out option in Photos opt-in card";
4711
Tibor Goldschwendt899492d2023-06-14 00:03:514712const char kNtpRealboxIsTallName[] = "NTP Realbox Is Tall";
4713const char kNtpRealboxIsTallDescription[] =
4714 "Makes NTP Realbox taller when enabled.";
4715
Marlon Faceya00e2f92022-01-27 23:04:094716const char kNtpRealboxMatchSearchboxThemeName[] =
4717 "NTP Realbox Matches Searchbox Theme";
4718const char kNtpRealboxMatchSearchboxThemeDescription[] =
Marlon Facey4a2c2072022-09-26 23:24:534719 "Makes NTP Realbox drop shadow match that of the Searchbox when enabled.";
Marlon Faceya00e2f92022-01-27 23:04:094720
Marlon Facey904d12442021-09-02 23:02:244721const char kNtpRealboxPedalsName[] = "NTP Realbox Pedals";
4722const char kNtpRealboxPedalsDescription[] =
4723 "Shows pedals in the NTP Realbox when enabled.";
4724
John Lee07f68aa2023-05-19 21:32:584725const char kNtpRealboxWidthBehaviorName[] = "NTP Realbox Width Behavior";
4726const char kNtpRealboxWidthBehaviorDescription[] =
4727 "Determines the width of the NTP realbox.";
4728
Marlon Facey4a2c2072022-09-26 23:24:534729const char kNtpRealboxRoundedCornersName[] = "NTP Realbox Rounded Corners";
4730const char kNtpRealboxRoundedCornersDescription[] =
4731 "Make NTP realbox dropdown corners match that of the Searchbox.";
4732
Marlon Facey94eac62a02021-12-15 01:16:374733const char kNtpRealboxUseGoogleGIconName[] = "NTP Realbox Google G Icon";
4734const char kNtpRealboxUseGoogleGIconDescription[] =
4735 "Shows Google G icon "
4736 "instead of Search Loupe in realbox when enabled";
4737
Paul Adedeji1ed53002022-06-13 20:15:304738const char kNtpRecipeTasksModuleName[] = "NTP Recipe Tasks Module";
4739const char kNtpRecipeTasksModuleDescription[] =
4740 "Shows the recipe tasks module on the New Tab Page.";
4741
Tibor Goldschwendta82f86c2023-03-14 00:26:514742const char kNtpReducedLogoSpaceName[] = "NTP Reduced Logo Space";
4743const char kNtpReducedLogoSpaceDescription[] =
4744 "Reduces space the logo fills up vertically.";
4745
Paul Adedeji1ed53002022-06-13 20:15:304746const char kNtpSafeBrowsingModuleName[] = "NTP Safe Browsing Module";
4747const char kNtpSafeBrowsingModuleDescription[] =
4748 "Shows the safe browsing module on the New Tab Page.";
4749
Tibor Goldschwendteec42922023-03-22 18:54:544750const char kNtpSingleRowShortcutsName[] = "NTP Single Row Shortcuts";
4751const char kNtpSingleRowShortcutsDescription[] =
4752 "Shows shortcuts in a single wide row on the New Tab Page.";
4753
Tibor Goldschwendtf9501a62023-03-23 03:11:194754const char kNtpWideModulesName[] = "NTP Wide Modules";
4755const char kNtpWideModulesDescription[] =
4756 "Shows wide NTP modules if NTP provides enough space.";
4757
Aran Gilman766c2ad2019-04-18 00:15:414758const char kEnableReaderModeName[] = "Enable Reader Mode";
4759const char kEnableReaderModeDescription[] =
4760 "Allows viewing of simplified web pages by selecting 'Customize and "
4761 "control Chrome'>'Distill page'";
4762
Wei Li2946b352019-08-19 21:49:544763const char kHappinessTrackingSurveysForDesktopDemoName[] =
4764 "Happiness Tracking Surveys Demo";
4765const char kHappinessTrackingSurveysForDesktopDemoDescription[] =
4766 "Enable showing Happiness Tracking Surveys Demo to users on Desktop";
4767
Ramin Halavati7935b622022-11-16 08:11:464768const char kLayoutExtractionName[] = "Layout Extraction";
4769const char kLayoutExtractionDescription[] =
4770 "Enables Layout Extraction local machine intelligence library to use "
4771 "screen snapshots to add metadata for accessibility tools.";
4772
Travis Skarebcdb5ed32018-08-17 01:49:404773const char kOmniboxDriveSuggestionsName[] =
4774 "Omnibox Google Drive Document suggestions";
manukh918d82552022-10-11 01:12:224775const char kOmniboxDriveSuggestionsDescription[] =
Travis Skarebcdb5ed32018-08-17 01:49:404776 "Display suggestions for Google Drive documents in the omnibox when Google "
4777 "is the default search engine.";
4778
Viktor Semeniuk083adff22022-11-16 16:15:474779const char kPasswordsGroupingName[] = "Passwords grouping";
4780const char kPasswordsGroupingDescription[] =
4781 "Enables displaying passwords grouped together using information from "
4782 "the affiliation service.";
4783
Viktor Semeniuke4aa5bc2022-08-17 07:22:594784const char kPasswordManagerRedesignName[] = "Password Manager new UI";
4785const char kPasswordManagerRedesignDescription[] =
4786 "Enables new Password Manager UI on Desktop";
4787
Filipa Senracb661ca32023-04-19 16:03:134788const char kPermissionStorageAccessAPIName[] =
4789 "Storage Access API permission UI";
4790const char kPermissionStorageAccessAPIDescription[] =
4791 "Enables the new Storage Access API permission UI on Desktop";
4792
Moe Ahmadi6a814b92023-04-11 23:28:464793const char kRealboxSecondaryZeroSuggestName[] =
4794 "Enables showing secondary zero-prefix suggestions in NTP realbox.";
4795const char kRealboxSecondaryZeroSuggestDescription[] =
4796 "When enabled, allows showing secondary zero-prefix suggestions in NTP "
4797 "realbox.";
4798
Chris Thompson657d5c82020-10-08 23:04:104799const char kSCTAuditingName[] = "SCT auditing";
4800const char kSCTAuditingDescription[] =
4801 "Enables SCT auditing for users who have opted in to Safe Browsing "
4802 "Extended Reporting.";
4803
Jochen Eisingerbd1033a2023-03-27 18:31:234804#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
4805const char kSettingsEnableGetTheMostOutOfChromeName[] =
Jochen Eisinger6ef16de2023-03-23 20:44:184806 "'Get the most out of Chrome' documentation";
Jochen Eisingerbd1033a2023-03-27 18:31:234807const char kSettingsEnableGetTheMostOutOfChromeDescription[] =
Jochen Eisinger6ef16de2023-03-23 20:44:184808 "When enabled, the 'Get the most out of Chrome' documentation section "
4809 "will be available.";
Jochen Eisingerbd1033a2023-03-27 18:31:234810#endif
Jochen Eisinger6ef16de2023-03-23 20:44:184811
Alan Cutter9aa158b2023-01-20 16:12:144812const char kWebAppManifestImmediateUpdatingName[] =
4813 "Web App Manifest Immediate Updating";
4814const char kWebAppManifestImmediateUpdatingDescription[] =
4815 "Enables web app manifest updates to apply to running web app windows as "
4816 "soon as a change has been detected instead of waiting for all app windows "
4817 "to be closed.";
4818
Alan Cutter51d16c82023-04-17 08:29:054819const char kWebAppSyncGeneratedIconBackgroundFixName[] =
4820 "Web App Sync Generated Icon Background Fix";
4821const char kWebAppSyncGeneratedIconBackgroundFixDescription[] =
4822 "Schedules attempts to fix generated icons for sync installed web apps in "
4823 "the background with exponential backoff within their permitted fix time "
4824 "window.";
4825
4826const char kWebAppSyncGeneratedIconRetroactiveFixName[] =
4827 "Web App Sync Generated Icon Retroactive Fix";
4828const char kWebAppSyncGeneratedIconRetroactiveFixDescription[] =
4829 "Starts a time window for existing sync installed web apps with generated "
4830 "icons for background/update events to attempt fixes.";
4831
4832const char kWebAppSyncGeneratedIconUpdateFixName[] =
4833 "Web App Sync Generated Icon Update Fix";
4834const char kWebAppSyncGeneratedIconUpdateFixDescription[] =
Alan Cutterb9da75942023-04-06 02:05:344835 "Allows web apps installed via sync to update their icons without prompting"
4836 "during a manifest update if the icons were generated, indictative of"
4837 "network errors during the sync install.";
4838
Paul Adedeji1ed53002022-06-13 20:15:304839const char kWebAuthenticationPermitEnterpriseAttestationName[] =
4840 "Web Authentication Enterprise Attestation";
4841const char kWebAuthenticationPermitEnterpriseAttestationDescription[] =
4842 "Permit a set of origins to request a uniquely identifying enterprise "
4843 "attestation statement from a security key when creating a Web "
4844 "Authentication credential.";
4845
Danil Somsikov0d206142022-11-28 23:37:204846const char kDevToolsTabTargetLiteralName[] = "DevTools using Tab Target";
4847const char kDevToolsTabTargetLiteralDescription[] =
4848 "Makes DevTools use an experimental CDP Tab target.";
4849
Xiaohan Wang55ae2c012022-01-20 21:49:114850#endif // BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:284851
4852// Windows ---------------------------------------------------------------------
4853
Xiaohan Wang55ae2c012022-01-20 21:49:114854#if BUILDFLAG(IS_WIN)
Brett Wilson7b44537e2017-08-18 01:38:284855
Bill Carr49f46082022-02-28 17:54:414856const char kCalculateNativeWinOcclusionName[] =
4857 "Calculate window occlusion on Windows";
4858const char kCalculateNativeWinOcclusionDescription[] =
4859 "Calculate window occlusion on Windows will be used in the future "
4860 "to throttle and potentially unload foreground tabs in occluded windows";
4861
Igor Ruvinovb1f7bea2022-11-08 23:20:504862const char kCloudApAuthName[] = "CloudAP authentication";
4863const char kCloudApAuthDescription[] =
4864 "Enables ambient authentication into supported identity providers using "
4865 "the CloudAP framework. Credentials are retrieved from accounts signed "
4866 "into the operating system.";
4867
Igor Ruvinova21c076a2023-05-10 18:51:094868const char kCloudApAuthAttachAsHeaderName[] =
4869 "CloudAP authentication data headers";
4870const char kCloudApAuthAttachAsHeaderDescription[] =
4871 "Allows certain ambient authentication data to be added to HTTP requests "
4872 "as separate headers instead of being appended to the cookie "
4873 "header.";
4874
Armando Miragliad2e6fc9e2020-03-06 09:23:094875const char kEnableMediaFoundationVideoCaptureName[] =
4876 "MediaFoundation Video Capture";
4877const char kEnableMediaFoundationVideoCaptureDescription[] =
4878 "Enable/Disable the usage of MediaFoundation for video capture. Fall back "
4879 "to DirectShow if disabled.";
4880
Xiaohan Wang9c9e5d35c2021-09-02 17:36:094881const char kHardwareSecureDecryptionName[] = "Hardware Secure Decryption";
4882const char kHardwareSecureDecryptionDescription[] =
4883 "Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
4884 "for protected content playback.";
4885
Xiaohan Wang2d588832021-11-16 00:57:074886const char kHardwareSecureDecryptionExperimentName[] =
4887 "Hardware Secure Decryption Experiment";
4888const char kHardwareSecureDecryptionExperimentDescription[] =
4889 "Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
4890 "for experimental protected content playback.";
4891
Xiaohan Wang90409292022-03-26 09:06:284892const char kHardwareSecureDecryptionFallbackName[] =
4893 "Hardware Secure Decryption Fallback";
4894const char kHardwareSecureDecryptionFallbackDescription[] =
4895 "Allows automatically disabling hardware secure Content Decryption Module "
4896 "(CDM) after failures or crashes. Subsequent playback may use software "
4897 "secure CDMs. If this feature is disabled, the fallback will never happen "
4898 "and users could be stuck with playback failures.";
4899
Bill Carrc2abb9222021-11-07 22:02:564900const char kMediaFoundationClearName[] = "MediaFoundation for Clear";
4901const char kMediaFoundationClearDescription[] =
4902 "Enable/Disable the use of MediaFoundation for non-protected content "
4903 "playback on supported systems.";
4904
henrikac66d1012021-01-19 13:59:184905const char kRawAudioCaptureName[] = "Raw audio capture";
4906const char kRawAudioCaptureDescription[] =
4907 "Enable/Disable the usage of WASAPI raw audio capture. When enabled, the "
4908 "audio stream is a 'raw' stream that bypasses all signal processing except "
4909 "for endpoint specific, always-on processing in the Audio Processing Object"
4910 " (APO), driver, and hardware.";
4911
Lei Zhangc05af2a2020-05-15 20:54:054912const char kRunVideoCaptureServiceInBrowserProcessName[] =
4913 "Run video capture service in browser";
4914const char kRunVideoCaptureServiceInBrowserProcessDescription[] =
4915 "Run the video capture service in the browser process.";
Brett Wilson7b44537e2017-08-18 01:38:284916
Jonah Ryan-Davis90ae3322021-09-21 17:34:484917const char kUseAngleDescriptionWindows[] =
Olli Etuaho122321192018-09-07 10:15:294918 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
4919 "computers by default. Using the OpenGL driver as the graphics backend may "
4920 "result in higher performance in some graphics-heavy applications, "
4921 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
4922 "video playback.";
4923
Olli Etuaho122321192018-09-07 10:15:294924const char kUseAngleD3D11[] = "D3D11";
4925const char kUseAngleD3D9[] = "D3D9";
Nathan Zabriskie70c046f2019-10-16 01:19:024926const char kUseAngleD3D11on12[] = "D3D11on12";
Olli Etuaho122321192018-09-07 10:15:294927
Alex Forrenceb42504892022-07-20 21:50:074928const char kUseWaitableSwapChainName[] = "Use waitable swap chains";
4929const char kUseWaitableSwapChainDescription[] =
4930 "Use waitable swap chains to reduce presentation latency (effective only "
4931 "Windows 8.1 or later). If enabled, specify the maximum number of frames "
4932 "that can be queued, ranging from 1-3. 1 has the lowest delay but is most "
4933 "likely to drop frames, while 3 has the highest delay but is least likely "
4934 "to drop frames.";
4935
Brett Wilson7b44537e2017-08-18 01:38:284936const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
4937const char kUseWinrtMidiApiDescription[] =
4938 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
4939 "later).";
4940
Jackson Loefflera6915ef2023-05-23 16:36:474941const char kWindows11MicaTitlebarName[] = "Windows 11 Mica titlebar";
4942const char kWindows11MicaTitlebarDescription[] =
4943 "Use the DWM system-drawn Mica titlebar on Windows 11, version 22H2 (build "
4944 "22621) and above.";
4945
Eric Lawrencebff3a1652023-05-23 04:12:034946#if BUILDFLAG(ENABLE_EXTENSIONS)
4947const char kLaunchWindowsNativeHostsDirectlyName[] =
4948 "Force Native Host Executables to Launch Directly";
4949const char kLaunchWindowsNativeHostsDirectlyDescription[] =
4950 "Force Native Host executables to launch directly via CreateProcess.";
4951#endif // ENABLE_EXTENSIONS
4952
Daniel Hosseinian159cb3d2020-03-13 03:02:024953#if BUILDFLAG(ENABLE_PRINTING)
Lei Zhang1419cab2021-09-09 17:04:444954const char kPrintWithPostScriptType42FontsName[] =
4955 "Print with PostScript Type 42 fonts";
4956const char kPrintWithPostScriptType42FontsDescription[] =
4957 "When using PostScript level 3 printing, render text with Type 42 fonts if "
4958 "possible.";
4959
Lei Zhanga6a8a492020-05-14 03:55:034960const char kPrintWithReducedRasterizationName[] =
4961 "Print with reduced rasterization";
4962const char kPrintWithReducedRasterizationDescription[] =
4963 "When using GDI printing, avoid rasterization if possible.";
4964
Cuc Doan074d8ed2022-03-14 22:03:344965const char kReadPrinterCapabilitiesWithXpsName[] =
4966 "Read printer capabilities with XPS";
4967extern const char kReadPrinterCapabilitiesWithXpsDescription[] =
4968 "When enabled, utilize XPS interface to read printer capabilities.";
4969
Alan Screen574ffd662019-11-21 22:38:534970const char kUseXpsForPrintingName[] = "Use XPS for printing";
4971const char kUseXpsForPrintingDescription[] =
4972 "When enabled, use XPS printing API instead of the GDI print API.";
4973
Alan Screen49388112019-12-13 23:34:214974const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF";
4975const char kUseXpsForPrintingFromPdfDescription[] =
4976 "When enabled, use XPS printing API instead of the GDI print API when "
4977 "printing PDF documents.";
Daniel Hosseinian159cb3d2020-03-13 03:02:024978#endif // BUILDFLAG(ENABLE_PRINTING)
Alan Screen49388112019-12-13 23:34:214979
Xiaohan Wang55ae2c012022-01-20 21:49:114980#endif // BUILDFLAG(IS_WIN)
Brett Wilson7b44537e2017-08-18 01:38:284981
4982// Mac -------------------------------------------------------------------------
4983
Xiaohan Wang55ae2c012022-01-20 21:49:114984#if BUILDFLAG(IS_MAC)
Brett Wilson7b44537e2017-08-18 01:38:284985
Karol Sygiet901acb42022-08-08 16:00:044986const char kBiometricAuthenticationInSettingsName[] =
4987 "Biometric authentication in settings";
4988const char kBiometricAuthenticationInSettingsDescription[] =
4989 "Enables biometric authentication in settings to view/edit/copy a password";
4990
Keren Zhu28ac51822023-04-10 18:27:534991const char kCr2023MacFontSmoothingName[] =
4992 "Chrome Refresh 2023 Mac Font Smoothing";
4993const char kCr2023MacFontSmoothingDescription[] =
4994 "Enables Mac Font Smoothing that simulates optical sizes "
4995 "to enhance text readability at smaller scales. "
4996 "Only effective when Chrome Refresh 2023 is enabled.";
4997
Daniel Hosseinian159cb3d2020-03-13 03:02:024998#if BUILDFLAG(ENABLE_PRINTING)
4999const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend";
5000const char kCupsIppPrintingBackendDescription[] =
5001 "Use the CUPS IPP printing backend instead of the original CUPS backend "
5002 "that calls the PPD API.";
5003#endif // BUILDFLAG(ENABLE_PRINTING)
5004
Avi Drissman0095f552021-11-05 19:58:535005const char kEnableUniversalLinksName[] = "Universal Links";
5006const char kEnableUniversalLinksDescription[] =
5007 "Include Universal Links in the intent picker.";
5008
Sidney San Martín678fd4112019-03-30 00:13:055009const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar";
5010const char kImmersiveFullscreenDescription[] =
5011 "Automatically hide and show the toolbar in fullscreen.";
5012
Greg Kerrf46f31872019-08-08 20:22:445013const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox";
5014const char kMacSyscallSandboxDescription[] =
5015 "Controls whether the macOS sandbox filters syscalls.";
5016
Florent Castellibd7db032023-02-22 11:22:035017const char kRetryGetVideoCaptureDeviceInfosName[] =
5018 "Retry capture device enumeration on crash";
5019const char kRetryGetVideoCaptureDeviceInfosDescription[] =
5020 "Enables retries when enumerating the available video capture devices "
5021 "after a crash. The capture service is restarted without loading external "
5022 "DAL plugins which could have caused the crash.";
5023
Leonard Grey2e90921c2021-12-02 22:46:135024const char kScreenTimeName[] = "Screen Time";
5025const char kScreenTimeDescription[] =
5026 "Integrate with the macOS Screen Time system. Only enabled on macOS 12.1 "
5027 "and later.";
5028
Jonah Ryan-Davis90ae3322021-09-21 17:34:485029const char kUseAngleDescriptionMac[] =
5030 "Choose the graphics backend for ANGLE. The OpenGL backend is soon to be "
5031 "deprecated on Mac, and may contain driver bugs that are not planned to be "
5032 "fixed. The Metal backend is still experimental, and may contain bugs that "
5033 "are still being worked on. The Metal backend should be more performant, "
5034 "but may still be behind the OpenGL backend until fully released.";
5035
5036const char kUseAngleMetal[] = "Metal";
5037
Tom Burgin5c3fde02022-06-23 18:24:075038const char kSystemColorChooserName[] = "System Color Chooser";
5039const char kSystemColorChooserDescription[] =
5040 "Enables a button that launches the macOS native color chooser.";
5041
Brett Wilson7b44537e2017-08-18 01:38:285042#endif
5043
Jonah Ryan-Davis90ae3322021-09-21 17:34:485044// Windows and Mac -------------------------------------------------------------
5045
Xiaohan Wang55ae2c012022-01-20 21:49:115046#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
Jonah Ryan-Davis90ae3322021-09-21 17:34:485047
5048const char kUseAngleName[] = "Choose ANGLE graphics backend";
5049const char kUseAngleDefault[] = "Default";
5050const char kUseAngleGL[] = "OpenGL";
Karol Sygiet901acb42022-08-08 16:00:045051
Karol Sygietc5e3da652022-08-02 15:47:505052const char kBiometricAuthenticationForFillingName[] =
5053 "Biometric authentication reauth before filling";
5054const char kBiometricAuthenticationForFillingDescription[] =
5055 "Enables biometric authentication before filling form data";
Xiaohan Wang55ae2c012022-01-20 21:49:115056#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
Jonah Ryan-Davis90ae3322021-09-21 17:34:485057
Richard Chuia9ed7be12022-04-13 21:30:355058// ChromeOS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:345059
Yuta Hijikata235fc62b2020-12-08 03:48:325060#if BUILDFLAG(IS_CHROMEOS_ASH)
vabr0215a8e2017-03-28 12:47:345061
Brett Wilson7b44537e2017-08-18 01:38:285062const char kAcceleratedMjpegDecodeName[] =
5063 "Hardware-accelerated mjpeg decode for captured frame";
5064const char kAcceleratedMjpegDecodeDescription[] =
5065 "Enable hardware-accelerated mjpeg decode for captured frame where "
5066 "available.";
vabr0215a8e2017-03-28 12:47:345067
Thanh Nguyen6b4c5852022-05-26 22:03:255068const char kAdaptiveChargingForTestingName[] =
5069 "Show adaptive charging notifications for testing";
5070const char kAdaptiveChargingForTestingDescription[] =
5071 "Show adaptive charging notifications and nudges for testing. This is "
5072 "meant to be used by developers to test the feature UI only. The "
5073 "notifications will be shown after the device is plugged in to the "
5074 "charger. Please DO NOT enable this if you're not a developer who wants to "
5075 "test the UI of the adaptive charging feature.";
5076
Thanh Nguyen730ac8a32022-05-19 08:50:465077const char kAdaptiveChargingName[] = "Enable adaptive charging feature";
5078const char kAdaptiveChargingDescription[] =
5079 "Show settings to enable/disable adaptive charging feature.";
5080
Jun Ishiguro508cc98d2023-06-09 00:12:355081const char kAllowDevtoolsInSystemUIName[] = "Enable DevTools in System UI";
5082const char kAllowDevtoolsInSystemUIDescription[] =
5083 "Enable the developer tools (DevTools) including the page source viewer "
5084 "(view-source) in Ash. By default, these tools are disabled if Lacros is "
5085 "the only browser, so as not to confuse the user by opening an Ash window. "
5086 "By enabling this flag, you can access them via the context menu or "
5087 "shortcuts to debug the system UI.";
5088
Andreea Costinas99e24192023-02-15 14:39:465089const char kAllowEapDefaultCasWithoutSubjectVerificationName[] =
5090 "Allow EAP network configs with default server CAs without subject "
5091 "verification";
5092const char kAllowEapDefaultCasWithoutSubjectVerificationDescription[] =
5093 "Allows creating EAP network configs which use the default server CA certs "
5094 "without specifying subject or domain match options which validate the "
5095 "identity of the server.";
5096
Vyshu9ea9e182021-02-04 17:53:065097const char kAllowRepeatedUpdatesName[] =
5098 "Continue checking for updates before reboot and after initial update.";
5099const char kAllowRepeatedUpdatesDescription[] =
5100 "Continues checking to see if there is a more recent update, even if user"
5101 "has not rebooted to apply the previous update.";
5102
Kyle Horimoto734f0752020-03-20 20:46:545103const char kAllowScrollSettingsName[] =
5104 "Allow changes to scroll acceleration/sensitivity for mice/touchpads.";
5105const char kAllowScrollSettingsDescription[] =
5106 "Shows settings to enable/disable scroll acceleration and to adjust the "
5107 "sensitivity for scrolling.";
5108
Michael Checo6adc5f92023-05-09 03:09:025109const char kAltClickAndSixPackCustomizationName[] =
5110 "Allow users to customize Alt-Click and 6-pack key remapping.";
5111
5112const char kAltClickAndSixPackCustomizationDescription[] =
5113 "Shows settings to customize Alt-Click and 6-pack key remapping in the "
5114 "keyboard settings page.";
5115
Jeffrey Kardatzkea686ded22022-03-28 18:28:465116const char kAlwaysEnableHdcpName[] = "Always enable HDCP for external displays";
5117const char kAlwaysEnableHdcpDescription[] =
5118 "Enables the specified type for HDCP whenever an external display is "
5119 "connected. By default, HDCP is only enabled when required.";
5120const char kAlwaysEnableHdcpDefault[] = "Default";
5121const char kAlwaysEnableHdcpType0[] = "Type 0";
5122const char kAlwaysEnableHdcpType1[] = "Type 1";
5123
Eric Sum2971b952022-10-20 04:55:375124const char kAmbientModeThrottleAnimationName[] =
5125 "Throttle the frame rate of Lottie animations in ambient mode";
5126const char kAmbientModeThrottleAnimationDescription[] =
5127 "The throttled frame rate and when to throttle are embedded within the "
5128 "Lottie animation file itself. It is chosen by the motion designer and "
5129 "varies depending on how much motion there is in the animation. This is "
5130 "done in the hopes of improving power consumption while maintaining the "
5131 "same user-visible smoothness. This flag applies to all ambient Lottie "
5132 "animations that have throttling specified in the file.";
5133
Antoni Dikovb3487502022-09-21 15:24:215134const char kApnRevampName[] = "APN Revamp";
5135const char kApnRevampDescription[] =
5136 "Enables the ChromeOS APN Revamp, which updates cellular network APN "
5137 "system UI and related infrastructure.";
5138
Daniel Andersson9a81b33502023-03-20 19:15:375139const char kAppLaunchAutomationName[] = "Enable app launch automation";
5140const char kAppLaunchAutomationDescription[] =
5141 "Allows groups of apps to be launched.";
5142
Bryan Yuc6e84d522023-04-03 02:48:595143const char kArcArcOnDemandExperimentName[] = "Enable ARC on Demand";
5144const char kArcArcOnDemandExperimentDescription[] =
5145 "Delay ARC activation if no apps is installed.";
5146
Ryo Hashimoto8f4b30ced2019-04-08 12:14:195147const char kArcCustomTabsExperimentName[] =
5148 "Enable Custom Tabs experiment for ARC";
5149const char kArcCustomTabsExperimentDescription[] =
5150 "Allow Android apps to use Custom Tabs."
5151 "This feature only works on the Canary and Dev channels.";
5152
Alexander Bolodurin4e0a465c2021-03-31 23:14:035153const char kArcDocumentsProviderUnknownSizeName[] =
5154 "Enable ARC DocumentsProvider unknown file size handling";
5155const char kArcDocumentsProviderUnknownSizeDescription[] =
5156 "Allow opening DocumentsProvider files where size is not reported.";
5157
Satoshi Niwa8b1d5282018-10-24 04:53:035158const char kArcFilePickerExperimentName[] =
5159 "Enable file picker experiment for ARC";
5160const char kArcFilePickerExperimentDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355161 "Enables using ChromeOS file picker in ARC.";
Satoshi Niwa8b1d5282018-10-24 04:53:035162
Shengsong Tan61924b62022-09-13 03:05:115163extern const char kArcFixupWindowName[] =
5164 "Enable ARC Ghost Window for ARC App fixup";
5165extern const char kArcFixupWindowDescription[] =
5166 "Popup ARC Ghost Window app launching before fixup finishes.";
5167
Rachel Wongec3b8c42022-07-08 03:11:225168const char kArcGameModeName[] = "Enable Game Mode for ARC";
Matthew DeVoreb8bdedd2022-06-28 15:17:465169const char kArcGameModeDescription[] =
5170 "ARC Fullscreen Games will request accomodation from ChromeOS for "
5171 "sustained performance.";
5172
Charles William Dicka0a0f972023-01-27 02:12:325173const char kArcIdleManagerName[] = "Enable ARC Idle Manager";
5174const char kArcIdleManagerDescription[] =
5175 "ARC will turn on Android's doze mode when idle.";
5176
Shengsong Tan6cb88592022-11-09 01:57:355177extern const char kArcInstantResponseWindowOpenName[] =
5178 "Enable Instance Response for ARC app window open";
5179extern const char kArcInstantResponseWindowOpenDescription[] =
5180 "In some devices the placeholder window will popup immediately after the "
5181 "user attempts to launch apps.";
5182
Tetsui Ohkubo4c6d7f42021-07-07 16:47:375183const char kArcKeyboardShortcutHelperIntegrationName[] =
5184 "Enable keyboard shortcut helper integration for ARC";
5185const char kArcKeyboardShortcutHelperIntegrationDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355186 "Shows keyboard shortcuts from Android apps in ChromeOS Shortcut Viewer";
Tetsui Ohkubo4c6d7f42021-07-07 16:47:375187
Lev Rumyantsev6eddc802019-08-27 19:41:215188const char kArcNativeBridgeToggleName[] =
5189 "Toggle between native bridge implementations for ARC";
5190const char kArcNativeBridgeToggleDescription[] =
5191 "Toggle between native bridge implementations for ARC.";
Lev Rumyantsev7a8544312017-08-18 19:26:515192
Tim Sergeantb2f5dc02022-09-14 08:07:175193const char kArcNearbyShareFuseBoxName[] = "ARC Nearby Sharing through FuseBox";
5194const char kArcNearbyShareFuseBoxDescription[] =
5195 "When enabled, files shared through ARC Nearby Sharing will be shared "
5196 "through the ChromeOS FuseBox Service.";
5197
Yusuke Sato4717d1782021-03-12 23:27:175198const char kArcRtVcpuDualCoreName[] =
5199 "Enable ARC real time vcpu on a device with 2 logical cores online.";
5200const char kArcRtVcpuDualCoreDesc[] =
5201 "Enable ARC real time vcpu on a device with 2 logical cores online to "
5202 "reduce media playback glitch.";
5203
5204const char kArcRtVcpuQuadCoreName[] =
5205 "Enable ARC real time vcpu on a device with 3+ logical cores online.";
5206const char kArcRtVcpuQuadCoreDesc[] =
5207 "Enable ARC real time vcpu on a device with 3+ logical cores online to "
5208 "reduce media playback glitch.";
5209
Yao Li68896be2023-06-09 21:10:125210const char kArcSwitchToKeyMintDaemonName[] = "Switch to KeyMint Daemon.";
5211const char kArcSwitchToKeyMintDaemonDesc[] =
5212 "Switch from Keymaster Daemon to KeyMint Daemon. Must be switched on/off "
5213 "at the same time with \"Switch To KeyMint on ARC-T\"";
5214
Yao Li8f4568b12023-02-15 19:59:455215const char kArcSwitchToKeyMintOnTName[] = "Switch to KeyMint on ARC-T.";
5216const char kArcSwitchToKeyMintOnTDesc[] =
Yao Li68896be2023-06-09 21:10:125217 "Switch from Keymaster to KeyMint on ARC-T. Must be switched on/off at the "
5218 "same time with \"Switch to KeyMint Daemon\"";
Yao Li8f4568b12023-02-15 19:59:455219
lgchengcda295dce2023-02-22 02:38:315220const char kArcSyncInstallPriorityName[] =
5221 "Enable supporting install priority for synced ARC apps.";
5222const char kArcSyncInstallPriorityDescription[] =
5223 "Enable supporting install priority for synced ARC apps. Pass install "
5224 "priority to Play instead of using default install priority specified "
5225 "in Play";
5226
Shengsong Tan4cc02572023-02-06 05:25:245227const char kArcVmmSwapKBShortcutName[] =
5228 "Keyboard shortcut trigger for ARCVM"
5229 " vmm swap feature";
5230const char kArcVmmSwapKBShortcutDesc[] =
5231 "Alt + Ctrl + Shift + O/P to enable / disable ARCVM vmm swap. Only for "
5232 "experimental usage.";
5233
Pattara Teerapong425077a2023-01-12 15:21:405234const char kArcEnableAAudioMMAPName[] = "Enable ARCVM AAudio MMAP";
5235const char kArcEnableAAudioMMAPDescription[] =
5236 "Enable AAudio MMAP support for ARCVM which provides low latency audio "
5237 "for supported apps.";
5238
Pattara Teerapong5aad01b2023-05-12 03:15:295239const char kArcAAudioMMAPLowLatencyName[] =
5240 "Enable ARCVM AAudio MMAP low latency";
5241const char kArcAAudioMMAPLowLatencyDescription[] =
5242 "When enabled, ARCVM AAudio MMAP will use low latency setting.";
5243
Satoshi Niwa4e1c9962022-03-01 00:23:575244const char kArcEnableVirtioBlkForDataName[] =
5245 "Enable virtio-blk for ARCVM /data";
5246const char kArcEnableVirtioBlkForDataDesc[] =
5247 "If enabled, ARCVM uses virtio-blk for /data in Android storage.";
5248
Youkichi Hosoi26d9aa12023-04-21 06:34:355249const char kArcExternalStorageAccessName[] = "External storage access by ARC";
5250const char kArcExternalStorageAccessDescription[] =
5251 "Allow Android apps to access external storage devices like USB flash "
5252 "drives and SD cards";
5253
Andrew Moylan2db11cd2019-05-22 14:25:155254const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
5255const char kAshEnableUnifiedDesktopDescription[] =
5256 "Enable unified desktop mode which allows a window to span multiple "
5257 "displays.";
5258
Hung-Hsien Chen30af66752023-02-24 02:55:265259const char kAudioAPNoiseCancellationName[] = "Audio noise cancellation on AP";
5260const char kAudioAPNoiseCancellationDescription[] =
5261 "Enable noise cancellation on AP";
5262
Li-Yu Yu7610f0082023-01-04 08:36:295263const char kAudioFlexibleLoopbackName[] =
5264 "ChromeOS flexible loopback API support";
5265const char kAudioFlexibleLoopbackDescription[] =
5266 "Enable flexible loopback API support in ChromeOS.";
5267
Chih-Yang Hsia540cf372022-08-04 08:10:225268const char kAudioHFPMicSRName[] =
5269 "Audio super-resolution Bluetooth HFP microphone";
5270const char kAudioHFPMicSRDescription[] =
5271 "Enable super-resolution Bluetooth HFP microphone recording.";
5272
Jeremy Wu8ea57b62023-06-02 02:55:265273const char kAudioHFPNbsWarningName[] = "Warn when an NBS device is selected";
5274const char kAudioHFPNbsWarningDescription[] =
5275 "Shows a warning in the quick settings when an NBS device is selected";
5276
Pin-chih Linf52f4602023-03-06 04:01:315277const char kAudioHFPOffloadName[] =
5278 "Audio Bluetooth HFP offloaded to DSP if supported";
5279const char kAudioHFPOffloadDescription[] =
5280 "While enabled, HFP Audio data is transmitted via the offloaded path "
5281 "in DSP if supported by device.";
5282
Jeremy Wu74b1a552023-06-05 07:59:285283const char kAudioHFPSwbName[] = "Audio Bluetooth HFP Super-wide-band support";
5284const char kAudioHFPSwbDescription[] =
5285 "Enable Bluetooth HFP Super-wide-band codec if supported.";
5286
Ren-Pei Zeng61605a52021-12-06 13:07:485287const char kAutoFramingOverrideName[] = "Auto-framing control override";
5288const char kAutoFramingOverrideDescription[] =
5289 "Overrides the default to forcibly enable or disable the auto-framing "
5290 "feature";
5291
Yulun Wufad53772022-06-22 22:56:355292const char kAutocompleteExtendedSuggestionsName[] =
5293 "Extended suggestions for CrOS autocomplete";
5294const char kAutocompleteExtendedSuggestionsDescription[] =
5295 "Enables extended autocomplete suggestions experiment on ChromeOS.";
5296
Curtis McMullanf1351802022-12-02 05:23:025297const char kAutocorrectByDefaultName[] = "CrOS autocorrect by default";
5298const char kAutocorrectByDefaultDescription[] =
5299 "Enables autocorrect by default experiment on ChromeOS";
5300
Bao-Duy Tran395c169c72022-02-14 06:57:345301const char kAutocorrectParamsTuningName[] = "CrOS autocorrect params tuning";
5302const char kAutocorrectParamsTuningDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355303 "Enables params tuning experiment for autocorrect on ChromeOS.";
Bao-Duy Tran395c169c72022-02-14 06:57:345304
Zac Partridgeefc2ec02022-11-21 06:28:455305const char kAutocorrectToggleName[] = "CrOS autocorrect toggle";
5306const char kAutocorrectToggleDescription[] =
5307 "Enables using a toggle for enabling autocorrect on ChromeOS.";
5308
Chuong Hob2718c32023-06-02 07:47:015309const char kAutocorrectUseReplaceSurroundingTextName[] =
5310 "Use ReplaceSurroundingText API for autocorrect.";
5311const char kAutocorrectUseReplaceSurroundingTextDescription[] =
5312 "When autocorrect is enabled, use the ReplaceSurroundingText API "
5313 "for better app compatibility.";
5314
Yue Li1c3496412022-08-10 23:37:145315const char kAvatarsCloudMigrationName[] =
5316 "Loading CrOS avatar images from the cloud";
5317const char kAvatarsCloudMigrationDescription[] =
5318 "Enables loading avatar images from the cloud on ChromeOS.";
5319
Michael Sun1b15a302020-04-07 02:57:295320const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size";
5321const char kBluetoothFixA2dpPacketSizeDescription[] =
5322 "Fixes Bluetooth A2DP packet size to a smaller default value to improve "
5323 "audio quality and may fix audio stutter.";
5324
Joseph Hwangc0c68e62022-08-12 16:52:165325const char kBluetoothQualityReportName[] = "Bluetooth Quality Report";
5326const char kBluetoothQualityReportDescription[] =
5327 "Enables the Bluetooth Quality Report feature on Bluetooth controllers "
5328 "which will send the Bluetooth link quality statistics such as the "
5329 "signal strength, the lost packet count, etc. to the host.";
5330
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:345331const char kBluetoothWbsDogfoodName[] = "Bluetooth WBS dogfood";
5332const char kBluetoothWbsDogfoodDescription[] =
5333 "Enables Bluetooth wideband speech mic as default audio option. "
5334 "Note that flipping this flag makes no difference on most of the "
Richard Chuia9ed7be12022-04-13 21:30:355335 "ChromeOS models, because Bluetooth WBS is either unsupported "
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:345336 "or fully launched. Only on the few models that Bluetooth WBS is "
5337 "still stablizing this flag will take effect.";
5338
Manish Mandlikdd93b612022-08-12 01:08:195339const char kBluetoothCoredumpName[] = "Enable Bluetooth Device Coredump";
5340const char kBluetoothCoredumpDescription[] =
5341 "Enable Bluetooth coredump collection if supported. Please note that "
5342 "coredumps are only collected when hardware exceptions occur and are "
5343 "used for debugging such exceptions.";
5344
Manish Mandlik05533f12023-03-16 00:31:075345const char kBluetoothFlossCoredumpName[] =
5346 "Enable Bluetooth Device Coredump for Floss";
5347const char kBluetoothFlossCoredumpDescription[] =
5348 "Enable Bluetooth coredump collection if supported. Please note that "
5349 "coredumps are only collected when hardware exceptions occur and are "
5350 "used for debugging such exceptions.";
5351
mingxuanshia43a7ce2022-08-25 07:46:365352const char kRobustAudioDeviceSelectLogicName[] =
5353 "Robust Audio Device Select Logic";
5354const char kRobustAudioDeviceSelectLogicDescription[] =
5355 "A more robust logic for automatic audio device selection which is more "
5356 "capable of remembering the user's preferences of audio devices.";
5357
Sonny Sasaka94725212021-12-17 01:37:305358const char kBluetoothUseFlossName[] = "Use Floss instead of BlueZ";
5359const char kBluetoothUseFlossDescription[] =
5360 "Enables using Floss (also known as Fluoride, Android's Bluetooth stack) "
5361 "instead of Bluez. This is meant to be used by developers and is not "
5362 "guaranteed to be stable";
5363
Zhengping Jiang706c2272022-07-13 05:50:345364const char kBluetoothUseLLPrivacyName[] = "Enable LL Privacy in BlueZ";
5365const char kBluetoothUseLLPrivacyDescription[] =
5366 "Enable address resolution offloading to Bluetooth Controller if "
5367 "supported. Modifying this flag will cause Bluetooth Controller to reset.";
5368
Abhishek Pandit-Subedi1843978c2023-05-17 02:52:235369const char kBluetoothLongAutosuspendName[] =
5370 "Use longer autosuspend delay for Bluetooth";
5371const char kBluetoothLongAutosuspendDescription[] =
5372 "Bluetooth will suspend-to-idle if there is no traffic for a set amount of "
5373 "time. When this flag is set, this autosuspend delay will be increased to "
5374 "several minutes when mice/keyboards are connected. This will impact power "
5375 "usage.";
5376
Sam Cackett2891ad82022-12-08 19:45:555377const char kCalendarJellyName[] = "Enable Calendar Jelly features";
5378const char kCalendarJellyDescription[] =
5379 "Enables Jelly changes for the sys tray Calendar views.";
5380
Ahmed Fakhry886038f2023-06-10 00:11:255381const char kCaptureModeAudioMixingName[] =
5382 "Enable screen capture advanced audio settings";
5383const char kCaptureModeAudioMixingDescription[] =
5384 "Enables the ability to record the microphone, or system audio each "
5385 "separately, or mix them together in a single stream in the screen capture "
5386 "tool.";
5387
Michele Fanb0c93e42023-01-03 16:08:005388const char kCaptureModeDemoToolsName[] =
5389 "Enable demo tools feature in screen capture";
5390const char kCaptureModeDemoToolsDescription[] =
5391 "Enables the ability to show clicks and keys during video recordings to "
5392 "enhance demo experience.";
5393
Ahmed Fakhrye1072c12023-02-27 20:58:495394const char kCaptureModeGifRecordingName[] =
5395 "Enable GIF recording in screen capture";
5396const char kCaptureModeGifRecordingDescription[] =
Ahmed Fakhry886038f2023-06-10 00:11:255397 "Enables the ability to record the screen into animated GIFs.";
Ahmed Fakhrye1072c12023-02-27 20:58:495398
Maggie Caic0666ef2023-06-01 08:46:375399const char kCrosWebAppShortcutUiUpdateName[] =
5400 "New ChromeOS Web app Shortcut UI";
5401const char kCrosWebAppShortcutUiUpdateDescription[] =
5402 "Enables new UI for shortcuts created from browser that backed by web app"
5403 "system on ChromeOS.";
5404
Ben Beckerf60ef852023-03-22 23:08:245405extern const char kDeskButtonName[] = "Desk button in shelf";
5406extern const char kDeskButtonDescription[] =
5407 "Show a desk button that provides quick access to the desk menu in the "
5408 "shelf in clamshell mode when there is more than one desk.";
5409
Charles William Dick778e6c22023-06-13 07:57:475410const char kCrosBatterySaverAlwaysOnName[] =
5411 "Make ChromeOS Battery Saver on all the time";
5412const char kCrosBatterySaverAlwaysOnDescription[] =
5413 "Turns on ChomeOS Battery Saver all the time, even when charging or fully "
5414 "charged. Used for testing ChromeOS Battery Saver Mode.";
5415
Charles William Dickc35c0692023-06-07 09:15:025416const char kCrosBatterySaverName[] =
5417 "Enable ChromeOS Battery Saver Mode Support";
5418const char kCrosBatterySaverDescription[] =
5419 "Enables the ability to turn on battery saver mode in the ChromeOS Power "
5420 "Settings";
5421
Richard Chui1b6141772022-03-04 01:28:585422const char kDesksTemplatesName[] = "Desk Templates";
Richard Chuif823bf62021-10-29 21:06:015423const char kDesksTemplatesDescription[] =
5424 "Streamline workflows by saving a group of applications and windows as a "
Richard Chui1b6141772022-03-04 01:28:585425 "launchable template in a new desk";
Richard Chuif823bf62021-10-29 21:06:015426
Andreea Costinas81bed8a2022-11-23 16:03:385427extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyName[] =
5428 "Experiment: Allows using identifiers in the DoH template URI";
5429extern const char kDnsOverHttpsWithIdentifiersReuseOldPolicyDescription[] =
5430 "Enables early testing of the DoH template URI with identifiers by "
5431 "evaluating user identifiers in the existing policy DnsOverHttpsTemplates "
5432 "and hashing them using a hardcoded salt.";
5433
Wei Lee4fe87182020-12-22 09:32:445434const char kPreferConstantFrameRateName[] = "Prefer Constant Frame Rate";
5435const char kPreferConstantFrameRateDescription[] =
5436 "Enables this flag to prefer using constant frame rate for camera when "
5437 "streaming";
5438
Wei Lee585fa1b2022-05-15 20:26:255439const char kMoreVideoCaptureBuffersName[] = "More Video Capture Buffers";
5440const char kMoreVideoCaptureBuffersDescription[] =
5441 "This flag enables using a larger amount Chrome-allocated buffers for "
5442 "video capture. This larger amount is needed for deeper pipelines, e.g. "
5443 "sophisticated camera effects.";
5444
mojahsu3144bf32021-05-26 10:14:465445const char kForceControlFaceAeName[] = "Force control face AE";
5446const char kForceControlFaceAeDescription[] =
5447 "Control this flag to force enable or disable face AE for camera";
mojahsu11ea38ae2021-05-06 03:30:115448
Jason Zhang9ec877752021-10-29 18:10:505449const char kCellularBypassESimInstallationConnectivityCheckName[] =
5450 "Bypass eSIM installation connectivity check";
5451const char kCellularBypassESimInstallationConnectivityCheckDescription[] =
5452 "Bypass the non-cellular internet connectivity check during eSIM "
5453 "installation.";
5454
Jason Zhang26cacea2022-04-04 18:55:045455const char kCellularUseSecondEuiccName[] = "Use second Euicc";
5456const char kCellularUseSecondEuiccDescription[] =
5457 "When enabled Cellular Setup and Settings UI will use the second available "
5458 "Euicc that's exposed by Hermes.";
Azeem Arshad43b191b2021-01-15 23:59:565459
Colin Kincaidfdf46612023-03-23 01:23:235460const char kClipboardHistoryLongpressName[] =
5461 "Hold Ctrl+V to paste an item from clipboard history";
5462const char kClipboardHistoryLongpressDescription[] =
5463 "Enables an experimental behavior change where long-pressing Ctrl+V shows "
5464 "the clipboard history menu. If an item is selected to paste, it replaces "
5465 "the content initially pasted by Ctrl+V.";
5466
Roman Arora595d5712021-09-24 18:06:055467const char kComponentUpdaterTestRequestName[] =
5468 "Enable the component updater check 'test-request' parameter";
5469const char kComponentUpdaterTestRequestDescription[] =
5470 "Enables the 'test-request' parameter for component updater check requests."
5471 " Overrides any other component updater check request parameters that may "
5472 "have been specified.";
5473
Yulun Wu1e355132020-02-11 20:12:225474const char kContextualNudgesName[] =
5475 "Contextual nudges for user gesture education";
5476const char kContextualNudgesDescription[] =
5477 "Enables contextual nudges, periodically showing the user a label "
5478 "explaining how to interact with a particular UI element using gestures.";
5479
Jing Wang859fb1a2020-11-27 00:26:485480const char kCrosOnDeviceGrammarCheckName[] = "On-device Grammar Check";
5481const char kCrosOnDeviceGrammarCheckDescription[] =
5482 "Enable new on-device grammar check component.";
5483
Richard Chuia9ed7be12022-04-13 21:30:355484const char kSystemExtensionsName[] = "ChromeOS System Extensions";
Christopher Lamd8708c32021-10-29 04:31:475485const char kSystemExtensionsDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355486 "Enable the ChromeOS System Extension platform.";
Christopher Lamd8708c32021-10-29 04:31:475487
Giovanni Ortuño Urquidifeb77d22022-04-08 05:40:235488const char kEnableServiceWorkersForChromeUntrustedName[] =
5489 "Enable chrome-untrusted:// Service Workers";
5490const char kEnableServiceWorkersForChromeUntrustedDescription[] =
5491 "When enabled, allows chrome-untrusted:// WebUIs to use service workers.";
5492
Tyler Garrett86f698b32023-01-25 22:01:415493const char kEnterpriseReportingUIName[] =
5494 "Enable chrome://enterprise-reporting";
5495const char kEnterpriseReportingUIDescription[] =
5496 "When enabled, allows for chrome://enterprise-reporting to be visited";
5497
Fergus Dall9d0e95a2021-07-30 08:10:115498const char kCrostiniContainerInstallName[] =
5499 "Debian version for new Crostini containers";
5500const char kCrostiniContainerInstallDescription[] =
5501 "New Crostini containers will use this debian version";
David Munro3728ef72019-10-30 07:22:155502
Ben Wells7238dd02019-05-02 08:20:325503const char kCrostiniGpuSupportName[] = "Crostini GPU Support";
5504const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support.";
5505
David Munro9fce777c2020-10-07 03:55:545506const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch";
5507const char kCrostiniResetLxdDbDescription[] =
5508 "Recreates the LXD database every time we launch it";
5509
Nicholas Verne6eb340a82021-10-19 05:55:385510const char kCrostiniMultiContainerName[] = "Allow multiple Crostini containers";
5511const char kCrostiniMultiContainerDescription[] =
5512 "Experimental UI for creating and managing multiple Crostini containers";
5513
Timothy Loh05b4d59f2021-11-08 05:05:525514const char kCrostiniImeSupportName[] = "Crostini IME support";
5515const char kCrostiniImeSupportDescription[] =
Timothy Lohe9cb1af2023-05-22 06:26:535516 "Support for IMEs (excluding VK) in Crostini for applications built with "
5517 "GTK3 or Electron.";
5518
5519const char kCrostiniQtImeSupportName[] =
5520 "Crostini IME support for Qt applications";
5521const char kCrostiniQtImeSupportDescription[] =
5522 "Experimental support for IMEs (excluding VK) in Crostini for applications "
5523 "built with Qt. Requires #crostini-ime-support to be enabled.";
Timothy Loh05b4d59f2021-11-08 05:05:525524
5525const char kCrostiniVirtualKeyboardSupportName[] =
5526 "Crostini Virtual Keyboard Support";
5527const char kCrostiniVirtualKeyboardSupportDescription[] =
5528 "Experimental support for the Virtual Keyboard on Crostini.";
5529
Nicholas Verne6df17e62023-06-07 02:19:095530const char kCrostiniUseLxd5Name[] =
5531 "Use LXD 5 instead of the default - Irreversible";
5532const char kCrostiniUseLxd5Description[] =
5533 "Uses LXD version 5 instead of the default version. WARNING: Once this is "
5534 "set you can't unset it without deleting your entire container";
5535
David Munro762bf322022-02-03 02:21:465536const char kBruschettaName[] = "Enable the third party VMs feature";
5537const char kBruschettaDescription[] =
5538 "Enables UI support for third party/generic VMs";
5539
Fergus Dalldb66df32022-08-19 02:54:445540const char kBruschettaAlphaMigrateName[] = "Migration for Bruschetta Alpha";
5541const char kBruschettaAlphaMigrateDescription[] =
5542 "Enable this flag to migrate a Bruschetta installed during the alpha. "
5543 "Requires the bruschetta flag to be enabled.";
5544
David Munro5e67bf12023-05-22 07:07:165545const char kBruschettaInstallerDownloadStrategyName[] =
5546 "How the Bruschetta installer should download files";
5547const char kBruschettaInstallerDownloadStrategyDescription[] =
5548 "Selects how the Bruschetta installer will download files. Some issues are "
5549 "only reproducible on dev channel or later, this lets us evaluate the "
5550 "reliability of different approaches.";
5551
Kam Kwankajornkietbc6eb782023-03-16 04:40:085552const char kCameraAppTimeLapseName[] = "Camera App Time-lapse Recording";
5553const char kCameraAppTimeLapseDescription[] =
5554 "Enable this flag to record time-lapse video in Camera app.";
5555
Pilar Molina Lopezd5b787512020-11-19 00:21:485556const char kDisableBufferBWCompressionName[] =
5557 "Disable buffer bandwidth compression";
5558const char kDisableBufferBWCompressionDescription[] =
5559 "Disable bandwidth compression when allocating buffers";
5560
Ricky Liang8df43372020-07-09 09:41:095561const char kDisableCameraFrameRotationAtSourceName[] =
5562 "Disable camera frame rotation at source";
5563const char kDisableCameraFrameRotationAtSourceDescription[] =
5564 "Disable camera frame rotation to the upright display orientation in the "
5565 "video capture device";
5566
Thanh Nguyena4c933442019-05-11 03:43:555567const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()";
5568const char kDisableCancelAllTouchesDescription[] =
5569 "If enabled, a canceled touch will not force all other touches to be "
5570 "canceled.";
5571
Daniele Castagna893d822e2019-03-08 21:37:115572const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
5573const char kDisableExplicitDmaFencesDescription[] =
5574 "Always rely on implicit syncrhonization between GPU and display "
5575 "controller instead of using dma-fences explcitily when available.";
5576
Bailey Berro01f09742020-07-21 05:40:595577const char kDisplayAlignmentAssistanceName[] =
5578 "Enable Display Alignment Assistance";
5579const char kDisplayAlignmentAssistanceDescription[] =
5580 "Show indicators on shared edges of the displays when user is "
5581 "attempting to move their mouse over to another display. Show preview "
5582 "indicators when the user is moving a display in display layouts.";
5583
Harry Cutts932c80a2021-10-07 15:00:385584const char kEnableLibinputToHandleTouchpadName[] =
5585 "Enable libinput to handle touchpad.";
5586const char kEnableLibinputToHandleTouchpadDescription[] =
5587 "Use libinput instead of the gestures library to handle touchpad."
5588 "Libgesures works very well on modern devices but fails on legacy"
5589 "devices. Use libinput if an input device doesn't work or is not working"
5590 "well.";
5591
William Mahon9d1605f2022-04-22 23:54:595592const char kEnableFakeKeyboardHeuristicName[] =
5593 "Enable Fake Keyboard Heuristic";
5594const char kEnableFakeKeyboardHeuristicDescription[] =
5595 "Enable heuristic to prevent non-keyboard devices from pretending "
5596 "to be keyboards. Primarily assists in preventing the virtual keyboard "
5597 "from being disabled unintentionally.";
5598
Jon Mann8e448142021-07-29 19:31:305599const char kFastPairName[] = "Enable Fast Pair";
5600const char kFastPairDescription[] =
5601 "Enables Google Fast Pair service which uses BLE to discover supported "
Josh Graydus84ef1a372022-05-10 21:40:515602 "nearby Bluetooth devices and surfaces a notification for quick pairing.";
Jon Mann8e448142021-07-29 19:31:305603
Alex Kingsborough31acba6e2023-01-17 21:47:455604const char kFastPairHandshakeRefactorName[] =
5605 "Enable Fast Pair Handshake Refactor";
5606const char kFastPairHandshakeRefactorDescription[] =
5607 "Enables refactored handshake logic for Google Fast Pair service.";
5608
Daniel Classon1def7072023-03-30 17:16:395609const char kFastPairHIDName[] = "Enable Fast Pair HID";
5610const char kFastPairHIDDescription[] =
5611 "Enables prototype support for Fast Pair HID.";
5612
Shane Fitzpatrickea882292022-01-24 20:30:155613const char kFastPairLowPowerName[] = "Enable Fast Pair Low Power mode";
5614const char kFastPairLowPowerDescription[] =
5615 "Enables Fast Pair Low Power mode, which doesn't scan for devices "
5616 "continously. This results in lower power usage, but also higher latency "
5617 "for device discovery.";
5618
Jon Mann022bd3522022-01-19 22:11:515619const char kFastPairSoftwareScanningName[] =
5620 "Enable Fast Pair Software Scanning";
5621const char kFastPairSoftwareScanningDescription[] =
5622 "Allow using Fast Pair on devices which don't support hardware offloading "
5623 "of BLE scans. For development use.";
5624
Juliet Levesqueaa230e02022-04-19 18:11:145625const char kFastPairSavedDevicesName[] = "Enable Fast Pair Saved Devices";
5626const char kFastPairSavedDevicesDescription[] =
5627 "Enables the Fast Pair \"Saved Devices\" page to display a list of the "
5628 "user's devices and provide the option to opt in or out of saving devices "
5629 "to their account.";
5630
Ashutosh Singhalab30b18e2022-06-24 15:09:275631const char kFrameSinkDesktopCapturerInCrdName[] =
5632 "Enable FrameSinkDesktopCapturer in CRD";
5633const char kFrameSinkDesktopCapturerInCrdDescription[] =
5634 "Enables the use of FrameSinkDesktopCapturer in the video streaming for "
5635 "CRD, "
5636 "replacing the use of AuraDesktopCapturer";
5637
Miguel Casas8821b0982020-07-02 12:28:495638const char kUseHDRTransferFunctionName[] =
5639 "Monitor/Display HDR transfer function";
5640const char kUseHDRTransferFunctionDescription[] =
5641 "Allows using the HDR transfer functions of any connected monitor that "
5642 "supports it";
Ahmed Fakhry4f567e692018-10-16 15:51:085643const char kDoubleTapToZoomInTabletModeName[] =
5644 "Double-tap to zoom in tablet mode";
5645const char kDoubleTapToZoomInTabletModeDescription[] =
5646 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
5647 "page.";
5648
Yulun Wub88a9202021-07-13 19:44:565649const char kQuickSettingsPWANotificationsName[] =
5650 "Enable setting of PWA notification permissions in quick settings ";
5651const char kQuickSettingsPWANotificationsDescription[] =
5652 "Replace website notification permissions with PWA notification "
5653 "permissions in the quick settings menu. Website notification permissions "
5654 "settings will be migrated to the lacros - chrome browser.";
5655
Travis Lane636a4ac2022-05-24 16:28:555656const char kDriveFsChromeNetworkingName[] =
5657 "Enable the DriveFS / Chrome Network Service bridge";
5658const char kDriveFsChromeNetworkingDescription[] =
5659 "Enable the bridge bewteen DriveFS and the Chrome Network Service for "
5660 "communication with the Drive backend.";
5661
Alex Newcomere5a362c2019-05-02 19:31:355662const char kEnableBackgroundBlurName[] = "Enable background blur.";
5663const char kEnableBackgroundBlurDescription[] =
minchab2ded5ce2019-09-06 18:32:285664 "Enables background blur for the Launcher, Shelf, Unified System Tray etc.";
Alex Newcomere5a362c2019-05-02 19:31:355665
Garrick Evanse6f9f252023-01-19 05:43:085666const char kDisableDnsProxyName[] = "Disable DNS proxy service for ChromeOS";
5667const char kDisableDnsProxyDescription[] =
5668 "Turns off DNS proxying and SecureDNS for ChromeOS (only). Does not impact "
5669 "Chrome browser.";
5670
Taoyu Lib19cd582023-03-30 01:13:385671const char kEnableRFC8925Name[] =
5672 "Enable RFC8925 (prefer IPv6-only on IPv6-only-capable network)";
5673const char kEnableRFC8925Description[] =
5674 "Let ChromeOS DHCPv4 client voluntarily drop DHCPv4 lease and prefer to"
5675 "operate IPv6-only, if the network is also IPv6-only capable.";
5676
Jason Jeremy Iman516f0722023-03-03 02:15:455677const char kPasspointARCSupportName[] = "Enable Passpoint ARC support";
Jason Jeremy Imanee9104eb52023-03-01 04:11:045678const char kPasspointARCSupportDescription[] =
Jason Jeremy Iman516f0722023-03-03 02:15:455679 "Feature to allow Android apps (running on ARC) to provision WiFi networks "
5680 "through Passpoint.";
Jason Jeremy Imanee9104eb52023-03-01 04:11:045681
Damien Dejean837a7f02023-04-10 08:39:305682const char kPasspointSettingsName[] = "Enable Passpoint settings";
5683const char kPasspointSettingsDescription[] =
5684 "Enables displaying Passpoint subscription information in network "
5685 "settings.";
5686
Gil Dekel43a14582022-12-02 05:50:285687const char kEnableEdidBasedDisplayIdsName[] = "Enable EDID-based display IDs";
5688const char kEnableEdidBasedDisplayIdsDescription[] =
5689 "When enabled, a display's ID will be produced by hashing certain values "
5690 "in the display's EDID blob. EDID-based display IDs allow ChromeOS to "
5691 "consistently identify previously connected displays, regardless of the "
5692 "physical port they were connected to, and load user display layouts more "
5693 "accurately.";
5694
Harry Cutts6deecd82022-04-08 01:30:235695const char kEnableExternalKeyboardsInDiagnosticsAppName[] =
5696 "Enable external keyboards in the Diagnostics App";
5697const char kEnableExternalKeyboardsInDiagnosticsAppDescription[] =
5698 "Shows external keyboards in the Diagnostics App's input section. Requires "
5699 "#enable-input-in-diagnostics-app to be enabled.";
5700
xiangdong kong7348a6562023-02-15 18:10:055701const char kEnableGetDebugdLogsInParallelName[] =
5702 "Enable getting debug daemon logs in parallel for feedback";
5703const char kEnableGetDebugdLogsInParallelDescription[] =
5704 "When enabled, the feedback app will use a new debug daemon method to get "
5705 "logs. The method collects different pieces of logs in parallel.";
5706
James Hawkinsa9fefa8d2020-10-08 00:24:035707const char kEnableHostnameSettingName[] = "Enable setting the device hostname";
5708const char kEnableHostnameSettingDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:355709 "Enables the ability to set the ChromeOS hostname, the name of the device "
James Hawkinsa9fefa8d2020-10-08 00:24:035710 "that is exposed to the local network";
5711
Harry Cuttscfe6d934f2019-06-05 21:45:555712const char kEnableGesturePropertiesDBusServiceName[] =
5713 "Enable gesture properties D-Bus service";
5714const char kEnableGesturePropertiesDBusServiceDescription[] =
5715 "Enable a D-Bus service for accessing gesture properties, which are used "
5716 "to configure input devices.";
5717
Xiaohui Chenf4283f32018-11-26 20:02:505718const char kEnableGoogleAssistantDspName[] =
5719 "Enable Google Assistant with hardware-based hotword";
5720const char kEnableGoogleAssistantDspDescription[] =
5721 "Enable an experimental feature that uses hardware-based hotword detection "
5722 "for Assistant. Only a limited number of devices have this type of "
5723 "hardware support.";
5724
Xiaohui Chenc3baca42018-11-30 19:29:375725const char kEnableGoogleAssistantStereoInputName[] =
5726 "Enable Google Assistant with stereo audio input";
5727const char kEnableGoogleAssistantStereoInputDescription[] =
5728 "Enable an experimental feature that uses stereo audio input for hotword "
5729 "and voice to text detection in Google Assistant.";
5730
Xiaohui Chen3f3a5bf12019-09-28 00:29:455731const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC";
5732const char kEnableGoogleAssistantAecDescription[] =
5733 "Enable an experimental feature that removes local feedback from audio "
5734 "input to help hotword and ASR when background audio is playing.";
5735
Harry Cutts8b445de2021-06-10 02:25:555736const char kEnableInputEventLoggingName[] = "Enable input event logging";
5737const char kEnableInputEventLoggingDescription[] =
5738 "Enable detailed logging of input events from touchscreens, touchpads, and "
5739 "mice. These events include the locations of all touches as well as "
5740 "relative pointer movements, and so may disclose sensitive data. They "
5741 "will be included in feedback reports and system logs, so DO NOT ENTER "
5742 "SENSITIVE INFORMATION with this flag enabled.";
5743
Ashley Prasadaeff69382023-03-31 22:50:435744const char kDiagnosticsAppJellyName[] =
5745 "Enable jelly colors for the Diagnostics App";
5746const char kDiagnosticsAppJellyDescription[] =
5747 "Enable jelly colors for the Diagnostics App. Requires "
5748 "jelly-colors flag to be enabled.";
5749
Roger Tinkoff6c1bed22022-01-07 14:52:015750const char kEnableKeyboardBacklightToggleName[] =
5751 "Enable Keyboard Backlight Toggle.";
5752const char kEnableKeyboardBacklightToggleDescription[] =
5753 "Enable toggling of the keyboard backlight. By "
5754 "default, this flag is enabled.";
5755
alanlxl43ddc2082022-02-01 00:24:165756const char kEnableNeuralPalmAdaptiveHoldName[] = "Palm Rejection Adaptive Hold";
5757const char kEnableNeuralPalmAdaptiveHoldDescription[] =
5758 "Enable adaptive hold in palm rejection. Not compatible with all devices.";
5759
Rob Schonbergerc258473f2019-11-08 05:09:355760const char kEnableNeuralStylusPalmRejectionName[] =
5761 "Enable Neural Palm Detection";
5762const char kEnableNeuralStylusPalmRejectionDescription[] =
5763 "Experimental: Enable Neural Palm detection. Not compatible with all "
5764 "devices.";
5765
Xiangdong Kongec5a0772021-05-03 21:53:015766const char kEnableOsFeedbackName[] = "Enable updated Feedback Tool App";
5767const char kEnableOsFeedbackDescription[] =
5768 "Enable the feedback tool with new UX design that helps users mitigate "
5769 "the issues while writing feedback and makes the UI easier to use.";
5770
Mitsuru Oshimadaf54572020-04-07 14:47:595771const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping";
5772const char kEnableNewShortcutMappingDescription[] =
5773 "Enables experimental new shortcut mapping";
5774
Rob Schonbergere0a8e3c2020-04-21 03:04:395775const char kEnablePalmSuppressionName[] =
5776 "Enable Palm Suppression with Stylus.";
5777const char kEnablePalmSuppressionDescription[] =
5778 "If enabled, suppresses touch when a stylus is on a touchscreen.";
5779
Catherine Zhang9df0c472023-03-09 07:33:215780const char kEnableEdgeDetectionName[] = "Enable Edge Detection.";
5781const char kEnableEdgeDetectionDescription[] =
5782 "If enabled, suppresses edge touch based on sensors' info.";
5783
Daniel Andersson3a71e982022-11-17 02:34:075784const char kEnablePerDeskZOrderName[] =
5785 "Enable per-desk Z-order for all-desk windows.";
5786const char kEnablePerDeskZOrderDescription[] =
5787 "The Z-order of all-desk windows is maintained on a per-desk basis. This "
5788 "means that all-desk windows will not keep popping to the front when "
5789 "switching desks.";
5790
Drew Davenportef725712022-07-13 21:05:085791const char kEnableSeamlessRefreshRateSwitchingName[] =
5792 "Seamless Refresh Rate Switching";
5793const char kEnableSeamlessRefreshRateSwitchingDescription[] =
5794 "This option enables seamlessly changing the refresh rate based on power "
5795 "state on devices with supported hardware and drivers.";
5796
Harry Cuttsbc6941802022-04-07 22:57:475797const char kEnableTouchpadsInDiagnosticsAppName[] =
5798 "Enable touchpad cards in the Diagnostics App";
5799const char kEnableTouchpadsInDiagnosticsAppDescription[] =
5800 "Shows touchpad cards in the Diagnostics App's input section. Requires "
5801 "#enable-input-in-diagnostics-app to be enabled.";
5802
5803const char kEnableTouchscreensInDiagnosticsAppName[] =
5804 "Enable touchscreen cards in the Diagnostics App";
5805const char kEnableTouchscreensInDiagnosticsAppDescription[] =
5806 "Shows touchscreen cards in the Diagnostics App's input section. Requires "
5807 "#enable-input-in-diagnostics-app to be enabled.";
5808
Brian Geffon297843f2022-06-27 16:33:435809const char kEnableZramWriteback[] = "Enable Zram Writeback";
5810const char kEnableZramWritebackDescription[] =
5811 "If enabled zram swap will be able to write back to disk increasing "
5812 "overall swap capacity";
5813
Brian Geffon1c24556a2023-06-12 17:10:445814const char kEnableSuspendToDisk[] = "Enable Suspend to Disk";
5815const char kEnableSuspendToDiskDescription[] =
5816 "If enabled the system will attempt to suspend to disk (hibernate) "
5817 "after 6 hours or more hours. This is a best effort and might fail, in "
5818 "which case the legacy suspend or shutdown behavior will remain";
5819
Andrew Wolfersa051f742022-03-03 21:08:225820const char kEnableVariableRefreshRateName[] = "Enable Variable Refresh Rate";
5821const char kEnableVariableRefreshRateDescription[] =
5822 "Enable the variable refresh rate (Adaptive Sync) setting for capable "
5823 "displays.";
5824
Kyle Horimoto2d3b6b42022-05-13 02:12:165825const char kEapGtcWifiAuthenticationName[] = "EAP-GTC WiFi Authentication";
5826const char kEapGtcWifiAuthenticationDescription[] =
5827 "Allows configuration of WiFi networks using EAP-GTC authentication";
5828
whalechangf06b6ea72022-08-26 01:13:115829const char kAudioPeripheralVolumeGranularityName[] =
5830 "Audio Peripheral Volume Granularity";
5831const char kAudioPeripheralVolumeGranularityDescription[] =
5832 "Change audio peripheral volume granularity as close as peripheral "
5833 "reported. "
5834 "If the reported volume granularity are too small or too big. use 25 steps "
5835 "instead.";
5836
Abbas Nayebi6263f192022-05-13 21:10:415837const char kEcheSWAName[] = "Enable Eche feature";
5838const char kEcheSWADescription[] = "This is the main flag for enabling Eche.";
paulzhchen26343e92021-02-09 05:43:055839
Jon Manndf97fa52022-11-28 23:01:165840const char kEcheLauncherName[] = "Enable the Eche launcher";
5841const char kEcheLauncherDescription[] =
5842 "Enables the launcher for all apps for Eche.";
5843
Pu Shi93793432022-12-20 20:34:575844const char kEcheLauncherListViewName[] = "Enable Eche launcher list view";
5845const char kEcheLauncherListViewDescription[] =
5846 "Convert Eche launcher from grid view to list view";
5847
Joe Antonettib56b8202023-01-18 20:42:085848const char kEcheLauncherIconsInMoreAppsButtonName[] =
5849 "Enable app icons in the Eche launcher more apps button";
5850const char kEcheLauncherIconsInMoreAppsButtonDescription[] =
5851 "Show app icons in the Eche launcher more apps button";
5852
Crisrael Lucero264086d2023-03-07 02:30:065853const char kEcheNetworkConnectionStateName[] =
5854 "Enable loading and error states for Eche.";
5855const char kEcheNetworkConnectionStateDescription[] =
5856 "Shows loading and error states in Phone Hub's recent apps section based "
5857 "on the connection state with the Phone.";
5858
paulzhchenfac28192021-10-08 08:14:185859const char kEcheSWADebugModeName[] = "Enable Eche Debug Mode";
Abbas Nayebi6263f192022-05-13 21:10:415860const char kEcheSWADebugModeDescription[] =
paulzhchen7c5907f52022-09-03 17:46:485861 "Save console logs of Eche in the system log";
5862
5863const char kEcheSWAMeasureLatencyName[] = "Measure Eche E2E Latency";
5864const char kEcheSWAMeasureLatencyDescription[] =
5865 "Measure Eche E2E Latency and print all E2E latency logs of Eche in "
5866 "Console";
paulzhchenfac28192021-10-08 08:14:185867
mavishsuc3dcafaac2022-09-28 06:27:425868const char kEcheSWASendStartSignalingName[] =
5869 "Enable Eche Send Start Signaling";
5870const char kEcheSWASendStartSignalingDescription[] =
5871 "Allows sending start signaling action to establish Eche's WebRTC "
5872 "connection";
5873
mavishsu1ebe64a2022-09-29 12:52:245874const char kEcheSWADisableStunServerName[] = "Disable Eche STUN server";
5875const char kEcheSWADisableStunServerDescription[] =
5876 "Allows disabling the stun servers when establishing a WebRTC connection "
5877 "to Eche";
5878
Denalex Orakwue44a47a42022-12-07 08:56:085879const char kEcheSWACheckAndroidNetworkInfoName[] = "Check Android network info";
5880const char kEcheSWACheckAndroidNetworkInfoDescription[] =
5881 "Allows CrOS to analyze Android network information to provide more "
5882 "context on connection errors";
5883
Denalex Orakwuef2ea70a2023-02-22 20:48:265884const char kEcheSWAProcessAndroidAccessibilityTreeName[] =
5885 "Process Android Application Accessibility Tree";
5886const char kEcheSWAProcessAndroidAccessibilityTreeDescription[] =
5887 "Allows CrOS to process the Android accessibility tree information of the "
5888 "currently streaming app.";
5889
andrewxu6396d652023-02-20 17:58:545890const char kEnableNotificationImageDragName[] =
5891 "Enable notification image drag";
5892const char kEnableNotificationImageDragDescription[] =
5893 "Enable users to drag the image shown on the notification and drop it to "
5894 "directly paste or share";
5895
Pranav Batra96b8eba2021-07-02 21:17:215896const char kEnableOAuthIppName[] =
5897 "Enable OAuth when printing via the IPP protocol";
5898const char kEnableOAuthIppDescription[] =
5899 "Enable OAuth when printing via the IPP protocol";
5900
Jenny Zhang0c298e42022-01-12 03:09:265901const char kEnforceAshExtensionKeeplistName[] =
5902 "Enforce Ash extension keeplist";
5903const char kEnforceAshExtensionKeeplistDescription[] =
5904 "Enforce the Ash extension keeplist. Only the extensions and Chrome apps on"
5905 " the keeplist are enabled in Ash.";
5906
Matthew Mourgos6f663a42023-03-14 20:58:085907const char kEolResetDismissedPrefsName[] =
5908 "Reset end of life notification prefs";
5909const char kEolResetDismissedPrefsDescription[] =
5910 "Reset the end of life notification prefs to their default value, at the "
5911 "start of the user session. This is meant to make manual testing easier.";
5912
Matthew Mourgos0f79f502023-03-17 21:22:405913const char kEolIncentiveName[] = "Enable end of life incentives";
5914const char kEolIncentiveDescription[] =
5915 "Allows end of life incentives to be shown within the system ui.";
5916
Hidehiko Abe826511f2023-03-24 06:58:435917const char kExoConsumedByImeByFlagName[] =
5918 "Use the consumed bit from IME in exo";
5919const char kExoConsumedByImeByFlagDescription[] =
5920 "To see whether a key event is consumed or not, this let exo to use a bit"
5921 " from IME directly, instead of using heuristics based on key code etc.";
5922
Prabir Pradhan67677e82020-09-11 18:26:525923const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients";
5924const char kExoGamepadVibrationDescription[] =
5925 "Allow Exo clients like Android to request vibration events for gamepads "
5926 "that support it.";
5927
Nicholas Hollingum4cbff262020-09-08 04:02:155928const char kExoOrdinalMotionName[] =
5929 "Raw (unaccelerated) motion for Linux applications";
5930const char kExoOrdinalMotionDescription[] =
5931 "Send unaccelerated values as raw motion events to linux applications.";
5932
Hidehiko Abe03ab7322023-05-17 10:22:185933const char kExoSurroundingTextOffsetName[] =
5934 "Supports offset of surrounding_text in exosphere";
5935const char kExoSurroundingTextOffsetDescription[] =
5936 "On wayland protocol, surrounding text may be trimmed. Enabling this "
5937 "supports the cases.";
5938
Jeeva Murugan0c7d43a82022-11-07 01:10:275939const char kExperimentalAccessibilityDictationContextCheckingName[] =
5940 "Experimental accessibility dictation using context checking.";
5941const char kExperimentalAccessibilityDictationContextCheckingDescription[] =
5942 "Enables experimental dictation context checking.";
5943
Josiah Kcb91cd12022-03-22 19:27:065944const char kExperimentalAccessibilityGoogleTtsLanguagePacksName[] =
5945 "Experimental accessibility Google TTS Langauge Packs.";
5946const char kExperimentalAccessibilityGoogleTtsLanguagePacksDescription[] =
5947 "Enables downloading Google TTS voices using Langauge Packs.";
5948
Rose Garcia26e2ae32019-06-25 00:57:545949const char kExperimentalAccessibilitySwitchAccessTextName[] =
5950 "Enable enhanced Switch Access text input.";
5951const char kExperimentalAccessibilitySwitchAccessTextDescription[] =
5952 "Enable experimental or in-progress Switch Access features for improved "
5953 "text input";
5954
Andres Calderon Jaramilloa55fccb2023-03-24 19:22:115955const char kExposeOutOfProcessVideoDecodingToLacrosName[] =
5956 "Expose out-of-process video decoding (OOP-VD) to LaCrOS.";
5957const char kExposeOutOfProcessVideoDecodingToLacrosDescription[] =
5958 "Accept media.stable.mojom.StableVideoDecoderFactory connection requests "
5959 "from LaCrOS and host said factories in utility processes.";
5960
Xinglong Luanff7dec52023-05-30 01:07:505961const char kFederatedServiceName[] =
5962 "Enable Federated Service on ChromeOS login";
5963const char kFederatedServiceDescription[] =
5964 "If disalbed, all federated service activities are stopped.";
5965
Steffen Secklerc95470d2022-08-12 07:26:005966const char kFileTransferEnterpriseConnectorName[] =
5967 "Enable Files Transfer Enterprise Connector.";
5968const char kFileTransferEnterpriseConnectorDescription[] =
5969 "Enable the File Transfer Enterprise Connector.";
5970
Luciano Pachecoa2f314ee2022-06-02 14:22:145971const char kFilesAppExperimentalName[] =
5972 "Experimental UI features for Files app";
5973const char kFilesAppExperimentalDescription[] =
5974 "Enable experimental UI features for Files app. Experimental features are "
5975 "expected to be non functional to end users.";
5976
Noel Gordon5c5a49e62023-01-16 06:14:005977const char kFilesConflictDialogName[] = "Files app conflict dialog";
5978const char kFilesConflictDialogDescription[] =
5979 "When enabled, the conflict dialog will be shown during file transfers "
5980 "if a file entry in the transfer exists at the destination.";
5981
Ben Reich2caaccf2023-02-06 23:17:505982const char kFilesDriveShortcutsName[] = "Files app Google Drive shortcut icons";
5983const char kFilesDriveShortcutsDescription[] =
5984 "When enabled, shows an icon for files in Google Drive that are shortcuts";
5985
Alex Danilo22b6b9c2021-11-18 06:44:445986const char kFilesExtractArchiveName[] = "Extract archive in Files app";
5987const char kFilesExtractArchiveDescription[] =
5988 "Enable the simplified archive extraction feature in Files app";
5989
Marcello Salomaodd0e6de2022-09-14 00:28:475990const char kFilesInlineSyncStatusName[] =
5991 "Enable inline sync status in Files app.";
5992const char kFilesInlineSyncStatusDescription[] =
5993 "Enable displaying the sync status of each file next to its name in Files "
5994 "app.";
5995
Marcello Salomaoc517be52023-05-18 06:43:365996const char kFilesInlineSyncStatusProgressEventsName[] =
5997 "Enable inline sync status in Files app to work with a new source of "
5998 "progress events.";
5999const char kFilesInlineSyncStatusProgressEventsDescription[] =
6000 "An improvement for inline sync status that will eventually allow it to "
6001 "display progress for downsyncing operations.";
6002
Bo Majewski24757cb2022-09-20 06:42:186003const char kFilesSearchV2Name[] = "V2 generation of file search.";
6004const char kFilesSearchV2Description[] = "Enable V2 generation of file search.";
6005
Omid Tourzanbf2a0dcf2020-09-10 08:53:556006const char kFilesSinglePartitionFormatName[] =
6007 "Enable Partitioning of Removable Disks.";
6008const char kFilesSinglePartitionFormatDescription[] =
6009 "Enable partitioning of removable disks into single partition.";
6010
Joel Hockey487b679b2023-03-15 04:10:296011const char kFilesTrashDriveName[] = "Enable Files Trash for Drive.";
6012const char kFilesTrashDriveDescription[] =
6013 "Enable trash for Drive volume in Files App.";
6014
Ashley Prasadbe89bd22023-04-03 21:26:126015const char kFirmwareUpdateJellyName[] =
6016 "Enable jelly colors for the Firmware Update App";
6017const char kFirmwareUpdateJellyDescription[] =
6018 "Enable jelly colors for the Firmware Update App. Requires "
6019 "jelly-colors flag to be enabled.";
6020
Ricky Liang3bd2754b52020-10-07 02:50:326021const char kForceSpectreVariant2MitigationName[] =
6022 "Force Spectre variant 2 mitigagtion";
6023const char kForceSpectreVariant2MitigationDescription[] =
6024 "Forces Spectre variant 2 mitigation. Setting this to enabled will "
6025 "override #spectre-variant2-mitigation and any system-level setting that "
6026 "disables Spectre variant 2 mitigation.";
6027
jhtinc1f43aa2022-11-10 03:27:046028const char kFirstPartyVietnameseInputName[] =
6029 "First party Vietnamese Input Method";
6030const char kFirstPartyVietnameseInputDescription[] =
6031 "Use first party input method for Vietnamese VNI and Telex";
6032
Daniel Anderssona36c4bc2021-06-04 22:09:436033const char kFocusFollowsCursorName[] = "Focus follows cursor";
6034const char kFocusFollowsCursorDescription[] =
6035 "Enable window focusing by moving the cursor.";
6036
Cassy Chun-Crogan26d8e142023-01-25 02:00:536037const char kForceReSyncDriveName[] = "Force resync drive";
6038const char kForceReSyncDriveDescription[] =
6039 "Enable Drive to forcibly resync office files.";
6040
yjliu8f78e8b2020-07-22 20:51:216041const char kFrameThrottleFpsName[] = "Set frame throttling fps.";
6042const char kFrameThrottleFpsDescription[] =
6043 "Set the throttle fps for compositor frame submission.";
6044const char kFrameThrottleFpsDefault[] = "Default";
6045const char kFrameThrottleFps5[] = "5 fps";
6046const char kFrameThrottleFps10[] = "10 fps";
6047const char kFrameThrottleFps15[] = "15 fps";
6048const char kFrameThrottleFps20[] = "20 fps";
6049const char kFrameThrottleFps25[] = "25 fps";
6050const char kFrameThrottleFps30[] = "30 fps";
6051
Nigel Tao03c69032022-04-23 03:10:476052const char kFuseBoxDebugName[] = "Debugging UI for ChromeOS FuseBox service";
6053const char kFuseBoxDebugDescription[] =
6054 "Show additional debugging UI for ChromeOS FuseBox service.";
6055
Callistusd4ba8b0d2023-04-03 05:34:596056const char kHelpAppAppsDiscoveryName[] = "Help App Apps Discovery";
6057const char kHelpAppAppsDiscoveryDescription[] =
6058 "Enables the ChromeOS Apps Discovery experience in the Help App.";
6059
Callistus3b862272023-05-09 02:34:086060const char kHelpAppAutoTriggerInstallDialogName[] =
6061 "Help App Auto Trigger Install Dialog";
6062const char kHelpAppAutoTriggerInstallDialogDescription[] =
6063 "Enables the logic that auto triggers the install dialog during the web "
6064 "app install flow initiated from the Help App.";
6065
Zufeng Wang9d3362eb822021-03-11 00:23:296066const char kHelpAppLauncherSearchName[] = "Help App launcher search";
6067const char kHelpAppLauncherSearchDescription[] =
6068 "Enables showing search results from the help app in the launcher.";
6069
jhtin2c8808102022-02-21 08:53:356070const char kDiacriticsOnPhysicalKeyboardLongpressName[] =
6071 "Enable diacritics and variant character selection on PK longpress.";
6072const char kDiacriticsOnPhysicalKeyboardLongpressDescription[] =
6073 "Enable diacritics and other varient character selection on physical "
6074 "keyboard longpress.";
6075
John Palmer8cbc27b2023-04-19 00:53:016076const char kDiacriticsOnPhysicalKeyboardLongpressDefaultOnName[] =
6077 "Enable diacritics and variant character selection on PK longpress by "
6078 "default.";
6079const char kDiacriticsOnPhysicalKeyboardLongpressDefaultOnDescription[] =
6080 "Enable diacritics and other varient character selection on physical "
6081 "keyboard longpress by default.";
6082
Darren Shen1c21e1e42023-05-11 00:03:396083const char kDiacriticsUseReplaceSurroundingTextName[] =
6084 "Use ReplaceSurroundingText API for longpress diacritics.";
6085const char kDiacriticsUseReplaceSurroundingTextDescription[] =
6086 "When longpress diacritics is enabled, use the ReplaceSurroundingText API "
6087 "for better app compatibility.";
6088
David Black6fca0bc2022-10-08 00:35:176089const char kHoldingSpacePredictabilityName[] =
6090 "Enable holding space predictability";
6091const char kHoldingSpacePredictabilityDescription[] =
6092 "Increases predictability of holding space by being ever present in the "
6093 "shelf and always reserving space for downloads and screen captures.";
6094
6095const char kHoldingSpaceRefreshName[] = "Enable holding space refresh";
6096const char kHoldingSpaceRefreshDescription[] =
6097 "Enables a refresh of holding space which better conveys the relationship "
6098 "with the Files app.";
6099
6100const char kHoldingSpaceSuggestionsName[] = "Enable holding space suggestions";
6101const char kHoldingSpaceSuggestionsDescription[] =
6102 "Enables pinned file suggestions in holding space to help the user "
6103 "understand and discover the ability to pin.";
6104
Curtis McMullana1900062021-06-28 01:13:256105const char kImeAssistEmojiEnhancedName[] = "Enable enhanced assistive emojis";
6106const char kImeAssistEmojiEnhancedDescription[] =
6107 "Enable enhanced assistive emoji suggestion features for native IME";
6108
Curtis McMullan35800d22020-11-26 06:45:196109const char kImeAssistMultiWordName[] =
6110 "Enable assistive multi word suggestions";
6111const char kImeAssistMultiWordDescription[] =
6112 "Enable assistive multi word suggestions for native IME";
6113
Curtis McMullan6f6526d2021-07-09 04:22:456114const char kImeAssistMultiWordExpandedName[] =
6115 "Enable expanded assistive multi word suggestions";
6116const char kImeAssistMultiWordExpandedDescription[] =
6117 "Enable expanded assistive multi word suggestions for native IME";
6118
Chuong Ho0db3d5d22023-02-27 02:18:336119const char kImeFstDecoderParamsUpdateName[] =
6120 "Enable FST Decoder parameters update";
6121const char kImeFstDecoderParamsUpdateDescription[] =
6122 "Enable updated parameters for the FST decoder.";
6123
Grey Wang8896c882022-09-02 00:21:556124const char kImeTrayHideVoiceButtonName[] =
6125 "Hides redudant voice button in IME tray";
6126const char kImeTrayHideVoiceButtonDescription[] =
6127 "Hides voice button in IME tray when mic icon is shown in the shelf";
6128
John Palmerb4e42c02022-02-11 07:25:166129const char kVirtualKeyboardNewHeaderName[] =
6130 "Enable new header for virtual keyboard";
6131const char kVirtualKeyboardNewHeaderDescription[] =
6132 "Enable new header for virtual keyboard to improve navigation.";
6133
John Palmer77ce9282021-07-15 09:23:096134const char kImeSystemEmojiPickerClipboardName[] =
6135 "System emoji picker clipboard";
6136const char kImeSystemEmojiPickerClipboardDescription[] =
6137 "Emoji picker will insert emoji into clipboard if they can't be inserted "
6138 "into a text field";
Chuong Hoa3217d52021-12-08 06:36:146139
6140const char kImeSystemEmojiPickerExtensionName[] =
6141 "System emoji picker extension";
6142const char kImeSystemEmojiPickerExtensionDescription[] =
6143 "Emoji picker extension allows users to select emoticons and symbols to "
6144 "input.";
6145
Kaiqi Liang5ddd91b2022-12-01 23:14:536146const char kImeSystemEmojiPickerGIFSupportName[] =
6147 "System emoji picker gif support";
6148const char kImeSystemEmojiPickerGIFSupportDescription[] =
6149 "Emoji picker gif support allows users to select gifs to input.";
6150
Chuong Ho7a5781832022-02-09 06:47:266151const char kImeSystemEmojiPickerSearchExtensionName[] =
6152 "System emoji picker search extension";
6153const char kImeSystemEmojiPickerSearchExtensionDescription[] =
6154 "Emoji picker search extension enhances current emoji search by "
6155 "introducing multi-word prefix search.";
6156
John Palmer90a32212021-08-03 08:49:136157const char kImeStylusHandwritingName[] = "Stylus Handwriting";
6158const char kImeStylusHandwritingDescription[] =
6159 "Enable VK UI for stylus in text fields";
John Palmer77ce9282021-07-15 09:23:096160
Curtis McMullan6011fe7f2023-02-23 01:22:206161const char kImeUsEnglishModelUpdateName[] =
6162 "Enable US English IME model update";
6163const char kImeUsEnglishModelUpdateDescription[] =
6164 "Enable updated US English IME language models for native IME";
6165
Sean Kaud5d0fc72023-01-30 19:08:266166const char kJellyColorsName[] = "Jelly Colors";
6167const char kJellyColorsDescription[] = "Enable Jelly coloring";
6168
Erik Chend7082ec2021-06-25 01:04:126169const char kLacrosAvailabilityIgnoreName[] =
6170 "Ignore lacros-availability policy";
6171const char kLacrosAvailabilityIgnoreDescription[] =
6172 "Makes the lacros-availability policy have no effect. Instead Lacros "
6173 "availability will be controlled by experiment and/or user flags.";
6174
Hidehiko Abea7217c92022-02-01 05:54:576175const char kLacrosOnlyName[] = "Lacros is the only browser";
6176const char kLacrosOnlyDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356177 "Use Lacros-chrome as the only web browser on ChromeOS. "
Hidehiko Abea7217c92022-02-01 05:54:576178 "This flag is ignored if Lacros support or primary is disabled.";
6179
Hidehiko Abe9f190d12021-03-18 12:55:206180const char kLacrosPrimaryName[] = "Lacros as the primary browser";
6181const char kLacrosPrimaryDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356182 "Use Lacros-chrome as the primary web browser on ChromeOS. "
Hidehiko Abe9f190d12021-03-18 12:55:206183 "This flag is ignored if Lacros support is disabled.";
6184
Erik Chen601a5d62020-12-07 20:05:126185const char kLacrosStabilityName[] = "Lacros stability";
Roman Arorac36aeeb92021-10-04 20:35:586186const char kLacrosStabilityDescription[] = "Lacros update channel.";
Erik Chen601a5d62020-12-07 20:05:126187
Jae Hoon Kim94e1cfd2021-05-19 20:52:526188const char kLacrosSelectionName[] = "Lacros selection";
6189const char kLacrosSelectionDescription[] =
6190 "Choosing between rootfs or stateful Lacros.";
6191
6192const char kLacrosSelectionRootfsDescription[] = "Rootfs";
6193const char kLacrosSelectionStatefulDescription[] = "Stateful";
6194
Artem Sumaneev1f3555a2023-01-30 12:48:276195const char kLacrosSelectionPolicyIgnoreName[] =
6196 "Ignore lacros-selection policy";
6197const char kLacrosSelectionPolicyIgnoreDescription[] =
6198 "Makes the lacros-selection policy have no effect. Instead Lacros "
6199 "selection will be controlled by experiment and/or user flags.";
6200
James Cook2fe5ca7b2020-10-09 02:54:176201const char kLacrosSupportName[] = "Lacros support";
James Cookac2473be2020-04-28 00:54:186202const char kLacrosSupportDescription[] =
Yuta Hijikata45214bc2021-04-27 16:36:386203 "Support for the experimental lacros-chrome browser. Please note that the "
6204 "first restart can take some time to setup lacros-chrome. Please DO NOT "
6205 "attempt to turn off the device during the restart.";
James Cookac2473be2020-04-28 00:54:186206
Erik Chen5d686e2a02022-11-01 23:11:316207const char kLacrosWaylandLoggingName[] = "Lacros wayland logging";
6208const char kLacrosWaylandLoggingDescription[] =
6209 "Enables wayland logging for Lacros. This generates a significant amount "
6210 "of logs on disk. Logs are cleared after two restarts.";
6211
Yuta Hijikataad794422022-04-15 17:33:126212const char kLacrosMoveProfileMigrationName[] = "Enforce profile move migration";
6213const char kLacrosMoveProfileMigrationDescription[] =
6214 "Enforce Lacros profile move migration which moves files from Ash profile "
6215 "directory to Lacros profile directory instead of copying. Please note "
6216 "that disabling Lacros and falling back to Ash after move migration is not "
6217 "supported.";
6218
Yuta Hijikata6a575d42022-01-11 04:09:076219const char kLacrosProfileMigrationForceOffName[] = "Disable profile migration";
6220const char kLacrosProfileMigrationForceOffDescription[] =
6221 "Disables lacros profile migration. Lacros profile migration is being "
6222 "rolled out to internal users first. Once lacros profile migration becomes "
6223 "available to the user, the completion of profile migration becomes a "
6224 "requirement to use lacros i.e. if profile migration gets rolled out to "
6225 "the user and the migration fails, then lacros becomes unavailable until "
6226 "the migration is completed. By enabling this flag, even if profile "
6227 "migration is rolled out to the user, the migration will not run and the "
6228 "user can continue to use lacros without profile migration.";
6229
Rachel Wongbde90d72022-07-11 06:18:276230const char kLauncherItemSuggestName[] = "Launcher ItemSuggest";
6231const char kLauncherItemSuggestDescription[] =
6232 "Allows configuration of experiment parameters for ItemSuggest in the "
6233 "launcher.";
6234
Ahmed Fakhry039882f2020-06-16 21:56:216235const char kLimitShelfItemsToActiveDeskName[] =
6236 "Limit Shelf items to active desk";
6237const char kLimitShelfItemsToActiveDeskDescription[] =
6238 "Limits items on the shelf to the ones associated with windows on the "
6239 "active desk";
6240
Ahmed Fakhry15d707e2019-02-22 23:54:216241const char kListAllDisplayModesName[] = "List all display modes";
6242const char kListAllDisplayModesDescription[] =
6243 "Enables listing all external displays' modes in the display settings.";
6244
Gil Dekel11cbdfb2020-12-23 21:43:276245const char kEnableHardwareMirrorModeName[] = "Enable Hardware Mirror Mode";
6246const char kEnableHardwareMirrorModeDescription[] =
6247 "Enables hardware support when multiple displays are set to mirror mode.";
6248
Jungshik Shin1c8c4882022-09-14 05:35:266249const char kHindiInscriptLayoutName[] = "Hindi Inscript Layout on CrOS";
6250const char kHindiInscriptLayoutDescription[] =
6251 "Enables Hindi Inscript Layout on ChromeOS.";
6252
Megumi Hattori5a0d4182018-03-06 11:09:506253const char kLockScreenNotificationName[] = "Lock screen notification";
6254const char kLockScreenNotificationDescription[] =
6255 "Enable notifications on the lock screen.";
6256
Pattid12c5eb2023-04-03 01:37:006257const char kMediaAppPdfSignatureName[] = "Media App PDF Signature";
6258const char kMediaAppPdfSignatureDescription[] =
6259 "Enable signature and element selection feature for PDFs in Gallery app.";
6260
Steven Bennetts66bc3542020-06-25 23:05:286261const char kMeteredShowToggleName[] = "Show Metered Toggle";
6262const char kMeteredShowToggleDescription[] =
6263 "Shows a Metered toggle in the Network settings UI for WiFI and Cellular. "
6264 "The toggle allows users to set whether a network should be considered "
6265 "metered for purposes of bandwith usage (e.g. for automatic updates).";
6266
Toni Barzic5cf7da92021-05-19 21:07:406267const char kMicrophoneMuteNotificationsName[] = "Microphone Mute Notifications";
6268const char kMicrophoneMuteNotificationsDescription[] =
6269 "Enables notifications that are shown when an app tries to use microphone "
6270 "while audio input is muted.";
6271
6272const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device";
6273const char kMicrophoneMuteSwitchDeviceDescription[] =
6274 "Support for detecting the state of hardware microphone mute toggle. Only "
6275 "effective on devices that have a microphone mute toggle. Enabling the "
6276 "flag does not affect the toggle functionality, it only affects how the "
6277 "System UI handles the mute toggle state.";
6278
Jason Thai7036e64e2023-01-23 23:14:396279const char kMultiZoneRgbKeyboardName[] =
6280 "Enable multi-zone RGB keyboard customization";
6281const char kMultiZoneRgbKeyboardDescription[] =
6282 "Enable multi-zone RGB keyboard customization on supported devices.";
6283
Bao-Duy Tranaa329d62020-11-27 05:40:586284const char kMultilingualTypingName[] = "Multilingual typing on CrOS";
6285const char kMultilingualTypingDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356286 "Enables support for multilingual assistive typing on ChromeOS.";
Bao-Duy Tranaa329d62020-11-27 05:40:586287
Brando51a6f882023-05-26 19:02:446288const char kNearbySharingSelfShareName[] = "Nearby Sharing Self Share";
6289const char kNearbySharingSelfShareDescription[] =
6290 "Enables Self Share auto-accept and UI features to allow seamless sharing "
6291 "between a user's own devices.";
Michael Hansenf59f974b2022-01-14 17:40:026292
Gordon Seto2c79d0442022-02-22 22:33:066293const char kOobeHidDetectionRevampName[] = "OOBE HID Detection Revamp";
6294const char kOobeHidDetectionRevampDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356295 "Enables the ChromeOS HID Detection Revamp, which updates OOBE HID "
Gordon Seto2c79d0442022-02-22 22:33:066296 "detection screen UI and related infrastructure.";
6297
Ashley Prasad26ebba5d2023-03-31 16:47:466298const char kOsFeedbackJellyName[] =
6299 "Enable jelly colors for the OS Feedback app";
6300const char kOsFeedbackJellyDescription[] =
6301 "Enable jelly colors for the OS Feedback app. Requires jelly-colors flag "
6302 "to be enabled.";
6303
Wes Okuhara72373672022-10-14 16:38:196304const char kOsSettingsAppBadgingToggleName[] =
6305 "ChromeOS Settings App Badging Toggle";
6306const char kOsSettingsAppBadgingToggleDescription[] =
6307 "Enables app badging toggle to be displayed in app notification page in"
6308 "ChromeOS Settings.";
6309
Xiaohui Chencd2db09e2023-06-12 18:20:266310const char kOsSettingsDeprecateSyncMetricsToggleName[] =
6311 "ChromeOS Settings Deprecate Sync Metrics Toggle";
6312const char kOsSettingsDeprecateSyncMetricsToggleDescription[] =
6313 "If enabled, deprecate the metrics in sync settings page in "
6314 "ChromeOS Settings.";
6315
Wes Okuharad71d73df2023-05-17 23:33:386316const char kOsSettingsRevampWayfindingName[] =
6317 "ChromeOS Settings Revamp: Wayfinding Improvements";
6318const char kOsSettingsRevampWayfindingDescription[] =
6319 "Enables wayfinding improvements in the ChromeOS Settings UI.";
6320
Jimmy Gong35094482021-10-06 23:14:286321const char kPcieBillboardNotificationName[] = "Pcie billboard notification";
6322const char kPcieBillboardNotificationDescription[] =
6323 "Enable Pcie peripheral billboard notification.";
6324
Daniel Andersson9bfdde42021-07-15 20:59:146325const char kPerformantSplitViewResizing[] = "Performant Split View Resizing";
6326const char kPerformantSplitViewResizingDescription[] =
6327 "If enabled, windows may be moved instead of scaled when resizing split "
6328 "view in tablet mode.";
6329
Sam Chiu1dee4a12021-10-12 18:21:276330const char kPhoneHubCallNotificationName[] =
6331 "Incoming call notification in Phone Hub";
6332const char kPhoneHubCallNotificationDescription[] =
6333 "Enables the incoming/ongoing call feature in Phone Hub.";
6334
Jason Sun1d947912021-06-21 16:54:236335const char kPhoneHubCameraRollName[] = "Camera Roll in Phone Hub";
6336const char kPhoneHubCameraRollDescription[] =
6337 "Enables the Camera Roll feature in Phone Hub, which allows users to "
6338 "access recent photos and videos taken on a connected Android device.";
6339
Pu Shi1306f642022-07-29 00:58:346340const char kPhoneHubFeatureSetupErrorHandlingName[] =
6341 "Error handling during Phone Hub feature setup";
6342const char kPhoneHubFeatureSetupErrorHandlingDescription[] =
6343 "Enable the error handling during Phone Hub feature setup. It allows"
6344 "users to see result on Chromebook when the setup failed on connected"
6345 "remote phone device.";
6346
Jennifer Serranof65bc542023-01-11 01:00:566347const char kPhoneHubNudgeName[] = "Phone Hub nudge";
6348const char kPhoneHubNudgeDescription[] =
6349 "Enables a nudge to direct eligible users to open Phone Hub.";
6350
Andreea Costinas478d1ca22023-02-23 11:49:506351const char kPolicyProvidedTrustAnchorsAllowedAtLockScreenName[] =
6352 "Policy-provided trust anchors at lock screen";
6353const char kPolicyProvidedTrustAnchorsAllowedAtLockScreenDescription[] =
6354 "Enables using the policy-provided trust anchors at lock screen";
6355
Peter Boström6324b792022-09-28 23:15:566356const char kPreferDcheckName[] = "Prefer DCHECK-enabled build";
6357const char kPreferDcheckDescription[] =
6358 "Use a DCHECK-enabled build when available.";
6359
Gavin Williamsf92f14962023-05-01 23:19:416360const char kPrinterSettingsPrinterStatusName[] =
6361 "Enable Printer Settings printer statuses";
6362const char kPrinterSettingsPrinterStatusDescription[] =
6363 "Enables printer status querying and displaying from the OS Printer "
6364 "settings page.";
6365
Gavin Williams4d4ab1312023-04-18 18:30:386366const char kPrinterSettingsRevampName[] = "Enable Printer Settings Revamped UI";
6367const char kPrinterSettingsRevampDescription[] =
6368 "Show the enhanced UI for the OS Printer settings page.";
6369
Gavin Williams2e687bf2023-06-01 17:25:036370const char kPrintPreviewDiscoveredPrintersName[] =
6371 "Enables showing discovered printers in the Print Preview dialog.";
6372const char kPrintPreviewDiscoveredPrintersDescription[] =
6373 "Shows discovered printers in the Print Preview dialog that get set up "
6374 "once selected.";
6375
Piotr Pawliczek49732c92022-12-12 18:10:586376const char kPrintingPpdChannelName[] = "Printing PPD channel";
6377const char kPrintingPpdChannelDescription[] =
6378 "The channel from which PPD index "
6379 "is loaded when matching PPD files during printer setup.";
6380
Ashley Prasad9363e832023-04-04 15:59:566381const char kPrintManagementJellyName[] =
6382 "Enable jelly colors for the Print Management App";
6383const char kPrintManagementJellyDescription[] =
6384 "Enable jelly colors for the Print Management App. Requires "
6385 "jelly-colors flag to be enabled.";
6386
Ashley Prasad7909321b2023-05-18 16:27:446387const char kPrintManagementSetupAssistanceName[] =
6388 "Enable improved printer setup experience for the Print Management App";
6389const char kPrintManagementSetupAssistanceDescription[] =
6390 "Enable improved printer setup experience for the Print Management App.";
6391
James Cookb661f3802021-09-30 21:43:206392const char kProductivityLauncherName[] =
6393 "Productivity experiment: App Launcher";
6394const char kProductivityLauncherDescription[] =
6395 "To evaluate an enhanced Launcher experience that aims to improve app "
6396 "workflows by optimizing access to apps, app content, and app actions.";
6397
Yulun Wu2f5597992022-08-12 23:57:206398const char kProductivityLauncherImageSearchName[] =
6399 "Productivity Launcher experiment: Launcher Image Search";
6400const char kProductivityLauncherImageSearchDescription[] =
6401 "To evaluate the viability of image search as part of Productivity "
6402 "Launcher Search.";
6403
Ana Salazarbb287bcc42023-01-11 00:34:206404const char kAppListDragAndDropRefactorName[] =
6405 "Drag and drop refactor in launcher";
6406const char kAppListDragAndDropRefactorDescription[] =
6407 "Enables app list drag and drop refactor to use views drag and drop APIs. "
6408 "No user visible changes are expected.";
6409
Li Lin122b7852022-03-10 02:46:396410const char kProjectorName[] = "Enable Projector";
6411const char kProjectorDescription[] =
6412 "Enables Projects SWA and associated recording tools";
6413
Toby Huang6a77193f22022-08-12 18:07:306414const char kProjectorLocalPlaybackName[] = "Enable Projector local playback";
6415const char kProjectorLocalPlaybackDescription[] =
6416 "Supports streaming screencast videos from DriveFS instead of Drive before "
6417 "they have finished transcoding";
6418
6419const char kProjectorAppDebugName[] = "Enable Projector app debug";
6420const char kProjectorAppDebugDescription[] =
6421 "Adds more informative error messages to the Projector app for debugging";
Li Lin122b7852022-03-10 02:46:396422
Yilkal2bc65312023-02-23 21:27:126423const char kProjectorServerSideSpeechRecognitionName[] =
6424 "Enable server side speech recognition for Projector";
6425const char kProjectorServerSideSpeechRecognitionDescription[] =
6426 "Adds server side speech recognition capability to Projector.";
6427
Jiaming Chenge04b3b52022-08-09 02:46:596428const char kQsRevampName[] = "Quick Settings Revamp";
6429const char kQsRevampDescription[] =
6430 "Enable QS UI revamp with separated message center.";
6431
Rachel Carpenter57c8523c2020-09-23 01:11:226432const char kReleaseNotesNotificationAllChannelsName[] =
6433 "Release Notes Notification All Channels";
6434const char kReleaseNotesNotificationAllChannelsDescription[] =
Richard Chuia9ed7be12022-04-13 21:30:356435 "Enables the release notes notification for all ChromeOS channels";
Rachel Carpenter57c8523c2020-09-23 01:11:226436
Shuming Hao42af3d72023-03-30 20:06:106437extern const char kRenderArcNotificationsByChromeName[] =
6438 "Render ARC notifications by ChromeOS";
6439extern const char kRenderArcNotificationsByChromeDescription[] =
6440 "Enables rendering ARC notifications using ChromeOS notification framework "
6441 "if supported";
6442
Lei Zhang44abd5d22022-01-11 00:32:346443const char kArcWindowPredictorName[] = "Enable ARC window predictor";
6444const char kArcWindowPredictorDescription[] =
Shengsong Tan81338972021-12-22 05:27:506445 "Enables the window state and bounds predictor for ARC task windows";
6446
Cici Ruan846b6712022-08-12 21:08:186447const char kArcInputOverlayNameBeta[] = "Enable ARC Input Overlay Beta";
6448const char kArcInputOverlayDescriptionBeta[] =
Cici Ruan2374f1b02022-12-07 01:19:586449 "Enable full editor feature for Gaming Input Overlay including features in "
6450 "Alpha V2, so users can add and remove actions.";
Joseph Panga61e7db2022-11-29 21:23:386451
Cici Ruan2374f1b02022-12-07 01:19:586452const char kArcInputOverlayNameAlphaV2[] = "Enable ARC Input Overlay Alpha V2";
6453const char kArcInputOverlayDescriptionAlphaV2[] =
Joseph Panga61e7db2022-11-29 21:23:386454 "Enable menu and action reposition feature for Gaming Input Overlay based "
6455 "on Alpha.";
Cici Ruan846b6712022-08-12 21:08:186456
Angela Xiao69e8fc22023-06-01 22:05:226457const char kScalableIphName[] = "Enable ChromeOS scalable IPH.";
6458const char kScalableIphDescription[] =
6459 "Enable scalable IPH. In addition to this flag, each respective IPH "
6460 "trigger condition needs to be met before an IPH notifier is shown.";
6461
Ashley Prasad0b9fb6082023-04-05 17:36:196462const char kScanningAppJellyName[] =
6463 "Enable jelly colors for the Scanning App.";
6464const char kScanningAppJellyDescription[] =
6465 "Enable jelly colors for the Scanning App. Requires "
6466 "jelly-colors flag to be enabled.";
6467
Elliot Tuck5551fdd2022-07-25 21:10:146468const char kShelfAutoHideSeparationName[] =
6469 "Enable separate shelf auto-hide preferences.";
6470const char kShelfAutoHideSeparationDescription[] =
6471 "Allows for the shelf's auto-hide preference to be specified separately "
6472 "for clamshell and tablet mode.";
6473
Anton Swifton1917b872022-05-26 06:27:436474const char kShimlessRMAOsUpdateName[] = "Enable OS updates in shimless RMA";
6475const char kShimlessRMAOsUpdateDescription[] =
6476 "Turns on OS updating in Shimless RMA";
6477
wenyu zhang98000162022-06-16 17:02:536478const char kShimlessRMADisableDarkModeName[] =
6479 "Disable dark mode in Shimless RMA";
6480const char kShimlessRMADisableDarkModeDescription[] =
6481 "Disable dark mode and only allow light mode in Shimless RMA";
6482
Gavin Williams1a14b9212023-03-22 19:42:296483const char kShimlessRMADiagnosticPageName[] =
6484 "Enable diagnostic page in Shimless RMA";
6485const char kShimlessRMADiagnosticPageDescription[] =
6486 "Enable the diagnostic page in Shimless RMA for showing detailed device "
6487 "information";
6488
Ashley Prasada370c0602023-04-04 20:54:056489const char kShortcutCustomizationJellyName[] =
6490 "Enable jelly colors for the Shortcut Customization App";
6491const char kShortcutCustomizationJellyDescription[] =
6492 "Enable jelly colors for the Shortcut Customization App. Requires "
6493 "jelly-colors flag to be enabled.";
6494
Andrew Moylan97585272019-02-19 19:01:226495const char kSchedulerConfigurationName[] = "Scheduler Configuration";
6496const char kSchedulerConfigurationDescription[] =
6497 "Instructs the OS to use a specific scheduler configuration setting.";
Greg Kerr33cd4662019-06-17 07:03:016498const char kSchedulerConfigurationConservative[] =
6499 "Disables Hyper-Threading on relevant CPUs.";
6500const char kSchedulerConfigurationPerformance[] =
6501 "Enables Hyper-Threading on relevant CPUs.";
Andrew Moylan97585272019-02-19 19:01:226502
Erin Parkbbb5decc2022-07-21 21:37:136503const char kMediaDynamicCgroupName[] = "Media Dynamic Cgroup";
6504const char kMediaDynamicCgroupDescription[] =
6505 "Dynamic Cgroup allows tasks from media workload to be consolidated on "
6506 "limited cpuset";
6507
Leonid Barazc904d472023-05-09 23:53:446508const char kMissiveStorageName[] = "Missive Daemon Storage Configuration";
6509const char kMissiveStorageDescription[] =
6510 "Provides missive daemon with custom storage configuration parameters";
6511
Kyle Horimoto63a6bd42019-09-16 23:47:526512const char kShowBluetoothDebugLogToggleName[] =
6513 "Show Bluetooth debug log toggle";
6514const char kShowBluetoothDebugLogToggleDescription[] =
6515 "Enables a toggle which can enable debug (i.e., verbose) logs for "
6516 "Bluetooth";
6517
Yu Liu9d01d342021-03-12 20:05:166518const char kBluetoothSessionizedMetricsName[] =
6519 "Enable Bluetooth sessionized metrics";
6520const char kBluetoothSessionizedMetricsDescription[] =
6521 "Enables collecting and processing Bluetooth sessionized metrics.";
6522
James Cook0ba192bf2017-12-01 20:53:116523const char kShowTapsName[] = "Show taps";
6524const char kShowTapsDescription[] =
6525 "Draws a circle at each touch point, which makes touch points more obvious "
6526 "when projecting or mirroring the display. Similar to the Android OS "
6527 "developer option.";
6528
6529const char kShowTouchHudName[] = "Show HUD for touch points";
6530const char kShowTouchHudDescription[] =
6531 "Shows a trail of colored dots for the last few touch points. Pressing "
6532 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
6533 "debug hardware issues that generate spurious touch events.";
6534
Ricky Liang3bd2754b52020-10-07 02:50:326535const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation";
6536const char kSpectreVariant2MitigationDescription[] =
6537 "Controls whether Spectre variant 2 mitigation is enabled when "
6538 "bootstrapping the Seccomp BPF sandbox. Can be overridden by "
6539 "#force-spectre-variant2-mitigation.";
6540
Keith Lee8b2131fe2021-10-11 05:11:066541const char kSystemJapanesePhysicalTypingName[] =
6542 "Use system IME for Japanese typing";
6543const char kSystemJapanesePhysicalTypingDescription[] =
6544 "Use the system input engine instead of the Chrome extension for physical "
Keith Lee6dfc28e2022-10-25 07:20:466545 "typing in Japanese. This also replaces the Japanese extension settings "
6546 "page with one built into the UI and migrates the data to a new location.";
Keith Lee8b2131fe2021-10-11 05:11:066547
Michael Martisd3a46a872023-02-08 05:27:506548const char kSystemLiveCaptionName[] = "System Live Caption";
6549const char kSystemLiveCaptionDescription[] =
6550 "Enables the live caption feature for non-Chrome (e.g. Android, linux) "
6551 "audio.";
6552
Steven Bennetts2038c6c2022-12-02 20:06:096553const char kCaptivePortalErrorPageName[] =
6554 "Enables Captive Portal error page suggestions.";
6555const char kCaptivePortalErrorPageDescription[] =
6556 "Enables Captive Portal error page suggestions when a page fails to load "
6557 "and ChromeOS has detected a captive portal.";
6558
Jason Lin30ea2619c2022-07-27 06:40:296559const char kTerminalAlternativeEmulatorName[] = "Terminal alternative emulator";
6560const char kTerminalAlternativeEmulatorDescription[] =
6561 "Enable the alternative emulator for the Terminal app. You will also get "
6562 "an option in Terminal settings to change the default emulator.";
Jason Lin193ef782022-06-21 02:12:036563
Joel Hockey6bc7d9b2022-04-28 00:36:056564const char kTerminalDevName[] = "Terminal dev";
6565const char kTerminalDevDescription[] =
6566 "Enables Terminal System App to load from Downloads for developer testing. "
6567 "Only works in dev and canary channels.";
6568
Brett Wilson7b44537e2017-08-18 01:38:286569const char kTetherName[] = "Instant Tethering";
6570const char kTetherDescription[] =
6571 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
6572 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:376573
Jason Thaie13aa822023-02-24 04:09:236574const char kTimeOfDayScreenSaverName[] = "Time of Day Screen Saver";
6575const char kTimeOfDayScreenSaverDescription[] =
6576 "Enables Time of Day Screen Saver feature on supported devices. Requires "
6577 "Time Of Day Wallpaper feature to be enabled.";
6578
Jason Thai5af7e8d2023-02-24 00:13:056579const char kTimeOfDayWallpaperName[] = "Time of Day Wallpaper";
6580const char kTimeOfDayWallpaperDescription[] =
6581 "Enables Time of Day Wallpaper feature on supported devices.";
6582
Brett Wilson7b44537e2017-08-18 01:38:286583const char kTouchscreenCalibrationName[] =
6584 "Enable/disable touchscreen calibration option in material design settings";
6585const char kTouchscreenCalibrationDescription[] =
6586 "If enabled, the user can calibrate the touch screen displays in "
6587 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:096588
Steven Bennetts9b695dc2022-04-12 17:10:276589const char kTrafficCountersEnabledName[] = "Traffic counters enabled";
6590const char kTrafficCountersEnabledDescription[] =
6591 "If enabled, data usage will be visible in the Cellular Settings UI and "
6592 "traffic counters will be automatically reset if that setting is enabled.";
Kartik Hegde5af70932021-08-12 23:04:206593
Jérémie Boulic8c1c3fc2022-06-20 05:35:556594const char kUploadOfficeToCloudName[] = "Enable Office files upload workflow.";
6595const char kUploadOfficeToCloudDescription[] =
6596 "Some file handlers for Microsoft Office files are only available on the "
6597 "the cloud. Enables the cloud upload workflow for Office file handling.";
6598
Miguel Casas-Sanchezdcd69152019-09-04 21:22:366599const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device";
6600const char kUseFakeDeviceForMediaStreamDescription[] =
6601 "Forces Chrome to use a fake video capture device (a rolling pacman with a "
6602 "timestamp) instead of the system audio/video devices, for debugging "
6603 "purposes.";
6604
Erik Chen366873d62022-03-08 23:11:386605const char kUXStudy1Name[] = "UX Study 1";
6606const char kUXStudy1Description[] = "Opt into a group for UX Study";
6607
Qiang Xu045aff222018-05-21 23:21:016608const char kUiDevToolsName[] = "Enable native UI inspection";
6609const char kUiDevToolsDescription[] =
6610 "Enables inspection of native UI elements. For local inspection use "
6611 "chrome://inspect#other";
6612
Andrew Moylan97585272019-02-19 19:01:226613const char kUiSlowAnimationsName[] = "Slow UI animations";
6614const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
Mattias Nissler6bb633f2019-02-13 23:41:466615
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:236616const char kVaapiJpegImageDecodeAccelerationName[] =
6617 "VA-API JPEG decode acceleration for images";
6618const char kVaapiJpegImageDecodeAccelerationDescription[] =
6619 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
6620 " captures) using the VA-API.";
6621
Gil Dekel8f4b5642019-07-27 05:27:406622const char kVaapiWebPImageDecodeAccelerationName[] =
6623 "VA-API WebP decode acceleration for images";
6624const char kVaapiWebPImageDecodeAccelerationDescription[] =
6625 "Enable or disable decode acceleration of WebP images using the VA-API.";
6626
Jing Wang1293e3a2021-02-17 00:56:446627const char kVirtualKeyboardName[] = "Virtual Keyboard";
6628const char kVirtualKeyboardDescription[] =
6629 "Always show virtual keyboard regardless of having a physical keyboard "
6630 "present";
6631
My Nguyen0bc9add2020-12-03 21:21:256632const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard";
6633const char kVirtualKeyboardDisabledDescription[] =
6634 "Always disable virtual keyboard regardless of device mode. Workaround for "
6635 "virtual keyboard showing with some external keyboards.";
6636
Michelle1569cf32022-03-24 06:34:486637const char kVirtualKeyboardMultitouchName[] = "Virtual Keyboard Multitouch";
6638const char kVirtualKeyboardMultitouchDescription[] =
6639 "Enables multitouch on the virtual keyboard.";
6640
John Palmer489eda922022-05-13 05:40:416641const char kVirtualKeyboardRoundCornersName[] =
6642 "Virtual Keyboard Round Corners";
6643const char kVirtualKeyboardRoundCornersDescription[] =
6644 "Enables round corners on the virtual keyboard.";
6645
Yen-lin Laif458f8012021-03-29 10:18:206646const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features";
6647const char kWakeOnWifiAllowedDescription[] =
6648 "Allows wake on WiFi features in shill to be enabled.";
6649
Maggie Cai6dd6b552021-04-27 08:40:326650const char kWebAppsCrosapiName[] = "Web Apps Crosapi";
6651const char kWebAppsCrosapiDescription[] =
6652 "Support web apps publishing from Lacros browser.";
6653
James Cook49358cc2022-08-30 20:30:266654const char kWelcomeScreenName[] =
6655 "Productivity Experiment: Reorient with welcome screen";
6656const char kWelcomeScreenDescription[] =
6657 "When a user is about to start a new task, provide them with relevant "
6658 "information and tools to help them orient and get started.";
6659
Jacek Siuda7ed81c92021-11-24 10:39:446660const char kWifiConnectMacAddressRandomizationName[] =
6661 "MAC address randomization";
6662const char kWifiConnectMacAddressRandomizationDescription[] =
6663 "Randomize MAC address when connecting to unmanaged (non-enterprise) "
6664 "WiFi networks.";
6665
tbye50bce9a2022-03-31 03:32:546666const char kLauncherGameSearchName[] = "Enable launcher game search";
6667const char kLauncherGameSearchDescription[] =
6668 "Enables cloud game search results in the launcher.";
6669
Rebecca Hsu1d633912022-12-14 06:09:336670const char kLauncherKeywordExtractionScoring[] =
6671 "Query keyword extraction and scoring in launcher";
6672const char kLauncherKeywordExtractionScoringDescription[] =
6673 "Enables extraction of keywords from query then calculate score from "
6674 "extracted keyword in the launcher.";
6675
Dmitry Grebenyuk462003b2023-03-26 23:42:266676const char kLauncherLocalImageSearchName[] =
6677 "Enable launcher local image search";
6678const char kLauncherLocalImageSearchDescription[] =
6679 "Enables on-device local image search in the launcher.";
6680
Dmitry Grebenyuk5f388ac22023-05-22 03:24:396681const char kLauncherLocalImageSearchOcrName[] =
6682 "Enable OCR for local image search";
6683const char kLauncherLocalImageSearchOcrDescription[] =
6684 "Enables on-device Optical Character Recognition for local image search in "
6685 "the launcher.";
6686
6687const char kLauncherLocalImageSearchIcaName[] =
6688 "Enable ICA for local image search";
6689const char kLauncherLocalImageSearchIcaDescription[] =
6690 "Enables on-device Image Content-based Annotation for local image search "
6691 "in the launcher.";
6692
Lauren Commeignes9c601fe32023-06-05 02:47:306693const char kLauncherFuzzyMatchAcrossProvidersName[] =
6694 "Enable fuzzy match for relevance scores";
6695const char kLauncherFuzzyMatchAcrossProvidersDescription[] =
6696 "Change relevance score in Drive Files, Local Files, Help App, Keyboard "
6697 "shortcuts, OS Settings and personalization app to all be based on a fuzzy "
6698 "match";
6699
Lauren Commeignes9f0db8f2022-12-21 00:03:476700const char kLauncherFuzzyMatchForOmniboxName[] =
6701 "Omnibox Results Fuzzy match experiment";
6702const char kLauncherFuzzyMatchForOmniboxDescription[] =
6703 "To evaluate the viability of a Fuzzy match on Omnibox results to "
6704 "downweight search sugestions";
6705
Lauren Commeignes33aea8b2023-01-03 02:38:286706const char kLauncherSystemInfoAnswerCardsName[] =
6707 "System Info Answer Cards in launcher";
6708const char kLauncherSystemInfoAnswerCardsDescription[] =
6709 "Enables System info answer cards in the launcher to provide system "
6710 "performance metrics";
6711
Chad Duffincdab9362022-07-29 18:31:386712const char kMacAddressRandomizationName[] = "MAC address randomization";
6713const char kMacAddressRandomizationDescription[] =
6714 "Feature to allow MAC address randomization to be enabled for WiFi "
6715 "networks.";
6716
Chad Duffinea47d502023-04-12 23:25:376717const char kSmdsSupportName[] = "SM-DS Support";
6718const char kSmdsSupportDescription[] =
6719 "Feature to enable the consumer and enterprise support for provisioning "
6720 "eSIM profiles using Subscription Manager Discovery Service (SM-DS). This "
Chad Duffinceb4285a2023-05-24 21:58:286721 "flag is a no-op unless the smds-dbus-migration and "
6722 "smds-support-euicc-upload flags are enabled.";
Chad Duffinea47d502023-04-12 23:25:376723
Chad Duffine34312d2023-04-13 00:17:106724const char kSmdsSupportEuiccUploadName[] = "SM-DS Support EUICC Upload";
6725const char kSmdsSupportEuiccUploadDescription[] =
6726 "Feature to enable tracking when a policy-defined cellular network "
6727 "configured to use SM-DS has already been applied and an eSIM profile for "
Chad Duffinceb4285a2023-05-24 21:58:286728 "the network was installed.";
Chad Duffine34312d2023-04-13 00:17:106729
Chad Duffinc8c37082023-03-07 17:04:056730const char kSmdsDbusMigrationName[] = "SM-DS DBus Migration";
6731const char kSmdsDbusMigrationDescription[] =
6732 "Feature to enable the usage of DBus APIs that improve the stability"
6733 "around performing SM-DS scans.";
6734
Simon Ziegltrum55f69bc2022-12-22 16:05:516735const char kOobeJellyName[] = "Jelly design for OOBE";
6736const char kOobeJellyDescription[] =
6737 "Feature to enable the Jelly design in out of box experience.";
Simon Ziegltrumc23cb6c52022-09-22 19:43:446738
Simon Ziegltrumf02c98af2023-03-16 23:03:286739const char kOobeSimonName[] = "Simon features for OOBE";
6740const char kOobeSimonDescription[] =
6741 "Feature to enable the Simon features in out of box experience.";
6742
Tao Wu4b5d8162022-11-10 19:58:076743const char kLibAssistantV2MigrationName[] = "LibAssistant V2 migration";
6744const char kLibAssistantV2MigrationDescription[] =
6745 "Enables loading LibAssistant V2 for Assistant on ChromeOS.";
6746
Markus Handellabf6c7812020-12-15 18:14:356747// Prefer keeping this section sorted to adding new definitions down here.
6748
6749#endif // BUILDFLAG(IS_CHROMEOS_ASH)
6750
Simon Hangl05d1f6a2023-01-13 15:33:596751#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
Simon Hanglcfe153b2023-04-03 14:38:406752const char kGetAllScreensMediaName[] = "GetAllScreensMedia API";
6753const char kGetAllScreensMediaDescription[] =
6754 "When enabled, the getAllScreensMedia API for capturing multiple screens "
6755 "at once, is available.";
Simon Hangl05d1f6a2023-01-13 15:33:596756#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
6757
Sebastian Fiß8f6d9a82023-03-07 09:04:256758#if BUILDFLAG(IS_CHROMEOS)
6759const char kRunOnOsLoginName[] = "Run on OS login";
6760const char kRunOnOsLoginDescription[] =
6761 "When enabled, allows PWAs to be automatically run on OS login.";
Simon Hangl39e525b2023-04-14 17:19:386762
6763const char kPreventCloseName[] = "Prevent close";
6764const char kPreventCloseDescription[] =
6765 "When enabled, allow-listed PWAs cannot be closed manually.";
Simon Hanglf35f0a02023-04-18 15:37:246766
6767const char kKeepAliveName[] = "Keep alive";
6768const char kKeepAliveDescription[] =
6769 "When enabled, allow-listed PWAs will be prevented for throttling or "
6770 "hibernation.";
Sebastian Fiß8f6d9a82023-03-07 09:04:256771#endif // BUILDFLAG(IS_CHROMEOS)
6772
Jan Krcald11ad892022-01-17 12:37:026773#if BUILDFLAG(IS_CHROMEOS_LACROS)
Jason Lin288a01a2023-04-03 01:50:476774const char kExperimentalWebAppProfileIsolationName[] =
6775 "Enable experimental web app profile isolation";
6776const char kExperimentalWebAppProfileIsolationDescription[] =
6777 "This is a highly experimental feature to isolate a web app with a "
Jason Linc8bb215f2023-05-01 03:10:296778 "dedicated profile. ExperimentalWebAppStoragePartitionIsolation is ignored "
6779 "if this flag is on. Enabling this flag could break things. And a factory "
Jason Lin288a01a2023-04-03 01:50:476780 "reset might be needed to fully recover the state.";
6781
Jason Line4862b02023-03-21 04:38:136782const char kExperimentalWebAppStoragePartitionIsolationName[] =
6783 "Enable experimental web app stroage partition isolation";
6784const char kExperimentalWebAppStoragePartitionIsolationDescription[] =
Jason Linc8bb215f2023-05-01 03:10:296785 "Ignored if ExperimentalWebAppProfileIsolation is on. This is highly "
6786 "experimental. Enabling this flag could break things. And a factory reset"
6787 "might be needed to fully recover the state.";
Jason Line4862b02023-03-21 04:38:136788
Alex Cooperdad8fb692022-10-03 22:42:416789const char kLacrosAuraCaptureName[] = "Enable Lacros Aura Capture";
6790const char kLacrosAuraCaptureDescription[] =
6791 "Enables LaCrOS to perform an in-process capture of it's own windows "
6792 "rather than needing to delegate the capture to Ash";
6793
Andrea Orrue14d8fd82022-02-24 16:47:516794const char kLacrosMergeIcuDataFileName[] =
6795 "Enable merging of icudtl.dat in Lacros";
6796const char kLacrosMergeIcuDataFileDescription[] =
6797 "Enables sharing common areas of icudtl.dat between Ash and Lacros.";
Jan Krcald11ad892022-01-17 12:37:026798#endif // #if BUILDFLAG(IS_CHROMEOS_LACROS)
6799
Eric Willigers02f80aa2022-04-29 01:29:326800#if BUILDFLAG(IS_CHROMEOS)
Hsin-Yu Chaoe46eb5992022-03-18 13:34:276801const char kCrOSDspBasedAecAllowedName[] =
6802 "Allow CRAS to use a DSP-based AEC if available";
6803const char kCrOSDspBasedAecAllowedDescription[] =
6804 "Allows the system variant of the AEC in CRAS to be run on DSP ";
6805
6806const char kCrOSDspBasedNsAllowedName[] =
6807 "Allow CRAS to use a DSP-based NS if available";
6808const char kCrOSDspBasedNsAllowedDescription[] =
6809 "Allows the system variant of the NS in CRAS to be run on DSP ";
6810
6811const char kCrOSDspBasedAgcAllowedName[] =
6812 "Allow CRAS to use a DSP-based AGC if available";
6813const char kCrOSDspBasedAgcAllowedDescription[] =
6814 "Allows the system variant of the AGC in CRAS to be run on DSP ";
6815
6816const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS";
6817const char kCrOSEnforceSystemAecDescription[] =
6818 "Enforces using the system variant in CrAS of the AEC";
6819
6820const char kCrOSEnforceSystemAecAgcName[] =
6821 "Enforce using the system AEC and AGC in CrAS";
6822const char kCrOSEnforceSystemAecAgcDescription[] =
6823 "Enforces using the system variants in CrAS of the AEC and AGC.";
6824
6825const char kCrOSEnforceSystemAecNsName[] =
6826 "Enforce using the system AEC and NS in CrAS";
6827const char kCrOSEnforceSystemAecNsDescription[] =
6828 "Enforces using the system variants in CrAS of the AEC and NS.";
6829
6830const char kCrOSEnforceSystemAecNsAgcName[] =
6831 "Enforce using the system AEC, NS and AGC in CrAS";
6832const char kCrOSEnforceSystemAecNsAgcDescription[] =
6833 "Enforces using the system variants in CrAS of the AEC, NS and AGC.";
6834
Eddy Hsu26abc1ce2023-05-31 01:00:586835const char kIgnoreUiGainsName[] = "Ignore UI Gains in system mic gain setting";
6836const char kIgnoreUiGainsDescription[] =
6837 "Ignore UI Gains in system mic gain setting";
6838
Eddy Hsu03885a02023-06-05 20:29:576839const char kShowForceRespectUiGainsToggleName[] =
6840 "Enable a setting toggle to force respect UI gains";
6841const char kShowForceRespectUiGainsToggleDescription[] =
6842 "Enable a setting toggle to force respect UI gains.";
6843
Jan Lanik1812e6882022-05-24 18:43:356844const char kCrosPrivacyHubName[] = "Enable ChromeOS Privacy Hub";
6845const char kCrosPrivacyHubDescription[] = "Enables ChromeOS Privacy Hub.";
6846
Jan Lanik3f592332022-10-06 21:08:006847const char kCrosPrivacyHubV0Name[] =
6848 "Enable ChromeOS Privacy Hub without the location switch.";
6849const char kCrosPrivacyHubV0Description[] =
6850 "Enables ChromeOS Privacy Hub without the location switch.";
Jan Lanik4aa0d0f12022-08-08 20:50:476851
Pavol Marko798ffdb42022-06-23 13:22:426852const char kDisableIdleSocketsCloseOnMemoryPressureName[] =
6853 "Disable closing idle sockets on memory pressure";
6854const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] =
6855 "If enabled, idle sockets will not be closed when chrome detects memory "
6856 "pressure. This applies to web pages only and not to internal requests.";
6857
Jenny Zhang0f8cb4fc2022-05-27 00:03:506858const char kDisableOfficeEditingComponentAppName[] =
6859 "Disable Office Editing for Docs, Sheets & Slides";
6860const char kDisableOfficeEditingComponentAppDescription[] =
6861 "Disables Office Editing for Docs, Sheets & Slides component app so "
6862 "handlers won't be registered, making it possible to install another "
6863 "version for testing.";
6864
Tim Sergeante9c45c42022-03-17 21:53:526865const char kIntentChipSkipsPickerName[] =
6866 "Link capturing intent chip skips the intent picker bubble";
6867const char kIntentChipSkipsPickerDescription[] =
6868 "When enabled, clicking the intent chip in the Omnibox will skip the "
6869 "intent picker bubble and launch directly into the app. If multiple apps "
6870 "are installed for a URL, the intent picker will still be shown for "
6871 "disambigation.";
6872
Yi Xieac082b42022-08-03 09:58:376873const char kKioskEnableAppServiceName[] = "Enable App Service in Kiosk.";
6874const char kKioskEnableAppServiceDescription[] =
6875 "Uses App Service to install web apps and launch both Chrome apps and web "
6876 "apps in Kiosk sessions.";
6877
Femi Adegunloyec22dc3e2022-09-08 15:25:586878const char kLacrosColorManagementName[] = "Enable Chrome Color Management.";
6879const char kLacrosColorManagementDescription[] =
Femi Adegunloye65a07072023-05-31 00:53:016880 "Uses chrome-color-management wayland protocol to manage color spaces "
6881 "for lacros.";
Femi Adegunloyec22dc3e2022-09-08 15:25:586882
Tim Sergeante9c45c42022-03-17 21:53:526883const char kLinkCapturingInfoBarName[] = "Enable link capturing info bar";
6884const char kLinkCapturingInfoBarDescription[] =
6885 "Enables an info bar which appears when launching a web app through the "
6886 "Omnibox intent chip, prompting to update the link capturing setting for "
6887 "that app.";
6888
Lei Zhang44abd5d22022-01-11 00:32:346889const char kLinkCapturingUiUpdateName[] = "Enable updated link capturing UI";
6890const char kLinkCapturingUiUpdateDescription[] =
Tim Sergeante47c0ad52021-12-19 23:43:576891 "Enables updated UI for link capturing flows from the browser to apps, "
6892 "including the intent picker and an in-app link capturing prompt.";
Jon Mannf67d2fb2022-02-28 06:26:226893
6894const char kMessagesPreinstallName[] = "Preinstall Messages PWA";
6895const char kMessagesPreinstallDescription[] =
6896 "Enables preinstallation of the Messages for Web PWA for unmanaged users.";
Maksim Moskvitin70a77cb2022-04-06 12:26:406897
Youssef Esmatc732bf82022-05-27 00:47:196898const char kOneGroupPerRendererName[] =
6899 "Use one cgroup for each foreground renderer";
6900const char kOneGroupPerRendererDescription[] =
6901 "Places each Chrome foreground renderer into its own cgroup";
6902
Glen Robertson371a2df2023-02-15 04:18:196903const char kPreinstalledWebAppWindowExperimentName[] =
6904 "Preinstalled web app window experiment.";
6905const char kPreinstalledWebAppWindowExperimentDescription[] =
6906 "A ChromeOS experiment for new users that makes all preinstalled web apps "
6907 "open in windows with link capturing enabled, or tabs, instead of the "
6908 "default behavior.";
6909
Yue Li806e5d82022-09-14 00:16:026910const char kDisableQuickAnswersV2TranslationName[] =
6911 "Disable Quick Answers Translation";
6912const char kDisableQuickAnswersV2TranslationDescription[] =
6913 "Disable translation services of the Quick Answers.";
6914
Angela Xiao34964f72023-04-19 20:19:206915const char kQuickAnswersRichCardName[] = "Enable Quick Answers Rich Card";
6916const char kQuickAnswersRichCardDescription[] =
6917 "Enable rich card views of the Quick Answers feature.";
6918
Maksim Moskvitin70a77cb2022-04-06 12:26:406919const char kSyncChromeOSExplicitPassphraseSharingName[] =
6920 "Sync passphrase sharing";
6921const char kSyncChromeOSExplicitPassphraseSharingDescription[] =
6922 "Allows sharing custom sync passphrase between OS and Browser on ChromeOS";
Michelle724c6bfb22022-12-15 04:55:386923
6924const char kTouchTextEditingRedesignName[] = "Touch Text Editing Redesign";
6925const char kTouchTextEditingRedesignDescription[] =
6926 "Enables new touch text editing features.";
Xiaohan Wang55ae2c012022-01-20 21:49:116927#endif // BUILDFLAG(IS_CHROMEOS)
Pilar Molina Lopez40a3e2d2021-03-04 21:01:086928
Pilar Molina Lopezae61dfc2022-01-21 21:04:456929#if defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS)
Miguel Casasb93a0e352021-07-16 04:07:216930const char kVaapiVP9kSVCEncoderName[] =
6931 "VA-API encode acceleration for k-SVC VP9";
6932const char kVaapiVP9kSVCEncoderDescription[] =
6933 "Enable or disable k-SVC VP9 encode acceleration using VA-API.";
Pilar Molina Lopezae61dfc2022-01-21 21:04:456934#endif // defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS)
Miguel Casasb93a0e352021-07-16 04:07:216935
Xiaohan Wang55ae2c012022-01-20 21:49:116936#if BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
Pilar Molina Lopezfb5103b72021-02-26 23:35:526937const char kChromeOSDirectVideoDecoderName[] = "ChromeOS Direct Video Decoder";
6938const char kChromeOSDirectVideoDecoderDescription[] =
6939 "Enables the hardware-accelerated ChromeOS direct media::VideoDecoder "
6940 "implementation. Note that this might be entirely disallowed by the "
6941 "--platform-disallows-chromeos-direct-video-decoder command line switch "
6942 "which is added for platforms where said direct VideoDecoder does not work "
6943 "or is not well tested (see the disable_cros_video_decoder USE flag in "
Richard Chuia9ed7be12022-04-13 21:30:356944 "ChromeOS)";
Hirokazu Honda5a3450c2022-06-17 14:16:256945const char kChromeOSHWVBREncodingName[] =
6946 "ChromeOS Hardware Variable Bitrate Encoding";
6947const char kChromeOSHWVBREncodingDescription[] =
6948 "Enables the hardware-accelerated variable bitrate (VBR) encoding on "
6949 "ChromeOS. If the hardware encoder supports VBR for a specified codec, a "
6950 "video is recorded in VBR encoding in MediaRecoder API automatically and "
6951 "WebCodecs API if configured so.";
Fritz Koeniga0770f5c2022-04-06 18:17:556952#if defined(ARCH_CPU_ARM_FAMILY)
Justin Green0b5c48992022-10-10 22:16:046953const char kPreferGLImageProcessorName[] = "Prefer GL image processor";
6954const char kPreferGLImageProcessorDescription[] =
6955 "Prefers the GL image processor for format conversion of video frames over"
6956 " both the libYUV and hardware implementations";
Fritz Koeniga0770f5c2022-04-06 18:17:556957#endif // defined(ARCH_CPU_ARM_FAMILY)
Xiaohan Wang55ae2c012022-01-20 21:49:116958#endif // BUILDFLAG(IS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
Pilar Molina Lopezfb5103b72021-02-26 23:35:526959
Xiaohan Wang55ae2c012022-01-20 21:49:116960#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
Hirokazu Honda8ef07cd2020-04-17 03:36:386961const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture";
6962const char kZeroCopyVideoCaptureDescription[] =
6963 "Camera produces a gpu friendly buffer on capture and, if there is, "
6964 "hardware accelerated video encoder consumes the buffer";
Xiaohan Wang55ae2c012022-01-20 21:49:116965#endif // BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
yhanadac5bff5b2017-05-18 06:37:096966
Collin Baker75a29462019-03-13 19:57:316967// All views-based platforms --------------------------------------------------
6968
6969#if defined(TOOLKIT_VIEWS)
6970
Mohamed Amir Yosef4d5d526b2022-11-10 11:05:256971const char kRevampedPasswordManagementBubbleName[] =
6972 "Revamped Password Managment Bubble (Desktop)";
6973const char kRevampedPasswordManagementBubbleDescription[] =
6974 "Enable the new password managment bubble triggered by clicking the key "
6975 "icon in the omnibox.";
6976
Michael Crouseb56427f2023-04-12 00:47:496977const char kSideSearchName[] = "Side search";
6978const char kSideSearchDescription[] =
6979 "Enables an easily accessible way to access your most recent Google search "
6980 "results page embedded in a browser side panel";
6981
Pengchao Cai74b3379d2022-09-09 18:55:186982const char kSearchWebInSidePanelName[] = "Search web in side panel";
6983const char kSearchWebInSidePanelDescription[] =
6984 "Displays right-click search results of a highlighted text in side panel";
6985
Collin Baker75a29462019-03-13 19:57:316986#endif // defined(TOOLKIT_VIEWS)
6987
Brett Wilson7b44537e2017-08-18 01:38:286988// Random platform combinations -----------------------------------------------
6989
Xiaohan Wang55ae2c012022-01-20 21:49:116990#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
Xiaohan Wang55ae2c012022-01-20 21:49:116991 BUILDFLAG(IS_FUCHSIA)
Leonard Greye2b8fe92022-03-04 20:36:016992const char kQuickCommandsName[] = "Quick Commands";
6993const char kQuickCommandsDescription[] =
6994 "Enable a text interface to browser features. Invoke with Ctrl-Space.";
6995
Xiaohan Wang55ae2c012022-01-20 21:49:116996#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
6997 // BUILDFLAG(IS_FUCHSIA)
Josh Santana0863d7042021-02-04 20:56:456998
Jonathan Freed4d92f282022-08-12 19:01:056999#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
7000 BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS)
7001const char kFollowingFeedSidepanelName[] = "Following feed in the sidepanel";
7002const char kFollowingFeedSidepanelDescription[] =
7003 "Enables the following feed in the sidepanel.";
7004#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) ||
7005 // BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_CHROMEOS)
7006
James Lee89b449e52022-12-13 18:14:527007#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_ANDROID)
7008const char kLocalWebApprovalsName[] = "Local web approvals";
7009const char kLocalWebApprovalsDescription[] =
7010 "Enable local web approvals for Family Link users. Web filter interstitial "
7011 "refresh needs to also be enabled.";
7012#endif
7013
Tomasz Jurkiewicz6a32bda2023-04-06 17:27:507014#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
7015const char kEnableProtoApiForClassifyUrlName[] =
7016 "Enable Proto API for Classify URL";
7017const char kEnableProtoApiForClassifyUrlDescription[] =
7018 "Calls to Classify URL RPC will use Protocol Buffer format in resposnes, "
7019 "instead of JSON.";
7020#endif
7021
Andres Calderon Jaramilloa55fccb2023-03-24 19:22:117022#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
7023const char kUseOutOfProcessVideoDecodingName[] =
7024 "Use out-of-process video decoding (OOP-VD)";
7025const char kUseOutOfProcessVideoDecodingDescription[] =
7026 "Start utility processes to do hardware video decoding. Note: on LaCrOS, "
7027 "this task is delegated to ash-chrome by requesting a "
7028 "media.stable.mojom.StableVideoDecoderFactory through the crosapi (so "
7029 "chrome://flags#expose-out-of-process-video-decoding-to-lacros must be "
7030 "enabled in ash-chrome).";
7031#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
7032
Xiaohan Wang55ae2c012022-01-20 21:49:117033#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:277034const char kWebShareName[] = "Web Share";
7035const char kWebShareDescription[] =
7036 "Enables the Web Share (navigator.share) APIs on experimentally supported "
7037 "platforms.";
Xiaohan Wang55ae2c012022-01-20 21:49:117038#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:277039
Xiaohan Wang55ae2c012022-01-20 21:49:117040#if BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)
Alexander Dunaev43cfb2f2021-10-19 06:08:067041const char kOzonePlatformHintChoiceDefault[] = "Default";
7042const char kOzonePlatformHintChoiceAuto[] = "Auto";
7043const char kOzonePlatformHintChoiceX11[] = "X11";
7044const char kOzonePlatformHintChoiceWayland[] = "Wayland";
7045
7046const char kOzonePlatformHintName[] = "Preferred Ozone platform";
7047const char kOzonePlatformHintDescription[] =
7048 "Selects the preferred platform backend used on Linux. The default one is "
7049 "\"X11\". \"Auto\" selects Wayland if possible, X11 otherwise. ";
Xiaohan Wang55ae2c012022-01-20 21:49:117050#endif // BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS)
Alexander Dunaev43cfb2f2021-10-19 06:08:067051
Alvin Ji3443b9b2022-06-17 19:57:477052#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
7053const char kWebBluetoothConfirmPairingSupportName[] =
7054 "Web Bluetooth confirm pairing support";
7055const char kWebBluetoothConfirmPairingSupportDescription[] =
7056 "Enable confirm-only and confirm-pin pairing mode support for Web "
7057 "Bluetooth";
7058#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
7059
Adem Derinel64bdf052022-02-02 08:14:237060#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
7061const char kSkipUndecryptablePasswordsName[] =
7062 "Skip undecryptable passwords to use the available decryptable "
7063 "passwords.";
7064const char kSkipUndecryptablePasswordsDescription[] =
7065 "Makes the decryptable passwords available in the password manager when "
7066 "there are undecryptable ones.";
Adem Derinel72376572022-12-06 10:42:547067const char kForcePasswordInitialSyncWhenDecryptionFailsName[] =
7068 "Force initial sync to clean local undecryptable passwords during startup";
7069const char kForcePasswordInitialSyncWhenDecryptionFailsDescription[] =
7070 "During startup checks if there are undecryptable passwords in the local "
7071 "storage and requests initial sync.";
Adem Derinel64bdf052022-02-02 08:14:237072#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
7073
David Benjamin371481f2022-06-15 15:57:407074#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
7075const char kAsyncDnsName[] = "Async DNS resolver";
7076const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
7077#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
7078
Brett Wilson7b44537e2017-08-18 01:38:287079// Feature flags --------------------------------------------------------------
7080
Sam Zackrissonb49345a2022-03-25 11:15:047081#if BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
7082extern const char kChromeWideEchoCancellationName[] =
7083 "Chrome-wide echo cancellation";
7084extern const char kChromeWideEchoCancellationDescription[] =
7085 "Run WebRTC capture audio processing in the audio process instead of the "
7086 "renderer processes, thereby cancelling echoes from more audio sources.";
7087#endif // BUILDFLAG(CHROME_WIDE_ECHO_CANCELLATION)
7088
Wez02cedeba2022-07-26 12:48:387089#if BUILDFLAG(DCHECK_IS_CONFIGURABLE)
Lei Zhang0a318af2018-11-14 02:19:467090const char kDcheckIsFatalName[] = "DCHECKs are fatal";
7091const char kDcheckIsFatalDescription[] =
7092 "By default Chrome will evaluate in this build, but only log failures, "
7093 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
Wez02cedeba2022-07-26 12:48:387094#endif // BUILDFLAG(DCHECK_IS_CONFIGURABLE)
Lei Zhang0a318af2018-11-14 02:19:467095
Alex Cooperbdd9a762023-01-24 23:29:547096#if BUILDFLAG(ENABLE_CARDBOARD)
7097extern const char kEnableCardboardName[] = "Enable Cardboard VR WebXR Runtime";
7098extern const char kEnableCardboardDescription[] =
7099 "Enables the use of the Cardboard SDK runtime for WebXR instead of the"
7100 "Google VR Services (or GVR) runtime to start a WebXR-based immersive-vr"
7101 "session.";
7102#endif // ENABLE_CARDBOARD
7103
Derek Schuff71d9a922019-04-24 21:36:007104#if BUILDFLAG(ENABLE_NACL)
7105const char kNaclName[] = "Native Client";
7106const char kNaclDescription[] =
7107 "Support Native Client for all web applications, even those that were not "
7108 "installed from the Chrome Web Store.";
Fabian Sommer0d6568b2022-01-05 16:58:347109const char kVerboseLoggingInNaclName[] = "Verbose logging in Native Client";
7110const char kVerboseLoggingInNaclDescription[] =
7111 "Control the level of verbose logging in Native Client modules for "
7112 "debugging purposes.";
7113const char kVerboseLoggingInNaclChoiceDefault[] = "Default";
7114const char kVerboseLoggingInNaclChoiceLow[] = "Low";
7115const char kVerboseLoggingInNaclChoiceMedium[] = "Medium";
7116const char kVerboseLoggingInNaclChoiceHigh[] = "High";
7117const char kVerboseLoggingInNaclChoiceHighest[] = "Highest";
7118const char kVerboseLoggingInNaclChoiceDisabled[] = "Disabled";
Derek Schuff71d9a922019-04-24 21:36:007119#endif // ENABLE_NACL
7120
Alan Screened2fdda2021-09-15 17:24:467121#if BUILDFLAG(ENABLE_OOP_PRINTING)
7122const char kEnableOopPrintDriversName[] =
7123 "Enables Out-of-Process Printer Drivers";
7124const char kEnableOopPrintDriversDescription[] =
7125 "Enables printing interactions with the operating system to be performed "
7126 "out-of-process.";
7127#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
7128
Xiaohan Wang55ae2c012022-01-20 21:49:117129#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && BUILDFLAG(IS_ANDROID)
Mehran Mahmoudib8d0b7c2020-03-14 18:10:567130const char kPaintPreviewDemoName[] = "Paint Preview Demo";
7131const char kPaintPreviewDemoDescription[] =
7132 "If enabled a menu item is added to the Android main menu to demo paint "
ckitagawa8dad53d2020-01-07 16:03:357133 "previews.";
Xiaohan Wang55ae2c012022-01-20 21:49:117134#endif // ENABLE_PAINT_PREVIEW && BUILDFLAG(IS_ANDROID)
ckitagawa8dad53d2020-01-07 16:03:357135
Lei Zhangc05af2a2020-05-15 20:54:057136#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
Yuheng Huang4d0b941fc2021-10-12 05:30:367137const char kWebUITabStripFlagId[] = "webui-tab-strip";
Lei Zhangc05af2a2020-05-15 20:54:057138const char kWebUITabStripName[] = "WebUI tab strip";
7139const char kWebUITabStripDescription[] =
7140 "When enabled makes use of a WebUI-based tab strip.";
Tombae388942021-08-17 02:44:007141
7142const char kWebUITabStripContextMenuAfterTapName[] =
7143 "WebUI tab strip context menu after tap";
7144const char kWebUITabStripContextMenuAfterTapDescription[] =
7145 "Enables the context menu to appear after a tap gesture rather than "
7146 "following a press gesture.";
Lei Zhangc05af2a2020-05-15 20:54:057147#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
7148
Yuta Hijikata235fc62b2020-12-08 03:48:327149#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:487150const char kWebUITabStripTabDragIntegrationName[] =
7151 "ChromeOS drag-drop extensions for WebUI tab strip";
7152const char kWebUITabStripTabDragIntegrationDescription[] =
7153 "Enables special handling in ash for WebUI tab strip tab drags. Allows "
7154 "dragging tabs out to new windows.";
Yuta Hijikata235fc62b2020-12-08 03:48:327155#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:487156
Xiaohan Wang55ae2c012022-01-20 21:49:117157#if defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:287158
7159const char kAutofillCreditCardUploadName[] =
7160 "Enable offering upload of Autofilled credit cards";
7161const char kAutofillCreditCardUploadDescription[] =
7162 "Enables a new option to upload credit cards to Google Payments for sync "
7163 "to all Chrome devices.";
7164
Xiaohan Wang55ae2c012022-01-20 21:49:117165#endif // defined(TOOLKIT_VIEWS) || BUILDFLAG(IS_ANDROID)
Brett Wilson7b44537e2017-08-18 01:38:287166
Xiaohan Wang55ae2c012022-01-20 21:49:117167#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
Robert Flackd69659f2021-06-02 22:32:337168const char kElasticOverscrollName[] = "Elastic Overscroll";
7169const char kElasticOverscrollDescription[] =
7170 "Enables Elastic Overscrolling on touchscreens and precision touchpads.";
Xiaohan Wang55ae2c012022-01-20 21:49:117171#endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_ANDROID)
Robert Flackd69659f2021-06-02 22:32:337172
Xiaohan Wang55ae2c012022-01-20 21:49:117173#if BUILDFLAG(IS_WIN) || \
7174 (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || \
7175 BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA)
Wei Li51e9c162021-02-01 19:53:357176const char kUIDebugToolsName[] = "Debugging tools for UI";
7177const char kUIDebugToolsDescription[] =
7178 "Enables additional keyboard shortcuts to help debugging.";
Andrea Gomez6536254b2022-08-03 09:07:597179
7180const char kDesktopDetailedLanguageSettingsName[] =
7181 "Detailed Language Settings (Desktop)";
7182const char kDesktopDetailedLanguageSettingsDescription[] =
7183 "Enable the new detailed language settings page";
Gabriel Oliveirac1792c82022-08-17 17:31:417184
Tibor Goldschwendtf9501a62023-03-23 03:11:197185const char kSyncPollImmediatelyOnEveryStartupName[] =
7186 "Sync Poll Immediately On Every Startup";
7187const char kSyncPollImmediatelyOnEveryStartupDescription[] =
7188 "Sends a poll GetUpdates request on every browser startup.";
7189
Gabriel Oliveirac1792c82022-08-17 17:31:417190const char kSyncPromoAfterSigninInterceptName[] =
7191 "Sync Promo After Sign-in Intercept";
7192const char kSyncPromoAfterSigninInterceptDescription[] =
7193 "Enable updates in the first run experience for a new profile in the "
7194 "Sign-in Intercept, such as a Sync Promo step and an updated Profile "
7195 "Customization UI, which is also used for local profile creation.";
7196
7197const char kSigninInterceptBubbleV2Name[] = "Sign-in Intercept Bubble V2";
7198const char kSigninInterceptBubbleV2Description[] =
7199 "Enable visual updates to the sign-in intercept bubble, such as updated "
7200 "illustration, strings and an enterprise disclaimer.";
Wei Li51e9c162021-02-01 19:53:357201#endif
7202
Salma Elmahallawy65cafa52023-04-18 16:34:347203#if BUILDFLAG(IS_WIN) || (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) || \
7204 BUILDFLAG(IS_MAC) || BUILDFLAG(IS_ANDROID)
7205const char kDataRetentionPoliciesDisableSyncTypesNeededName[] =
7206 "Data Retention Policies Disable Sync Types";
7207const char kDataRetentionPoliciesDisableSyncTypesNeededDescription[] =
7208 "Relaxes the requirements for setting BrowsingDataLifetime, "
7209 "ClearBrowsingDataOnExit and IdleTimeout. Setting any of these will "
7210 "disable sync for the respective browsing data types that need to be "
7211 "cleared if neither sync nor browser sign in is disabled by policy.";
7212#endif
7213
Tomas Popela253a5832019-01-14 17:22:107214#if defined(WEBRTC_USE_PIPEWIRE)
Lei Zhang507fffd2020-01-29 23:47:547215const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support";
7216const char kWebrtcPipeWireCapturerDescription[] =
Tomas Popela253a5832019-01-14 17:22:107217 "When enabled the WebRTC will use the PipeWire multimedia server for "
7218 "capturing the desktop content on the Wayland display server.";
Tomas Popela253a5832019-01-14 17:22:107219#endif // #if defined(WEBRTC_USE_PIPEWIRE)
7220
ananubisff476b02021-07-27 07:09:587221#if BUILDFLAG(IS_CHROMEOS_ASH)
Ben Franz441a84c2022-04-05 08:44:557222const char kChromeKioskEnableLacrosName[] =
7223 "Enables Lacros in the chrome app Kiosk";
7224const char kChromeKioskEnableLacrosDescription[] =
7225 "Uses Lacros-chrome as the web browser in the chrome app Kiosk session on "
Richard Chuia9ed7be12022-04-13 21:30:357226 "ChromeOS. When disabled, the Ash-chrome will be used";
Ben Franz441a84c2022-04-05 08:44:557227
ananubisff476b02021-07-27 07:09:587228const char kWebKioskEnableLacrosName[] =
7229 "Enables Lacros in the web (PWA) Kiosk";
7230const char kWebKioskEnableLacrosDescription[] =
7231 "Uses Lacros-chrome as the web browser in the web (PWA) Kiosk session on "
Richard Chuia9ed7be12022-04-13 21:30:357232 "ChromeOS. When disabled, the Ash-chrome will be used";
Jenny Zhang6bdaa162022-07-14 01:22:307233
7234const char kDisableLacrosTtsSupportName[] = "Disable lacros tts support";
7235const char kDisableLacrosTtsSupportDescription[] =
7236 "Disable lacros support for text to speech.";
7237
Vivian Paofc22288b2022-12-07 03:00:117238const char kPromiseIconsName[] = "Promise Icons";
7239const char kPromiseIconsDescription[] =
7240 "Enables promise icons in the Launcher and Shelf (if the app is pinned) "
7241 "for app installations.";
7242
Frank Liberato98173be02023-06-06 17:11:097243const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement";
7244const char kEnableAudioFocusEnforcementDescription[] =
7245 "Enables enforcement of a single media session having audio focus at "
7246 "any one time. Requires #enable-media-session-service to be enabled too.";
ananubisff476b02021-07-27 07:09:587247#endif // BUILDFLAG(IS_CHROMEOS_ASH)
7248
Brett Wilson7b44537e2017-08-18 01:38:287249// ============================================================================
7250// Don't just add flags to the end, put them in the right section in
7251// alphabetical order just like the header file.
7252// ============================================================================
7253
vabr0215a8e2017-03-28 12:47:347254} // namespace flag_descriptions