blob: 54a9924e26332598a31c13c23ac96f38817480c0 [file] [log] [blame]
vabr0215a8e2017-03-28 12:47:341// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/flag_descriptions.h"
6
Yuta Hijikata235fc62b2020-12-08 03:48:327#include "build/chromeos_buildflags.h"
8
Brett Wilson7b44537e2017-08-18 01:38:289// Keep in identical order as the header file, see the comment at the top
10// for formatting rules.
11
vabr0215a8e2017-03-28 12:47:3412namespace flag_descriptions {
13
Brett Wilsonf27ff602017-07-07 22:28:4714const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
15const char kAccelerated2dCanvasDescription[] =
16 "Enables the use of the GPU to perform 2d canvas rendering instead of "
17 "using software rendering.";
horodb71a5a2017-06-09 16:08:2418
Justin Novosad8faf6952021-08-20 22:36:4919const char kCanvasOopRasterizationName[] =
20 "Out-of-process 2D canvas rasterization.";
21const char kCanvasOopRasterizationDescription[] =
22 "The rasterization of 2d canvas contents is performed in the GPU process. "
23 "Requires that out-of-process rasterization be enabled.";
24
Brett Wilsonf27ff602017-07-07 22:28:4725const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
26const char kAcceleratedVideoDecodeDescription[] =
27 "Hardware-accelerated video decode where available.";
28
Hirokazu Honda732d3e622019-06-12 01:13:4429const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode";
30const char kAcceleratedVideoEncodeDescription[] =
31 "Hardware-accelerated video encode where available.";
32
Ted Meyer5322ea12020-12-07 22:25:3333const char kEnableMediaInternalsName[] = "Media-internals page";
34const char kEnableMediaInternalsDescription[] =
35 "Enables the chrome://media-internals debug page.";
36
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3037#if BUILDFLAG(ENABLE_PLUGINS)
38const char kAccessiblePDFFormName[] = "Accessible PDF Forms";
39const char kAccessiblePDFFormDescription[] =
40 "Enables accessibility support for PDF forms.";
41#endif // BUILDFLAG(ENABLE_PLUGINS)
42
Mihai Sardarescua69193742019-12-06 17:31:3343const char kAccountIdMigrationName[] = "Account ID migration";
44const char kAccountIdMigrationDescription[] =
45 "Migrate to use Gaia ID instead of the email as the account identifer for "
46 "the Identity Manager.";
47
Andrew Xuaa868bf2021-07-15 01:59:1148const char kLauncherAppSortName[] = "Productivity experiment: Reorder Apps";
49const char kLauncherAppSortDescription[] =
50 "To evaluate an enhanced Launcher experience that enables users to reorder "
51 "their apps in order to find them more easily.";
52
Xiaocheng Huf7ed9cd2020-04-18 00:41:1053const char kAlignFontDisplayAutoTimeoutWithLCPGoalName[] =
54 "Align 'font-display: auto' timeout with LCP goal";
55const char kAlignFontDisplayAutoTimeoutWithLCPGoalDescription[] =
Xiaocheng Hu66795f02020-04-25 00:26:4756 "Make pending 'display: auto' web fonts enter the swap or failure period "
Xiaocheng Huf7ed9cd2020-04-18 00:41:1057 "immediately before reaching the LCP time limit (~2500ms), so that web "
58 "fonts do not become a source of bad LCP (Largest Contentful Paint).";
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
Katie Dillon8b357312019-09-19 13:23:2366const char kAllowSyncXHRInPageDismissalName[] =
67 "Allows synchronous XHR requests in page dismissal";
68const char kAllowSyncXHRInPageDismissalDescription[] =
69 "Allows synchronous XHR requests during page dismissal when the page is "
70 "being navigated away or closed by the user.";
71
Judy Wangec296a12021-03-12 00:22:5272const char kWindowsFollowCursorName[] =
73 "Windows open on the display with the cursor";
74const char kWindowsFollowCursorDescription[] =
75 "When there are multiple displays, windows open on the display where "
76 "cursor is located.";
77
Chris Blumed5d85872021-02-17 18:21:0178const char kAnimatedImageResumeName[] = "Use animated image resume behavior";
79const char kAnimatedImageResumeDescription[] =
80 "Resumes animated images from the last frame drawn rather than attempt "
81 "to catch up to the frame that should be drawn based on current time.";
82
Dominic Mazzoni34dfc6482020-11-18 22:17:5883const char kAriaElementReflectionName[] = "Enable ARIA element reflection";
84const char kAriaElementReflectionDescription[] =
85 "Enable setting ARIA relationship attributes that reference other elements "
86 "directly without an IDREF";
87
Lei Zhang1a6fd01b2021-03-24 17:03:4888const char kCOLRV1FontsName[] = "COLR v1 Fonts";
89const char kCOLRV1FontsDescription[] =
Dominik Röttsches8723ca92021-02-10 10:02:0390 "Display COLR v1 color gradient vector fonts.";
91
Rune Lillesveen6d1d14c2021-03-25 22:03:0192extern const char kCSSContainerQueriesName[] = "Enable CSS Container Queries";
93extern const char kCSSContainerQueriesDescription[] =
94 "Enables support for @container, inline-size and block-size values for the "
95 "contain property, and the LayoutNG Grid implementation.";
96
Yue Zhangb4d923272020-05-01 03:42:5397const char kConditionalTabStripAndroidName[] = "Conditional Tab Strip";
98const char kConditionalTabStripAndroidDescription[] =
99 "Allows users to access conditional tab strip.";
100
Basia Zimirskab0d235a2021-02-24 19:42:53101const char kContentLanguagesInLanguagePickerName[] =
102 "Content languages in language picker";
103const char kContentLanguagesInLanguagePickerDescription[] =
104 "Enables bringing user's content languages that are translatable to the "
105 "top of the list with all languages shown in the translate menu";
106
John Delaneycd1a54d42020-05-13 23:06:33107const char kConversionMeasurementDebugModeName[] =
108 "Conversion Measurement Debug Mode";
109const char kConversionMeasurementDebugModeDescription[] =
110 "Enables debug mode for the Conversion Measurement API. This removes all "
111 "reporting delays and noise. Only works if the Conversion Measurement API "
112 "is already enabled.";
113
Alice Wang914bd482021-02-22 15:37:37114const char kDeprecateMenagerieAPIName[] = "Deprecate Menagerie API on Android";
115const char kDeprecateMenagerieAPIDescription[] =
116 "If enabled, the legacy Menagerie API for profile data will be replaced by "
117 "the new profile data source";
118
Alice Wang345e09442021-07-05 09:03:29119const char kForceStartupSigninPromoName[] = "Force Start-up Signin Promo";
120const char kForceStartupSigninPromoDescription[] =
121 "If enabled, the full screen signin promo will be forced to show up at "
122 "Chrome start-up.";
123
shivanigithub99368382021-06-16 18:33:37124const char kDebugHistoryInterventionNoUserActivationName[] =
125 "Debug flag for history intervention on no user activation";
126const char kDebugHistoryInterventionNoUserActivationDescription[] =
127 "This flag when enabled, will be used to debug an issue where a page that "
128 "did not get user activation "
129 "is able to work around the history intervention which is not the expected "
130 "behavior";
131
Anthony Cuidb01f8a52021-02-18 21:45:18132const char kDetectedSourceLanguageOptionName[] =
133 "Use Detected Language string on Desktop and Android";
134const char kDetectedSourceLanguageOptionDescription[] =
135 "Renames the 'Unknown' source language option to 'Detected Language' and "
136 "enables translation of unknown source language pages on Android.";
137
Maria Kazinovaeed8e4c2020-11-10 21:17:07138const char kDetectFormSubmissionOnFormClearName[] =
139 "Detect form submission when the form is cleared.";
140const char kDetectFormSubmissionOnFormClearDescription[] =
141 "Detect form submissions for change password forms that are cleared and "
142 "not removed from the page.";
143
Jan Wilken Dörried3f92e802020-09-11 11:43:08144const char kEditPasswordsInSettingsName[] = "Edit passwords in settings";
145const char kEditPasswordsInSettingsDescription[] =
146 "Enables password editing in settings.";
147
Vicky Minb02c3e92020-07-07 20:56:52148const char kEnableBluetoothSerialPortProfileInSerialApiName[] =
149 "Enable Bluetooth Serial Port Profile in Serial API";
150const char kEnableBluetoothSerialPortProfileInSerialApiDescription[] =
151 "When enabled, Bluetooth Serial Port Profile devices will be enumerated "
152 "for use with the Serial API.";
153
Vikas Soni7981a2d2021-07-30 18:51:11154const char kEnableDrDcName[] =
155 "Enables Display Compositor to use a new gpu thread.";
156const char kEnableDrDcDescription[] =
157 "When enabled, chrome uses 2 gpu threads instead of 1. "
158 " Display compositor uses new dr-dc gpu thread and all other clients "
159 "(raster, webgl, video) "
160 " continues using the gpu main thread.";
161
Yann Dago3256b872021-01-13 18:48:03162const char kEnablePolicyBlocklistThrottleRequiresPoliciesLoadedName[] =
163 "Url blocklist throttle wait for policies to be loaded";
164const char kEnablePolicyBlocklistThrottleRequiresPoliciesLoadedDescription[] =
165 "Enables behaviour for Url blocklist throttle to wait for all policies to "
166 "load";
167
Tsuyoshi Horo3bab99c2019-05-20 11:05:14168const char kEnableSignedExchangeSubresourcePrefetchName[] =
169 "Enable Signed Exchange subresource prefetching";
170const char kEnableSignedExchangeSubresourcePrefetchDescription[] =
171 "When enabled, the distributors of signed exchanges can let Chrome know "
172 "alternative signed exchange subresources by setting \"alternate\" link "
173 "header. Chrome will prefetch the alternate signed exchange subresources "
174 "and will load them if the publisher of the main signed exchange has set "
Tsuyoshi Horo5e61f162019-05-20 12:24:12175 "\"allowed-alt-sxg\" link header in the signed inner response of the "
Tsuyoshi Horo3bab99c2019-05-20 11:05:14176 "main signed exchange.";
177
Tsuyoshi Horo636e8652019-05-31 03:34:08178const char kEnableSignedExchangePrefetchCacheForNavigationsName[] =
179 "Enable Signed Exchange prefetch cache for navigations";
180const char kEnableSignedExchangePrefetchCacheForNavigationsDescription[] =
181 "When enabled, the prefetched signed exchanges is stored to a prefetch "
182 "cache attached to the frame. The body of the inner response is stored as "
183 "a blob and the verification process of the signed exchange is skipped for "
184 "the succeeding navigation.";
185
Martin Kreichgauer78d6905c2021-09-22 19:00:20186const char kU2FPermissionPromptName[] =
187 "Enable a permission prompt for the U2F Security Key API";
188const char kU2FPermissionPromptDescription[] =
189 "Show a permission prompt when making requests to the legacy U2F Security "
190 "Key API (CryptoToken). The U2F Security "
191 "Key API has been deprecated and will be removed soon. For more "
192 "information, refer to the deprecation announcement at "
193 "https://groups.google.com/a/chromium.org/g/blink-dev/c/xHC3AtU_65A";
194
Martin Kreichgauerea5ab592021-09-18 00:43:37195const char kU2FSecurityKeyAPIName[] = "Enable the U2F Security Key API";
196const char kU2FSecurityKeyAPIDescription[] =
197 "Enable the legacy U2F Security Key API (CryptoToken). The U2F Security "
198 "Key API has been deprecated and will be removed soon. For more "
199 "information, refer to the deprecation announcement at "
200 "https://groups.google.com/a/chromium.org/g/blink-dev/c/xHC3AtU_65A";
201
Regan Hsu3243afa2021-06-21 18:27:27202const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address";
203const char kUseStorkSmdsServerAddressDescription[] =
204 "Use the Stork SM-DS address to fetch pending eSIM profiles managed by the "
205 "Stork prod server. Note that Stork profiles can be created with an EID at "
206 "go/stork-profile, and managed at go/stork-batch > View Profiles. Also "
207 "note that an external EUICC card is required to use this feature, and "
208 "that the kCellularUseExternal flag must be enabled. Go to "
209 "go/cros-connectivity > Dev Tips for more instructions.";
210
Regan Hsu1ffea922020-09-10 17:08:47211const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL";
212const char kUseWallpaperStagingUrlDescription[] =
213 "Use the staging server as part of the Wallpaper App to verify "
214 "additions/removals of wallpapers.";
215
Christopher Lam867d4a02021-06-21 09:38:46216const char kSemanticColorsDebugOverrideName[] =
217 "Use semantic color debug override";
218const char kSemanticColorsDebugOverrideDescription[] =
219 "Use debug override colors to find system components that are not using "
220 "semantic colors.";
221
Kyle Horimoto874554a2019-01-31 00:52:09222const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
223const char kUseMessagesStagingUrlDescription[] =
224 "Use the staging server as part of the \"Messages\" feature under "
225 "\"Connected Devices\" settings.";
226
Jon Mann5ebbd1532020-04-17 22:12:05227const char kUseCustomMessagesDomainName[] = "Use custom Messages domain";
228const char kUseCustomMessagesDomainDescription[] =
229 "Use a custom URL as part of the \"Messages\" feature under "
230 "\"Connected Devices\" settings.";
231
Jazz Xu32261b542019-06-13 20:11:27232const char kAndroidPictureInPictureAPIName[] =
233 "Picture-in-Picture Web API for Android";
234const char kAndroidPictureInPictureAPIDescription[] =
235 "Enable Picture-in-Picture Web API for Android";
236
Daniel McArdleb87dd0092020-02-10 20:23:46237const char kDnsHttpssvcName[] = "Support for HTTPSSVC records in DNS.";
238const char kDnsHttpssvcDescription[] =
239 "When enabled, Chrome may query a configured DoH server for HTTPSSVC "
240 "records. If any HTTPSSVC records are returned, Chrome may upgrade the URL "
241 "to HTTPS. If the records indicate support for QUIC, Chrome may attempt "
242 "QUIC on the first connection.";
243
cfredric6f155762020-12-10 18:52:40244const char kEnableFirstPartySetsName[] = "Enable First-Party Sets";
245const char kEnableFirstPartySetsDescription[] =
246 "When enabled, Chrome will apply First-Party Sets to features such as the "
247 "SameParty cookie attribute.";
248
dalykc936eb612019-08-14 11:46:47249const char kDnsOverHttpsName[] = "Secure DNS lookups";
250const char kDnsOverHttpsDescription[] =
251 "Enables DNS over HTTPS. When this feature is enabled, your browser may "
252 "try to use a secure HTTPS connection to look up the addresses of websites "
253 "and other web resources.";
254
Basia Zimirskab87ded02021-07-27 20:39:08255extern const char kAssistantConsentV2Name[] = "AssistanConsentV2";
256extern const char kAssistantConsentV2Description[] =
257 "Enables different strategies for handling backing off from the consent "
258 "screen without explicitly clicking yes/no buttons, i.e. when a user taps "
259 "outside of the sheet.";
Basia Zimirskaae49bd32021-07-14 02:51:28260
Anne Lim24031e9d2019-09-12 23:03:19261const char kAutofillAlwaysReturnCloudTokenizedCardName[] =
262 "Return cloud token details for server credit cards when possible";
263const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] =
264 "When enabled and where available, forms filled using Google Payments "
265 "server cards are populated with cloud token details, including CPAN "
266 "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic "
267 "CVV).";
268
siashah2b698e2b2021-04-21 15:09:55269const char kAutofillAutoTriggerManualFallbackForCardsName[] =
270 "Auto trigger manual fallback for credit card form-filling failure cases";
271const char kAutofillAutoTriggerManualFallbackForCardsDescription[] =
272 "When enabled, manual fallback will be auto-triggered on form interaction "
273 "in the case where autofill failed to fill a credit card form accurately.";
274
Matthias Körber6cc32132021-09-10 20:18:35275const char kAutofillCenterAligngedSuggestionsName[] =
276 "Center-aligned Autofill suggestions.";
277const char kAutofillCenterAligngedSuggestionsDescription[] =
278 "When enabled, the Autofill suggestion popup will be aligned to the center "
279 "of the initiating field and not to its border.";
280
Matthias Körberdd24e982021-09-21 15:48:56281const char kAutofillTypeSpecificPopupWidthName[] =
282 "Type-specific width limits for the Autofill popup";
283const char kAutofillTypeSpecificPopupWidthDescription[] =
284 "Controls if different width limits are used for the popup that provides "
285 "Autofill suggestions, depending on the type of data that is filled.";
286
siashah0a386222020-04-23 03:31:35287const char kAutofillEnableGoogleIssuedCardName[] =
288 "Enable Autofill Google-issued card";
289const char kAutofillEnableGoogleIssuedCardDescription[] =
290 "When enabled, Google-issued cards will be available in the autofill "
291 "suggestions.";
292
siashah2b698e2b2021-04-21 15:09:55293const char kAutofillEnableMerchantBoundVirtualCardsName[] =
294 "Offer merchant bound virtual cards in Autofill";
295const char kAutofillEnableMerchantBoundVirtualCardsDescription[] =
296 "When enabled, Autofill will offer to use merchant bound virtual cards in "
297 "payment forms.";
298
Manas Verma279acc72021-01-22 02:33:24299const char kAutofillEnableOfferNotificationName[] =
300 "Enable Autofill offers and rewards notification";
301const char kAutofillEnableOfferNotificationDescription[] =
302 "When enabled, a notification will be displayed on page navigation if the "
303 "domain has an eligible credit card linked offer or reward.";
304
Siyu An1ac0d072021-03-31 23:12:50305const char kAutofillEnableOfferNotificationCrossTabTrackingName[] =
306 "Enable cross tab status tracking for Autofill offer notification";
307const char kAutofillEnableOfferNotificationCrossTabTrackingDescription[] =
308 "When enabled, the offer notification showing will be tracked cross-tab, "
309 "and on one merchant, the notification will only be shown once.";
310
Jared Saul702563e2021-09-20 22:36:52311const char kAutofillEnableOfferNotificationForPromoCodesName[] =
312 "Extend Autofill offers and rewards notification to promo code offers";
313const char kAutofillEnableOfferNotificationForPromoCodesDescription[] =
314 "When enabled, a notification will be displayed on page navigation if the "
315 "domain has an eligible merchant promo code offer or reward.";
316
siashaheb118ad52020-12-15 00:17:07317const char kAutofillEnableOffersInClankKeyboardAccessoryName[] =
318 "Enable Autofill offers in keyboard accessory";
319const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] =
320 "When enabled, offers will be displayed in the keyboard accessory when "
321 "available.";
322
Ben Blake14592fe2020-06-16 15:34:38323const char kAutofillEnableOffersInDownstreamName[] =
324 "Enable Autofill offers in downstream";
325const char kAutofillEnableOffersInDownstreamDescription[] =
326 "When enabled, offer data will be retrieved during downstream and shown in "
327 "the dropdown list.";
328
siashah2b698e2b2021-04-21 15:09:55329const char kAutofillEnableStickyManualFallbackForCardsName[] =
330 "Make manual fallback sticky for credit cards";
331const char kAutofillEnableStickyManualFallbackForCardsDescription[] =
332 "When enabled, if the user interacts with the manual fallback bottom "
333 "sheet, it'll remain sticky until the user dismisses it.";
334
siyua1d492612019-03-14 09:27:45335const char kAutofillEnableToolbarStatusChipName[] =
336 "Move Autofill omnibox icons next to the profile avatar icon";
337const char kAutofillEnableToolbarStatusChipDescription[] =
338 "When enabled, Autofill data related icon will be shown in the status "
339 "chip next to the profile avatar icon in the toolbar.";
sebsge35b762c2018-03-29 20:33:27340
siyua19593222019-12-04 22:27:06341const char kAutofillEnableVirtualCardName[] =
342 "Offer to use cloud token virtual card in Autofill";
343const char kAutofillEnableVirtualCardDescription[] =
344 "When enabled, if all requirements are met, Autofill will offer to use "
345 "virtual credit cards in form filling.";
346
Vinny Persky0532822d2021-08-26 23:33:58347const char kAutofillEnableVirtualCardsRiskBasedAuthenticationName[] =
348 "Enable risk based authentication for Autofill Virtual Card Numbers";
349const char kAutofillEnableVirtualCardsRiskBasedAuthenticationDescription[] =
350 "When enabled, risk based authentication is used before autofilling "
351 "Virtual Card information into forms.";
352
Jared Saul2188f762021-08-02 21:22:23353const char kAutofillFillMerchantPromoCodeFieldsName[] =
354 "Enable Autofill of promo code fields in forms";
355const char kAutofillFillMerchantPromoCodeFieldsDescription[] =
356 "When enabled, Autofill will attempt to fill merchant promo/coupon/gift "
357 "code fields when data is available.";
358
Siyu An1ac0d072021-03-31 23:12:50359const char kAutofillFixOfferInIncognitoName[] =
360 "Enable the fix for Autofill offer in Incognito mode";
361const char kAutofillFixOfferInIncognitoDescription[] =
362 "When enabled, the fix will be enabled and offers should work correctly in "
363 "Incognito mode.";
364
Matthias Körber44082a492021-09-15 18:29:18365const char kAutofillHighlightOnlyChangedValuesInPreviewModeName[] =
366 "Highlight only changed values in preview mode.";
367const char kAutofillHighlightOnlyChangedValuesInPreviewModeDescription[] =
368 "When Autofill is previewing filling a form, already autofilled values "
369 "and other values that are not changed by accepting the preview should "
370 "not be highlighted.";
371
Jared Sauld47c2b72021-03-25 22:47:31372const char kAutofillParseMerchantPromoCodeFieldsName[] =
373 "Parse promo code fields in forms";
374const char kAutofillParseMerchantPromoCodeFieldsDescription[] =
375 "When enabled, Autofill will attempt to find merchant promo/coupon/gift "
376 "code fields when parsing forms.";
377
Parastoo Geranmayeh0f5ebbc2019-01-21 21:01:09378const char kAutofillProfileClientValidationName[] =
379 "Autofill Validates Profiles By Client";
380const char kAutofillProfileClientValidationDescription[] =
381 "Allows autofill to validate profiles on the client side";
382
Parastoo Geranmayeh25fccec22019-01-29 18:38:13383const char kAutofillProfileServerValidationName[] =
384 "Autofill Uses Server Validation";
385const char kAutofillProfileServerValidationDescription[] =
386 "Allows autofill to use server side validation";
387
Caitlin Fischer6d609542019-05-01 21:59:21388const char kAutofillPruneSuggestionsName[] = "Autofill Prune Suggestions";
389const char kAutofillPruneSuggestionsDescription[] =
390 "Further limits the number of suggestions in the Autofill dropdown.";
391
Matthias Körbera1f9fc02021-09-23 11:18:02392const char kAutofillUseConsistentPopupSettingsIconsName[] =
393 "Consistent Autofill settings icon";
394const char kAutofillUseConsistentPopupSettingsIconsDescription[] =
395 "If enabled, all Autofill data types including addresses, credit cards and "
396 "passwords will use a consistent icon in the popup settings footer.";
397
Lei Zhang507fffd2020-01-29 23:47:54398const char kAutofillSaveAndFillVPAName[] =
Christos Froussios13b412df2019-09-19 19:12:47399 "Offer save and autofill of UPI/VPA values";
Lei Zhang507fffd2020-01-29 23:47:54400const char kAutofillSaveAndFillVPADescription[] =
Christos Froussios13b412df2019-09-19 19:12:47401 "If enabled, when autofill recognizes a UPI/VPA value in a payment form, "
402 "it will offer to save it. If saved, it will be offered for filling in "
403 "fields which expect a VPA.";
404
Siyu Anc23b14fe2021-06-09 04:54:15405const char kAutofillSuggestVirtualCardsOnIncompleteFormName[] =
406 "Autofill suggests virtual cards on incomplete forms";
407const char kAutofillSuggestVirtualCardsOnIncompleteFormDescription[] =
408 "When enabled, merchant bound virtual cards will be suggested even if not "
409 "all "
siashah2b698e2b2021-04-21 15:09:55410 "of the card number, exp date and CVC fields are detected in a payment "
411 "form.";
412
Caitlin Fischer43edd90a2019-05-01 13:24:30413const char kAutofillUseImprovedLabelDisambiguationName[] =
414 "Autofill Uses Improved Label Disambiguation";
415const char kAutofillUseImprovedLabelDisambiguationDescription[] =
416 "When enabled, the Autofill dropdown's suggestions' labels are displayed "
417 "using the improved disambiguation format.";
418
Jia0175adae2019-05-15 00:21:25419const char kAutoScreenBrightnessName[] = "Auto Screen Brightness model";
420const char kAutoScreenBrightnessDescription[] =
Jiac75d4ee022020-08-11 02:34:12421 "Uses Auto Screen Brightness ML model (if it exists) to adjust screen "
422 "brightness based on ambient light. If disabled, screen brightness "
Jiae4e19242020-08-11 05:13:41423 "will be controlled by the heuristic model provided by powerd (and only "
424 "on devices that have ambient light sensors).";
Jia0175adae2019-05-15 00:21:25425
Alexander Timin6ae060b62019-09-17 11:21:37426const char kBackForwardCacheName[] = "Back-forward cache";
427const char kBackForwardCacheDescription[] =
Rakina Zata Amni95a2a91d2020-07-14 12:41:44428 "If enabled, caches eligible pages after cross-site navigations."
429 "To enable caching pages on same-site navigations too, choose 'enabled "
430 "same-site support'.";
Alexander Timin6ae060b62019-09-17 11:21:37431
minch1b874012021-06-17 00:21:33432const char kBentoBarName[] = "Persistent desks bar";
433const char kBentoBarDescription[] =
434 "Showing a persistent desks bar at the top of the screen in clamshell mode "
435 "when there are more than one desk.";
436
Ioana Pandele69fe4672021-04-28 08:06:37437const char kBiometricReauthForPasswordFillingName[] =
438 "Biometric reauth for password filling";
439const char kBiometricReauthForPasswordFillingDescription[] =
440 "Enables biometric"
441 "re-authentication before password filling";
442
danielng1078c6372021-06-28 06:31:36443const char kBorealisDiskManagementName[] = "Borealis Disk management";
444const char kBorealisDiskManagementDescription[] =
445 "Enable experimental disk management settings.";
446
Brett Wilsonf27ff602017-07-07 22:28:47447const char kBypassAppBannerEngagementChecksName[] =
448 "Bypass user engagement checks";
449const char kBypassAppBannerEngagementChecksDescription[] =
450 "Bypasses user engagement checks for displaying app banners, such as "
451 "requiring that users have visited the site before and that the banner "
452 "hasn't been shown recently. This allows developers to test that other "
453 "eligibility requirements for showing app banners, such as having a "
454 "manifest, are met.";
455
Asami Doid88c97492020-10-29 05:49:09456const char kCheckOfflineCapabilityName[] = "Check offline capability for PWAs";
457const char kCheckOfflineCapabilityDescription[] =
458 "Use advanced offline capability check to decide whether the browser "
459 "displays install prompts for PWAs.";
460
Elaine Chienaeb4adc2020-12-08 04:22:05461const char kChromeLabsName[] = "Chrome Labs";
462const char kChromeLabsDescription[] =
463 "Access Chrome Labs through the toolbar menu to see featured user-facing "
464 "experimental features.";
465
Tobias Soppa20dd3c72021-08-12 14:27:40466const char kClosedTabCacheName[] = "Closed Tab Cache";
467const char kClosedTabCacheDescription[] =
468 "Enables closed tab cache to instantaneously restore recently closed tabs. "
469 "NOTE: This feature is higly experimental and will lead to various "
470 "breakages, enable at your own risk.";
471
Xianzhu Wang6708f9c2021-03-25 19:55:24472const char kCompositeAfterPaintName[] = "Composite after paint";
473const char kCompositeAfterPaintDescription[] =
474 "A new algorithm to create compositing layers. "
475 "See http://bit.ly/composite-after-paint.";
476
sauskif49a2132021-08-13 11:22:46477const char kConsolidatedSiteStorageControlsName[] =
478 "Consolidated Site Storage Controls";
479const char kConsolidatedSiteStorageControlsDescription[] =
480 "Enables the consolidated version of Site Storage controls in settings";
481
Ben Goldberger0074e682020-09-09 17:09:09482const char kContextMenuGoogleLensChipName[] =
483 "Google Lens powered image search for surfaced as a chip below the context "
484 "menu.";
485const char kContextMenuGoogleLensChipDescription[] =
486 "Enable a chip for a Shopping intent into Google Lens when supported. ";
487
Nandhini11a6a87b2019-08-22 22:45:24488const char kContextMenuSearchWithGoogleLensName[] =
489 "Google Lens powered image search in the context menu.";
490const char kContextMenuSearchWithGoogleLensDescription[] =
491 "Replaces default image search with an intent to Google Lens when "
492 "supported.";
493
Yu Su50dfedd52020-06-19 02:34:49494const char kContextMenuShopWithGoogleLensName[] =
495 "Google Lens powered image search for shoppable images in the context "
496 "menu.";
497const char kContextMenuShopWithGoogleLensDescription[] =
Yu Su9807c022020-06-26 00:09:28498 "Enable a menu item for a Shopping intent into Google Lens when supported. "
499 "By default replaces the Search with Google Lens option.";
Yu Su50dfedd52020-06-19 02:34:49500
501const char kContextMenuSearchAndShopWithGoogleLensName[] =
Yu Su9807c022020-06-26 00:09:28502 "Additional menu item for Google Lens image search for shoppable images in "
503 "the context menu.";
Yu Su50dfedd52020-06-19 02:34:49504const char kContextMenuSearchAndShopWithGoogleLensDescription[] =
Yu Su9807c022020-06-26 00:09:28505 "Display an additional menu item for a Shopping intent to Google Lens "
506 "below Search with Google Lens when Lens shopping feature is enabled";
Yu Su50dfedd52020-06-19 02:34:49507
Juan Mojica5797e4c2021-02-23 21:55:23508const char kContextMenuTranslateWithGoogleLensName[] =
509 "Google Lens powered image search for translatable images surfaced as a "
510 "chip under the context menu.";
511const char kContextMenuTranslateWithGoogleLensDescription[] =
512 "Enable a chip for a Translate intent into Google Lens when supported.";
513
Anupam Snigdha85854972021-06-14 18:07:29514const char kClipboardCustomFormatsName[] = "Clipboard Custom Formats";
515const char kClipboardCustomFormatsDescription[] =
516 "Allows read/write of custom formats with unsanitized clipboard content. "
517 "See crbug.com/106449";
518
sauski8fa237c2020-05-18 12:04:24519const char kClientStorageAccessContextAuditingName[] =
520 "Access contexts for client-side storage";
521const char kClientStorageAccessContextAuditingDescription[] =
522 "Record the first-party contexts in which client-side storage was accessed";
523
Shuran Huangd11e73e2021-04-14 16:10:12524const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] =
525 "Clear window name in top-level cross-site cross-browsing-context-group "
526 "navigation";
527const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] =
528 "Clear the preserved window.name property when it's a top-level cross-site "
529 "navigation that swaps BrowsingContextGroup.";
Shuran Huanga5be08b2021-01-20 18:46:29530
Dana Fried16e9d9c2021-01-28 09:32:28531#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
532const char kChromeTipsInMainMenuName[] =
533 "Show 'Tips for Chrome' in Help portion of main menu.";
534const char kChromeTipsInMainMenuDescription[] =
535 "Enables 'Tips for Chrome' in main menu; the menu item will take users to "
536 "an official Google site with information about the latest and most "
537 "popular Chrome features.";
Dana Fried1ae80f32021-05-10 19:57:37538
539const char kChromeTipsInMainMenuNewBadgeName[] =
540 "Show 'New' promo badge on 'Tips for Chrome' in Help portion of main menu.";
541const char kChromeTipsInMainMenuNewBadgeDescription[] =
542 "Enables 'New' promo badge on 'Tips for Chrome' in main menu; experiment to"
543 " test the value of this user education feature.";
Dana Fried16e9d9c2021-01-28 09:32:28544#endif
545
rbpottere877c1f2021-06-15 00:23:55546const char kChromeWhatsNewUIName[] =
547 "Show Chrome What's New page at chrome://whats-new";
548const char kChromeWhatsNewUIDescription[] =
549 "Enables Chrome What's New page at chrome://whats-new.";
550
rbpotterc22a7e9c2021-06-18 21:33:39551#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
552const char kChromeWhatsNewInMainMenuNewBadgeName[] =
553 "Show 'New' badge on 'What's New' menu item.";
554const char kChromeWhatsNewInMainMenuNewBadgeDescription[] =
555 "Enables 'New' promo badge on 'What's New' in the Help portion of the main "
556 "menu.";
557#endif
558
yjliu99c52fb2021-05-07 17:49:20559const char kCompositingBasedThrottling[] = "Compositing-based Throttling";
560const char kCompositingBasedThrottlingDescription[] =
561 "Enables compositing-based throttling to throttle appropriate frame sinks "
562 "that do not need to be refreshed at high fps.";
563
minch6bfe7b32020-10-15 18:46:42564const char kDarkLightTestName[] = "Dark/light mode of system UI";
565const char kDarkLightTestDescription[] =
566 "Enables the dark/light mode of system UI, which includes shelf, launcher, "
567 "system tray etc.";
568
Sasha McIntoshe889f9f2019-09-03 21:01:57569const char kDecodeJpeg420ImagesToYUVName[] = "YUV decoding for JPEG";
570const char kDecodeJpeg420ImagesToYUVDescription[] =
571 "Decode and render 4:2:0 formatted jpeg images from YUV instead of RGB."
572 "This feature requires GPU or OOP rasterization to also be enabled.";
573
Madeleine Barowsky266406d92019-08-12 19:20:15574const char kDecodeLossyWebPImagesToYUVName[] = "YUV Decoding for WebP";
575const char kDecodeLossyWebPImagesToYUVDescription[] =
576 "Decode and render lossy WebP images from YUV instead of RGB. "
577 "You must also have GPU rasterization or OOP rasterization.";
578
Alexis Menard61ecb91d2021-07-17 04:10:33579const char kDevicePostureName[] = "Device Posture API";
580const char kDevicePostureDescription[] =
581 "Enables Device Posture API (foldable devices)";
582
Daniele Castagna6a5cbdeb62020-02-18 22:48:14583const char kDoubleBufferCompositingName[] = "Double buffered compositing";
584const char kDoubleBufferCompositingDescription[] =
585 "Use double buffer for compositing (instead of triple-buffering). "
586 "Latency should be reduced in some cases. On the other hand, more skipped "
587 "frames are expected.";
588
Olivier Yiptongb60d2c42020-01-10 22:47:15589const char kFontAccessAPIName[] = "Font Access APIs";
590const char kFontAccessAPIDescription[] =
591 "Enables the experimental Font Access APIs, giving websites access "
592 "to enumerate local fonts and access their table data.";
593
Olivier Yiptongdc787f92021-02-02 21:44:14594const char kFontAccessPersistentName[] =
595 "Enable persistent access to the Font Access API";
596const char kFontAccessPersistentDescription[] =
597 "Enables persistent access to the Font Access API, giving websites access "
598 "to enumerate local fonts after being granted a permission.";
599
Christopher Cameronceb8727d2017-09-07 23:53:16600const char kForceColorProfileSRGB[] = "sRGB";
601const char kForceColorProfileP3[] = "Display P3 D65";
602const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
Sunny Sachanandani71e474a2019-06-11 02:32:03603const char kForceColorProfileSCRGBLinear[] =
604 "scRGB linear (HDR where available)";
605const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)";
Christopher Cameronceb8727d2017-09-07 23:53:16606
607const char kForceColorProfileName[] = "Force color profile";
608const char kForceColorProfileDescription[] =
609 "Forces Chrome to use a specific color profile instead of the color "
610 "of the window's current monitor, as specified by the operating system.";
611
Chris Blumeb504da1f22020-04-27 00:21:44612const char kDynamicColorGamutName[] = "Dynamic color gamut";
613const char kDynamicColorGamutDescription[] =
614 "Displays in wide color when the content is wide. When the content is "
615 "not wide, displays sRGB";
616
Keishi Hattori15299742020-04-20 04:00:09617const char kCooperativeSchedulingName[] = "Cooperative Scheduling";
618const char kCooperativeSchedulingDescription[] =
619 "Enables cooperative scheduling in Blink.";
620
Lijin Shen5feade62019-09-17 03:01:01621const char kDarkenWebsitesCheckboxInThemesSettingName[] =
622 "Darken websites checkbox in themes setting";
623const char kDarkenWebsitesCheckboxInThemesSettingDescription[] =
624 "Show a darken websites checkbox in themes settings when system default or "
625 "dark is selected. The checkbox can toggle the auto-darkening web contents "
626 "feature";
627
Brett Wilsonf27ff602017-07-07 22:28:47628const char kDebugPackedAppName[] = "Debugging for packed apps";
629const char kDebugPackedAppDescription[] =
630 "Enables debugging context menu options such as Inspect Element for packed "
631 "applications.";
632
Brett Wilsonf27ff602017-07-07 22:28:47633const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
634const char kDebugShortcutsDescription[] =
635 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
636
Behnood Momenzadeh7411ae92020-04-29 16:54:18637const char kDetectTargetEmbeddingLookalikesName[] =
638 "Detect target embedding domains as lookalikes.";
639const char kDetectTargetEmbeddingLookalikesDescription[] =
640 "Shows a lookalike interstitial when navigating to target embedding domains"
641 "(e.g. google.com.example.com).";
642
Sharon Yangf390ea92021-06-23 19:55:40643const char kDisableProcessReuse[] = "Disable subframe process reuse";
644const char kDisableProcessReuseDescription[] =
645 "Prevents out-of-process iframes from reusing compatible processes from "
646 "unrelated tabs. This is an experimental mode that will result in more "
647 "processes being created.";
648
Brett Wilsonf27ff602017-07-07 22:28:47649const char kDisallowDocWrittenScriptsUiName[] =
650 "Block scripts loaded via document.write";
651const char kDisallowDocWrittenScriptsUiDescription[] =
652 "Disallows fetches for third-party parser-blocking scripts inserted into "
653 "the main frame via document.write.";
654
Vladimir Levin4fd9269d2021-03-12 20:07:21655const char kDocumentTransitionName[] = "documentTransition API";
656const char kDocumentTransitionDescription[] =
657 "Controls the availability of the documentTransition JavaScript API.";
658
Khushal Sagare47d64972021-08-18 17:06:03659const char kDocumentTransitionSlowdownFactorName[] =
660 "documentTransition API Duration Control";
661const char kDocumentTransitionSlowdownFactorDescription[] =
662 "Slows down animations triggered by documentTransition JavaScript API for "
663 "debugging.";
664
Becca Hughesac86cd442019-01-09 23:49:54665const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement";
666const char kEnableAudioFocusEnforcementDescription[] =
667 "Enables enforcement of a single media session having audio focus at "
668 "any one time. Requires #enable-media-session-service to be enabled too.";
669
Florian Uunk8c428ea2018-07-18 11:12:52670const char kEnableAutofillAccountWalletStorageName[] =
671 "Enable the account data storage for autofill";
672const char kEnableAutofillAccountWalletStorageDescription[] =
673 "Enable the ephemeral storage for account data for autofill.";
674
Mohamed Amir Yoseff6763132021-02-18 15:53:14675const char kEnableAutofillAddressSavePromptName[] =
676 "Autofill Address Save Prompts";
677const char kEnableAutofillAddressSavePromptDescription[] =
678 "Enable the Autofill address save prompts.";
679
Manas Verma7e5b391b2019-04-09 02:08:53680const char kEnableAutofillCreditCardAuthenticationName[] =
681 "Allow using platform authenticators to retrieve server cards";
682const char kEnableAutofillCreditCardAuthenticationDescription[] =
683 "When enabled, users will be given the option to use a platform "
684 "authenticator (if available) to verify card ownership when retrieving "
685 "credit cards from Google Payments.";
686
Anne Lim2de74292020-11-12 19:22:57687const char
688 kEnableAutofillInfoBarAccountIndicationFooterForSingleAccountUsersName[] =
689 "Display InfoBar footers with account indication information for "
690 "single account users";
691const char
692 kEnableAutofillInfoBarAccountIndicationFooterForSingleAccountUsersDescription
693 [] = "When enabled and user has single account, a footer indicating "
694 "user's e-mail address will appear at the bottom of InfoBars "
695 "which has corresponding account indication footer flags on.";
696
697const char kEnableAutofillInfoBarAccountIndicationFooterForSyncUsersName[] =
698 "Display InfoBar footers with account indication information for "
699 "sync users";
700const char
701 kEnableAutofillInfoBarAccountIndicationFooterForSyncUsersDescription[] =
702 "When enabled and user is signed in, a footer indicating user's e-mail "
703 "address will appear at the bottom of InfoBars which has "
704 "corresponding account indication footer flags on.";
705
Anne Lim99375dd2020-10-27 00:16:02706const char kEnableAutofillPasswordInfoBarAccountIndicationFooterName[] =
707 "Display password InfoBar footers with account indication information";
708const char kEnableAutofillPasswordInfoBarAccountIndicationFooterDescription[] =
Anne Limc83214c2020-10-23 07:18:05709 "When enabled, a footer indicating user's e-mail address will appear at "
Anne Lim99375dd2020-10-27 00:16:02710 "the bottom of corresponding password InfoBars.";
Anne Limc83214c2020-10-23 07:18:05711
Anne Lim1b70e5c22020-11-12 00:03:18712const char kEnableAutofillSaveCardInfoBarAccountIndicationFooterName[] =
713 "Display SaveCardInfoBar footer with account indication information";
714const char kEnableAutofillSaveCardInfoBarAccountIndicationFooterDescription[] =
715 "When enabled, a footer indicating user's e-mail address will appear at "
716 "the bottom of SaveCardInfoBar.";
717
siyua29899832019-06-07 19:42:12718const char kEnableAutofillCreditCardUploadFeedbackName[] =
719 "Enable feedback for credit card upload flow";
720const char kEnableAutofillCreditCardUploadFeedbackDescription[] =
721 "When enabled, if credit card upload succeeds, the avatar button will "
722 "show a highlight, otherwise the icon will be updated and if it is "
723 "clicked, the save card failure bubble will be shown.";
724
Lily Chen17c57972020-04-22 19:27:44725const char kEnableExperimentalCookieFeaturesName[] =
726 "Enable experimental cookie features";
727const char kEnableExperimentalCookieFeaturesDescription[] =
728 "Enable new features that affect setting, sending, and managing cookies. "
729 "The enabled features are subject to change at any time.";
730
Tarun Bansal56c92932019-04-01 17:58:36731const char kEnableSaveDataName[] = "Enables save data feature";
732const char kEnableSaveDataDescription[] =
733 "Enables save data feature. May cause user's traffic to be proxied via "
734 "Google's data reduction proxy.";
735
Tarun Bansal0c4a7d42020-05-11 19:19:33736const char kEnableNavigationPredictorName[] = "Enables navigation predictor";
737const char kEnableNavigationPredictorDescription[] =
738 "Enables navigation predictor feature that predicts the next likely "
739 "navigation using a set of heuristics.";
740
741const char kEnablePreconnectToSearchName[] =
742 "Enables preconnections to default search engine";
743const char kEnablePreconnectToSearchDescription[] =
744 "Enables the feature that preconnects to the user's default search engine.";
745
Jenny Blessing45326bf2019-08-29 23:50:37746const char kEnableRemovingAllThirdPartyCookiesName[] =
747 "Enable removing SameSite=None cookies";
748const char kEnableRemovingAllThirdPartyCookiesDescription[] =
749 "Enables UI on chrome://settings/siteData to remove all third-party "
750 "cookies and site data.";
751
Yann Dago4e326062020-10-01 20:22:20752const char kEnableBrowsingDataLifetimeManagerName[] =
753 "Enables the BrowsingDataLifetimeManager service to run.";
754const char kEnableBrowsingDataLifetimeManagerDescription[] =
755 "Enables the BrowsingDataLifetimeManager service to run and periodically "
756 "delete browsing data as specified by the BrowsingDataLifetime policy.";
757
Robert Liao5c756102020-03-20 19:46:43758const char kColorProviderRedirectionName[] = "Color Provider Redirection";
759const char kColorProviderRedirectionDescription[] =
760 "Redirects color requests to the color provider where possible.";
761
Sonja Laurilac0492c852021-09-17 14:49:32762const char kDesktopPWAsAdditionalWindowingControlsName[] =
763 "Desktop PWA Window Minimize/maximize/restore";
764const char kDesktopPWAsAdditionalWindowingControlsDescription[] =
765 "Enable PWAs to manually recreate the minimize, maximize and restore "
766 "window functionalities with respective APIs.";
767
Daniel Murphy2b46f4602021-05-13 22:58:39768const char kDesktopPWAsPrefixAppNameInWindowTitleName[] =
769 "Desktop PWAs prefix window title with app name.";
770const char kDesktopPWAsPrefixAppNameInWindowTitleDescription[] =
771 "Prefix the window title of installed PWAs with the name of the PWA. On "
772 "ChromeOS this is visible only in the window/activity switcher.";
773
Eric Willigersc805ad612021-04-01 19:50:09774const char kDesktopPWAsAppIconShortcutsMenuUIName[] =
775 "Desktop PWAs app icon shortcuts menu UI";
776const char kDesktopPWAsAppIconShortcutsMenuUIDescription[] =
777 "Show web app shortcuts in the shelf context menu";
778
Matt Giuca9d0aecb2021-01-15 09:10:00779const char kDesktopPWAsRemoveStatusBarName[] = "Desktop PWAs remove status bar";
780const char kDesktopPWAsRemoveStatusBarDescription[] =
781 "Hides the status bar popup in Desktop PWA app windows.";
782
Alan Cuttereaae7f42020-12-07 02:24:11783const char kDesktopPWAsElidedExtensionsMenuName[] =
784 "Desktop PWAs elided extensions menu";
785const char kDesktopPWAsElidedExtensionsMenuDescription[] =
786 "Moves the Extensions \"puzzle piece\" icon from the title bar into the "
787 "app menu for web app windows.";
788
Alan Cutter64377262020-12-09 06:49:28789const char kDesktopPWAsFlashAppNameInsteadOfOriginName[] =
790 "Desktop PWAs flash app name instead of origin";
791const char kDesktopPWAsFlashAppNameInsteadOfOriginDescription[] =
792 "Replaces the origin flash with an app name flash when launching a web app "
793 "window.";
794
Alexey Baskakov5e710232021-05-05 02:17:41795const char kDesktopPWAsNotificationIconAndTitleName[] =
796 "Desktop PWAs improvements in notification icon and title";
797const char kDesktopPWAsNotificationIconAndTitleDescription[] =
798 "Replaces the websites origin and the Chrome icon with the web app's name "
799 "and app icon in notifications.";
800
Alan Cutter0d7453cf2021-01-06 23:52:53801const char kDesktopPWAsLinkCapturingName[] =
802 "Desktop PWA declarative link capturing";
803const char kDesktopPWAsLinkCapturingDescription[] =
804 "Enable web app manifests to declare link capturing behavior. Prototype "
805 "implementation of: "
806 "https://github.com/WICG/sw-launch/blob/master/"
807 "declarative_link_capturing.md";
808
Alan Cutter62704892021-08-31 21:27:17809const char kDesktopPWAsLaunchHandlerName[] = "Desktop PWA launch handler";
810const char kDesktopPWAsLaunchHandlerDescription[] =
811 "Enable web app manifests to declare app launch behavior. Prototype "
812 "implementation of: "
813 "https://github.com/WICG/sw-launch/blob/main/launch_handler.md";
814
Phillis Tangc6b383942021-06-21 20:15:40815const char kDesktopPWAsManifestIdName[] = "Desktop PWA manifest id";
816const char kDesktopPWAsManifestIdDescription[] =
817 "Enable web app manifests to declare id. Prototype "
818 "implementation of: "
819 "https://github.com/philloooo/pwa-unique-id/blob/main/explainer.md";
820
Lei Zhang507fffd2020-01-29 23:47:54821const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips";
822const char kDesktopPWAsTabStripDescription[] =
Alan Cutter121812d2020-01-09 05:03:37823 "Experimental UI for exploring what PWA windows would look like with a tab "
824 "strip.";
825
Alan Cutter8a7d3ed2020-05-12 01:29:34826const char kDesktopPWAsTabStripLinkCapturingName[] =
827 "Desktop PWA tab strip link capturing";
828const char kDesktopPWAsTabStripLinkCapturingDescription[] =
829 "Experimental behaviour for \"Desktop PWA tab strips\" to capture link "
830 "navigations within the app scope and bring them into the app's tabbed "
831 "window.";
832
Louise Brett51548fb2021-06-18 00:27:21833const char kDesktopPWAsTabStripSettingsName[] =
834 "Desktop PWA tab strips settings";
835const char kDesktopPWAsTabStripSettingsDescription[] =
836 "Experimental UI for selecting whether a PWA should open in tabbed mode.";
837
Ivan Šandrk8a710392021-05-20 13:53:13838const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps";
839const char kDesktopPWAsSubAppsDescription[] =
840 "Enable installed PWAs to create shortcuts by installing their sub apps. "
841 "Prototype implementation of: "
842 "https://github.com/ivansandrk/multi-apps/blob/main/explainer.md";
843
Samuel Tang104341852021-03-17 18:19:06844const char kDesktopPWAsProtocolHandlingName[] = "Desktop PWA Protocol handling";
845const char kDesktopPWAsProtocolHandlingDescription[] =
846 "Enable web app manifests to declare protocol handling behavior."
847 "See: https://crbug.com/1019239.";
848
Lu Huangc911aaf32021-02-12 22:13:06849const char kDesktopPWAsUrlHandlingName[] = "Desktop PWA URL handling";
850const char kDesktopPWAsUrlHandlingDescription[] =
851 "Enable web app manifests to declare URL handling behavior. Prototype "
852 "implementation of: "
853 "https://github.com/WICG/pwa-url-handler/blob/master/explainer.md";
854
Amanda Baker23fb8fa2021-03-24 18:19:04855const char kDesktopPWAsWindowControlsOverlayName[] =
856 "Desktop PWA Window Controls Overlay";
857const char kDesktopPWAsWindowControlsOverlayDescription[] =
858 "Enable web app manifests to declare Window Controls Overlay as a display "
859 "override. Prototype implementation of: "
860 "https://github.com/WICG/window-controls-overlay/blob/main/explainer.md";
861
Alexey Baskakovd913a1272021-07-09 02:12:19862const char kDesktopPWAsWebBundlesName[] = "Desktop PWAs Web Bundles";
863const char kDesktopPWAsWebBundlesDescription[] =
864 "Adds support for web bundles, making web apps able to be launched "
865 "offline.";
866
Alan Cutter2ab7a042020-09-14 03:57:40867const char kEnableMigrateDefaultChromeAppToWebAppsGSuiteName[] =
868 "Migrate default G Suite Chrome apps to web apps";
869const char kEnableMigrateDefaultChromeAppToWebAppsGSuiteDescription[] =
870 "Enable the migration of default installed G Suite Chrome apps over to "
871 "their corresponding web apps.";
872
873const char kEnableMigrateDefaultChromeAppToWebAppsNonGSuiteName[] =
874 "Migrate default non-G Suite Chrome apps to web apps";
875const char kEnableMigrateDefaultChromeAppToWebAppsNonGSuiteDescription[] =
876 "Enable the migration of default installed non-G Suite Chrome apps over to "
877 "their corresponding web apps.";
878
Yann Dago413d39d2020-11-11 01:40:50879const char kEnableSyncRequiresPoliciesLoadedName[] =
880 "Sync waits for all policies to load before starting";
881const char kEnableSyncRequiresPoliciesLoadedDescription[] =
882 "Enables behaviour for Sync to wait for all policies to load before "
883 "starting";
884
Steven Valdez89a44ea92019-05-01 15:18:49885const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data";
886const char kEnableTLS13EarlyDataDescription[] =
887 "This option enables TLS 1.3 Early Data, allowing GET requests to be sent "
888 "during the handshake when resuming a connection to a compatible TLS 1.3 "
889 "server.";
890
Joel Riley700551502021-05-28 00:20:00891const char kEnhancedNetworkVoicesName[] = "Enhanced network voices";
892const char kEnhancedNetworkVoicesDescription[] =
893 "This option enables high-quality, network-based voices in "
894 "Select-to-speak.";
895
Adam Langleyf66f28d22020-02-05 18:10:38896const char kPostQuantumCECPQ2Name[] = "TLS Post-Quantum Confidentiality";
897const char kPostQuantumCECPQ2Description[] =
898 "This option enables a post-quantum (i.e. resistent to quantum computers) "
899 "key exchange algorithm in TLS (CECPQ2).";
900
James Hollyer1b943edb2020-10-28 03:28:06901const char kMacCoreLocationBackendName[] = "Core Location Backend";
902const char kMacCoreLocationBackendDescription[] =
903 "Enables usage of the Core Location APIs as the backend for Geolocation "
904 "API";
James Hollyer070f60a2020-05-05 06:13:15905
Mohamed Adel52ac1ae2020-09-08 16:10:27906const char kNewMacNotificationAPIName[] =
907 "Determines which notification API to use on macOS devices";
908const char kNewMacNotificationAPIDescription[] =
909 "Enables the usage of Apple's new notification API which will run on macOS "
910 "10.14+";
911
Pete Lavallee2d4415c72019-10-07 20:43:56912const char kWinrtGeolocationImplementationName[] =
913 "WinRT Geolocation Implementation";
914const char kWinrtGeolocationImplementationDescription[] =
915 "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows "
916 "for geolocation";
917
Dominic Farolinoaf2f3b72021-05-03 23:44:16918const char kEnableFencedFramesName[] = "Enable the <fencedframe> element.";
919const char kEnableFencedFramesDescription[] =
920 "Fenced frames are an experimental web platform feature that allows "
921 "embedding an isolated top-level page. See "
922 "https://github.com/shivanigithub/fenced-frame";
923
Zentaro Kavanaghe2189cf2021-09-25 01:53:40924const char kEnableFirmwareUpdaterAppName[] = "Enable firmware updater app";
925const char kEnableFirmwareUpdaterAppDescription[] =
926 "Enable the firmware updater SWA, allowing users to update firmware "
927 "on supported peripherals.";
928
James Hollyer24f30cb722021-06-18 21:22:24929const char kEnableGamepadButtonAxisEventsName[] =
930 "Gamepad Button and Axis Events";
931const char kEnableGamepadButtonAxisEventsDescription[] =
932 "Enables the ability to subscribe to changes in buttons and/or axes "
933 "on the gamepad object.";
934
Mikhail Pozdnyakov73373a62017-08-24 17:31:25935const char kEnableGenericSensorExtraClassesName[] =
936 "Generic Sensor Extra Classes";
937const char kEnableGenericSensorExtraClassesDescription[] =
938 "Enables an extra set of sensor classes based on Generic Sensor API, which "
939 "expose previously unavailable platform features, i.e. AmbientLightSensor "
940 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47941
Vikas Soni78daa632019-01-12 01:32:52942const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
943const char kEnableGpuServiceLoggingDescription[] =
944 "Enable printing the actual GL driver calls.";
945
Jimmy Gong07656e42021-04-08 02:31:08946const char kEnableShortcutCustomizationAppName[] =
947 "Enable shortcut customization app";
948const char kEnableShortcutCustomizationAppDescription[] =
949 "Enable the shortcut customization SWA, allowing users to customize system "
950 "shortcuts.";
951
Robert Ogdene7bbbcb2020-03-24 22:37:33952const char kEnableSRPIsolatedPrerendersName[] =
953 "Enable Navigation Predictor Isolated Prerenders";
954const char kEnableSRPIsolatedPrerendersDescription[] =
955 "Enable Navigation Predictions on the Google SRP to be fully isolated.";
956
Robert Ogden26de9972020-03-27 21:00:25957const char kEnableSRPIsolatedPrerenderProbingName[] =
958 "Enable Probing on Navigation Predictor Isolated Prerenders";
959const char kEnableSRPIsolatedPrerenderProbingDescription[] =
960 "Enable probing checks for Isolated Prerenders which will block commit.";
961
Robert Ogden1261e8f2020-06-24 22:45:46962const char kEnableSRPIsolatedPrerendersNSPName[] =
963 "Enable NoStatePrefetch on Navigation Predictor Isolated Prerenders";
964const char kEnableSRPIsolatedPrerendersNSPDescription[] =
965 "Enables NoStatePrefetch on Isolated Prerenders.";
966
Charlene Yane75ce252019-05-22 17:56:32967const char kDownloadAutoResumptionNativeName[] =
968 "Enable download auto-resumption in native";
969const char kDownloadAutoResumptionNativeDescription[] =
970 "Enables download auto-resumption in native";
971
Xing Liu13e5ec12020-05-08 17:32:34972const char kDownloadLaterName[] = "Enable download later";
973const char kDownloadLaterDescription[] = "Enables download later feature.";
974
Xing Liue36464f42020-07-14 17:25:03975const char kDownloadLaterDebugOnWifiName[] =
976 "Show download later dialog on WIFI.";
977const char kDownloadLaterDebugOnWifiNameDescription[] =
978 "Show download later dialog on WIFI.";
979
Shakti Sahu59679ed72021-07-22 22:13:46980const char kDownloadProgressMessageName[] = "Show download progress message";
981const char kDownloadProgressMessageDescription[] =
982 "Shows download progress message UI.";
983
Ian Kilpatricke68ef11a2018-07-04 03:52:10984const char kEnableLayoutNGName[] = "Enable LayoutNG";
985const char kEnableLayoutNGDescription[] =
986 "Enable Blink's next generation layout engine.";
987
Scott Littled0fd2d002018-04-13 03:37:26988const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading";
989const char kEnableLazyFrameLoadingDescription[] =
Scott Littledf79081b2019-05-29 23:03:39990 "Defers the loading of iframes marked with the attribute 'loading=lazy' "
991 "until the page is scrolled down near them.";
Scott Littled0fd2d002018-04-13 03:37:26992
rajendrant793ff512018-08-10 17:07:59993const char kEnableLazyImageLoadingName[] = "Enable lazy image loading";
994const char kEnableLazyImageLoadingDescription[] =
Scott Littledf79081b2019-05-29 23:03:39995 "Defers the loading of images marked with the attribute 'loading=lazy' "
996 "until the page is scrolled down near them.";
rajendrant793ff512018-08-10 17:07:59997
Becca Hughesac86cd442019-01-09 23:49:54998const char kEnableMediaSessionServiceName[] = "Media Session Service";
999const char kEnableMediaSessionServiceDescription[] =
1000 "Enables the media session mojo service and internal media session "
1001 "support.";
1002
Bernhard Bauer5533f9912017-11-06 17:56:021003const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
1004const char kEnableNetworkLoggingToFileDescription[] =
1005 "Enables network logging to a file named netlog.json in the user data "
1006 "directory. The file can be imported into chrome://net-internals.";
1007
Shakti Sahu5a046f62019-03-12 19:25:341008const char kEnableNewDownloadBackendName[] = "Enable new download backend";
1009const char kEnableNewDownloadBackendDescription[] =
1010 "Enables the new download backend that uses offline content provider";
1011
Lucas Furukawa Gadani9f57e192019-04-05 14:56:101012const char kEnablePortalsName[] = "Enable Portals.";
1013const char kEnablePortalsDescription[] =
1014 "Portals are an experimental web platform feature that allows embedding"
1015 " and seamless transitions between pages."
1016 " See https://github.com/WICG/portals and https://wicg.github.io/portals/";
1017
Jeremy Roman30e81e82020-01-29 22:56:471018const char kEnablePortalsCrossOriginName[] = "Enable cross-origin Portals.";
1019const char kEnablePortalsCrossOriginDescription[] =
1020 "Allows portals to load cross-origin URLs in addition to same-origin ones."
1021 " Has no effect if Portals are not enabled.";
1022
Doug Arnettc52291a2020-05-07 18:52:301023const char kEnableTranslateSubFramesName[] = "Translate sub frames";
1024const char kEnableTranslateSubFramesDescription[] =
1025 "Enable the translation of sub frames (as well as the main frame)";
1026
Qiaofei Yebeb9a232020-07-22 23:47:041027const char kEnableWindowsGamingInputDataFetcherName[] =
1028 "Enable Windows.Gaming.Input";
1029const char kEnableWindowsGamingInputDataFetcherDescription[] =
1030 "Enable Windows.Gaming.Input by default to provide game controller "
1031 "support on Windows 10 desktop.";
1032
Titouan Rigoudyf619f5462020-09-25 16:35:491033const char kBlockInsecurePrivateNetworkRequestsName[] =
1034 "Block insecure private network requests.";
1035const char kBlockInsecurePrivateNetworkRequestsDescription[] =
1036 "Prevents non-secure contexts from making sub-resource requests to "
1037 "more-private IP addresses. An IP address IP1 is more private than IP2 if "
1038 "1) IP1 is localhost and IP2 is not, or 2) IP1 is private and IP2 is "
1039 "public. This is a first step towards full enforcement of CORS-RFC1918: "
1040 "https://wicg.github.io/cors-rfc1918";
1041
arthursonzogni27ef983f2021-06-15 10:09:401042const char kCrossOriginEmbedderPolicyCredentiallessName[] =
1043 "Enable Cross-Origin-Embedder-Policy: credentialless";
1044const char kCrossOriginEmbedderPolicyCredentiallessDescription[] =
1045 "Credentialless is a Cross-Origin-Embedder-Policy (COEP) variant. "
1046 "COEP:credentialless causes no-cors cross-origin requests not to include "
1047 "credentials (cookies, client certificates, etc...). Similarly to "
1048 "require-corp, it can be used to enable cross-origin-isolation.";
1049
Zentaro Kavanagh53c48cb22021-03-25 00:19:061050const char kDeprecateAltClickName[] =
1051 "Enable Alt+Click deprecation notifications";
1052const char kDeprecateAltClickDescription[] =
1053 "Start providing notifications about Alt+Click deprecation and enable "
1054 "Search+Click as an alternative.";
1055
Zentaro Kavanaghc1898fe2021-06-25 00:31:451056const char kDeprecateAltBasedSixPackName[] =
1057 "Deprecate Alt based six-pack (PgUp, PgDn, Home, End, Delete, Insert)";
1058const char kDeprecateAltBasedSixPackDescription[] =
1059 "Show deprecation notifications and disable functionality for Alt based "
1060 "six pack deprecations. The Search based versions continue to work.";
1061
Jimmy Gongba69b982020-08-25 00:01:291062const char kDiagnosticsAppName[] = "Diagnostics app";
1063const char kDiagnosticsAppDescription[] =
1064 "Enables the Diagnostics app that allows Chrome OS users to be able to "
1065 "view their system telemetric information and run diagnostic tests for "
1066 "their device.";
1067
Michael Checoc6abb922021-05-21 17:55:021068const char kDiagnosticsAppNavigationName[] = "Diagnostics app navigation";
1069const char kDiagnosticsAppNavigationDescription[] =
1070 "Enables the navigation panel in the Diagnostics app.";
1071
Yutaka Hiranoaa0e62e2019-09-05 11:01:041072const char kDisableKeepaliveFetchName[] = "Disable fetch with keepalive set";
1073const char kDisableKeepaliveFetchDescription[] =
1074 "Disable fetch with keepalive set "
1075 "(https://fetch.spec.whatwg.org/#request-keepalive-flag).";
1076
Chris Hall4a4225f62019-01-18 03:07:161077const char kExperimentalAccessibilityLanguageDetectionName[] =
1078 "Experimental accessibility language detection";
1079const char kExperimentalAccessibilityLanguageDetectionDescription[] =
1080 "Enable language detection for in-page content which is then exposed to "
Chris Hall31e92b22019-11-15 05:57:221081 "assistive technologies such as screen readers.";
Chris Hall4a4225f62019-01-18 03:07:161082
Chris Hall4f3ca5582019-11-19 02:55:491083const char kExperimentalAccessibilityLanguageDetectionDynamicName[] =
1084 "Experimental accessibility language detection for dynamic content";
1085const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] =
1086 "Enable language detection for dynamic content which is then exposed to "
1087 "assistive technologies such as screen readers.";
1088
Rahul Arakeri61a2ad272019-03-19 22:55:081089const char kCompositorThreadedScrollbarScrollingName[] =
Rahul Arakeriac87fb12019-05-14 00:07:221090 "Compositor threaded scrollbar scrolling";
Rahul Arakeri61a2ad272019-03-19 22:55:081091const char kCompositorThreadedScrollbarScrollingDescription[] =
1092 "Enables pointer-based scrollbar scrolling on the compositor thread "
1093 "instead of the main thread";
1094
Alexei Filippov522a5222019-03-29 03:33:181095const char kMemlogName[] = "Chrome heap profiler start mode.";
1096const char kMemlogDescription[] =
1097 "Starts heap profiling service that records sampled memory allocation "
1098 "profile having each sample attributed with a callstack. "
1099 "The sampling resolution is controlled with --memlog-sampling-rate flag. "
1100 "Recorded heap dumps can be obtained at chrome://tracing "
1101 "[category:memory-infra] and chrome://memory-internals. This setting "
1102 "controls which processes will be profiled since their start. To profile "
1103 "any given process at a later time use chrome://memory-internals page.";
1104const char kMemlogModeMinimal[] = "Browser and GPU";
1105const char kMemlogModeAll[] = "All processes";
1106const char kMemlogModeAllRenderers[] = "All renderers";
1107const char kMemlogModeRendererSampling[] = "Single renderer";
1108const char kMemlogModeBrowser[] = "Browser only";
1109const char kMemlogModeGpu[] = "GPU only";
Alexei Filippov2e8bfee2019-03-07 21:51:271110
Alexei Filippov522a5222019-03-29 03:33:181111const char kMemlogSamplingRateName[] =
1112 "Heap profiling sampling interval (in bytes).";
1113const char kMemlogSamplingRateDescription[] =
1114 "Heap profiling service uses Poisson process to sample allocations. "
Erik Chend0ec40e2021-09-17 22:43:561115 "Default value for the interval between samples is 1000000 (1MB). "
Alexei Filippov522a5222019-03-29 03:33:181116 "This results in low noise for large and/or frequent allocations "
Erik Chend0ec40e2021-09-17 22:43:561117 "[size * frequency >> 1MB]. This means that aggregate numbers [e.g. "
erikchen99bfce02018-02-14 20:29:221118 "total size of malloc-ed objects] and large and/or frequent allocations "
Alexei Filippov522a5222019-03-29 03:33:181119 "can be trusted with high fidelity. "
1120 "Lower intervals produce higher samples resolution, but come at a cost of "
1121 "higher performance overhead.";
1122const char kMemlogSamplingRate10KB[] = "10KB";
1123const char kMemlogSamplingRate50KB[] = "50KB";
1124const char kMemlogSamplingRate100KB[] = "100KB";
1125const char kMemlogSamplingRate500KB[] = "500KB";
1126const char kMemlogSamplingRate1MB[] = "1MB";
1127const char kMemlogSamplingRate5MB[] = "5MB";
erikchen8bc20d82018-02-14 03:21:511128
Alexei Filippov522a5222019-03-29 03:33:181129const char kMemlogStackModeName[] = "Heap profiling stack traces type.";
1130const char kMemlogStackModeDescription[] =
1131 "By default heap profiling service records native stacks. "
1132 "A post-processing step is required to symbolize the stacks. "
1133 "'Native with thread names' adds the thread name as the first frame of "
1134 "each native stack. It's also possible to record a pseudo stack using "
1135 "trace events as identifiers. It's also possible to do a mix of both.";
1136const char kMemlogStackModeMixed[] = "Mixed";
1137const char kMemlogStackModeNative[] = "Native";
1138const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names";
1139const char kMemlogStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:051140
Ali Stanfielda835700c2021-07-24 01:03:201141const char kEnableLensRegionSearchFlagId[] = "enable-lens-region-search";
1142const char kEnableLensRegionSearchName[] =
1143 "Search your screen with Google Lens";
Ali Stanfield980a7492021-07-21 19:21:261144const char kEnableLensRegionSearchDescription[] =
Ali Stanfielddf071bb92021-09-14 20:48:131145 "Right click and select \"Search images with Google Lens\" to "
Ali Stanfielda835700c2021-07-24 01:03:201146 "search any region of the site to learn more about the visual content you "
1147 "see while you browse and shop on the web.";
Ali Stanfield980a7492021-07-21 19:21:261148
rajendrant41f3f1b2020-12-16 10:29:311149const char kEnableLoginDetectionName[] = "Enable login detection";
1150const char kEnableLoginDetectionDescription[] =
1151 "Allow user sign-in to be detected based on heuristics.";
1152
Anatoliy Potapchukf096475c2021-04-06 15:51:591153const char kEnableManagedConfigurationWebApiName[] =
1154 "Enable Managed Configuration Web API";
1155const char kEnableManagedConfigurationWebApiDescription[] =
1156 "Allows website to access a managed configuration provided by the device "
1157 "administrator for the origin.";
1158
Jimmy Gongcd463fc2021-02-11 01:32:181159const char kEnablePciguardUiName[] =
1160 "Enable Pciguard (Thunderbolt + USB4 tunneling) UI for settings";
1161const char kEnablePciguardUiDescription[] =
1162 "Enable toggling Pciguard settings through the Settings App. By default, "
Jimmy Gong4b6a2792021-02-26 03:00:001163 "this flag is enabled.";
Jimmy Gongcd463fc2021-02-11 01:32:181164
Ben Goldberger2a1433a42021-04-21 18:37:151165const char kEnablePenetratingImageSelectionName[] =
1166 "Penetrating Image Selection";
1167const char kEnablePenetratingImageSelectionDescription[] =
1168 "Enables image options to be surfaced in the context menu for nodes "
1169 "covered by transparent overlays.";
1170
F#m59d036e2017-09-13 07:22:171171const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
1172const char kEnablePixelCanvasRecordingDescription[] =
1173 "Pixel canvas recording allows the compositor to raster contents aligned "
1174 "with the pixel and improves text rendering. This should be enabled when a "
1175 "device is using fractional scale factor.";
1176
Robert Flack55c53a412021-03-22 14:46:081177const char kReduceHorizontalFlingVelocityName[] =
1178 "Reduce horizontal fling velocity";
1179const char kReduceHorizontalFlingVelocityDescription[] =
1180 "Reduces the velocity of horizontal flings to 20\% of their original"
1181 "velocity.";
1182
Mei Liang267ee2482021-09-17 02:54:511183const char kRetailCouponsName[] = "Enable to fetch for retail coupons";
1184const char kRetailCouponsDescription[] =
1185 "Allow to fetch retail coupons for consented users";
1186
Ella Gebee81c92018-08-14 15:51:091187const char kEnableResamplingInputEventsName[] =
1188 "Enable resampling input events";
1189const char kEnableResamplingInputEventsDescription[] =
1190 "Predicts mouse and touch inputs position at rAF time based on previous "
1191 "input";
1192const char kEnableResamplingScrollEventsName[] =
1193 "Enable resampling scroll events";
1194const char kEnableResamplingScrollEventsDescription[] =
1195 "Predicts the scroll amount at vsync time based on previous input";
Joao Victor Almeida371702c2021-01-08 18:41:561196const char kEnableResamplingScrollEventsExperimentalPredictionName[] =
1197 "Enable experimental prediction for scroll events";
1198const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] =
1199 "Predicts the scroll amount after the vsync time to more closely match "
1200 "when the frame is visible.";
Ella Gebee81c92018-08-14 15:51:091201
Lei Zhang1a6fd01b2021-03-24 17:03:481202const char kEnableRestrictedWebApisName[] =
Anqing Zhaoc7136af2021-01-20 05:52:391203 "Enable the restriced web APIs for high-trusted apps.";
Lei Zhang1a6fd01b2021-03-24 17:03:481204const char kEnableRestrictedWebApisDescription[] =
Anqing Zhaoc7136af2021-01-20 05:52:391205 "Enable the restricted web APIs for dev trial. This will be replaced with "
1206 "permission policies to control the capabilities afterwards.";
1207
Brett Wilsonf27ff602017-07-07 22:28:471208const char kEnableUseZoomForDsfName[] =
1209 "Use Blink's zoom for device scale factor.";
1210const char kEnableUseZoomForDsfDescription[] =
1211 "If enabled, Blink uses its zooming mechanism to scale content for device "
1212 "scale factor.";
1213const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
1214const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
1215const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
1216
Sean Harrison9dc405a52019-08-27 18:23:101217const char kEnableSubresourceRedirectName[] =
rajendrante2bfd3a2020-11-23 19:48:541218 "Enable Subresource Redirect Compression";
Sean Harrison9dc405a52019-08-27 18:23:101219const char kEnableSubresourceRedirectDescription[] =
rajendrante2bfd3a2020-11-23 19:48:541220 "Allow subresource compression for data savings";
Sean Harrison9dc405a52019-08-27 18:23:101221
zakaria ridouh15ce79e12021-09-24 20:20:141222const char kEnableWebAuthenticationAuthenticatorAttachmentName[] =
1223 "Web Authentication Authenticator Attachment support";
1224const char kEnableWebAuthenticationAuthenticatorAttachmentDescription[] =
1225 "Enable Web Authentication to provide the Authenticator Attachment type "
1226 "used on both authentication and registration success.";
Zakaria Ridouh3a7d9ce2021-08-27 19:46:041227
Adam Langley7542a7b2019-10-04 02:00:551228const char kEnableWebAuthenticationCableV2SupportName[] =
1229 "Web Authentication caBLE v2 support";
1230const char kEnableWebAuthenticationCableV2SupportDescription[] =
Adam Langley339aa0f2021-04-05 21:46:041231 "Enable use of phones that are signed into the same account, with Sync "
1232 "enabled, to be used as 2nd-factor security keys.";
Kim Paulhamusae635a32018-06-27 07:30:541233
Yicheng Li0a78f462020-08-14 00:08:121234const char kEnableWebAuthenticationChromeOSAuthenticatorName[] =
1235 "ChromeOS platform Web Authentication support";
1236const char kEnableWebAuthenticationChromeOSAuthenticatorDescription[] =
1237 "Enable the ChromeOS platform authenticator for the Web Authentication "
1238 "API.";
1239
Andreas Haasb400d912019-08-28 18:54:101240const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly";
1241const char kExperimentalWebAssemblyFeaturesDescription[] =
1242 "Enable web pages to use experimental WebAssembly features.";
1243
Clemens Hammacher0c8a15a2018-04-27 13:45:321244const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
1245const char kEnableWasmBaselineDescription[] =
1246 "Enables WebAssembly baseline compilation and tier up.";
1247
Clemens Backes50e0ecd2020-01-20 10:43:241248const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation";
1249const char kEnableWasmLazyCompilationDescription[] =
1250 "Enables lazy (JIT on first call) compilation of WebAssembly modules.";
1251
Clemens Backes963eb37be2020-01-10 11:56:491252const char kEnableWasmTieringName[] = "WebAssembly tiering";
1253const char kEnableWasmTieringDescription[] =
1254 "Enables tiered compilation of WebAssembly (will tier up to TurboFan if "
Clemens Backes50e0ecd2020-01-20 10:43:241255 "#enable-webassembly-baseline is enabled).";
Clemens Backes963eb37be2020-01-10 11:56:491256
Christopher Thompsonf3ba20122019-06-06 22:01:011257const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info.";
1258const char kEvDetailsInPageInfoDescription[] =
1259 "Shows the EV certificate details in the Page Info bubble.";
1260
Mark Schillaci0bd47bd2020-12-09 04:03:351261const char kExperimentalAccessibilityLabelsName[] =
1262 "Experimental Accessibility Labels";
1263const char kExperimentalAccessibilityLabelsDescription[] =
1264 "Enables experimental accessibility labels feature. Note that this only "
1265 "enables the feature, and enabling the service is a profile preference.";
1266
Brett Wilsonf27ff602017-07-07 22:28:471267const char kExperimentalWebPlatformFeaturesName[] =
1268 "Experimental Web Platform features";
1269const char kExperimentalWebPlatformFeaturesDescription[] =
1270 "Enables experimental Web Platform features that are in development.";
1271
1272const char kExtensionContentVerificationName[] =
1273 "Extension Content Verification";
1274const char kExtensionContentVerificationDescription[] =
1275 "This flag can be used to turn on verification that the contents of the "
1276 "files on disk for extensions from the webstore match what they're "
1277 "expected to be. This can be used to turn on this feature if it would not "
1278 "otherwise have been turned on, but cannot be used to turn it off (because "
1279 "this setting can be tampered with by malware).";
1280const char kExtensionContentVerificationBootstrap[] =
1281 "Bootstrap (get expected hashes, but do not enforce them)";
1282const char kExtensionContentVerificationEnforce[] =
1283 "Enforce (try to get hashes, and enforce them if successful)";
1284const char kExtensionContentVerificationEnforceStrict[] =
1285 "Enforce strict (hard fail if we can't get hashes)";
1286
Emilia Pazd7cce422021-08-14 00:50:481287const char kExtensionsMenuAccessControlName[] =
1288 "Extensions Menu Access Control";
1289const char kExtensionsMenuAccessControlDescription[] =
1290 "Enables a redesigned extensions menu that allows the user to control "
1291 "extensions site access.";
1292
Brett Wilsonf27ff602017-07-07 22:28:471293const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1294const char kExtensionsOnChromeUrlsDescription[] =
1295 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1296 "request this permission.";
galinapae72e152017-05-12 13:12:281297
Axel Antoine12df71182019-07-25 18:11:211298const char kFilteringScrollPredictionName[] = "Filtering scroll prediction";
1299const char kFilteringScrollPredictionDescription[] =
1300 "Enable filtering of predicted scroll events";
1301
David Bokan432978d2019-08-15 18:18:521302const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets";
1303const char kFractionalScrollOffsetsDescription[] =
1304 "Enables fractional scroll offsets inside Blink, exposing non-integer "
1305 "offsets to web APIs.";
1306
Brett Wilsonecb80982017-07-12 20:34:511307const char kForceEffectiveConnectionTypeName[] =
1308 "Override effective connection type";
1309const char kForceEffectiveConnectionTypeDescription[] =
1310 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:301311 "returned by the network quality estimator. Slow 2G on Cellular returns "
1312 "Slow 2G when connected to a cellular network, and the actual estimate "
Tarun Bansalce1cfba2021-03-02 07:05:061313 "effective connection type when not on a cellular network.";
Brett Wilsonecb80982017-07-12 20:34:511314const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
1315const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
1316const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:301317const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
1318 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:511319const char kEffectiveConnectionType2GDescription[] = "2G";
1320const char kEffectiveConnectionType3GDescription[] = "3G";
1321const char kEffectiveConnectionType4GDescription[] = "4G";
1322
Jay Harris583f48922019-05-06 05:55:241323const char kFileHandlingAPIName[] = "File Handling API";
1324const char kFileHandlingAPIDescription[] =
1325 "Enables the file handling API, allowing websites to register as file "
Jesse McKennabe661982020-10-29 23:57:421326 "handlers.";
Jay Harris583f48922019-05-06 05:55:241327
Darwin Huang1473bc32021-06-18 01:56:231328const char kFileHandlingIconsName[] = "File Handling Icons";
1329const char kFileHandlingIconsDescription[] =
1330 "Allows websites using the file handling API to also register file type "
1331 "icons. See https://github.com/WICG/file-handling/blob/main/explainer.md "
1332 "for more information.";
1333
Viktor Semeniukd5cfc262021-02-25 12:51:221334const char kFillingAcrossAffiliatedWebsitesName[] =
1335 "Fill passwords across affiliated websites.";
1336const char kFillingAcrossAffiliatedWebsitesDescription[] =
1337 "Enables filling password on a website when there is saved "
1338 "password on affiliated website.";
1339
Brett Wilsonecb80982017-07-12 20:34:511340const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1341const char kFillOnAccountSelectDescription[] =
1342 "Filling of passwords when an account is explicitly selected by the user "
1343 "rather than autofilling credentials on page load.";
1344
Brett Wilsonecb80982017-07-12 20:34:511345const char kForceTextDirectionName[] = "Force text direction";
1346const char kForceTextDirectionDescription[] =
1347 "Explicitly force the per-character directionality of UI text to "
1348 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1349 "direction of the character language.";
1350const char kForceDirectionLtr[] = "Left-to-right";
1351const char kForceDirectionRtl[] = "Right-to-left";
1352
1353const char kForceUiDirectionName[] = "Force UI direction";
1354const char kForceUiDirectionDescription[] =
1355 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1356 "mode, overriding the default direction of the UI language.";
1357
Tommy Steimel863e6cf2019-07-01 19:07:361358const char kGlobalMediaControlsName[] = "Global Media Controls";
1359const char kGlobalMediaControlsDescription[] =
1360 "Enables the Global Media Controls UI in the toolbar.";
1361
Jazz Xu223d04c2020-09-22 20:23:011362const char kGlobalMediaControlsForChromeOSName[] =
Jazz Xu326c62c2020-09-24 02:01:521363 "Global Media Controls for ChromeOS";
Jazz Xu223d04c2020-09-22 20:23:011364const char kGlobalMediaControlsForChromeOSDescription[] =
1365 "Enable Global Media Controls UI in shelf and quick settings.";
1366
Tommy Steimele5c5c122020-02-06 23:22:351367const char kGlobalMediaControlsPictureInPictureName[] =
1368 "Global Media Controls Picture-in-Picture";
1369const char kGlobalMediaControlsPictureInPictureDescription[] =
1370 "Enables Picture-in-Picture controls in the Global Media Controls UI. "
1371 "Requires "
1372 "#global-media-controls to also be enabled.";
1373
Noah Rose Ledesma210c5602020-06-22 21:06:461374const char kGlobalMediaControlsSeamlessTransferName[] =
1375 "Global Media Controls Seamless Transfer";
1376const char kGlobalMediaControlsSeamlessTransferDescription[] =
1377 "Enables selection of audio output device to play media through in "
1378 "the Global Media Controls UI. Requires #global-media-controls to "
1379 "also be enabled.";
1380
Noah Rose Ledesma1bbd0712020-09-09 20:36:441381const char kGlobalMediaControlsModernUIName[] =
1382 "Global Media Controls Modern UI";
1383
1384const char kGlobalMediaControlsModernUIDescription[] =
1385 "Use a redesigned version of the Global Media Controls UI. Requires "
1386 "#global-media-controls to also be enabled.";
1387
Jazz Xu15f2b1c2020-07-09 14:42:141388const char kGlobalMediaControlsOverlayControlsName[] =
Tommy Steimel371f69e2020-07-20 16:45:311389 "Enable overlay controls for Global Media Controls";
Jazz Xu15f2b1c2020-07-09 14:42:141390const char kGlobalMediaControlsOverlayControlsDescription[] =
Tommy Steimel371f69e2020-07-20 16:45:311391 "Allowing controls to be dragged out from Global Media Controls dialog. "
Jazz Xu15f2b1c2020-07-09 14:42:141392 "Requires #global-media-controls to also be enabled.";
1393
Jordan Baylesb3160b262021-08-18 00:33:011394const char kOpenscreenCastStreamingSessionName[] =
1395 "Enable Open Screen Library (libcast) as the Mirroring Service's Cast "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501396 "Streaming implementation";
Jordan Baylesb3160b262021-08-18 00:33:011397const char kOpenscreenCastStreamingSessionDescription[] =
1398 "Enables Open Screen Library's (libcast) Cast Streaming implementation to "
Abraham Corea Diaze4c3abe2021-08-24 17:43:501399 "be used for negotiating and executing mirroring and remoting sessions.";
1400
Kennan Gumbsdf768ce92021-08-25 19:09:511401const char kCastStreamingAv1Name[] =
1402 "Enable AV1 codec video encoding in Cast mirroring sessions";
1403const char kCastStreamingAv1Description[] =
1404 "Enables the inclusion of AV1 codec video encoding in Cast mirroring "
1405 "session negotiations.";
1406
Abraham Corea Diaze4c3abe2021-08-24 17:43:501407const char kCastStreamingVp9Name[] =
1408 "Enable VP9 codec video encoding in Cast mirroring sessions";
1409const char kCastStreamingVp9Description[] =
1410 "Enables the inclusion of VP9 codec video encoding in Cast mirroring "
1411 "session negotiations.";
Jordan Baylesb3160b262021-08-18 00:33:011412
Juan Mojicacd2cab02021-04-19 22:10:241413const char kGoogleLensSdkIntentName[] =
1414 "Enable the use of the Lens SDK when starting intent into Lens.";
1415const char kGoogleLensSdkIntentDescription[] =
1416 "Starts Lens using the Lens SDK if supported.";
1417
Brett Wilsonecb80982017-07-12 20:34:511418const char kGpuRasterizationName[] = "GPU rasterization";
danakj51faabd2020-03-31 17:25:051419const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content.";
Brett Wilsonecb80982017-07-12 20:34:511420
Curtis McMullanf2e45bf2020-08-26 09:51:391421const char kHandwritingGestureEditingName[] = "Handwriting Gestures Editing";
1422const char kHandwritingGestureEditingDescription[] =
1423 "Enables editing with handwriting gestures within the virtual keyboard.";
1424
Curtis McMullan88e039e2021-07-27 08:06:311425const char kHandwritingLegacyRecognitionName[] =
1426 "Handwriting Legacy Recognition";
1427const char kHandwritingLegacyRecognitionDescription[] =
1428 "Enables new on-device recognition for handwriting legacy paths.";
1429
Tommy Steimel1aadd7b2019-01-18 19:39:421430const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
1431const char kHardwareMediaKeyHandlingDescription[] =
1432 "Enables using media keys to control the active media session. This "
1433 "requires MediaSessionService to be enabled too";
1434
John Delaney521fe9f2020-04-29 22:18:191435const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations";
1436const char kHeavyAdPrivacyMitigationsDescription[] =
1437 "Enables privacy mitigations for the heavy ad intervention. Disabling "
1438 "this makes the intervention deterministic. Defaults to enabled.";
John Delaney782c77762019-10-28 15:53:561439
1440const char kHeavyAdInterventionName[] = "Heavy Ad Intervention";
1441const char kHeavyAdInterventionDescription[] =
1442 "Unloads ads that use too many device resources.";
1443
Toni Barzic7e93fa52020-01-29 01:35:471444const char kHideShelfControlsInTabletModeName[] =
1445 "Hide shelf control buttons in tablet mode.";
1446
1447const char kHideShelfControlsInTabletModeDescription[] =
1448 "Hides home, back, and overview button from the shelf while the device is "
1449 "in tablet mode. Predicated on shelf-hotseat feature being enabled.";
1450
Wei-Yin Chen (陳威尹)565a41612020-06-30 22:29:561451const char kTabSwitcherOnReturnName[] = "Tab switcher on return";
Matt Simmons2048b2a2018-12-20 20:12:561452const char kTabSwitcherOnReturnDescription[] =
1453 "Enable tab switcher on return after specified time has elapsed";
1454
Brett Wilsonecb80982017-07-12 20:34:511455const char kHostedAppShimCreationName[] =
1456 "Creation of app shims for hosted apps on Mac";
1457const char kHostedAppShimCreationDescription[] =
1458 "Create app shims on Mac when creating a hosted app.";
1459
Emily Stark70158ce2021-07-16 18:26:311460const char kHttpsOnlyModeName[] = "HTTPS-First Mode Setting";
Chris Thompson8bc143b2021-06-28 19:20:321461const char kHttpsOnlyModeDescription[] =
Emily Stark70158ce2021-07-16 18:26:311462 "Adds a setting under chrome://settings/security to opt-in to HTTPS-First "
Chris Thompson8bc143b2021-06-28 19:20:321463 "Mode.";
1464
Corentin Walleze660b152020-07-15 16:07:541465const char kIgnoreGpuBlocklistName[] = "Override software rendering list";
1466const char kIgnoreGpuBlocklistDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511467 "Overrides the built-in software rendering list and enables "
1468 "GPU-acceleration on unsupported system configurations.";
1469
Jimmy Gong6de11b02021-02-04 21:35:011470const char kImprovedKeyboardShortcutsName[] =
1471 "Enable improved keyboard shortcuts";
1472const char kImprovedKeyboardShortcutsDescription[] =
1473 "Ensure keyboard shortcuts work consistently with international keyboard "
1474 "layouts and deprecate legacy shortcuts.";
1475
Matt Amert2df4f1452019-12-09 04:59:491476const char kImpulseScrollAnimationsName[] = "Impulse-style scroll animations";
1477const char kImpulseScrollAnimationsDescription[] =
1478 "Replaces the default scroll animation with Impulse-style scroll "
1479 "animations.";
1480
Side Yilmaz424606f2021-04-09 14:08:291481const char kIncognitoBrandConsistencyForAndroidName[] =
1482 "Enable Incognito brand consistency in Android.";
1483const char kIncognitoBrandConsistencyForAndroidDescription[] =
1484 "When enabled, keeps Incognito UI consistent regardless of any selected "
1485 "theme.";
1486
Alex Ilasiab901f92021-09-13 09:27:271487const char kIncognitoDownloadsWarningName[] =
1488 "Enable Incognito downloads warning";
1489const char kIncognitoDownloadsWarningDescription[] =
1490 "When enabled, users will be warned that downloaded files are saved on the "
1491 "device and might be seen by other users even if they are in Incognito.";
1492
Rohit Agarwal6e9b6022021-08-10 19:44:371493const char kIncognitoReauthenticationForAndroidName[] =
1494 "Enable device reauthentication for Incognito.";
1495const char kIncognitoReauthenticationForAndroidDescription[] =
1496 "When enabled, a setting appears in Settings > Privacy and Security, to "
1497 "enable reauthentication for accessing your existing Incognito tabs.";
1498
Rohit Agarwalf0fca3eb2021-03-31 12:40:391499const char kIncognitoBrandConsistencyForDesktopName[] =
1500 "Enable Incognito brand consistency in desktop.";
1501const char kIncognitoBrandConsistencyForDesktopDescription[] =
1502 "When enabled, removes any theme or background customization done by the "
1503 "user on the Incognito UI.";
1504
Rohit Agarwal967518a2021-05-31 09:13:201505const char kIncognitoClearBrowsingDataDialogForDesktopName[] =
1506 "Enable clear browsing data dialog in Incognito.";
1507const char kIncognitoClearBrowsingDataDialogForDesktopDescription[] =
1508 "When enabled, clear browsing data option would be enabled in Incognito "
1509 "which upon clicking would show a dialog to close all Incognito windows.";
1510
Side Yilmaz745252f2021-05-03 13:10:221511const char kUpdateHistoryEntryPointsInIncognitoName[] =
Side Yilmaza8ef2ad2021-06-01 15:09:231512 "Update history entry points in Incognito.";
Side Yilmaz745252f2021-05-03 13:10:221513const char kUpdateHistoryEntryPointsInIncognitoDescription[] =
1514 "When enabled, the entry points to history UI from Incognito mode will be "
1515 "removed for iOS and Desktop. An educative placeholder will be shown for "
1516 "Android history page.";
1517
Saba Khukhunashvilif7a4f822021-07-23 10:59:211518const char kIncognitoNtpRevampName[] = "Revamped Incognito New Tab Page";
1519const char kIncognitoNtpRevampDescription[] =
1520 "When enabled, Incognito new tab page will have an updated UI";
1521
Ramin Halavatidf9668c2020-10-30 15:35:531522const char kIncognitoScreenshotName[] = "Incognito Screenshot";
1523const char kIncognitoScreenshotDescription[] =
1524 "Enables Incognito screenshots on Android. It will also make Incognito "
1525 "thumbnails visible.";
1526
Rohit Agarwal485ecac2021-04-07 19:52:571527const char kInheritNativeThemeFromParentWidgetName[] =
1528 "Allow widgets to inherit native theme from its parent widget.";
1529const char kInheritNativeThemeFromParentWidgetDescription[] =
1530 "When enabled, secondary UI like menu, dialog etc would be in dark mode "
1531 "when Incognito mode is open.";
1532
Brett Wilsonecb80982017-07-12 20:34:511533const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1534const char kInProductHelpDemoModeChoiceDescription[] =
1535 "Selects the In-Product Help demo mode.";
1536
Hailey Wanga7607f02021-08-12 19:37:511537const char kInProductHelpSnoozeName[] = "In-Product Help Snooze";
1538const char kInProductHelpSnoozeDescription[] =
1539 "Enables the snooze button on In-Product Help.";
1540
Jarrydc3639ac2020-04-09 17:05:391541const char kInstalledAppsInCbdName[] = "Installed Apps in Clear Browsing Data";
1542const char kInstalledAppsInCbdDescription[] =
1543 "Adds the installed apps warning dialog to the clear browsing data flow "
1544 "which allows users to protect installed apps' data from being deleted.";
1545
Brett Wilsonecb80982017-07-12 20:34:511546const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1547const char kJavascriptHarmonyDescription[] =
1548 "Enable web pages to use experimental JavaScript features.";
1549
1550const char kJavascriptHarmonyShippingName[] =
1551 "Latest stable JavaScript features";
1552const char kJavascriptHarmonyShippingDescription[] =
1553 "Some web pages use legacy or non-standard JavaScript extensions that may "
1554 "conflict with the latest JavaScript features. This flag allows disabling "
1555 "support of those features for compatibility with such pages.";
1556
Christopher Thompson493f1062020-01-28 23:16:431557const char kLegacyTLSEnforcedName[] =
1558 "Enforce deprecation of legacy TLS versions";
1559const char kLegacyTLSEnforcedDescription[] =
1560 "Enable connection errors and interstitials for sites that use legacy TLS "
1561 "versions (TLS 1.0 and TLS 1.1), which are deprecated and will be removed "
1562 " in the future.";
1563
Yu Suc19bb6cc2021-02-25 06:38:291564const char kLensCameraAssistedSearchName[] =
1565 "Google Lens in Omnibox and New Tab Page";
1566const char kLensCameraAssistedSearchDescription[] =
1567 "Enable an entry point to Google Lens to allow users to search what they "
1568 "see using their mobile camera.";
1569
Michael Crouse1c9adba2020-07-08 17:39:011570const char kLiteVideoName[] = "Enable LiteVideos";
1571const char kLiteVideoDescription[] =
1572 "Enable the LiteVideo optimization to throttle media requests to "
1573 "reduce data usage";
1574
Tarun Bansalb137fff2020-08-07 18:57:211575const char kLiteVideoDownlinkBandwidthKbpsName[] =
1576 "Lite Video: Adjust throttling downlink (in Kbps).";
1577const char kLiteVideoDownlinkBandwidthKbpsDescription[] =
1578 "Specify the throttling bandwidth to be used";
1579
Michael Crouse1c9adba2020-07-08 17:39:011580const char kLiteVideoForceOverrideDecisionName[] = "Force LiteVideos decision";
1581const char kLiteVideoForceOverrideDecisionDescription[] =
1582 "Force the LiteVideo decision to be allowed on every navigation.";
1583
Hazem Ashmawyf1cd7e42019-03-25 18:17:321584const char kLogJsConsoleMessagesName[] =
1585 "Log JS console messages in system logs";
1586const char kLogJsConsoleMessagesDescription[] =
1587 "Enable logging JS console messages in system logs, please note that they "
1588 "may contain PII.";
1589
Becca Hughes71e8ceb2020-03-31 22:23:401590const char kMediaHistoryName[] = "Enable Media History";
1591const char kMediaHistoryDescription[] =
1592 "Enables Media History which records data around media playbacks on "
1593 "websites.";
1594
spqchanb87755692018-04-05 00:46:091595const char kMediaRouterCastAllowAllIPsName[] =
1596 "Connect to Cast devices on all IP addresses";
1597const char kMediaRouterCastAllowAllIPsDescription[] =
1598 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:311599 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:091600
Tommy Steimel40355072021-04-13 00:12:471601const char kMediaSessionWebRTCName[] = "Enable WebRTC actions in Media Session";
1602const char kMediaSessionWebRTCDescription[] =
1603 "Adds new actions into Media Session for video conferencing.";
1604
manukh202a6dd2021-02-19 21:23:251605const char kMemoriesName[] = "Memories";
Moe Ahmadi3b617f82021-07-30 00:43:271606const char kMemoriesDescription[] = "Enables chrome://history/journeys.";
manukh202a6dd2021-02-19 21:23:251607
manukhd4270bc2021-02-19 21:17:281608const char kMemoriesDebugName[] = "Memories Debug";
1609const char kMemoriesDebugDescription[] =
Moe Ahmadi3b617f82021-07-30 00:43:271610 "Shows visit metadata in chrome://history to debug history clustering.";
manukhd4270bc2021-02-19 21:17:281611
Andrey Zaytsevad83cbc32020-09-30 15:43:181612const char kMetricsSettingsAndroidName[] = "Metrics Settings on Android";
1613const char kMetricsSettingsAndroidDescription[] =
1614 "Enables the new design of metrics settings.";
1615
Carlos IL0dc832832020-07-17 01:14:441616const char kMixedFormsDisableAutofillName[] =
1617 "Disable autofill for mixed forms";
1618const char kMixedFormsDisableAutofillDescription[] =
1619 "If enabled, autofill is not allowed for mixed forms (forms on HTTPS sites "
1620 "that submit over HTTP), and a warning bubble will be shown instead. "
1621 "Autofill for passwords is not affected by this setting.";
1622
1623const char kMixedFormsInterstitialName[] = "Mixed forms interstitial";
1624const char kMixedFormsInterstitialDescription[] =
1625 "When enabled, a full-page interstitial warning is shown when a mixed "
1626 "content form (a form on an HTTPS site that submits over HTTP) is "
1627 "submitted.";
1628
Tanmoy Mollik8036d7f2021-05-12 11:50:031629const char kWipeDataOnChildAccountSigninName[] =
1630 "Wipe Data On Child account signin";
1631const char kWipeDataOnChildAccountSigninDescription[] =
1632 "Wipe Data from previous account when signing in a child account";
1633
Tanmoy Mollika2f25a162021-04-01 12:19:461634const char kMobileIdentityConsistencyFREName[] =
1635 "Mobile identity consistency FRE";
1636const char kMobileIdentityConsistencyFREDescription[] =
1637 "Enables stronger identity consistency on mobile with different UIs for "
1638 "the First Run Experience.";
1639
Peter Beverloo01ca25e2021-01-12 15:23:591640const char kMobilePwaInstallUseBottomSheetName[] =
1641 "Mobile PWA Installation bottom sheet";
1642const char kMobilePwaInstallUseBottomSheetDescription[] =
1643 "Enables use of a rich bottom sheet when offering mobile PWA installation.";
1644
Brian Geffon12b581a2021-02-03 23:48:031645const char kMojoLinuxChannelSharedMemName[] =
1646 "Enable Mojo Shared Memory Channel";
1647const char kMojoLinuxChannelSharedMemDescription[] =
1648 "If enabled Mojo on Linux based platforms can use shared memory as an "
1649 "alternate channel for most messages.";
1650
Ella Ge1282f552019-06-24 20:06:031651const char kMouseSubframeNoImplicitCaptureName[] =
1652 "Disable mouse implicit capture for iframe";
1653const char kMouseSubframeNoImplicitCaptureDescription[] =
1654 "When enable, mouse down does not implicit capture for iframe.";
1655
Viktor Semeniuk3e74da92021-04-15 14:34:471656const char kMutingCompromisedCredentialsName[] =
1657 "Enables muting of compromised credentials";
1658const char kMutingCompromisedCredentialsDescription[] =
1659 "When enable, insecure credential muting state is respected.";
1660
Alisa Lin79251142021-06-15 20:22:121661const char kCanvas2DLayersName[] =
1662 "Enables canvas 2D methods BeginLayer and EndLayer";
1663const char kCanvas2DLayersDescription[] =
1664 "Enables the canvas 2D methods BeginLayer and EndLayer.";
1665
Aaron Krajeski229cffd2020-05-11 22:30:331666const char kNewCanvas2DAPIName[] = "Experimental canvas 2D API features";
1667const char kNewCanvas2DAPIDescription[] =
1668 "Enables in-progress features for the canvas 2D API. See "
1669 "https://github.com/fserb/canvas2d.";
1670
Andreea Costinas1e592142021-04-20 13:24:251671const char kSystemProxyForSystemServicesName[] =
1672 "Enable system-proxy for selected system services";
1673const char kSystemProxyForSystemServicesDescription[] =
1674 "Enabling this flag will allow Chrome OS system service which require "
1675 "network connectivity to use the system-proxy daemon for authentication to "
1676 "remote HTTP web proxies.";
1677
Nicolas Ouellet-Payeura77464c2020-10-14 15:19:491678const char kDestroyProfileOnBrowserCloseName[] =
1679 "Destroy Profile on browser close";
1680const char kDestroyProfileOnBrowserCloseDescription[] =
1681 "Release memory and other resources when a Profile's last browser window "
1682 "is closed, rather than when Chrome closes completely.";
1683
Brett Wilsonecb80982017-07-12 20:34:511684const char kNewUsbBackendName[] = "Enable new USB backend";
1685const char kNewUsbBackendDescription[] =
Reilly Grant314576eb2021-04-15 18:26:491686 "Enables the new experimental USB backend for macOS";
vabr0215a8e2017-03-28 12:47:341687
Ahmed Mehfooz8b2cec82021-09-01 20:32:281688const char kNotificationsRevampName[] = "Notifications Revamp";
1689const char kNotificationsRevampDescription[] =
1690 "Enable notification UI revamp and grouped web notifications.";
1691
Xing Liub9070262021-01-07 20:52:161692const char kNotificationSchedulerName[] = "Notification scheduler";
1693const char kNotificationSchedulerDescription[] =
1694 "Enable notification scheduler feature.";
1695
Xing Liu1919ec232019-07-22 20:38:041696const char kNotificationSchedulerDebugOptionName[] =
1697 "Notification scheduler debug options";
1698const char kNotificationSchedulerDebugOptionDescription[] =
1699 "Enable debugging mode to override certain behavior of notification "
1700 "scheduler system for easier manual testing.";
1701const char kNotificationSchedulerImmediateBackgroundTaskDescription[] =
1702 "Show scheduled notification right away.";
1703
Peter Beverlooc30c9ddf2021-02-24 19:56:031704const char kNotificationsSystemFlagName[] = "Enable system notifications.";
1705const char kNotificationsSystemFlagDescription[] =
1706 "Enable support for using the system notification toasts and notification "
Brett Wilsonecb80982017-07-12 20:34:511707 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:341708
Angela Yoeurng93be4b22021-06-08 16:26:321709const char kOmniboxActiveSearchEnginesName[] =
1710 "Active Search Engines section on settings page";
1711const char kOmniboxActiveSearchEnginesDescription[] =
1712 "Enables a 'Your Search Engines' section on "
1713 "chrome://settings/searchEngines.";
1714
Tomasz Wiszkowski8a0e0dc42020-02-19 00:06:371715const char kOmniboxAdaptiveSuggestionsCountName[] =
1716 "Adaptive Omnibox Suggestions count";
1717const char kOmniboxAdaptiveSuggestionsCountDescription[] =
1718 "Dynamically adjust number of presented Omnibox suggestions depending on "
1719 "available space. When enabled, this feature will increase (or decrease) "
1720 "amount of offered Omnibox suggestions to fill in the space between the "
1721 "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches "
1722 "flag to adjust the limit of offered suggestions. The number of shown "
1723 "suggestions will be no less than the platform default limit.";
1724
Brandon Wylie1299ff82020-01-23 02:13:371725const char kOmniboxAssistantVoiceSearchName[] =
1726 "Omnibox Assistant Voice Search";
1727const char kOmniboxAssistantVoiceSearchDescription[] =
1728 "When enabled, use Assistant for omnibox voice query recognition instead of"
1729 " Android's built-in voice recognition service. Only works on Android.";
1730
Tommy Li19e27ede2020-08-14 22:52:401731const char kOmniboxClobberTriggersContextualWebZeroSuggestName[] =
1732 "Omnibox Clobber Triggers Contextual Web ZeroSuggest";
1733const char kOmniboxClobberTriggersContextualWebZeroSuggestDescription[] =
Tommy Li354a0e42020-07-30 16:46:141734 "If enabled, when the user clears the whole omnibox text (i.e. via "
Tommy Li19e27ede2020-08-14 22:52:401735 "Backspace), Chrome will request ZeroSuggest suggestions for the OTHER "
1736 "page classification (contextual web).";
Tommy Li354a0e42020-07-30 16:46:141737
Tomasz Wiszkowski70fb35f2020-02-27 00:39:191738const char kOmniboxCompactSuggestionsName[] = "Omnibox: Compact suggestions";
1739const char kOmniboxCompactSuggestionsDescription[] =
1740 "Conserve the space for Omnibox Suggestions by slightly reducing their "
1741 "size.";
1742
Angela Yoeurng07a5adb2020-12-02 02:14:011743const char kOmniboxDisableCGIParamMatchingName[] =
1744 "Disable CGI Param Name Matching";
1745const char kOmniboxDisableCGIParamMatchingDescription[] =
1746 "Disables using matches in CGI parameter names while scoring suggestions.";
1747
Mustafa Emre Acercb21d5d2021-01-12 08:08:351748const char kOmniboxDefaultTypedNavigationsToHttpsName[] =
1749 "Omnibox - Use HTTPS as the default protocol for navigations";
1750const char kOmniboxDefaultTypedNavigationsToHttpsDescription[] =
1751 "Use HTTPS as the default protocol when the user types a URL without "
1752 "a protocol in the omnibox such as 'example.com'. Presently, such an entry "
1753 "navigates to http://example.com. When this feature is enabled, it will "
1754 "navigate to https://example.com if the HTTPS URL is available. If Chrome "
1755 "can't determine the availability of the HTTPS URL within the timeout, it "
1756 "will fall back to the HTTP URL.";
1757
manukh6941c4c2021-07-20 00:18:341758const char kOmniboxDocumentProviderAsoName[] = "Omnibox Document Provider ASO";
1759const char kOmniboxDocumentProviderAsoDescription[] =
1760 "If document suggestions are enabled, swaps the backend from cloudsearch "
1761 "to ASO (Apps Search Overlay) search.";
1762
Justin Donnellyf2703482019-10-24 21:42:151763const char kOmniboxExperimentalSuggestScoringName[] =
1764 "Omnibox Experimental Suggest Scoring";
1765const char kOmniboxExperimentalSuggestScoringDescription[] =
1766 "Enables an experimental scoring mode for suggestions when Google is the "
1767 "default search engine.";
1768
Angela Yoeurng715e56082021-05-06 03:13:321769const char kOmniboxKeywordSpaceTriggeringSettingName[] =
1770 "Omnibox Keyword Space Triggering Setting";
1771const char kOmniboxKeywordSpaceTriggeringSettingDescription[] =
1772 "Adds a setting to the search engines setting page to control whether "
1773 "spacebar activates keyword mode.";
1774
Filip Gorskib116dee2020-08-20 14:12:101775const char kOmniboxMostVisitedTilesName[] = "Omnibox Most Visited Tiles";
1776const char kOmniboxMostVisitedTilesDescription[] =
1777 "Display a list of frquently visited pages from history as a single row "
1778 "with a carousel instead of one URL per line.";
1779
manukh6941c4c2021-07-20 00:18:341780const char kOmniboxPreserveLongerShortcutsTextName[] =
1781 "Omnibox Preserve Longer Shortcuts Text";
1782const char kOmniboxPreserveLongerShortcutsTextDescription[] =
1783 "When disabled, updating shortcuts truncates its text to the user input. "
1784 "When enabled, 3 additional characters are preserved.";
1785
Moe Ahmadi064dbcd2020-08-20 01:53:311786const char kOmniboxTrendingZeroPrefixSuggestionsOnNTPName[] =
1787 "Omnibox Trending Zero Prefix Suggestions";
1788const char kOmniboxTrendingZeroPrefixSuggestionsOnNTPDescription[] =
1789 "Enables trending zero prefix suggestions for signed-in users with no or "
1790 "insufficient search history.";
1791
manuk695f9d4532020-03-18 19:22:081792const char kOmniboxRichAutocompletionName[] = "Omnibox Rich Autocompletion";
1793const char kOmniboxRichAutocompletionDescription[] =
1794 "Allow autocompletion for titles and non-prefixes. I.e. suggestions whose "
1795 "titles or URLs contain the user input as a continuous chunk, but not "
1796 "necessarily a prefix, can be the default suggestion. Typically, only "
1797 "suggestions whose URLs are prefixed by the user input can be. The "
1798 "potential variations toggle 4 params: 1) 'Title UI' displays titles, 2) "
1799 "'2-Line UI' includes titles (and URLs when autocompleting titles) on a "
1800 "2nd line, 3) 'Title AC' autocompletes titles, and 4) 'Non-Prefix AC' "
1801 "autocompletes non-prefixes.";
manuk55bdd972020-07-17 01:06:221802const char kOmniboxRichAutocompletionMinCharName[] =
1803 "Omnibox Rich Autocompletion Min Characters";
1804const char kOmniboxRichAutocompletionMinCharDescription[] =
1805 "Specifies min input character length to trigger rich autocompletion.";
manuk2a837412020-07-30 20:57:561806const char kOmniboxRichAutocompletionShowAdditionalTextName[] =
1807 "Omnibox Rich Autocompletion Show Additional Text";
1808const char kOmniboxRichAutocompletionShowAdditionalTextDescription[] =
1809 "Show the suggestion title or URL additional text when the input matches "
1810 "the URL or title respectively. Defaults to true.";
manukh848a0252020-09-30 19:14:141811const char kOmniboxRichAutocompletionSplitName[] =
1812 "Omnibox Rich Autocompletion Split";
1813const char kOmniboxRichAutocompletionSplitDescription[] =
1814 "Allow splitting the user input to intermix with autocompletions; e.g., "
1815 "the user input 'x z' could be autocompleted as 'x [y ]z'.";
manukheea2de32021-01-22 02:36:231816const char kOmniboxRichAutocompletionPreferUrlsOverPrefixesName[] =
1817 "Omnibox Rich Autocompletion Prefer URLs over prefixes";
1818const char kOmniboxRichAutocompletionPreferUrlsOverPrefixesDescription[] =
1819 "When the input matches both a suggestion's title's prefix and its URL's "
1820 "non-prefix, autocomplete the URL.";
manukh6b9c59c2020-08-28 19:29:251821const char kOmniboxRichAutocompletionPromisingName[] =
1822 "Omnibox Rich Autocompletion Promising Combinations";
1823const char kOmniboxRichAutocompletionPromisingDescription[] =
1824 "Allow autocompletion for titles and non-prefixes; see Omnibox Rich "
1825 "Autocompletion.";
manuk695f9d4532020-03-18 19:22:081826
Rachel Wonge497f032020-09-21 04:26:411827const char kOmniboxRichEntitiesInLauncherName[] =
1828 "Omnibox rich entities in the launcher";
1829const char kOmniboxRichEntitiesInLauncherDescription[] =
1830 "Enable rich entity formatting for Omnibox results in the launcher.";
1831
Tomasz Wiszkowski8d447752021-07-20 02:58:261832const char kOmniboxOnFocusSuggestionsContextualWebAllowSRPName[] =
1833 "Allow Omnibox contextual web on-focus suggestions on the SRP";
1834const char kOmniboxOnFocusSuggestionsContextualWebAllowSRPDescription[] =
1835 "Enables on-focus suggestions on the Search Results page. "
1836 "Requires on-focus suggestions for the contextual web to be enabled. "
1837 "Will only work if user is signed-in and syncing.";
1838
Tommy Li55784022020-04-28 20:58:181839const char kOmniboxOnFocusSuggestionsContextualWebName[] =
1840 "Omnibox on-focus suggestions for the contextual Web";
1841const char kOmniboxOnFocusSuggestionsContextualWebDescription[] =
1842 "Enables on-focus suggestions on the Open Web, that are contextual to the "
1843 "current URL. Will only work if user is signed-in and syncing, or is "
1844 "otherwise eligible to send the current page URL to the suggest server.";
1845
Benoit Lizeab08362c2017-07-19 14:50:541846const char kOmniboxSpareRendererName[] =
1847 "Start spare renderer on omnibox focus";
1848const char kOmniboxSpareRendererDescription[] =
1849 "When the omnibox is focused, start an empty spare renderer. This can "
1850 "speed up the load of the navigation from the omnibox.";
1851
Gang Wua4a85312020-06-20 05:14:131852const char kOmniboxTabSwitchSuggestionsName[] =
1853 "Omnibox switch to tab suggestions";
1854const char kOmniboxTabSwitchSuggestionsDescription[] =
1855 "Enable URL suggestions to optionally take the user to a tab where a "
1856 "website is already opened.";
1857
manukfdd97402020-07-22 18:19:171858const char kOmniboxMaxZeroSuggestMatchesName[] =
1859 "Omnibox Max Zero Suggest Matches";
1860const char kOmniboxMaxZeroSuggestMatchesDescription[] =
1861 "Changes the maximum number of autocomplete matches displayed when zero "
1862 "suggest is active (i.e. displaying suggestions without input).";
1863
Brett Wilsonecb80982017-07-12 20:34:511864const char kOmniboxUIMaxAutocompleteMatchesName[] =
1865 "Omnibox UI Max Autocomplete Matches";
Brett Wilsonecb80982017-07-12 20:34:511866const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1867 "Changes the maximum number of autocomplete matches displayed in the "
1868 "Omnibox UI.";
1869
Mustafa Emre Acer0626cbb2021-07-14 20:35:041870const char kOmniboxUpdatedConnectionSecurityIndicatorsName[] =
1871 "Omnibox Updated connection security indicators";
1872const char kOmniboxUpdatedConnectionSecurityIndicatorsDescription[] =
1873 "Use new connection security indicators for https pages in the omnibox.";
1874
Kevin Baileycd6889922019-05-30 17:22:551875const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches";
1876const char kOmniboxMaxURLMatchesDescription[] =
1877 "The maximum number of URL matches to show, unless there are no "
1878 "replacements.";
1879
manuk4e2979d2020-07-08 23:29:281880const char kOmniboxDynamicMaxAutocompleteName[] =
1881 "Omnibox Dynamic Max Autocomplete";
1882const char kOmniboxDynamicMaxAutocompleteDescription[] =
1883 "Configures the maximum number of autocomplete matches displayed in the "
1884 "Omnibox UI dynamically based on the number of URL matches.";
1885
Ce Chenc8d803a2020-04-27 09:31:331886const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] =
1887 "Omnibox on device head suggestions (incognito only)";
1888const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] =
Ce Chen20af01c2019-07-02 19:16:361889 "Google head non personalized search suggestions provided by a compact on "
Ce Chenc8d803a2020-04-27 09:31:331890 "device model for incognito";
1891
1892const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoName[] =
1893 "Omnibox on device head suggestions (non-incognito only)";
1894const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoDescription[] =
1895 "Google head non personalized search suggestions provided by a compact on "
1896 "device model for non-incognito";
Ce Chen20af01c2019-07-02 19:16:361897
Tommy Li52c20852020-10-09 23:40:091898const char kOmniboxWebUIOmniboxPopupName[] = "WebUI Omnibox Popup";
1899const char kOmniboxWebUIOmniboxPopupDescription[] =
1900 "If enabled, uses WebUI to render the omnibox suggestions popup, similar "
1901 "to how the NTP \"realbox\" is implemented.";
1902
Ryan Sturm98e6aec2020-11-30 20:34:381903const char kEnableSearchPrefetchName[] = "Search Prefetch";
1904const char kEnableSearchPrefetchDescription[] =
1905 "Allow the default search engine to specify prefetch behavior for "
1906 "suggestions to search results pages.";
1907
Justin Novosad8faf6952021-08-20 22:36:491908const char kOopRasterizationName[] = "Out-of-process rasterization";
Adrienne Walkerc87477e2018-06-06 22:28:211909const char kOopRasterizationDescription[] =
1910 "Perform Ganesh raster in the GPU Process instead of the renderer. "
1911 "Must also enable GPU rasterization";
1912
Khushal Sagar5d9d4f22020-05-28 15:42:131913const char kOopRasterizationDDLName[] =
1914 "Out of process rasterization using DDLs";
1915const char kOopRasterizationDDLDescription[] =
1916 "Use Skia Deferred Display Lists when performing rasterization in the GPU "
1917 "process "
1918 "Must also enable OOP rasterization";
1919
mcrousecece5812021-03-03 22:31:571920const char kOptimizationGuideModelDownloadingName[] =
1921 "Allow optimization guide model downloads";
1922const char kOptimizationGuideModelDownloadingDescription[] =
1923 "Enables the optimization guide to download prediction models.";
1924
Robert Ogden52285a52021-07-01 19:26:201925const char kOptimizationGuideModelPushNotificationName[] =
1926 "Enable optimization guide push notifications";
1927const char kOptimizationGuideModelPushNotificationDescription[] =
1928 "Enables the optimization guide to receive push notifications.";
1929
Eric Karl34c48382019-10-15 02:04:171930const char kEnableDeJellyName[] = "Experimental de-jelly effect";
1931const char kEnableDeJellyDescription[] =
1932 "Enables an experimental effect which attempts to mitigate "
1933 "\"jelly-scrolling\". This is an experimental implementation with known "
1934 "bugs, visual artifacts, and performance cost. This implementation may be "
1935 "removed at any time.";
1936
Ethan Mooney01e6f192021-06-10 13:14:071937const char kOsSettingsAppNotificationsPageName[] =
1938 "CrOS Settings App Notifications Page";
1939const char kOsSettingsAppNotificationsPageDescription[] =
1940 "If enabled, a new App Notifications subpage will appear in the "
1941 "CrOS Settings Apps section.";
1942
Wez600f06c2021-03-05 20:32:301943const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1944const char kOverlayScrollbarsDescription[] =
1945 "Enable the experimental overlay scrollbars implementation. You must also "
1946 "enable threaded compositing to have the scrollbars animate.";
1947
Daniele Castagna74ddb9c2018-06-21 22:59:021948const char kOverlayStrategiesName[] = "Select HW overlay strategies";
1949const char kOverlayStrategiesDescription[] =
1950 "Select strategies used to promote quads to HW overlays.";
1951const char kOverlayStrategiesDefault[] = "Default";
1952const char kOverlayStrategiesNone[] = "None";
1953const char kOverlayStrategiesUnoccludedFullscreen[] =
1954 "Unoccluded fullscreen buffers (single-fullscreen)";
1955const char kOverlayStrategiesUnoccluded[] =
1956 "Unoccluded buffers (single-fullscreen,single-on-top)";
1957const char kOverlayStrategiesOccludedAndUnoccluded[] =
1958 "Occluded and unoccluded buffers "
1959 "(single-fullscreen,single-on-top,underlay)";
1960
Scott Littleb26dc862020-09-30 18:08:111961const char kOverrideLanguagePrefsForHrefTranslateName[] =
1962 "Override user-blocklisted languages for hrefTranslate";
1963const char kOverrideLanguagePrefsForHrefTranslateDescription[] =
1964 "When using hrefTranslate, ignore the user's blocklist of languages that "
1965 "shouldn't be translated.";
1966const char kOverrideSitePrefsForHrefTranslateName[] =
1967 "Override user-blocklisted sites for hrefTranslate";
1968const char kOverrideSitePrefsForHrefTranslateDescription[] =
1969 "When using hrefTranslate, ignore the user's blocklist of websites that "
1970 "shouldn't be translated.";
Scott Littleab2a3a52021-07-08 19:17:111971const char kOverrideUnsupportedPageLanguageForHrefTranslateName[] =
1972 "Force translation on pages with unsupported languages for hrefTranslate";
1973const char kOverrideUnsupportedPageLanguageForHrefTranslateDescription[] =
1974 "When using hrefTranslate, force translation on pages where the page's "
1975 "language cannot be determined or is unsupported.";
1976const char kOverrideSimilarLanguagesForHrefTranslateName[] =
1977 "Force translation on pages with a similar page language for hrefTranslate";
1978const char kOverrideSimilarLanguagesForHrefTranslateDescription[] =
1979 "When using hrefTranslate, force translation on pages where the page's "
1980 "language is similar to the target language specified via hrefTranslate.";
Scott Littleb26dc862020-09-30 18:08:111981
Jinsuk Kim2e139e432021-02-26 03:46:561982const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1983const char kOverscrollHistoryNavigationDescription[] =
1984 "History navigation in response to horizontal overscroll.";
1985
minch1ad858c2021-06-24 20:30:011986const char kOverviewButtonName[] = "Overview button at the status area";
1987const char kOverviewButtonDescription[] =
1988 "If enabled, always show the overview button at the status area.";
1989
Olesia Marukhno0fc754b2021-09-17 15:05:061990const char kPageInfoAboutThisSiteName[] =
1991 "'About this site' section in page info";
1992const char kPageInfoAboutThisSiteDescription[] =
1993 "Enable the 'About this site' section in the page info.";
1994
Olesia Marukhno4d09c9072021-04-08 09:43:231995const char kPageInfoV2DesktopName[] = "Page info version two desktop";
1996const char kPageInfoV2DesktopDescription[] =
1997 "Enable the second version of the page info menu on desktop.";
1998
Xing Liu5400a002017-09-15 21:48:291999const char kParallelDownloadingName[] = "Parallel downloading";
2000const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:062001 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:292002
Maxim Kolosovskiy411dc8742020-07-25 11:50:142003const char kPasswordChangeInSettingsName[] =
2004 "Rework password change flow from settings";
2005const char kPasswordChangeInSettingsDescription[] =
2006 "Change password when bulk leak check detected an issue.";
2007
Milica Selakovice8bdde612020-02-19 11:48:362008const char kPasswordChangeName[] = "Rework password change flow";
2009const char kPasswordChangeDescription[] =
2010 "Change password when password leak is detected.";
2011
Vaclav Brozekd8a3f542017-11-16 14:21:132012const char kPasswordImportName[] = "Password import";
2013const char kPasswordImportDescription[] =
2014 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:512015
Marc Treib05c1ba52021-08-12 15:20:102016const char kPasswordsAccountStorageRevisedOptInFlowName[] =
2017 "Revised opt-in flow for account-scoped passwore storage";
2018const char kPasswordsAccountStorageRevisedOptInFlowDescription[] =
2019 "Enables the revised opt-in flow for the account-scoped passwords storage "
2020 "during first-time save.";
2021
Maxim Kolosovskiybf5b2262020-09-25 15:47:332022const char kPasswordScriptsFetchingName[] = "Fetch password scripts";
2023const char kPasswordScriptsFetchingDescription[] =
2024 "Fetches scripts for password change flows.";
2025
Hui Yingst13aa6c22021-07-09 20:58:532026const char kPdfUnseasonedName[] = "Pepper-free PDF viewer";
2027const char kPdfUnseasonedDescription[] = "Enables the Pepper-free PDF viewer.";
2028
Carlos ILc5c2e2702020-12-15 21:19:502029const char kPdfXfaFormsName[] = "PDF XFA support";
2030const char kPdfXfaFormsDescription[] =
2031 "Enables support for XFA forms in PDFs. "
2032 "Has no effect if Chrome was not built with XFA support.";
2033
Aran Gilman5e9672bed2019-08-02 19:07:492034const char kForceWebContentsDarkModeName[] = "Force Dark Mode for Web Contents";
2035const char kForceWebContentsDarkModeDescription[] =
2036 "Automatically render all web contents using a dark theme.";
2037
Alison Maherc07a3fb2019-10-07 21:25:032038const char kForcedColorsName[] = "Forced Colors";
2039const char kForcedColorsDescription[] =
2040 "Enables forced colors mode for web content.";
2041
Matt Amertecf4bf32019-09-25 19:50:392042const char kPercentBasedScrollingName[] = "Percent-based Scrolling";
2043const char kPercentBasedScrollingDescription[] =
2044 "If enabled, mousewheel and keyboard scrolls will scroll by a percentage "
2045 "of the scroller size.";
2046
Olesia Marukhno16fdd647a2020-05-04 09:34:002047const char kPermissionChipName[] = "Permissions Chip Experiment";
2048const char kPermissionChipDescription[] =
2049 "Enables an experimental permission prompt that uses a chip in the location"
2050 " bar.";
2051
Bret Sepulveda4aec1d5f2021-03-18 15:24:402052const char kPermissionChipGestureSensitiveName[] =
2053 "Gesture-sensitive Permissions Chip";
2054const char kPermissionChipGestureSensitiveDescription[] =
2055 "If the Permissions Chip Experiment is enabled, controls whether or not "
2056 "the chip should be more prominent when the request is associated with a "
2057 "gesture.";
2058
2059const char kPermissionChipRequestTypeSensitiveName[] =
2060 "Request-type-sensitive Permissions Chip";
2061const char kPermissionChipRequestTypeSensitiveDescription[] =
2062 "If the Permissions Chip Experiment is enabled, controls whether or not "
2063 "the chip should be more or less prominent depending on the request type.";
2064
Andy Paicu204a1bb82020-11-12 21:50:142065const char kPermissionPredictionsName[] = "Permission Predictions";
2066const char kPermissionPredictionsDescription[] =
2067 "Use the Permission Predictions Service to surface permission requests "
2068 "using a quieter UI when the likelihood of the user granting the "
2069 "permission is predicted to be low. Requires "
2070 "chrome://flags/#quiet-notification-prompts and `Safe Browsing Enhanced "
2071 "Protection` to be enabled.";
2072
Illia Klimovdf283b02021-07-07 17:33:252073const char kPermissionQuietChipName[] = "Quiet Permission Chip Experiment";
2074const char kPermissionQuietChipDescription[] =
2075 "Enables an experimental permission prompt that uses the quiet chip "
2076 "instead of the right-hand side address bar icon for quiet permission "
2077 "prompts. Requires chrome://flags/#quiet-notification-prompts to be "
2078 "enabled.";
2079
cfredricdfcd1932021-08-18 17:56:522080const char kPersistentQuotaIsTemporaryQuotaName[] =
2081 "window.PERSISTENT is temporary quota.";
2082const char kPersistentQuotaIsTemporaryQuotaDescription[] =
2083 "Causes the window.PERSISTENT quota type to have the same semantics as "
2084 "window.TEMPORARY.";
2085
Francois Beaufort3890c312021-05-19 19:03:292086const char kPlaybackSpeedButtonName[] = "Playback Speed Button";
2087const char kPlaybackSpeedButtonDescription[] =
2088 "Enable the playback speed button on the media controls.";
2089
Ella Geb58eed12019-09-05 23:37:012090const char kPointerLockOptionsName[] = "Enables pointer lock options";
2091const char kPointerLockOptionsDescription[] =
2092 "Enables pointer lock unadjustedMovement. When unadjustedMovement is set "
2093 "to true, pointer movements wil not be affected by the underlying platform "
2094 "modications such as mouse accelaration.";
2095
Brandon Wylie955a16942021-09-24 22:43:102096const char kBookmarksImprovedSaveFlowName[] = "Improved bookmarks save flow";
2097const char kBookmarksImprovedSaveFlowDescription[] =
2098 "Enabled an improved save flow for bookmarks.";
2099
2100const char kBookmarksRefreshName[] = "Bookmarks visual refresh";
Brandon Wylie9fe37582021-08-24 01:22:532101const char kBookmarksRefreshDescription[] =
Brandon Wylie955a16942021-09-24 22:43:102102 "Enalbed a visual refresh for bookmarks.";
Brandon Wylie9fe37582021-08-24 01:22:532103
Hiroki Nakagawa5bc48482020-11-19 08:23:552104const char kPrerender2Name[] = "Prerender2";
2105const char kPrerender2Description[] =
Lingqi Chid869d3e2021-06-08 00:00:012106 "Enables the new prerenderer implementation for "
2107 "<script type=speculationrules> that specifies prerender candidates.";
Hiroki Nakagawa5bc48482020-11-19 08:23:552108
Tymofii Chudakov58d51bcf2020-10-05 09:20:212109const char kPrivacyAdvisorName[] = "Privacy Advisor";
2110const char kPrivacyAdvisorDescription[] =
2111 "Provides contextual entry points for adjusting privacy settings";
2112
Rainhard Findling62b818f2021-06-08 09:38:092113const char kPrivacyReviewName[] = "Privacy Review";
2114const char kPrivacyReviewDescription[] =
2115 "Shows a new subpage in Settings that helps the user to review various "
2116 "privacy settings.";
2117
Daniel Rubery3b09cd22021-07-26 22:00:392118const char kSafeBrowsingPerProfileNetworkContextsName[] =
2119 "Per-profile Safe Browsing network contexts";
2120const char kSafeBrowsingPerProfileNetworkContextsDescription[] =
2121 "Keys the Safe Browsing network context by the profile initiating the "
2122 "request";
2123
Dana Friedac7b8ff2019-09-18 21:27:572124const char kProminentDarkModeActiveTabTitleName[] =
2125 "Prominent Dark Mode Active Tab Titles";
2126const char kProminentDarkModeActiveTabTitleDescription[] =
2127 "Makes the active tab title in dark mode bolder so the active tab is "
2128 "easier "
2129 "to identify.";
2130
Mohsen Izadi93faac12017-07-29 04:45:152131const char kPullToRefreshName[] = "Pull-to-refresh gesture";
2132const char kPullToRefreshDescription[] =
2133 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:012134const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:152135
Finnur Thorarinsson818e6c112021-05-19 13:06:462136const char kPwaUpdateDialogForNameAndIconName[] =
2137 "Enable PWA install update dialog for name/icon changes";
2138const char kPwaUpdateDialogForNameAndIconDescription[] =
2139 "Enable a confirmation dialog that shows up when a PWA changes its "
2140 "icon/name";
2141
Brett Wilsonecb80982017-07-12 20:34:512142const char kQuicName[] = "Experimental QUIC protocol";
2143const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
2144
Max Tauroe049b272021-06-01 18:45:342145const char kQuickActionSearchWidgetAndroidName[] = "Quick Action Search Widget";
2146const char kQuickActionSearchWidgetAndroidDescription[] =
2147 "When enabled, the quick action search widget will be available to add to "
2148 "the homescreen.";
2149
Max Tauro7972e5a32021-07-20 23:55:542150const char kQuickActionSearchWidgetAndroidDinoVariantName[] =
2151 "Quick Action Search Widget - Dino Variant";
2152const char kQuickActionSearchWidgetAndroidDinoVariantDescription[] =
2153 "When enabled, the Dino widget will be available to add to the homescreen";
2154
Kamila2724bd702019-09-10 16:08:582155const char kQuietNotificationPromptsName[] =
2156 "Quieter notification permission prompts";
2157const char kQuietNotificationPromptsDescription[] =
2158 "Enables quieter permission prompts for notification permission requests. "
2159 "When a site wishes to show notifications, the usual modal dialog is "
2160 "replaced with a quieter version.";
2161
Yulun Wuc7439a652021-06-18 17:24:182162const char kSettingsAppNotificationSettingsName[] =
2163 "Split notification permission settings";
2164const char kSettingsAppNotificationSettingsDescription[] =
2165 "Remove per-app notification permissions settings from the quick settings "
2166 "menu. Notification permission settings will be split between the "
2167 "lacros-chrome browser's notification permission page "
2168 "and the ChromeOS settings app.";
2169
Illia Klimov5ba0f172020-09-30 21:23:232170const char kAbusiveNotificationPermissionRevocationName[] =
2171 "Abusive notification permission revocation";
2172const char kAbusiveNotificationPermissionRevocationDescription[] =
2173 "Enables notification permission revocation for abusive origins. "
2174 "Prior to dispatching a push message to the service worker, the origin is "
2175 "verified through Safe Browsing. Origins with abusive notification "
2176 "permission requests or content will have the notification permission "
2177 "revoked.";
2178
Caroline Risingd572da02021-03-30 20:41:082179const char kReadLaterNewBadgePromoName[] = "Reading list 'New' badge promo";
2180const char kReadLaterNewBadgePromoDescription[] =
2181 "Causes a 'New' badge to appear on the entry point for adding to the "
2182 "reading list in the tab context menu.";
2183
Alan Cutter20fd08f2020-12-01 13:39:162184const char kRecordWebAppDebugInfoName[] = "Record web app debug info";
2185const char kRecordWebAppDebugInfoDescription[] =
2186 "Enables recording additional web app related debugging data to be "
Alan Cutter919b4592021-07-08 05:50:442187 "displayed in: chrome://web-app-internals";
Alan Cutter20fd08f2020-12-01 13:39:162188
Mike Taylorcf2393772021-05-25 16:35:412189const char kReduceUserAgentName[] = "Reduce User-Agent request header";
2190const char kReduceUserAgentDescription[] =
2191 "Reduce (formerly, \"freeze\") the amount of information available in "
2192 "the User-Agent request header. "
2193 "See https://www.chromium.org/updates/ua-reduction for more info.";
2194
James Hollyer6e5f5c32020-07-27 21:18:102195const char kRestrictGamepadAccessName[] = "Restrict gamepad access";
2196const char kRestrictGamepadAccessDescription[] =
Charlie Hudb284b3f2021-03-19 19:52:222197 "Enables Permissions Policy and Secure Context restrictions on the Gamepad "
2198 "API";
James Hollyer6e5f5c32020-07-27 21:18:102199
Dominic Farolino0e1f9a1a2020-11-25 23:25:002200const char kMBIModeName[] = "MBI Scheduling Mode";
2201const char kMBIModeDescription[] =
2202 "Enables independent agent cluster scheduling, via the "
2203 "AgentSchedulingGroup infrastructure.";
2204
OlivierLi95a0f6a52020-06-18 15:40:082205const char kIntensiveWakeUpThrottlingName[] =
2206 "Throttle Javascript timers in background.";
2207const char kIntensiveWakeUpThrottlingDescription[] =
Francois Doray6cff4e02020-07-01 01:12:582208 "When enabled, wake ups from DOM Timers are limited to 1 per minute in a "
2209 "page that has been hidden for 5 minutes. For additional details, see "
2210 "https://www.chromestatus.com/feature/4718288976216064.";
OlivierLi95a0f6a52020-06-18 15:40:082211
Joe DeBlasiofb277092019-07-03 23:46:362212const char kSafetyTipName[] =
2213 "Show Safety Tip UI when visiting low-reputation websites";
2214const char kSafetyTipDescription[] =
2215 "If enabled, a Safety Tip UI may be displayed when visiting or interacting "
2216 "with a site Chrome believes may be suspicious.";
2217
cfredricaba4a462021-06-22 18:29:132218const char kSamePartyCookiesConsideredFirstPartyName[] =
2219 "Consider SameParty cookies to be first-party.";
2220const char kSamePartyCookiesConsideredFirstPartyDescription[] =
2221 "If enabled, SameParty cookies will not be blocked even if third-party "
2222 "cookies are blocked.";
2223
Dylan Cutlerc2988fe2021-08-05 14:24:372224const char kPartitionedCookiesName[] = "Partitioned cookies";
2225const char kPartitionedCookiesDescription[] =
2226 "Controls if the Partitioned cookie attribute is enabled.";
2227
Elaine Chien2b731c82021-01-28 17:50:562228const char kScrollableTabStripFlagId[] = "scrollable-tabstrip";
Taylor Bergquist6e2cbe32021-02-03 21:46:142229const char kScrollableTabStripName[] = "Tab Scrolling";
Charlene Yan0ccd7f52019-04-12 23:20:592230const char kScrollableTabStripDescription[] =
Taylor Bergquist6e2cbe32021-02-03 21:46:142231 "Enables tab strip to scroll left and right when full.";
Charlene Yan0ccd7f52019-04-12 23:20:592232
Taylor Bergquist1e4bc9bf2021-04-27 21:51:082233const char kScrollableTabStripButtonsName[] = "Tab Scrolling Buttons";
2234const char kScrollableTabStripButtonsDescription[] =
2235 "When the scrollable-tabstrip flag is enabled, this enables buttons to "
2236 "permanently appear on the tabstrip.";
2237
David Bokanebe23cc52020-05-11 18:20:462238const char kScrollUnificationName[] = "Scroll Unification";
2239const char kScrollUnificationDescription[] =
2240 "Refactoring project that eliminates scroll handling code from Blink. "
2241 "Does not affect behavior or performance.";
2242
Andrey Zaytsev0c74fc42021-03-17 10:48:012243const char kSearchHistoryLinkName[] = "Search History Link";
2244const char kSearchHistoryLinkDescription[] =
2245 "Changes the Clear Browsing Data UI to display a link to clear search "
2246 "history on My Google Activity.";
2247
Rouslan Solomakhine73fa7852020-08-28 10:33:462248const char kSecurePaymentConfirmationDebugName[] =
2249 "Secure Payment Confirmation Debug Mode";
2250const char kSecurePaymentConfirmationDebugDescription[] =
2251 "This flag removes the restriction that PaymentCredential in WebAuthn and "
2252 "secure payment confirmation in PaymentRequest API must use user verifying "
2253 "platform authenticators.";
2254
Victor Hugo Vianna Silva0399402f2021-09-07 21:41:252255const char kSendTabToSelfWhenSignedInName[] = "Send-tab-to-self when signed in";
Victor Hugo Vianna Silvabc7f5dd62021-01-07 15:18:502256const char kSendTabToSelfWhenSignedInDescription[] =
2257 "Makes the tab sharing feature also available for users who have \"only\" "
2258 "signed-in to their Google Account (as opposed to having enabled Sync).";
2259
Victor Hugo Vianna Silva0399402f2021-09-07 21:41:252260const char kSendTabToSelfManageDevicesLinkName[] =
2261 "Send-tab-to-self manage devices link";
2262const char kSendTabToSelfManageDevicesLinkDescription[] =
2263 "Shows a link to manage the user's devices below the device list when "
2264 "sharing";
2265
Kyle Milka9b53215c32021-05-10 18:40:342266extern const char kSendTabToSelfV2Name[] = "Send tab to self 2.0";
2267extern const char kSendTabToSelfV2Description[] =
2268 "Enables new received tab "
2269 "UI shown next to the profile icon instead of using system notifications.";
2270
Matt Jones5f151b72021-08-16 15:30:152271const char kShoppingListName[] = "Shopping List";
2272const char kShoppingListDescription[] = "Enable shopping list in bookmarks.";
2273
Peter Boströmb136d872021-06-16 18:56:072274const char kSidePanelFlagId[] = "side-panel";
Matt Jones5f151b72021-08-16 15:30:152275
Peter Boström259e1472020-10-22 22:26:242276const char kSidePanelName[] = "Side panel";
Peter Boströmb136d872021-06-16 18:56:072277const char kSidePanelDescription[] =
2278 "Enables a browser-level side panel for a useful and persistent way to "
2279 "access your Reading List and Bookmarks.";
Peter Boström259e1472020-10-22 22:26:242280
John Lee0d7ba332021-07-29 18:41:572281const char kSidePanelDragAndDropFlagId[] = "side-panel-drag-and-drop";
2282const char kSidePanelDragAndDropName[] = "Side panel drag and drop";
2283const char kSidePanelDragAndDropDescription[] =
2284 "Enables drag and drop of bookmarks within the side panel.";
2285
Yasmin69a132f2019-08-07 15:30:362286const char kSharedClipboardUIName[] =
2287 "Enable shared clipboard feature signals to be handled";
2288const char kSharedClipboardUIDescription[] =
2289 "Enables shared clipboard feature signals to be handled by showing "
2290 "a list of user's available devices to share the clipboard.";
2291
Kyle Milkacf3aa6e12021-07-28 00:34:022292const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots";
2293const char kSharingDesktopScreenshotsDescription[] =
2294 "Enables taking"
2295 " screenshots from the desktop sharing hub.";
2296
Kristi Parkaedd01f2021-04-02 23:40:072297const char kSharingHubDesktopAppMenuName[] = "Desktop Sharing Hub in App Menu";
2298const char kSharingHubDesktopAppMenuDescription[] =
2299 "Enables the Chrome Sharing Hub in the 3-dot menu for desktop.";
2300
2301const char kSharingHubDesktopOmniboxName[] = "Desktop Sharing Hub in Omnibox";
2302const char kSharingHubDesktopOmniboxDescription[] =
2303 "Enables the Chrome Sharing Hub in the omnibox for desktop.";
2304
Alex Chaud7886842020-05-13 15:37:052305const char kSharingPreferVapidName[] =
2306 "Prefer sending Sharing message via VAPID";
2307const char kSharingPreferVapidDescription[] =
2308 "Prefer sending Sharing message via FCM WebPush authenticated using VAPID.";
2309
Alex Chauf15a7192020-01-30 17:37:512310const char kSharingSendViaSyncName[] =
2311 "Enable sending Sharing message via Sync";
2312const char kSharingSendViaSyncDescription[] =
2313 "Enables sending Sharing message via commiting to Chrome Sync's "
2314 "SHARING_MESSAGE data type";
2315
Toni Barzicf630740ec2021-06-30 15:53:212316const char kShelfDragToPinName[] = "Pin apps in shelf using drag";
2317
2318const char kShelfDragToPinDescription[] =
2319 "Enables pinning unpinned items in shelf by dragging them to the part of "
2320 "the shelf that contains pinned apps.";
2321
Manu Cornetd7ef7c52018-05-01 22:08:232322const char kShelfHoverPreviewsName[] =
2323 "Show previews of running apps when hovering over the shelf.";
2324const char kShelfHoverPreviewsDescription[] =
2325 "Shows previews of the open windows for a given running app when hovering "
2326 "over the shelf.";
2327
Brett Wilsonecb80982017-07-12 20:34:512328const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
2329const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:382330 "Annotates web forms with Autofill signatures as HTML attributes. Also "
2331 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:512332
2333const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
2334const char kShowAutofillTypePredictionsDescription[] =
2335 "Annotates web forms with Autofill field type predictions as placeholder "
2336 "text.";
2337
Lei Zhang1a6fd01b2021-03-24 17:03:482338const char kShowPerformanceMetricsHudName[] = "Show performance metrics in HUD";
2339const char kShowPerformanceMetricsHudDescription[] =
Weiliang Chene39e7652020-11-18 05:30:152340 "Display the performance metrics of current page in a heads up display on "
2341 "the page.";
2342
pwarren878671672019-12-13 19:18:162343const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
2344const char kShowOverdrawFeedbackDescription[] =
2345 "Visualize overdraw by color-coding elements based on if they have other "
2346 "elements drawn underneath.";
2347
kylechare8835ca92020-03-16 15:34:582348const char kSkiaRendererName[] = "Skia API for compositing";
Jonathan Backer93610a82019-03-27 14:02:382349const char kSkiaRendererDescription[] =
2350 "If enabled, the display compositor will use Skia as the graphics API "
kylechare8835ca92020-03-16 15:34:582351 "instead of OpenGL ES.";
Jonathan Backer93610a82019-03-27 14:02:382352
Lukasz Anforowiczd2e16e62019-03-28 19:06:592353const char kIsolateOriginsName[] = "Isolate additional origins";
2354const char kIsolateOriginsDescription[] =
2355 "Requires dedicated processes for an additional set of origins, "
2356 "specified as a comma-separated list.";
2357
Mike West6b2bd752020-12-02 06:36:592358const char kIsolationByDefaultName[] =
2359 "Change web-facing behaviors that prevent origin-level isolation";
2360const char kIsolationByDefaultDescription[] =
2361 "Change several web APIs that make it difficult to isolate origins into "
2362 "distinct processes. While these changes will ideally become new default "
2363 "behaviors for the web, this flag is likely to break your experience on "
2364 "sites you visit today.";
2365
Lukasz Anforowicz738a88d2018-11-05 19:19:342366const char kSiteIsolationOptOutName[] = "Disable site isolation";
2367const char kSiteIsolationOptOutDescription[] =
2368 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:572369 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
2370 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:222371 "isolation is force-enabled using a command line switch or using an "
2372 "enterprise policy. "
2373 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:572374 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:342375const char kSiteIsolationOptOutChoiceDefault[] = "Default";
2376const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:512377
Brett Wilsonecb80982017-07-12 20:34:512378const char kSmoothScrollingName[] = "Smooth Scrolling";
2379const char kSmoothScrollingDescription[] =
2380 "Animate smoothly when scrolling page content.";
2381
Majid Valipourae11335e2020-10-14 04:09:242382const char kWebOTPCrossDeviceName[] = "WebOTP Cross Device";
2383const char kWebOTPCrossDeviceDescription[] =
2384 "Enable the WebOTP API to work across devices";
Sam Goto09d69a12019-11-20 23:56:562385
shivanigithub75489e352021-02-22 19:24:302386const char kSplitCacheByNetworkIsolationKeyName[] = "HTTP Cache Partitioning";
2387const char kSplitCacheByNetworkIsolationKeyDescription[] =
2388 "Partitions the HTTP Cache by (top-level site, current-frame site) to "
2389 "disallow cross-site tracking.";
2390
Charlie Reis45fc8d72021-05-27 23:37:172391const char kStrictExtensionIsolationName[] = "Strict Extension Isolation";
2392const char kStrictExtensionIsolationDescription[] =
2393 "Experimental security mode that prevents extensions from sharing a "
2394 "process with each other.";
2395
Lei Zhang507fffd2020-01-29 23:47:542396const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation";
2397const char kStrictOriginIsolationDescription[] =
W. James MacLeanf79c97e2019-05-02 20:35:462398 "Experimental security mode that strengthens the site isolation policy. "
2399 "Controls whether site isolation should use origins instead of scheme and "
2400 "eTLD+1.";
2401
Brandon Maslenda12cf82019-08-23 20:54:182402const char kStorageAccessAPIName[] = "Storage Access API";
2403const char kStorageAccessAPIDescription[] =
2404 "Enables the Storage Access API, allowing websites to request storage "
2405 "access when it would otherwise be restricted.";
2406
Lexi Stavrakos094fd642020-06-17 23:26:432407const char kStoragePressureEventName[] = "Enable storage pressure Event";
2408const char kStoragePressureEventDescription[] =
2409 "If enabled, Chrome will dispatch a DOM event, informing applications "
2410 "about storage pressure (low disk space)";
2411
Talal Jawaid493a07732021-05-06 21:30:232412const char kStoreHoursAndroidName[] = "Store Hours";
2413const char kStoreHoursAndroidDescription[] =
2414 "When enabled, shows store hours for stores in tab grid view.";
2415
Brett Wilsonecb80982017-07-12 20:34:512416const char kSuggestionsWithSubStringMatchName[] =
2417 "Substring matching for Autofill suggestions";
2418const char kSuggestionsWithSubStringMatchDescription[] =
2419 "Match Autofill suggestions based on substrings (token prefixes) rather "
2420 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:342421
Siyu An9655bd22020-09-14 23:09:072422const char kSyncAutofillWalletOfferDataName[] =
2423 "Enable syncing autofill offer data";
2424const char kSyncAutofillWalletOfferDataDescription[] =
2425 "When enabled, allows syncing autofill wallet offer data type.";
2426
Brett Wilsonecb80982017-07-12 20:34:512427const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
2428const char kSyncSandboxDescription[] =
2429 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:342430
Mikel Astiz850b0fe2021-06-16 09:47:272431const char kSyncTrustedVaultPassphrasePromoName[] =
2432 "Enable promos for sync trusted vault passphrase.";
2433const char kSyncTrustedVaultPassphrasePromoDescription[] =
2434 "Enables promos for an experimental sync passphrase type, referred to as "
2435 "trusted vault.";
2436
2437const char kSyncTrustedVaultPassphraseRecoveryName[] =
2438 "Enable sync trusted vault passphrase with improved recovery.";
2439const char kSyncTrustedVaultPassphraseRecoveryDescription[] =
2440 "Enables support for an experimental sync passphrase type, referred to as "
2441 "trusted vault, including logic and APIs for improved account recovery "
2442 "flows.";
2443
Joe Downing8cbbc192018-05-14 17:37:072444const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
2445const char kSystemKeyboardLockDescription[] =
2446 "Enables websites to use the keyboard.lock() API to intercept system "
2447 "keyboard shortcuts and have the events routed directly to the website "
2448 "when in fullscreen mode.";
2449
Ahmed Mehfoozf719a672020-12-17 23:32:522450const char kStylusBatteryStatusName[] =
2451 "Show stylus battery stylus in the stylus tools menu";
2452const char kStylusBatteryStatusDescription[] =
2453 "Enables viewing the current stylus battery level in the stylus tools "
2454 "menu.";
2455
Jesse McKennafbdeac62021-04-26 16:38:472456const char kSubframeShutdownDelayName[] =
2457 "Add delay to subframe renderer process shutdown";
2458const char kSubframeShutdownDelayDescription[] =
2459 "Delays shutdown of subframe renderer processes by a few seconds to allow "
2460 "them to be potentially reused. This aims to reduce process churn in "
2461 "navigations where the source and destination share subframes.";
2462
Matt Simmons1fd0c9f2019-04-15 19:08:222463const char kTabEngagementReportingName[] = "Tab Engagement Metrics";
2464const char kTabEngagementReportingDescription[] =
2465 "Tracks tab engagement and lifetime metrics.";
2466
Yusuf Ozuysal67f05a02019-02-15 19:30:522467const char kTabGridLayoutAndroidName[] = "Tab Grid Layout";
2468const char kTabGridLayoutAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462469 "Allows users to see their tabs in a grid layout in the tab switcher on "
2470 "phones.";
Yusuf Ozuysal67f05a02019-02-15 19:30:522471
Ayman Almadhoun5a72fa742021-04-28 05:49:152472const char kCommerceMerchantViewerAndroidName[] = "Merchant Viewer";
2473const char kCommerceMerchantViewerAndroidDescription[] =
2474 "Allows users to view merchant trust signals on eligible pages.";
2475
Zhiyuan Cai7a67fff2021-06-18 21:35:532476const char kCommercePriceTrackingAndroidName[] = "Price Tracking";
2477const char kCommercePriceTrackingAndroidDescription[] =
2478 "Allows users to track product prices through Chrome.";
2479
Yusuf Ozuysal436d90b82019-03-15 22:17:582480const char kTabGroupsAndroidName[] = "Tab Groups";
2481const char kTabGroupsAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462482 "Allows users to create groups to better organize their tabs on phones.";
Yusuf Ozuysal436d90b82019-03-15 22:17:582483
Yue Zhange5610102019-11-01 19:46:392484const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation";
2485const char kTabGroupsContinuationAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462486 "Allows users to access continuation features in Tab Group on phones.";
Yue Zhange5610102019-11-01 19:46:392487
Yue Zhang2834d6b2019-05-01 17:30:282488const char kTabGroupsUiImprovementsAndroidName[] = "Tab Groups UI Improvements";
2489const char kTabGroupsUiImprovementsAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462490 "Allows users to access new features in Tab Group UI on phones.";
Yue Zhang2834d6b2019-05-01 17:30:282491
Wei-Yin Chen (陳威尹)102222492019-05-22 19:27:092492const char kTabToGTSAnimationAndroidName[] = "Enable Tab-to-GTS Animation";
2493const char kTabToGTSAnimationAndroidDescription[] =
2494 "Allows users to see an animation when entering or leaving the "
Yue Zhang5a167c72020-03-16 16:56:462495 "Grid Tab Switcher on phones.";
Wei-Yin Chen (陳威尹)102222492019-05-22 19:27:092496
Charlene Yan2df3072a2021-09-02 16:57:502497const char kAppsShortcutDefaultOffName[] = "Apps Shortcut Default Off";
2498const char kAppsShortcutDefaultOffDescription[] =
2499 "Changes the apps shortcut on the bookmarks bar to default to off.";
2500
Charlene Yan45ff10d92020-09-16 03:14:592501const char kTabGroupsAutoCreateName[] = "Tab Groups Auto Create";
2502const char kTabGroupsAutoCreateDescription[] =
2503 "Automatically creates groups for users, if tab groups are enabled.";
2504
Charlene Yan65e7cfe2020-07-28 18:55:292505const char kTabGroupsCollapseFreezingName[] = "Tab Groups Collapse Freezing";
2506const char kTabGroupsCollapseFreezingDescription[] =
2507 "Experimental tab freezing upon collapsing a tab group.";
2508
Charlene Yan5b80e052020-04-02 20:48:562509const char kTabGroupsFeedbackName[] = "Tab Groups Feedback";
2510const char kTabGroupsFeedbackDescription[] =
2511 "Enables the feedback app to appear in the tab group editor bubble, if tab "
2512 "groups are enabled.";
2513
Dana Fried7ecd0e02021-02-03 21:20:572514const char kTabGroupsNewBadgePromoName[] = "Tab Groups 'New' Badge Promo";
2515const char kTabGroupsNewBadgePromoDescription[] =
2516 "Causes a 'New' badge to appear on the entry point for creating a tab "
2517 "group in the tab context menu.";
2518
Alyssa Frederickab694f22021-07-02 20:05:392519const char kTabGroupsSaveName[] = "Tab Groups Save";
2520const char kTabGroupsSaveDescription[] =
2521 "Enables users to explicitly save and recall tab groups.";
2522
Dana Friedacaa8ef52019-02-08 02:20:352523const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
2524const char kTabHoverCardImagesDescription[] =
2525 "Shows a preview image in tab hover cards, if tab hover cards are enabled.";
2526
Dana Fried07b03c62019-07-31 19:20:562527const char kTabOutlinesInLowContrastThemesName[] =
2528 "Tab Outlines in Low Contrast Themes";
2529const char kTabOutlinesInLowContrastThemesDescription[] =
2530 "Expands the range of situations in which tab outline strokes are "
2531 "displayed, improving accessiblity in dark and incognito mode.";
2532
Emily Shack8cf347332021-06-11 18:04:092533const char kTabRestoreSubMenusName[] = "Show app menu history sub menus";
2534const char kTabRestoreSubMenusDescription[] =
2535 "Show app menu history sub menus for the contents of recently closed tab "
2536 "groups and windows.";
2537
Cheick6a288cd2021-01-18 16:04:222538const char kTextFragmentColorChangeName[] = "Text Fragment color change";
2539const char kTextFragmentColorChangeDescription[] =
2540 "Changes the Text Fragment background color"
2541 "away from the default yellow.";
2542
mcrouse2b928eb2021-02-26 21:59:092543const char kTFLiteLanguageDetectionName[] = "TFLite-based Language Detection";
2544const char kTFLiteLanguageDetectionDescription[] =
2545 "Uses TFLite for language detection in place of CLD3";
2546
Daniele Castagnaac71d892020-07-07 17:30:372547const char kTintCompositedContentName[] = "Tint composited content";
2548const char kTintCompositedContentDescription[] =
2549 "Tint contents composited using Viz with a shade of red to help debug and "
Daniele Castagna0fead93e2018-01-10 20:40:292550 "study overlay support.";
2551
Peter Kastingd77428352018-10-26 15:20:252552const char kTopChromeTouchUiName[] = "Touch UI Layout";
2553const char kTopChromeTouchUiDescription[] =
2554 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:342555
Brett Wilsonecb80982017-07-12 20:34:512556const char kThreadedScrollingName[] = "Threaded scrolling";
2557const char kThreadedScrollingDescription[] =
2558 "Threaded handling of scroll-related input events. Disabling this will "
2559 "force all such scroll events to be handled on the main thread. Note that "
2560 "this can dramatically hurt scrolling performance of most websites and is "
2561 "intended for testing purposes only.";
2562
W. James MacLean17fc6852021-05-06 18:29:292563const char kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesName[] =
2564 "Throttle non-visible cross-origin iframes";
2565const char
2566 kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesDescription[] =
2567 "When enabled, all cross-origin iframes with zero visibility (either "
2568 "display:none or zero area) will be throttled, regardless of whether "
2569 "they are same-process or cross-process. When disabled, only cross-"
2570 "process iframes will be throttled.";
2571
Brett Wilsonecb80982017-07-12 20:34:512572const char kTouchDragDropName[] = "Touch initiated drag and drop";
2573const char kTouchDragDropDescription[] =
2574 "Touch drag and drop can be initiated through long press on a draggable "
2575 "element.";
2576
Brett Wilsonecb80982017-07-12 20:34:512577const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
2578const char kTouchSelectionStrategyDescription[] =
2579 "Controls how text selection granularity changes when touch text selection "
2580 "handles are dragged. Non-default behavior is experimental.";
2581const char kTouchSelectionStrategyCharacter[] = "Character";
2582const char kTouchSelectionStrategyDirection[] = "Direction";
2583
Josh Simmons7a8e7a942021-06-19 01:08:562584const char kTranslateAssistContentName[] = "Translate AssistContent";
2585const char kTranslateAssistContentDescription[] =
2586 "Enables populating translate details for the current page in "
2587 "AssistContent.";
2588
Anthony Vallee-Dubois265c5692018-06-01 15:57:142589const char kTranslateForceTriggerOnEnglishName[] =
2590 "Select which language model to use to trigger translate on English "
2591 "content";
2592const char kTranslateForceTriggerOnEnglishDescription[] =
2593 "Force the Translate Triggering on English pages experiment to be enabled "
2594 "with the selected language model active.";
2595
Josh Simmons8c98484872021-05-05 20:50:012596const char kTranslateIntentName[] = "Translate intent";
2597const char kTranslateIntentDescription[] =
2598 "Enables an intent that allows Assistant to initiate a translation of the "
2599 "foreground tab.";
Haohao Wang5b525f722019-05-18 15:37:522600
Mustafa Emre Acerb3aa36a82018-05-22 21:44:052601const char kTreatInsecureOriginAsSecureName[] =
2602 "Insecure origins treated as secure";
2603const char kTreatInsecureOriginAsSecureDescription[] =
2604 "Treat given (insecure) origins as secure origins. Multiple origins can be "
Alan Cutter733ec9a2019-08-27 15:33:132605 "supplied as a comma-separated list. Origins must have their protocol "
2606 "specified e.g. \"http://example.com\". For the definition of secure "
2607 "contexts, see https://w3c.github.io/webappsec-secure-contexts/";
Mustafa Emre Acerb3aa36a82018-05-22 21:44:052608
Joe DeBlasio2a4fb9982019-05-06 23:44:432609const char kTreatUnsafeDownloadsAsActiveName[] =
2610 "Treat risky downloads over insecure connections as active mixed content";
2611const char kTreatUnsafeDownloadsAsActiveDescription[] =
2612 "Disallows downloads of unsafe files (files that can potentially execute "
2613 "code), where the final download origin or any origin in the redirect "
2614 "chain is insecure if the originating page is secure.";
2615
David Van Cleve08c5bc012020-03-26 17:31:462616const char kTrustTokensName[] = "Enable Trust Tokens";
2617const char kTrustTokensDescription[] =
2618 "Enables the prototype Trust Token API "
2619 "(https://github.com/wicg/trust-token-api).";
2620
Will Cassellafd1edf02020-08-26 23:13:082621const char kTurnOffStreamingMediaCachingOnBatteryName[] =
2622 "Turn off caching of streaming media to disk while on battery power.";
2623const char kTurnOffStreamingMediaCachingOnBatteryDescription[] =
2624 "Reduces disk activity during media playback, which can result in "
2625 "power savings.";
2626
2627const char kTurnOffStreamingMediaCachingAlwaysName[] =
Shawn Pickett0b470712019-08-15 00:43:452628 "Turn off caching of streaming media to disk.";
Will Cassellafd1edf02020-08-26 23:13:082629const char kTurnOffStreamingMediaCachingAlwaysDescription[] =
Shawn Pickett0b470712019-08-15 00:43:452630 "Reduces disk activity during media playback, which can result in "
2631 "power savings.";
2632
Vasilii Sukhanov36365432021-07-02 08:38:212633const char kUnifiedPasswordManagerAndroidName[] =
2634 "Google Mobile Services for passwords";
Friedrich Horschig2683d832021-06-09 15:47:562635const char kUnifiedPasswordManagerAndroidDescription[] =
2636 "Uses Google Mobile Services to store and retrieve passwords."
2637 "Warning: Highly experimental. May lead to loss of passwords and "
2638 "impact performance.";
2639
François Beaufortdb160c12019-05-01 06:28:142640const char kUnsafeWebGPUName[] = "Unsafe WebGPU";
2641const char kUnsafeWebGPUDescription[] =
Rafael Cintron9bce9f6e2019-12-19 04:05:052642 "Enables access to the experimental WebGPU API. Warning: As GPU sandboxing "
François Beaufortdb160c12019-05-01 06:28:142643 "isn't implemented yet for the WebGPU API, it is possible to read GPU data "
2644 "for other processes.";
2645
Maya Lekova4785fd22020-08-31 10:36:072646const char kUnsafeFastJSCallsName[] = "Unsafe fast JS calls";
2647const char kUnsafeFastJSCallsDescription[] =
2648 "Enables experimental fast API between Blink and V8."
2649 "Warning: type checking, few POD types and array types "
2650 "are not supported yet, so crashes are possible.";
2651
Brett Wilsonecb80982017-07-12 20:34:512652const char kUiPartialSwapName[] = "Partial swap";
2653const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
2654
cfredric04aa50c2020-10-30 13:32:022655const char kUseFirstPartySetName[] = "First-Party Set";
2656const char kUseFirstPartySetDescription[] =
2657 "Use the provided list of origins as a First-Party Set, with the first "
2658 "valid origin as the owner of the set.";
2659
Maria Kazinova85a2ece2021-06-14 19:24:282660const char kUsernameFirstFlowName[] = "Username first flow voting";
Vadym Doroshenkoa063a512019-12-12 17:59:072661const char kUsernameFirstFlowDescription[] =
Maria Kazinova85a2ece2021-06-14 19:24:282662 "Support of sending votes on username first flow i.e. login "
2663 "flows where a user has to type username first on one page and then "
Maria Kazinova58cedc02021-08-02 17:15:112664 "password on another page. Votes are send on single username forms and are "
2665 "based on user interaction with the save prompt.";
2666
2667const char kUsernameFirstFlowFallbackCrowdsourcingName[] =
2668 "Username first flow fallback crowdsourcing";
2669const char kUsernameFirstFlowFallbackCrowdsourcingDescription[] =
2670 "Support of sending additional votes on username first flow i.e. login "
2671 "flows where a user has to type username first on one page and then "
2672 "password on another page. These votes are sent on single password forms "
2673 "and contain information whether a 1-password form follows a 1-text form "
2674 "and the value's type(or pattern) in the latter (e.g. email-like, "
2675 "phone-like, arbitrary string).";
Maria Kazinova85a2ece2021-06-14 19:24:282676
2677const char kUsernameFirstFlowFillingName[] = "Username first flow filling";
2678const char kUsernameFirstFlowFillingDescription[] =
Vadym Doroshenkoa063a512019-12-12 17:59:072679 "Support of username saving and filling on username first flow i.e. login "
Vadym Doroshenkob7f9ef22019-07-16 13:51:062680 "flows where a user has to type username first on one page and then "
2681 "password on another page";
2682
Zentaro Kavanagh892851f2019-05-29 15:13:312683const char kUseSearchClickForRightClickName[] =
2684 "Use Search+Click for right click";
2685const char kUseSearchClickForRightClickDescription[] =
2686 "When enabled search+click will be remapped to right click, allowing "
2687 "webpages and apps to consume alt+click. When disabled the legacy "
2688 "behavior of remapping alt+click to right click will remain unchanged.";
2689
Michael Hablich896d52662017-10-23 15:59:572690const char kV8VmFutureName[] = "Future V8 VM features";
2691const char kV8VmFutureDescription[] =
2692 "This enables upcoming and experimental V8 VM features. "
2693 "This flag does not enable experimental JavaScript features.";
2694
Cattalyya Nuengsigkapiand6fe2042021-09-21 02:40:422695const char kVerticalSnapName[] = "Vertical Snap features";
2696const char kVerticalSnapDescription[] =
2697 "This enables Vertical Snap feature in portrait display."
2698 "This feature allows users to snap windows to top and bottom in portrait "
2699 "display orientation and maintains left/right snap for landscape display.";
2700
Brett Wilsonecb80982017-07-12 20:34:512701const char kWalletServiceUseSandboxName[] =
2702 "Use Google Payments sandbox servers";
2703const char kWalletServiceUseSandboxDescription[] =
2704 "For developers: use the sandbox service for Google Payments API calls.";
2705
Jeffrey Young35f24d32021-01-27 22:58:212706const char kWallpaperWebUIName[] = "Enable new wallpaper experience";
2707const char kWallpaperWebUIDescription[] =
2708 "Enables the wallpaper picker "
2709 "in ChromeOS Settings";
2710
Jeffrey Young6981b732021-09-09 21:27:312711const char kWallpaperFullScreenPreviewName[] =
2712 "Enable wallpaper full screen preview UI";
2713const char kWallpaperFullScreenPreviewDescription[] =
2714 "Allows users to minimize all active windows to preview their current "
2715 "wallpaper";
2716
Ovidio Henriquez3d729f62020-02-07 00:43:292717const char kWebBluetoothNewPermissionsBackendName[] =
2718 "Use the new permissions backend for Web Bluetooth";
2719const char kWebBluetoothNewPermissionsBackendDescription[] =
2720 "Enables the new permissions backend for Web Bluetooth. This will enable "
2721 "persistent storage of device permissions.";
2722
Tsuyoshi Horoabfb079d2019-10-17 02:09:062723const char kWebBundlesName[] = "Web Bundles";
2724const char kWebBundlesDescription[] =
2725 "Enables experimental supports for Web Bundles (Bundled HTTP Exchanges) "
2726 "navigation.";
2727
Ken Buchanan26fbf14c2021-03-04 05:36:142728const char kWebIdName[] = "WebID";
2729const char kWebIdDescription[] =
2730 "Enables WebID HTTP filtering and JavaScript "
2731 "API to intermediate federated identity requests.";
2732
Ayu Ishiidbdd5c92020-03-20 23:40:522733const char kWebOtpBackendName[] = "Web OTP";
2734const char kWebOtpBackendDescription[] =
2735 "Enables Web OTP API that uses the specified backend.";
Yi Gu13cc7242020-12-10 03:23:372736const char kWebOtpBackendSmsVerification[] = "Code Browser API";
2737const char kWebOtpBackendUserConsent[] = "User Consent API";
2738const char kWebOtpBackendAuto[] = "Automatically select the backend";
Ayu Ishiidbdd5c92020-03-20 23:40:522739
Kenneth Russell08c7dc32021-07-09 08:06:592740const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions";
2741const char kWebglDeveloperExtensionsDescription[] =
2742 "Enabling this option allows web applications to access WebGL extensions "
2743 "intended only for use during development time.";
2744
Brett Wilsonecb80982017-07-12 20:34:512745const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
2746const char kWebglDraftExtensionsDescription[] =
2747 "Enabling this option allows web applications to access the WebGL "
Kenneth Russell08c7dc32021-07-09 08:06:592748 "extensions that are still in draft status.";
Brett Wilsonecb80982017-07-12 20:34:512749
Danyao Wang47a0f312019-05-09 20:52:242750const char kWebPaymentsExperimentalFeaturesName[] =
2751 "Experimental Web Payments API features";
2752const char kWebPaymentsExperimentalFeaturesDescription[] =
2753 "Enable experimental Web Payments API features";
2754
Liquan (Max) Guad63b072021-09-22 13:13:222755const char kPaymentRequestBasicCardName[] =
2756 "PaymentRequest API 'basic-card' method";
2757const char kPaymentRequestBasicCardDescription[] =
2758 "The 'basic-card' payment method of the PaymentRequest API.";
2759
Liquan (Max) Gu8fcb9192020-05-20 16:22:182760const char kAppStoreBillingDebugName[] =
2761 "Web Payments App Store Billing Debug Mode";
2762const char kAppStoreBillingDebugDescription[] =
2763 "App-store purchases (e.g., Google Play Store) within a TWA can be "
2764 "requested using the Payment Request API. This flag removes the "
2765 "restriction that the TWA has to be installed from the app-store.";
2766
Per Åhgrencef44262019-11-20 10:54:512767const char kWebrtcCaptureMultiChannelApmName[] =
2768 "WebRTC multi-channel capture audio processing.";
2769const char kWebrtcCaptureMultiChannelApmDescription[] =
2770 "Support in WebRTC for processing capture audio in multi channel without "
2771 "downmixing when running APM in the render process.";
2772
Qingsi Wangec2dbf942018-11-03 05:33:042773const char kWebrtcHideLocalIpsWithMdnsName[] =
2774 "Anonymize local IPs exposed by WebRTC.";
2775const char kWebrtcHideLocalIpsWithMdnsDecription[] =
2776 "Conceal local IP addresses with mDNS hostnames.";
2777
Alex Loikob5fb1282018-08-14 10:04:402778const char kWebrtcHybridAgcName[] = "WebRTC hybrid Agc2/Agc1.";
2779const char kWebrtcHybridAgcDescription[] =
2780 "WebRTC Agc2 digital adaptation with Agc1 analog adaptation.";
2781
Alessio Bazzica1fcfa3e2021-06-04 17:26:572782const char kWebrtcAnalogAgcClippingControlName[] =
2783 "WebRTC Agc1 analog clipping control.";
2784const char kWebrtcAnalogAgcClippingControlDescription[] =
2785 "WebRTC Agc1 analog clipping controller to reduce saturation.";
2786
Brett Wilsonecb80982017-07-12 20:34:512787const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
2788const char kWebrtcHwDecodingDescription[] =
2789 "Support in WebRTC for decoding video streams using platform hardware.";
2790
2791const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
2792const char kWebrtcHwEncodingDescription[] =
2793 "Support in WebRTC for encoding video streams using platform hardware.";
2794
Elad Alon85e0d0be2018-06-26 10:38:372795const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
2796const char kWebRtcRemoteEventLogDescription[] =
2797 "Allow collecting WebRTC event logs and uploading them to Crash. "
2798 "Please note that, even if enabled, this will still require "
2799 "a policy to be set, for it to have an effect.";
2800
Brett Wilsonecb80982017-07-12 20:34:512801const char kWebrtcSrtpAesGcmName[] =
2802 "Negotiation with GCM cipher suites for SRTP in WebRTC";
2803const char kWebrtcSrtpAesGcmDescription[] =
2804 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
2805
Sergey Silkinc33244f2020-01-31 17:21:302806const char kWebrtcUseMinMaxVEADimensionsName[] =
2807 "WebRTC Min/Max Video Encode Accelerator dimensions";
2808const char kWebrtcUseMinMaxVEADimensionsDescription[] =
2809 "When enabled, WebRTC will only use the Video Encode Accelerator for "
2810 "video resolutions inside those published as supported.";
2811
Reilly Grant3c560fa2021-09-25 01:27:252812const char kWebUsbDeviceDetectionName[] =
2813 "Automatic detection of WebUSB-compatible devices";
2814const char kWebUsbDeviceDetectionDescription[] =
2815 "When enabled, the user will be notified when a device which advertises "
2816 "support for WebUSB is connected. Disable if problems with USB devices are "
2817 "observed when the browser is running.";
2818
Alex Cooper01f110e2020-01-08 02:24:162819const char kWebXrForceRuntimeName[] = "Force WebXr Runtime";
2820const char kWebXrForceRuntimeDescription[] =
2821 "Force the browser to use a particular runtime, even if it would not "
2822 "usually be enabled or would otherwise not be selected based on the "
2823 "attached hardware.";
2824
2825const char kWebXrRuntimeChoiceNone[] = "No Runtime";
Alex Cooper01f110e2020-01-08 02:24:162826const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR";
Alex Cooper01f110e2020-01-08 02:24:162827
Will Cassellaa1a4d1112019-12-27 20:52:312828const char kWebXrIncubationsName[] = "WebXR Incubations";
2829const char kWebXrIncubationsDescription[] =
2830 "Enables experimental features for WebXR.";
Piotr Bialeckid77fb9c2019-04-26 17:06:242831
Brett Wilsonecb80982017-07-12 20:34:512832const char kZeroCopyName[] = "Zero-copy rasterizer";
2833const char kZeroCopyDescription[] =
2834 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:342835
Peng Huang70021682019-09-18 19:42:282836const char kEnableVulkanName[] = "Vulkan";
Sean Gilhulyab1dbc62020-01-28 22:49:472837const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend.";
Peng Huang70021682019-09-18 19:42:282838
Gayane Petrosyan65380732021-01-15 01:09:532839const char kSharedHighlightingUseBlocklistName[] =
2840 "Shared Highlighting blocklist";
2841const char kSharedHighlightingUseBlocklistDescription[] =
2842 "Uses a blocklist to disable Shared Highlighting link generation on "
2843 "certain sites where personalized or dynamic content or other technical "
2844 "restrictions make it unlikely that a URL can be generated and actually "
2845 "work when shared.";
2846
Kyle Milka17458ca2021-03-05 20:40:242847const char kSharedHighlightingV2Name[] = "Shared Highlighting 2.0";
2848const char kSharedHighlightingV2Description[] =
2849 "Improvements to Shared Highlighting. Including ability to reshare or "
2850 "remove a highlight.";
2851
Cheick Cisseb8f706032021-06-22 01:50:472852const char kSharedHighlightingAmpName[] = "Shared Highlighting for AMP Viewers";
2853const char kSharedHighlightingAmpDescription[] =
2854 "Enables Shared Highlighting for AMP Viwers.";
2855
Gayane Petrosyana08c07372021-03-11 23:27:532856const char kPreemptiveLinkToTextGenerationName[] =
Cheick Cisse032ea112021-02-11 02:23:262857 "Preemptive generation of link to text";
Gayane Petrosyana08c07372021-03-11 23:27:532858const char kPreemptiveLinkToTextGenerationDescription[] =
Cheick Cisse032ea112021-02-11 02:23:262859 "Enables link to text to be generated in advance.";
2860
Mario Bianucci3be046eb2021-02-26 18:41:482861const char kDraw1PredictedPoint12Ms[] = "1 point 12ms ahead.";
2862const char kDraw2PredictedPoints6Ms[] = "2 points, each 6ms ahead.";
2863const char kDraw1PredictedPoint6Ms[] = "1 point 6ms ahead.";
2864const char kDraw2PredictedPoints3Ms[] = "2 points, each 3ms ahead.";
2865const char kDrawPredictedPointsDefault[] = "Disabled";
2866const char kDrawPredictedPointsDescription[] =
2867 "Draw predicted points when using the delegated ink trails API. Requires "
2868 "experimental web platform features to be enabled.";
2869const char kDrawPredictedPointsName[] = "Draw predicted delegated ink points";
2870
Daniel Vogelheim236d9a82021-04-01 15:40:532871const char kSanitizerApiName[] = "Sanitizer API";
2872const char kSanitizerApiDescription[] =
2873 "Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api";
2874
Peng Huang723f26e2021-06-04 01:55:102875const char kUsePassthroughCommandDecoderName[] =
2876 "Use passthrough command decoder";
2877const char kUsePassthroughCommandDecoderDescription[] =
2878 "Use chrome passthrough command decoder instead of validating command "
2879 "decoder.";
2880
Igor Ruvinovbe0d649c2021-06-09 19:50:252881const char kExtensionWorkflowJustificationName[] =
2882 "Extension request justification";
2883const char kExtensionWorkflowJustificationDescription[] =
2884 "Enables users to justify their extension requests by causing a text field "
2885 "to appear on the extension request dialog.";
2886
Elly Fong-Jones4f731262021-09-21 03:13:452887#if !defined(OS_ANDROID)
Elly Fong-Jones3dde8f62021-09-15 22:38:202888const char kShareContextMenuName[] = "Share context menu";
2889const char kShareContextMenuDescription[] =
2890 "Whether the sharing options in various context menus are grouped into "
2891 "a common submenu.";
Elly Fong-Jones4f731262021-09-21 03:13:452892#endif
Elly Fong-Jones3dde8f62021-09-15 22:38:202893
Ali Beyad3070c422021-09-20 18:47:552894const char kForceMajorVersion100InUserAgentName[] =
2895 "Force major version to 100 in User-Agent";
2896const char kForceMajorVersion100InUserAgentDescription[] =
2897 "Force the Chrome major version in the User-Agent string to 100, which "
2898 "allows testing the 3-digit major version number before the actual M100 "
2899 "release. This flag is only available from M96-M99.";
2900
Brett Wilsonff596952017-07-14 01:06:552901// Android ---------------------------------------------------------------------
2902
2903#if defined(OS_ANDROID)
2904
Shakti Sahu1c04a2872021-03-17 16:38:482905const char kAddToHomescreenIPHName[] = "Add to homescreen IPH";
2906const char kAddToHomescreenIPHDescription[] =
2907 " Shows in-product-help messages educating users about add to homescreen "
2908 "option in chrome.";
2909
Vikas Soni5463f1a2020-08-17 22:47:302910const char kAImageReaderName[] = "Android ImageReader";
2911const char kAImageReaderDescription[] =
2912 " Enables MediaPlayer and MediaCodec to use AImageReader on Android. "
2913 " This feature is only available for android P+ devices. Disabling it also "
2914 " disables SurfaceControl.";
2915
Trevor Perrier990a1c62020-09-11 20:27:322916const char kAndroidDetailedLanguageSettingsName[] =
2917 "Detailed Language Settings";
2918const char kAndroidDetailedLanguageSettingsDescription[] =
2919 "Enable the new detailed language settings page";
2920
Trevor Perrierc1384bb2021-06-04 23:54:032921const char kAndroidForceAppLanguagePromptName[] =
2922 "Force second run app language prompt";
2923const char kAndroidForceAppLanguagePromptDescription[] =
2924 "When enabled the app language prompt to change the UI language will"
2925 "always be shown.";
2926
Lijin Shen4e002bf32020-12-01 22:41:322927const char kAndroidLayoutChangeTabReparentingName[] =
2928 "Android Chrome UI phone/tablet layout change tab reparenting";
2929const char kAndroidLayoutChangeTabReparentingDescription[] =
2930 "If enabled, when the screen size switches between phone and tablet size, "
2931 "the UI layout updates to the proper one and the current tabs are "
2932 "reparented instead of reloaded.";
2933
Vikas Sonif14e32c2020-08-15 06:17:222934const char kAndroidSurfaceControlName[] = "Android SurfaceControl";
2935const char kAndroidSurfaceControlDescription[] =
Vikas Soni5463f1a2020-08-17 22:47:302936 " Enables SurfaceControl to manage the buffer queue for the "
2937 " DisplayCompositor on Android. This feature is only available on "
2938 " android Q+ devices";
Vikas Sonif14e32c2020-08-15 06:17:222939
Josh Simmons825de242020-11-19 19:23:002940const char kAssistantIntentPageUrlName[] =
2941 "Include page URL in Assistant intent";
2942const char kAssistantIntentPageUrlDescription[] =
2943 "Include the current page's URL in the Assistant voice transcription "
2944 "intent.";
2945
Josh Simmons68325af2021-01-15 21:10:212946const char kAssistantIntentTranslateInfoName[] =
2947 "Translate info in Assistant intent";
2948const char kAssistantIntentTranslateInfoDescription[] =
2949 "Include page translation details in the Assistant voice transcription "
2950 "intent. This includes the page's URL and its original, current, and "
2951 "default target language.";
2952
Miriam Gershenson8cf1397222018-01-23 22:48:292953const char kAsyncDnsName[] = "Async DNS resolver";
2954const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
2955
Brett Wilsonff596952017-07-14 01:06:552956const char kAutofillAccessoryViewName[] =
2957 "Autofill suggestions as keyboard accessory view";
2958const char kAutofillAccessoryViewDescription[] =
2959 "Shows Autofill suggestions on top of the keyboard rather than in a "
2960 "dropdown.";
2961
Caitlin Fischer43edd90a2019-05-01 13:24:302962const char kAutofillUseMobileLabelDisambiguationName[] =
2963 "Autofill Uses Mobile Label Disambiguation";
2964const char kAutofillUseMobileLabelDisambiguationDescription[] =
2965 "When enabled, Autofill suggestions' labels are displayed using a "
2966 "mobile-friendly format.";
2967
Gang Wua7bfb5f42021-04-09 18:54:212968const char kAppMenuMobileSiteOptionName[] =
2969 "Show Mobile Site option in app menu";
2970const char kAppMenuMobileSiteOptionDescription[] =
2971 "When enabled, app menu should show 'Mobile site' when showing desktop "
2972 "site, instead of showing 'Desktop Site' with checkbox";
2973
Alex Hawker0062f5252020-07-29 21:41:072974const char kBentoOfflineName[] =
2975 "Enables an experiment for Offline Bento content on Android";
2976const char kBentoOfflineDescription[] =
2977 "Enables displaying Bento content on the offline page for Android.";
2978
Xing Liu7b448302021-04-09 05:35:142979const char kBookmarkBottomSheetName[] = "Enables bookmark bottom sheet";
2980const char kBookmarkBottomSheetDescription[] =
2981 "Enables showing a bookmark bottom sheet when adding a bookmark.";
2982
Ramin Halavatiba7ddcc2019-11-13 06:19:282983const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode";
2984const char kCCTIncognitoDescription[] =
2985 "Enables incognito mode for Chrome Custom Tabs, on Android.";
2986
Rohit Agarwalc3973312020-11-18 14:40:232987const char kCCTIncognitoAvailableToThirdPartyName[] =
2988 "Allow third party to open Custom Tabs Incognito mode";
2989const char kCCTIncognitoAvailableToThirdPartyDescription[] =
2990 "Enabling it would allow third party apps to open incognito mode for "
2991 "Chrome Custom Tabs, on Android.";
2992
Shimi Zhangdabb3c22021-09-16 22:10:252993const char kCCTResizable90MaximumHeightName[] =
2994 "Bottom sheet Custom Tabs maximum height";
2995const char kCCTResizable90MaximumHeightDescription[] =
2996 "When enabled, the bottom sheet Custom Tabs will have maximum height 90% "
2997 "of the screen height, otherwise the maximum height is 100% of the screen "
2998 "height. In both cases, Custom Tabs will yield to the top status bar when "
2999 "at full stop";
3000const char kCCTResizableForFirstPartiesName[] =
3001 "Bottom sheet Custom Tabs (first party)";
3002const char kCCTResizableForFirstPartiesDescription[] =
3003 "Enable bottom sheet Custom Tabs for first party apps.";
3004const char kCCTResizableForThirdPartiesName[] =
3005 "Bottom sheet Custom Tabs (third party)";
3006const char kCCTResizableForThirdPartiesDescription[] =
3007 "Enable bottom sheet Custom Tabs for third party apps.";
3008
Xing Liu1e6b43d2021-03-15 19:26:453009const char kChimeAlwaysShowNotificationDescription[] =
3010 "A debug flag to always show Chime notification after receiving a payload.";
3011const char kChimeAlwaysShowNotificationName[] =
3012 "Always show Chime notification";
3013
3014const char kChimeAndroidSdkDescription[] =
3015 "Enable Chime SDK to receive push notification.";
3016const char kChimeAndroidSdkName[] = "Use Chime SDK";
3017
ckitagawa12ef4152020-12-03 19:14:573018const char kContinuousSearchName[] = "Continuous Search Navigation";
3019const char kContinuousSearchDescription[] =
3020 "Enables caching of search results to permit a more seamless search "
3021 "experience.";
3022
Tanya Guptabefbdb32020-10-28 19:36:553023const char kChromeShareLongScreenshotName[] = "Chrome Share Long Screenshots";
3024const char kChromeShareLongScreenshotDescription[] =
3025 "Enables UI to edit and share long screenshots on Android";
3026
Jeffrey Cohen5f2a9fe2019-12-11 01:23:423027const char kChromeShareScreenshotName[] = "Chrome Share Screenshots";
3028const char kChromeShareScreenshotDescription[] =
3029 "Enables UI to edit and share screenshots";
3030
Travis Skareedcee15642021-09-16 15:49:383031const char kChromeSharingHubLaunchAdjacentName[] =
3032 "Launch new share hub actions in adjacent window";
3033const char kChromeSharingHubLaunchAdjacentDescription[] =
3034 "In multi-window mode, launches share hub actions in an adjacent window. "
3035 "For internal debugging.";
3036
Tomasz Wiszkowski34f9afea2021-04-08 18:50:563037const char kClipboardSuggestionContentHiddenName[] =
3038 "Clipboard suggestion content hidden";
3039const char kClipboardSuggestionContentHiddenDescription[] =
3040 "Prevents the Clipboard suggestion from proactively retrieving the "
3041 "clipboard content.";
3042
David Maunder915c7ef2019-09-20 16:22:083043const char kCloseTabSuggestionsName[] = "Suggest to close Tabs";
3044const char kCloseTabSuggestionsDescription[] =
3045 "Suggests to the user to close Tabs that haven't been used beyond a "
3046 "configurable threshold or where duplicates of Tabs exist. "
3047 "The threshold is configurable.";
Richard Knoll368596e52019-08-14 09:16:283048
David Maunder8cf7fd82020-08-20 19:31:543049const char kCriticalPersistedTabDataName[] = "Enable CriticalPersistedTabData";
3050const char kCriticalPersistedTabDataDescription[] =
3051 "A new method of persisting Tab data across restarts has been devised "
3052 "and implemented. This actives the new approach.";
3053
Donn Denman140a08562020-03-09 18:23:193054const char kContextualSearchDebugName[] = "Contextual Search debug";
3055const char kContextualSearchDebugDescription[] =
3056 "Enables internal debugging of Contextual Search behavior on the client "
3057 "and server.";
3058
Donn Denman19688bc2021-03-05 18:48:403059const char kContextualSearchForceCaptionName[] =
3060 "Contextual Search force a caption";
3061const char kContextualSearchForceCaptionDescription[] =
3062 "Forces a caption to always be shown in the Touch to Search Bar.";
Donn Denman4315f262019-03-02 02:47:413063
Donn Denmand12d7cc2021-02-17 21:54:443064const char kContextualSearchLiteralSearchTapName[] =
3065 "Contextual Search literal search with tap";
3066const char kContextualSearchLiteralSearchTapDescription[] =
3067 "Enables Contextual Search to be activated with a single tap and produce "
3068 "a literal search. This is intended to be used in conjunction with the "
3069 "long-press resolve feature to allow both gestures to trigger a form of "
3070 "Touch to Search.";
3071
Donn Denman6be77d42019-05-04 15:55:423072const char kContextualSearchLongpressResolveName[] =
3073 "Contextual Search long-press Resolves";
3074const char kContextualSearchLongpressResolveDescription[] =
3075 "Enables communicating with Google servers when a long-press gesture is "
Donn Denmanc0a33cbf2020-02-27 15:26:053076 "recognized under some privacy-limited conditions, including having Touch "
3077 "to Search enabled in preferences. The page context data sent to Google is "
3078 "potentially privacy sensitive! This disables the tap gesture from "
3079 "triggering Touch to Search unless that experiment arm is enabled.";
Donn Denman6be77d42019-05-04 15:55:423080
Donn Denman8e58ead2017-11-04 01:44:013081const char kContextualSearchMlTapSuppressionName[] =
3082 "Contextual Search ML tap suppression";
3083const char kContextualSearchMlTapSuppressionDescription[] =
3084 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:023085 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
3086 "enabled!";
Brett Wilsonff596952017-07-14 01:06:553087
Gang Wudb813da2021-08-20 18:09:133088const char KContextualSearchNewSettingsName[] =
3089 "Contextual Search new settings";
3090const char KContextualSearchNewSettingsDescription[] =
3091 "Adds a toggle to Settings page to specifically control Contextual Search "
3092 "opt-in state, and update Opt-in messages.";
3093
Donn Denman59729812018-01-09 01:27:023094const char kContextualSearchRankerQueryName[] =
3095 "Contextual Search Ranker prediction";
3096const char kContextualSearchRankerQueryDescription[] =
3097 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
3098
3099const char kContextualSearchSecondTapName[] =
3100 "Contextual Search second tap triggering";
3101const char kContextualSearchSecondTapDescription[] =
3102 "Enables triggering on a second tap gesture even when Ranker would "
3103 "normally suppress that tap.";
3104
Sinan Sahincdaed9f2021-01-20 22:43:283105const char kContextualSearchThinWebViewImplementationName[] =
3106 "Use Contextual Search ThinWebView implementation";
3107const char kContextualSearchThinWebViewImplementationDescription[] =
3108 "Use ThinWebView and BottomSheet based implementation for Contextual"
3109 "Search.";
3110
Donn Denman58a1da42020-01-27 23:40:383111const char kContextualSearchTranslationsName[] =
3112 "Contextual Search translations";
3113const char kContextualSearchTranslationsDescription[] =
3114 "Enables automatic translations of words on a page to be presented in the "
3115 "caption of the bottom bar.";
3116
Eric Secklerb9545b32020-08-11 21:29:423117const char kCpuAffinityRestrictToLittleCoresName[] = "Restrict to LITTLE cores";
3118const char kCpuAffinityRestrictToLittleCoresDescription[] =
3119 "Restricts Chrome threads to LITTLE cores on devices with big.LITTLE or "
3120 "similar CPU architectures.";
3121
Sky Malice49e21652021-06-29 17:20:293122const char kDynamicColorAndroidName[] = "Dynamic colors on Android";
3123const char kDynamicColorAndroidDescription[] =
3124 "Enabled dynamic colors on supported devices, such as Pixel devices "
3125 "running Android 12.";
3126
Fabio Tirelo918089a2018-10-22 21:24:083127const char kAutofillManualFallbackAndroidName[] =
3128 "Enable Autofill manual fallback for Addresses and Payments (Android)";
3129const char kAutofillManualFallbackAndroidDescription[] =
3130 "If enabled, adds toggle for addresses and payments bottom sheet to the "
3131 "keyboard accessory.";
3132
Fabio Tirelo315e65922018-09-05 03:35:493133const char kEnableAutofillRefreshStyleName[] =
3134 "Enable Autofill refresh style (Android)";
3135const char kEnableAutofillRefreshStyleDescription[] =
3136 "Enable modernized style for Autofill on Android";
3137
Lei Tianbd5a3bf2018-02-28 19:01:163138const char kEnableCommandLineOnNonRootedName[] =
3139 "Enable command line on non-rooted devices";
3140const char kEnableCommandLineOnNoRootedDescription[] =
3141 "Enable reading command line file on non-rooted devices (DANGEROUS).";
3142
Min Qin4975ee352021-08-31 20:02:273143const char kEnableDangerousDownloadDialogName[] =
3144 "Enable dangerous download dialog";
3145const char kEnableDangerousDownloadDialogDescription[] =
3146 "Use dialog instead of infobar for user to confirm dangerous download";
3147
3148const char kEnableDuplicateDownloadDialogName[] =
3149 "Enable duplicate download dialog";
3150const char kEnableDuplicateDownloadDialogDescription[] =
3151 "Use dialog instead of infobar for user to confirm duplicate download";
3152
Lei Zhang0a318af2018-11-14 02:19:463153const char kExploreSitesName[] = "Explore websites";
3154const char kExploreSitesDescription[] =
3155 "Enables portal from new tab page to explore websites.";
3156
Jian Lic22a3ce2021-08-31 15:46:593157const char kFeedBackToTopName[] = "Back to top of the feeds";
3158const char kFeedBackToTopDescription[] =
3159 "Enables showing a callout to help users return to the top of the feeds "
3160 "quickly.";
3161
Jian Lif1423512021-06-21 18:03:523162const char kFeedInteractiveRefreshName[] = "Refresh feeds";
3163const char kFeedInteractiveRefreshDescription[] =
3164 "Enables refreshing feeds triggered by the users.";
3165
Justin DeWitt3eca4372021-09-17 19:44:523166const char kFeedLoadingPlaceholderName[] = "Feed loading placeholder";
3167const char kFeedLoadingPlaceholderDescription[] =
3168 "Enables a placeholder UI in "
3169 "the feed instead of the loading spinner at first load.";
3170
Jonathan Freedaa862a542021-09-03 17:42:253171const char kFeedStampName[] = "StAMP cards in the feed";
3172const char kFeedStampDescription[] = "Enables StAMP cards in the feed.";
3173
Reda Tawfik863175b2020-08-03 16:19:033174const char kFillingPasswordsFromAnyOriginName[] =
3175 "Filling passwords from any origin";
3176const char kFillingPasswordsFromAnyOriginDescription[] =
3177 "Enabling this flag adds a button to the password fallback sheet. The "
3178 "button opens a different sheet that allows filling a password from any "
3179 "origin.";
3180
Wenyu Fua369f1552020-05-01 00:54:453181const char kHomepagePromoCardName[] =
3182 "Enable homepage promo card on the New Tab Page";
3183const char kHomepagePromoCardDescription[] =
3184 "Enable homepage promo card that will be shown to users with partner "
3185 "configured homepage.";
3186
Jinsuk Kimfa1b7eb2021-06-30 00:04:323187const char kInstanceSwitcherName[] = "Enable instance switcher";
3188const char kInstanceSwitcherDescription[] =
3189 "Enable instance switcher dialog UI that helps users manage multiple "
3190 "instances of Chrome.";
3191
Wei-Yin Chen (陳威尹)85149442020-06-30 22:28:463192const char kInstantStartName[] = "Instant start";
Wei-Yin Chen (陳威尹)50c2f462020-05-14 07:27:423193const char kInstantStartDescription[] =
3194 "Show start surface before native library is loaded.";
3195
Jochen Eisingerd0e43f52020-01-22 17:04:323196const char kIntentBlockExternalFormRedirectsNoGestureName[] =
3197 "Block intents from form submissions without user gesture";
3198const char kIntentBlockExternalFormRedirectsNoGestureDescription[] =
3199 "Require a user gesture that triggered a form submission in order to "
3200 "allow for redirecting to an external intent.";
3201
Ian Wells34ce1482020-04-03 17:36:163202const char kInterestFeedV2Name[] = "Interest Feed v2";
3203const char kInterestFeedV2Description[] =
3204 "Show content suggestions on the New Tab Page and Start Surface using the "
3205 "new Feed Component.";
3206
Dan Harrington4043b222021-01-15 18:33:423207const char kInterestFeedV2HeartsName[] = "Interest Feed v2 Hearts";
3208const char kInterestFeedV2HeartsDescription[] = "Enable hearts on Feedv2.";
3209
Jian Lifb04af72021-04-01 21:17:173210const char kInterestFeedV2AutoplayName[] = "Interest Feed v2 Autoplay";
3211const char kInterestFeedV2AutoplayDescription[] = "Enable autoplay on Feedv2.";
3212
Vincent Boisselle482b6a12020-11-13 21:59:293213const char kInterestFeedV1ClickAndViewActionsConditionalUploadName[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443214 "Interest Feed V1 clicks/views conditional upload";
Vincent Boisselle482b6a12020-11-13 21:59:293215const char kInterestFeedV1ClickAndViewActionsConditionalUploadDescription[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443216 "Only enable the upload of clicks/views in Feed V1 after reaching "
3217 "conditions.";
3218
Vincent Boisselle482b6a12020-11-13 21:59:293219const char kInterestFeedV2ClickAndViewActionsConditionalUploadName[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443220 "Interest Feed V2 clicks/views conditional upload";
Vincent Boisselle482b6a12020-11-13 21:59:293221const char kInterestFeedV2ClickAndViewActionsConditionalUploadDescription[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443222 "Only enable the upload of clicks/views in Feed V2 after reaching "
3223 "conditions.";
3224
Aishwarya Rajesh0dd71922021-07-28 20:22:383225const char kMessagesForAndroidAdsBlockedName[] = "Ads Blocked Messages UI";
3226const char kMessagesForAndroidAdsBlockedDescription[] =
3227 "When enabled, ads blocked message will use the new Messages UI.";
3228
Aishwarya Rajesh010d43a2021-07-16 19:52:213229const char kMessagesForAndroidChromeSurveyName[] = "Chrome Survey Messages UI";
3230const char kMessagesForAndroidChromeSurveyDescription[] =
3231 "When enabled, survey prompt will use the new Messages UI.";
3232
Pavel Yatsuk358291752020-09-03 18:25:223233const char kMessagesForAndroidInfrastructureName[] = "Messages infrastructure";
3234const char kMessagesForAndroidInfrastructureDescription[] =
3235 "When enabled, will initialize Messages UI infrastructure";
Pavel Yatsukb3a7475e2021-05-10 21:20:153236
Aishwarya Rajesh08041e1f2021-09-09 17:51:403237const char kMessagesForAndroidNearOomReductionName[] =
3238 "Near OOM Reduction Messages UI";
3239const char kMessagesForAndroidNearOomReductionDescription[] =
3240 "When enabled, near OOM reduction message will use the new Messages UI.";
3241
Lijin Shen92af4f72021-08-06 20:47:223242const char kMessagesForAndroidNotificationBlockedName[] =
3243 "Notification Blocked Messages UI";
3244const char kMessagesForAndroidNotificationBlockedDescription[] =
3245 "When enabled, notification blocked prompt will use the new Messages UI.";
3246
Pavel Yatsuk358291752020-09-03 18:25:223247const char kMessagesForAndroidPasswordsName[] = "Passwords Messages UI";
3248const char kMessagesForAndroidPasswordsDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153249 "When enabled, password prompt will use the new Messages UI.";
3250
Lijin Shen2d61a0a32021-07-20 23:15:523251const char kMessagesForAndroidPermissionUpdateName[] =
3252 "Permission Update Messages UI";
3253const char kMessagesForAndroidPermissionUpdateDescription[] =
3254 "When enabled, permission update prompt will use the new Messages UI.";
3255
Lijin Shenba9a6b0e2021-02-18 01:59:063256const char kMessagesForAndroidPopupBlockedName[] = "Popup Blocked Messages UI";
3257const char kMessagesForAndroidPopupBlockedDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153258 "When enabled, popup blocked prompt will use the new Messages UI.";
3259
Pavel Yatsukb7307fa2021-09-15 18:02:303260const char kMessagesForAndroidPWAInstallName[] = "PWA Installation Messages UI";
3261const char kMessagesForAndroidPWAInstallDescription[] =
3262 "When enabled, PWA Installation prompt will use the new Messages UI.";
3263
Pavel Yatsuk3b7dfe902021-07-09 01:33:093264const char kMessagesForAndroidReaderModeName[] = "Reader Mode Messages UI";
3265const char kMessagesForAndroidReaderModeDescription[] =
3266 "When enabled, reader mode prompt will use the new Messages UI.";
3267
Lijin Shen0ccf7282021-04-26 19:38:133268const char kMessagesForAndroidSafetyTipName[] = "Safety Tip Messages UI";
3269const char kMessagesForAndroidSafetyTipDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153270 "When enabled, safety tip prompt will use the new Messages UI.";
Pavel Yatsuk358291752020-09-03 18:25:223271
Lijin Shend98ce992021-05-01 01:47:423272extern const char kMessagesForAndroidSaveCardName[] = "Save Card Messages UI";
3273extern const char kMessagesForAndroidSaveCardDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153274 "When enabled, save card prompt will use the new Messages UI.";
3275
Lijin Shen540bbea2021-09-08 00:35:233276const char kMessagesForAndroidSyncErrorName[] = "Sync Error Messages UI";
3277const char kMessagesForAndroidSyncErrorDescription[] =
3278 "When enabled, sync error prompt will use the new Messages UI.";
3279
Pavel Yatsukb3a7475e2021-05-10 21:20:153280const char kMessagesForAndroidUpdatePasswordName[] =
3281 "Update password Messages UI";
3282const char kMessagesForAndroidUpdatePasswordDescription[] =
3283 "When enabled, update password prompt will use the new Messages UI.";
Lijin Shend98ce992021-05-01 01:47:423284
Jinsuk Kim55b5ab72021-05-17 00:11:303285const char kNewWindowAppMenuName[] = "Show a menu item 'New Window'";
3286const char kNewWindowAppMenuDescription[] =
3287 "Show a new menu item 'New Window' on tablet-sized screen when Chrome "
3288 "can open a new window and create a new instance in it.";
3289
Sinan Sahin18cc52c2019-09-12 23:07:153290const char kOfflineIndicatorV2Name[] = "Offline indicator V2";
3291const char kOfflineIndicatorV2Description[] =
3292 "Show a persistent offline indicator when offline.";
3293
Yafei Duan36b4b5b2018-08-07 00:40:033294const char kOfflinePagesLivePageSharingName[] =
3295 "Enables live page sharing of offline pages";
3296const char kOfflinePagesLivePageSharingDescription[] =
3297 "Enables to share current loaded page as offline page by saving as MHTML "
3298 "first.";
3299
Jordan Oroshiba244e9ff2021-02-04 22:20:393300const char kPageInfoHistoryName[] = "Page info history";
3301const char kPageInfoHistoryDescription[] =
3302 "Enable a history sub page to the page info menu, and a button to forget "
3303 "a site, removing all preferences and history.";
3304
Olesia Marukhno4d09c9072021-04-08 09:43:233305extern const char kPageInfoV2DesktopName[];
3306extern const char kPageInfoV2DesktopDescription[];
3307
Rodney S. Sampson IIbebce082021-07-28 16:30:183308extern const char kPasswordProtectionForSignedInUsersName[] =
3309 "Password Protection for Signed-In Users";
3310extern const char kPasswordProtectionForSignedInUsersDescription[] =
3311 "Enable signed-in (Google account) password protection for signed-in "
3312 "users and allows users to change their signed-in password through "
3313 "password reuse warnings on phishing or low reputation sites.";
3314
Finnur Thorarinssonaeb6b582020-01-28 17:52:463315const char kPhotoPickerVideoSupportName[] = "Photo Picker Video Support";
3316const char kPhotoPickerVideoSupportDescription[] =
3317 "Enables video files to be shown in the Photo Picker dialog";
3318
Lei Zhang507fffd2020-01-29 23:47:543319const char kProcessSharingWithDefaultSiteInstancesName[] =
Aaron Colwell5235f352019-07-25 20:10:243320 "Process sharing with default site instances";
Lei Zhang507fffd2020-01-29 23:47:543321const char kProcessSharingWithDefaultSiteInstancesDescription[] =
Aaron Colwell5235f352019-07-25 20:10:243322 "When site isolation is disabled, this mode changes how sites are lumped "
3323 "in to shared processes. For sites that do not require isolation, this "
3324 "feature groups them into a single 'default' site instance (per browsing "
3325 "instance) instead of creating unique site instances for each one. This "
3326 "enables resource savings by creating fewer processes for sites that do "
3327 "not need isolation.";
3328
Lei Zhang507fffd2020-01-29 23:47:543329const char kProcessSharingWithStrictSiteInstancesName[] =
Andrei Chulkov1a12e6d22019-07-15 11:16:073330 "Process sharing with strict site instances";
Lei Zhang507fffd2020-01-29 23:47:543331const char kProcessSharingWithStrictSiteInstancesDescription[] =
Andrei Chulkov1a12e6d22019-07-15 11:16:073332 "When site isolation is disabled, this mode changes how sites are lumped "
3333 "in to a shared process. Process selection is usually controlled with "
3334 "site instances. With strict site isolation, each site on a page gets its "
3335 "own site instance and process. With site isolation disabled and without "
3336 "this mode, all sites that share a process are put into the same site "
3337 "instance. This mode adds a third way: site instances are strictly "
3338 "separated like strict site isolation, but process selection puts multiple "
3339 "site instances in a single process.";
3340
Shakti Sahu1f8a9422020-03-12 05:50:503341const char kQueryTilesName[] = "Show query tiles";
3342const char kQueryTilesDescription[] = "Shows query tiles in Chrome";
Shakti Sahucad2a0a2020-10-23 06:42:283343const char kQueryTilesNTPName[] = "Show query tiles in NTP";
3344const char kQueryTilesNTPDescription[] = "Shows query tiles in NTP";
Shakti Sahuaaf8a8c2020-04-30 23:40:273345const char kQueryTilesOmniboxName[] = "Show query tiles in omnibox";
3346const char kQueryTilesOmniboxDescription[] = "Shows query tiles in omnibox";
Shakti Sahu8fe5edd2020-05-14 18:57:133347const char kQueryTilesSingleTierName[] = "Show only one level of query tiles";
3348const char kQueryTilesSingleTierDescription[] =
3349 "Show only one level of query tiles";
Shakti Sahudfb40992020-05-12 14:54:543350const char kQueryTilesEnableQueryEditingName[] =
3351 "Query Tiles - Enable query edit mode";
3352const char kQueryTilesEnableQueryEditingDescription[] =
3353 "When a query tile is tapped, the query text will be shown in the omnibox "
3354 "and user will have a chance to edit the text before submitting";
Min Qineac94ae2020-08-14 06:38:453355const char kQueryTilesEnableTrendingName[] =
3356 "Query Tiles - Enable trending queries";
3357const char kQueryTilesEnableTrendingDescription[] =
3358 "Allow tiles of trending queries to show up in front of curated tiles";
Min Qindb99e6f2020-04-29 06:37:263359const char kQueryTilesCountryCode[] = "Country code for getting tiles";
3360const char kQueryTilesCountryCodeDescription[] =
3361 "When query tiles are enabled, this value determines tiles for which "
3362 "country should be displayed.";
3363const char kQueryTilesCountryCodeUS[] = "US";
3364const char kQueryTilesCountryCodeIndia[] = "IN";
3365const char kQueryTilesCountryCodeBrazil[] = "BR";
3366const char kQueryTilesCountryCodeNigeria[] = "NG";
3367const char kQueryTilesCountryCodeIndonesia[] = "ID";
Hesen Zhang7bdc5ca2020-09-03 06:29:023368const char kQueryTilesLocalOrderingName[] =
3369 "Query Tiles - Enable local ordering";
3370const char kQueryTilesLocalOrderingDescription[] =
3371 "Enables ordering query tiles locally based on user interactions.";
Shakti Sahu8fe5edd2020-05-14 18:57:133372const char kQueryTilesInstantFetchName[] = "Query tile instant fetch";
Xing Liu06f2fa02020-04-30 02:45:193373const char kQueryTilesInstantFetchDescription[] =
3374 "Immediately schedule background task to fetch query tiles";
Min Qin60ae5b82021-01-07 07:07:503375const char kQueryTilesMoreTrendingName[] =
3376 "Query Tiles - more trending queries";
3377const char kQueryTilesMoreTrendingDescription[] =
3378 "Request more trending queries from the server";
Min Qinbe050b72021-06-26 01:32:393379const char kQueryTilesRankTilesName[] = "Query Tiles - rank tiles on server";
3380const char kQueryTilesRankTilesDescription[] =
3381 "Rank tiles on server based on client context";
Min Qindb789462021-08-26 04:00:113382const char kQueryTilesSegmentationName[] =
3383 "Query Tiles - use segmentation rules";
3384const char kQueryTilesSegmentationDescription[] =
3385 "enable segmentation rules to decide whether to show query tiles";
Min Qin60ae5b82021-01-07 07:07:503386const char kQueryTilesSwapTrendingName[] =
3387 "Query Tiles - Swap trending queries";
3388const char kQueryTilesSwapTrendingDescription[] =
3389 "Swap trending queries if user didn't click on them after several "
3390 "impressions";
Min Qindb99e6f2020-04-29 06:37:263391
Caroline Risingdb7df182021-01-11 19:49:143392const char kReadLaterFlagId[] = "read-later";
3393const char kReadLaterName[] = "Reading List";
3394const char kReadLaterDescription[] =
3395 "Allow users to save tabs for later. Enables a new button and menu for "
3396 "accessing tabs saved for later.";
3397
Brett Wilsonff596952017-07-14 01:06:553398const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
3399const char kReaderModeHeuristicsDescription[] =
3400 "Determines what pages the Reader Mode infobar is shown on.";
3401const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
3402const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
3403const char kReaderModeHeuristicsAllArticles[] = "All articles";
3404const char kReaderModeHeuristicsAlwaysOff[] = "Never";
3405const char kReaderModeHeuristicsAlwaysOn[] = "Always";
3406
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:183407const char kReaderModeInCCTName[] = "Reader Mode in CCT";
3408const char kReaderModeInCCTDescription[] =
3409 "Open Reader Mode in Chrome Custom Tabs.";
3410
Xing Liub9070262021-01-07 20:52:163411const char kReadLaterReminderNotificationName[] =
3412 "Read later reminder notification";
3413const char kReadLaterReminderNotificationDescription[] =
3414 "Enables read later weekly reminder notification.";
3415
Ioana Pandele9fc19b2f2020-01-23 22:16:503416const char kRecoverFromNeverSaveAndroidName[] =
3417 "UI to recover from never save passwords on Android";
3418const char kRecoverFromNeverSaveAndroidDescription[] =
3419 "Enables showing UI which allows for easy reverting of the decision to "
3420 "never save passwords on a certain webiste";
3421
David Trainora38e60e2020-08-04 23:43:253422const char kReengagementNotificationName[] =
3423 "Enable re-engagement notifications";
3424const char kReengagementNotificationDescription[] =
3425 "Enables Chrome to use the in-product help system to decide when "
3426 "to show re-engagement notifications.";
3427
Donn Denmanc42123c2020-03-19 01:44:243428const char kRelatedSearchesName[] =
3429 "Enables an experiment for Related Searches on Android";
3430const char kRelatedSearchesDescription[] =
Donn Denman15522f42021-02-09 22:49:493431 "Enables requesting related searches suggestions. These will be requested "
3432 "but not shown unless the UI flag is also enabled.";
3433
Donn Denman6ca112ac2021-06-11 21:33:063434const char kRelatedSearchesAlternateUxName[] =
3435 "Enables showing Related Searches in an alternate user experience.";
3436const char kRelatedSearchesAlternateUxDescription[] =
3437 "Enables showing related searches with an alternative from the normal "
3438 "user experience treatment.";
3439
3440const char kRelatedSearchesInBarName[] =
3441 "Enables showing Related Searches in the peeking bar.";
3442const char kRelatedSearchesInBarDescription[] =
3443 "Enables showing related searches suggestions in a carousel in the "
3444 "peeking bar of the bottom sheet on Android.";
3445
3446const char kRelatedSearchesSimplifiedUxName[] =
3447 "Enables showing Related Searches in a simplified user experience.";
3448const char kRelatedSearchesSimplifiedUxDescription[] =
3449 "Enables showing related searches with a simplified form of the normal "
3450 "user experience treatment.";
3451
Donn Denman15522f42021-02-09 22:49:493452const char kRelatedSearchesUiName[] =
3453 "Forces showing of the Related Searches UI on Android";
3454const char kRelatedSearchesUiDescription[] =
3455 "Forces the Related Searches UI and underlying requests to be enabled "
3456 "regardless of whether they are safe or useful. This requires the Related "
3457 "Searches feature flag to also be enabled.";
Donn Denmanc42123c2020-03-19 01:44:243458
Shu Yang7aaf4f92021-09-14 20:56:073459const char kRequestDesktopSiteGlobalName[] =
3460 "Global setting to request desktop site on Android.";
3461const char kRequestDesktopSiteGlobalDescription[] =
3462 "An option in `Site settings` to persistently request the "
3463 "desktop version of websites.";
3464
Elly Fong-Jonescbab60562021-07-20 22:14:553465const char kShareUsageRankingName[] =
3466 "Incorporate usage history into share target ranking.";
3467const char kShareUsageRankingDescription[] =
3468 "Incorporate the history of which apps were shared to when producing the "
3469 "ordered list of 3P share targets in the share hub.";
Elly Fong-Jones8fd0ccf2021-08-26 22:31:373470const char kShareUsageRankingFixedMoreName[] =
3471 "Fix the position of the 'More' item in the Android share hub.";
3472const char kShareUsageRankingFixedMoreDescription[] =
3473 "When enabled with #share-usage-ranking, forces the 'More' option to "
3474 "occupy the right-most slot on the screen instead of moving depending on "
3475 "the length of the target list.";
Elly Fong-Jonescbab60562021-07-20 22:14:553476
Gang Wu325f03f42021-02-25 20:00:463477const char kRequestDesktopSiteForTabletsName[] =
3478 "Request desktop site for tablets on Android";
3479const char kRequestDesktopSiteForTabletsDescription[] =
3480 "Requests a desktop site, if the screen size is large enough on Android."
3481 " On tablets with small screens a mobile site will be requested by "
3482 "default.";
3483
Bettinabfcec6e2020-08-24 20:26:183484const char kSafeBrowsingClientSideDetectionAndroidName[] =
3485 "Safe Browsing Client Side Detection on Android";
3486const char kSafeBrowsingClientSideDetectionAndroidDescription[] =
3487 "Enable DOM feature collection on Safe Browsing pings on Android";
3488
Rodney S. Sampson II17e4bdf2021-07-14 02:55:443489const char kSafeBrowsingPasswordCheckIntegrationForSavedPasswordsAndroidName[] =
3490 "Safe Browsing PasswordCheck Integration for Saved Passwords Android";
3491const char
3492 kSafeBrowsingPasswordCheckIntegrationForSavedPasswordsAndroidDescription[] =
3493 "Allows Android Chrome users to change their saved passwords through "
Rodney S. Sampson IIbebce082021-07-28 16:30:183494 "password reuse warnings on phishing or low reputation sites.";
Rodney S. Sampson II17e4bdf2021-07-14 02:55:443495
Bettina Deaf4491972020-09-30 23:39:443496const char kEnhancedProtectionPromoAndroidName[] =
3497 "Enable enhanced protection promo card on Android on the New Tab Page";
3498const char kEnhancedProtectionPromoAndroidDescription[] =
3499 "Enable enhanced protection promo card for users that have not signed up "
3500 "for enhanced protection.";
3501
Varun Khaneja80712a82018-10-12 23:34:593502const char kSafeBrowsingUseLocalBlacklistsV2Name[] =
3503 "Use local Safe Browsing blacklists";
3504const char kSafeBrowsingUseLocalBlacklistsV2Description[] =
3505 "If enabled, maintain a copy of Safe Browsing blacklists in the browser "
3506 "process to check the Safe Browsing reputation of URLs without calling "
3507 "into GmsCore for every URL.";
3508
Yashar Dabiran9881eb62021-08-31 21:17:023509const char kScrollCaptureName[] = "Scroll Capture";
3510const char kScrollCaptureDescription[] =
3511 "Enables scrolling screenshot capture for web contents.";
3512
Liquan (Max) Guf2834612021-08-31 14:49:163513const char kSecurePaymentConfirmationAndroidName[] =
3514 "Secure Payment Confirmation on Android";
3515const char kSecurePaymentConfirmationAndroidDescription[] =
3516 "Enables Secure Payment Confirmation on Android.";
3517
Brett Wilsonff596952017-07-14 01:06:553518const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
3519const char kSetMarketUrlForTestingDescription[] =
3520 "When enabled, sets the market URL for use in testing the update menu "
3521 "item.";
3522
Donn Denman6ca112ac2021-06-11 21:33:063523const char kSingleTouchSelectName[] =
3524 "Enables selecting plain text with a single touch.";
3525const char kSingleTouchSelectDescription[] =
3526 "Enables selecting plain text with a single touch on Android.";
3527
Alex Moshchuk07e1bb42019-03-08 04:44:083528const char kSiteIsolationForPasswordSitesName[] =
3529 "Site Isolation For Password Sites";
3530const char kSiteIsolationForPasswordSitesDescription[] =
3531 "Security mode that enables site isolation for sites based on "
3532 "password-oriented heuristics, such as a user typing in a password.";
3533
Hung Vuc394db62020-08-21 21:26:523534const char kSmartSuggestionForLargeDownloadsName[] =
3535 "Smart suggestion for large downloads";
3536const char kSmartSuggestionForLargeDownloadsDescription[] =
3537 "Smart suggestion that offers download locations for large files.";
3538
Ioana Pandele9fc19b2f2020-01-23 22:16:503539const char kStartSurfaceAndroidName[] = "Start Surface";
3540const char kStartSurfaceAndroidDescription[] =
3541 "Enable showing the start surface when launching Chrome via the "
3542 "launcher.";
3543
Sophey Dong5bbcaf42021-07-13 14:06:143544const char kSharingHubLinkToggleName[] = "Sharing Hub Link Toggle";
3545const char kSharingHubLinkToggleDescription[] =
3546 "Enable the link toggle in the Sharing Hub.";
3547
Lei Zhang0a318af2018-11-14 02:19:463548const char kStrictSiteIsolationName[] = "Strict site isolation";
3549const char kStrictSiteIsolationDescription[] =
3550 "Security mode that enables site isolation for all sites (SitePerProcess). "
3551 "In this mode, each renderer process will contain pages from at most one "
3552 "site, using out-of-process iframes when needed. "
3553 "Check chrome://process-internals to see the current isolation mode. "
3554 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
3555 "default. Here, 'Disabled' is a legacy value that actually means "
3556 "'Default,' in which case site isolation may be already enabled based on "
3557 "platform, enterprise policy, or field trial. See also "
3558 "#site-isolation-trial-opt-out for how to disable site isolation for "
3559 "testing.";
3560
Lei Zhang1a6fd01b2021-03-24 17:03:483561const char kThemeRefactorAndroidName[] = "Theme refactor on Android";
3562const char kThemeRefactorAndroidDescription[] =
Sinan Sahin9623c942021-02-03 19:28:043563 "Enables the theme refactoring on Android.";
3564
Sky Malice4cca0ff2020-10-26 18:32:503565const char kToolbarIphAndroidName[] = "Enable Toolbar IPH on Android";
3566const char kToolbarIphAndroidDescription[] =
3567 "Enables in product help bubbles on the toolbar. In particular, the home "
3568 "button and the tab switcher button.";
3569
Basia Zimirska1ae58362021-03-12 18:27:173570const char kToolbarMicIphAndroidName[] =
3571 "Enable IPH on Android on the mic in the toolbar";
3572const char kToolbarMicIphAndroidDescription[] =
3573 "Enables in product help bubble on the mic button in the toolbar.";
3574
Brett Wilsonff596952017-07-14 01:06:553575const char kUpdateMenuBadgeName[] = "Force show update menu badge";
3576const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:443577 "When enabled, a badge will be shown on the app menu button if the update "
3578 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:553579
3580const char kUpdateMenuItemCustomSummaryDescription[] =
3581 "When this flag and the force show update menu item flag are enabled, a "
3582 "custom summary string will be displayed below the update menu item.";
3583const char kUpdateMenuItemCustomSummaryName[] =
3584 "Update menu item custom summary";
3585
Tommy Nyquist3c02e592018-10-18 23:36:443586const char kUpdateMenuTypeName[] =
3587 "Forces the update menu type to a specific type";
3588const char kUpdateMenuTypeDescription[] =
3589 "When set, forces the update type to be a specific one, which impacts "
Tommy Nyquist023d505f2019-02-16 02:18:383590 "the app menu badge and menu item for updates. For Inline Update, the "
3591 "update available flag is implied. The 'Inline Update: Success' selection "
3592 "goes through the whole inline update flow to the end with a successful "
3593 "outcome. The other 'Inline Update' options go through the same flow, but "
3594 "stop at various stages, see their error type for details.";
Tommy Nyquist3c02e592018-10-18 23:36:443595const char kUpdateMenuTypeNone[] = "None";
3596const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
3597const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Tommy Nyquist023d505f2019-02-16 02:18:383598const char kUpdateMenuTypeInlineUpdateSuccess[] = "Inline Update: Success";
3599const char kUpdateMenuTypeInlineUpdateDialogCanceled[] =
3600 "Inline Update Error: Dialog Canceled";
3601const char kUpdateMenuTypeInlineUpdateDialogFailed[] =
3602 "Inline Update Error: Dialog Failed";
3603const char kUpdateMenuTypeInlineUpdateDownloadFailed[] =
3604 "Inline Update Error: Download Failed";
3605const char kUpdateMenuTypeInlineUpdateDownloadCanceled[] =
3606 "Inline Update Error: Download Canceled";
3607const char kUpdateMenuTypeInlineUpdateInstallFailed[] =
3608 "Inline Update Error: Install Failed";
Brett Wilsonff596952017-07-14 01:06:553609
Alexander Cooperfaad86452020-10-27 19:39:023610const char kUserMediaScreenCapturingName[] = "Screen Capture API";
3611const char kUserMediaScreenCapturingDescription[] =
3612 "Allows sites to request a video stream of your screen.";
3613
Shakti Sahu2741f8d2020-08-14 03:38:363614const char kVideoTutorialsName[] = "Enable video tutorials";
3615const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome";
Shakti Sahu607d9cd2020-10-22 01:10:103616const char kVideoTutorialsInstantFetchName[] =
3617 "Video tutorials fetch on startup";
3618const char kVideoTutorialsInstantFetchDescription[] =
3619 "Fetch video tutorials on startup";
Shakti Sahu2741f8d2020-08-14 03:38:363620
bttk8031f3fb2021-02-25 20:21:243621const char kAdaptiveButtonInTopToolbarName[] = "Adaptive button in top toolbar";
3622const char kAdaptiveButtonInTopToolbarDescription[] =
3623 "Enables showing an adaptive action button in the top toolbar";
bttk74acf1b2021-05-19 20:20:593624const char kAdaptiveButtonInTopToolbarCustomizationName[] =
3625 "Adaptive button in top toolbar customization";
3626const char kAdaptiveButtonInTopToolbarCustomizationDescription[] =
3627 "Enables UI for customizing the adaptive action button in the top toolbar";
bttk8031f3fb2021-02-25 20:21:243628const char kShareButtonInTopToolbarName[] = "Share button in top toolbar";
3629const char kShareButtonInTopToolbarDescription[] =
3630 "Enables UI to initiate sharing from the top toolbar. Enabling Adaptive "
3631 "Button overrides this.";
Josh Simmons68941d122020-11-11 02:49:043632const char kVoiceButtonInTopToolbarName[] = "Voice button in top toolbar";
3633const char kVoiceButtonInTopToolbarDescription[] =
bttk8031f3fb2021-02-25 20:21:243634 "Enables showing the voice search button in the top toolbar. Enabling "
3635 "Adaptive Button overrides this.";
Josh Simmons68941d122020-11-11 02:49:043636
Tommy Nyquist26ffb642019-02-20 20:31:523637const char kInlineUpdateFlowName[] = "Enable Google Play inline update flow";
3638const char kInlineUpdateFlowDescription[] =
3639 "When this flag is set, instead of taking the user to the Google Play "
3640 "Store when an update is available, the user is presented with an inline "
3641 "flow where they do not have to leave Chrome until the update is ready "
3642 "to install.";
3643
Marc Treib12dcc972020-10-02 15:27:203644const char kWalletRequiresFirstSyncSetupCompleteName[] =
3645 "Controls whether Wallet (GPay) integration on Android requires "
3646 "first-sync-setup to be complete";
3647const char kWalletRequiresFirstSyncSetupCompleteDescription[] =
3648 "Controls whether the Wallet (GPay) integration on Android requires "
3649 "first-sync-setup to be complete. Only has an effect if "
3650 "enable-autofill-account-wallet-storage is also enabled.";
3651
Carlos Knippschild0cf5a072020-12-01 00:15:533652const char kWebFeedName[] = "Web Feed";
3653const char kWebFeedDescription[] =
3654 "Allows users to keep up with and consume web content.";
3655
Cathy Lie949b3c2021-09-10 20:15:453656const char kWebFeedSortName[] = "Web Feed Sort";
3657const char kWebFeedSortDescription[] =
3658 "Allows users to sort their web content in the web feed. "
3659 "Only works if Web Feed is also enabled.";
3660
Gayane Petrosyanb54b5c82021-04-27 14:18:233661const char kWebNotesStylizeName[] = "WebNotes Stylize";
3662const char kWebNotesStylizeDescription[] =
3663 "Allows users to create and share stylized webnotes.";
3664
Justin DeWitt83faf9d12020-12-17 23:18:033665const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting";
3666const char kXsurfaceMetricsReportingDescription[] =
3667 "Allows metrics reporting state to be passed to Xsurface";
3668
SebSG9cfb03f2021-07-20 22:07:143669const char kWebNotesPublishName[] = "WebNotes Publish";
3670const char kWebNotesPublishDescription[] =
3671 "Allows users to save their created notes.";
3672
Brett Wilson7b44537e2017-08-18 01:38:283673// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:553674
Brett Wilson7b44537e2017-08-18 01:38:283675#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:483676
Lei Zhang1a6fd01b2021-03-24 17:03:483677const char kAllowAllSitesToInitiateMirroringName[] =
Takumi Fujimotobf466ac2020-08-18 20:55:153678 "Allow all sites to initiate mirroring";
Lei Zhang1a6fd01b2021-03-24 17:03:483679const char kAllowAllSitesToInitiateMirroringDescription[] =
Takumi Fujimotobf466ac2020-08-18 20:55:153680 "When enabled, allows all websites to request to initiate tab mirroring "
3681 "via Presentation API. Requires #cast-media-route-provider to also be "
3682 "enabled";
3683
echo linkercfa62032021-04-27 05:23:333684const char kAppManagementIntentSettingsName[] =
3685 "App Management intent settings";
3686const char kAppManagementIntentSettingsDescription[] =
3687 "Enables and displays the intent settings link handling setting for App "
3688 "Management.";
3689
evliu467c11b82020-11-17 01:29:303690const char kEnableAccessibilityLiveCaptionName[] = "Live Caption";
3691const char kEnableAccessibilityLiveCaptionDescription[] =
3692 "Enables the live caption feature which generates captions for "
Katie Df558c1a2020-04-21 20:33:593693 "media playing in Chrome. Turn the feature on in "
3694 "chrome://settings/accessibility.";
3695
Rob Schonberger539fa2e52021-03-25 05:26:593696const char kEnableAccessibilityLiveCaptionSodaName[] = "SODA for Live Caption";
3697const char kEnableAccessibilityLiveCaptionSodaDescription[] =
3698 "If Live Caption (chrome://flags/#enable-accessibility-live-captions) is "
3699 "enabled, whether or not to use SODA for live captions instead of the web "
3700 "api. Turn on the feature in chrome://settings/accessibility.";
3701
John Lee651b47672020-09-14 19:55:023702const char kCopyLinkToTextName[] = "Copy Link To Text";
3703const char kCopyLinkToTextDescription[] =
3704 "Adds an item to the context menu to allow a user to copy a link to the "
3705 "page with the selected text highlighted.";
3706
Owen Min478d330e2020-10-19 19:18:483707const char kEnterpriseRealtimeExtensionRequestName[] =
3708 "Enterprise real-time extension request report";
3709const char kEnterpriseRealtimeExtensionRequestDescription[] =
3710 "Enable the real-time extension request uploading. The feature requires "
3711 "the enterprise reporting and extension request being enabled.";
3712
John Williamse5a683b2020-07-28 03:01:483713const char kGlobalMediaControlsCastStartStopName[] =
3714 "Global media controls control Cast start/stop";
3715const char kGlobalMediaControlsCastStartStopDescription[] =
3716 "Allows global media controls to control when a Cast session is started "
3717 "or stopped instead of relying on the Cast dialog.";
3718
Richard Knoll7b293562021-07-08 08:49:063719const char kMuteNotificationSnoozeActionName[] =
3720 "Snooze action for mute notifications";
3721const char kMuteNotificationSnoozeActionDescription[] =
3722 "Adds a Snooze action to mute notifications shown while sharing a screen.";
3723
Esmael El-Moslimanyf85849d2021-01-15 02:18:103724const char kNtpCacheOneGoogleBarName[] = "Cache OneGoogleBar";
3725const char kNtpCacheOneGoogleBarDescription[] =
3726 "Enables using the OneGoogleBar cached response in chrome://new-tab-page, "
3727 "when available.";
3728
Tibor Goldschwendt16a63cb2020-08-04 19:08:153729const char kNtpModulesName[] = "NTP Modules";
3730const char kNtpModulesDescription[] = "Shows modules on the New Tab Page.";
3731
Andre Vincent60a5c5d2020-12-24 02:53:013732const char kNtpDriveModuleName[] = "NTP Drive Module";
3733const char kNtpDriveModuleDescription[] =
3734 "Shows the Google Drive module on the New Tab Page";
3735
Jeremy Selier6d7e19fe2021-07-20 17:08:343736const char kNtpPhotosModuleName[] = "NTP Photos Module";
3737const char kNtpPhotosModuleDescription[] =
3738 "Shows the Google Photos module on the New Tab Page";
3739
Esmael El-Moslimany75e33762020-10-21 18:26:433740const char kNtpRecipeTasksModuleName[] = "NTP Recipe Tasks Module";
3741const char kNtpRecipeTasksModuleDescription[] =
3742 "Shows the recipe tasks module on the New Tab Page.";
3743
Tibor Goldschwendt08c6b882020-10-01 03:09:323744const char kNtpShoppingTasksModuleName[] = "NTP Shopping Tasks Module";
3745const char kNtpShoppingTasksModuleDescription[] =
3746 "Shows the shopping tasks module on the New Tab Page.";
3747
Yue Zhangd50dd692020-12-24 01:20:023748const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module";
3749const char kNtpChromeCartModuleDescription[] =
3750 "Shows the chrome cart module on the New Tab Page.";
3751
Rohit Bhatia34189362021-09-04 03:55:203752const char kNtpSafeBrowsingModuleName[] = "NTP Safe Browsing Module";
3753const char kNtpSafeBrowsingModuleDescription[] =
3754 "Shows the safe browsing module on the New Tab Page.";
3755
Lydia Lam44eea142021-06-10 01:19:003756const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop";
3757const char kNtpModulesDragAndDropDescription[] =
3758 "Enables modules to be reordered via dragging and dropping on the "
3759 "New Tab Page.";
3760
Deanna Oei155c24c2021-06-10 22:48:193761const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned";
3762const char kNtpModulesRedesignedDescription[] =
3763 "Shows the redesigned modules on the New Tab Page.";
3764
Marlon Facey904d12442021-09-02 23:02:243765const char kNtpRealboxPedalsName[] = "NTP Realbox Pedals";
3766const char kNtpRealboxPedalsDescription[] =
3767 "Shows pedals in the NTP Realbox when enabled.";
3768
Marlon Facey03502f342021-07-14 20:58:583769const char kNtpRealboxSuggestionAnswersName[] =
3770 "NTP Realbox Suggestion Answers";
3771const char kNtpRealboxSuggestionAnswersDescription[] =
3772 "Shows suggestion answers in the NTP Realbox when enabled.";
3773
Aran Gilman766c2ad2019-04-18 00:15:413774const char kEnableReaderModeName[] = "Enable Reader Mode";
3775const char kEnableReaderModeDescription[] =
3776 "Allows viewing of simplified web pages by selecting 'Customize and "
3777 "control Chrome'>'Distill page'";
3778
Wei Li2946b352019-08-19 21:49:543779const char kHappinessTrackingSurveysForDesktopDemoName[] =
3780 "Happiness Tracking Surveys Demo";
3781const char kHappinessTrackingSurveysForDesktopDemoDescription[] =
3782 "Enable showing Happiness Tracking Surveys Demo to users on Desktop";
3783
Jon Flatley8c785582019-06-05 00:33:423784const char kKernelnextVMsName[] = "Enable VMs on experimental kernels.";
3785const char kKernelnextVMsDescription[] =
3786 "Enables VM support on devices running experimental kernel versions.";
3787
Travis Skarebcdb5ed32018-08-17 01:49:403788const char kOmniboxDriveSuggestionsName[] =
3789 "Omnibox Google Drive Document suggestions";
3790const char kOmniboxDriveSuggestionsDescriptions[] =
3791 "Display suggestions for Google Drive documents in the omnibox when Google "
3792 "is the default search engine.";
3793
Kevin Bailey9ec05532019-01-31 23:01:333794const char kOmniboxExperimentalKeywordModeName[] =
3795 "Omnibox Experimental Keyword Mode";
3796const char kOmniboxExperimentalKeywordModeDescription[] =
3797 "Enables various experimental features related to keyword mode, its "
Justin Donnellyf2703482019-10-24 21:42:153798 "suggestions and layout.";
Kevin Bailey9ec05532019-01-31 23:01:333799
Orin Jaworski3fb624e2021-05-06 17:27:403800const char kOmniboxPedalsBatch2NonEnglishName[] =
3801 "Omnibox Pedals batch 2 for non-English locales";
3802const char kOmniboxPedalsBatch2NonEnglishDescription[] =
3803 "Enable the second batch of Omnibox Pedals (Safety Check, etc.) for "
3804 "locales other than 'en' and 'en-GB'. This flag has no effect unless "
3805 "\"Omnibox Pedals batch 2\" is also enabled.";
Orin Jaworskiab717e6d2021-03-05 21:45:023806
Orin Jaworskib09ea1bb2021-06-24 22:01:193807const char kOmniboxPedalsBatch3Name[] = "Omnibox Pedals batch 3";
3808const char kOmniboxPedalsBatch3Description[] =
3809 "Enable the third batch of Omnibox Pedals.";
3810
Orin Jaworskif7cb0f112021-08-06 22:51:383811const char kOmniboxPedalsTranslationConsoleName[] =
3812 "Omnibox Pedals Translation Console";
3813const char kOmniboxPedalsTranslationConsoleDescription[] =
3814 "Use translation strings sourced from Translation Console "
3815 "for triggering some omnibox Pedals (aka Chrome Actions).";
3816
Justin Donnelly5726ecf2020-08-14 00:53:523817const char kOmniboxKeywordSearchButtonName[] = "Omnibox keyword search button";
3818const char kOmniboxKeywordSearchButtonDescription[] =
3819 "Enable the omnibox keyword search button which offers a way to search "
Orin Jaworski35e654fd2021-05-04 21:04:403820 "on specific sites from the omnibox.";
Justin Donnelly5726ecf2020-08-14 00:53:523821
Caroline Risingdb7df182021-01-11 19:49:143822const char kReadLaterFlagId[] = "read-later";
3823const char kReadLaterName[] = "Reading List";
3824const char kReadLaterDescription[] =
3825 "Click on the Bookmark icon or right click on a tab to add tabs to a "
3826 "reading list.";
3827
Chris Thompson657d5c82020-10-08 23:04:103828const char kSCTAuditingName[] = "SCT auditing";
3829const char kSCTAuditingDescription[] =
3830 "Enables SCT auditing for users who have opted in to Safe Browsing "
3831 "Extended Reporting.";
3832
Brett Wilson7b44537e2017-08-18 01:38:283833#endif // !defined(OS_ANDROID)
3834
3835// Windows ---------------------------------------------------------------------
3836
3837#if defined(OS_WIN)
3838
David Bienvenud0ddda32018-11-01 16:59:163839const char kCalculateNativeWinOcclusionName[] =
3840 "Calculate window occlusion on Windows";
3841const char kCalculateNativeWinOcclusionDescription[] =
3842 "Calculate window occlusion on Windows will be used in the future "
3843 "to throttle and potentially unload foreground tabs in occluded windows";
3844
Frank Liberato754d14f2019-01-30 23:31:173845const char kD3D11VideoDecoderName[] = "D3D11 Video Decoder";
3846const char kD3D11VideoDecoderDescription[] =
3847 "Enables D3D11VideoDecoder for hardware accelerated video decoding.";
3848
Lei Zhang1a6fd01b2021-03-24 17:03:483849const char kEnableIncognitoShortcutOnDesktopName[] =
Mariam Alidbe57662020-08-06 12:28:353850 "Enable Incognito Desktop Shortcut";
Lei Zhang1a6fd01b2021-03-24 17:03:483851const char kEnableIncognitoShortcutOnDesktopDescription[] =
Mariam Alidbe57662020-08-06 12:28:353852 "Enables users to create a desktop shortcut for incognito mode.";
3853
Armando Miragliad2e6fc9e2020-03-06 09:23:093854const char kEnableMediaFoundationVideoCaptureName[] =
3855 "MediaFoundation Video Capture";
3856const char kEnableMediaFoundationVideoCaptureDescription[] =
3857 "Enable/Disable the usage of MediaFoundation for video capture. Fall back "
3858 "to DirectShow if disabled.";
3859
Xiaohan Wang9c9e5d35c2021-09-02 17:36:093860const char kHardwareSecureDecryptionName[] = "Hardware Secure Decryption";
3861const char kHardwareSecureDecryptionDescription[] =
3862 "Enable/Disable the use of hardware secure Content Decryption Module (CDM) "
3863 "for protected content playback.";
3864
henrikac66d1012021-01-19 13:59:183865const char kRawAudioCaptureName[] = "Raw audio capture";
3866const char kRawAudioCaptureDescription[] =
3867 "Enable/Disable the usage of WASAPI raw audio capture. When enabled, the "
3868 "audio stream is a 'raw' stream that bypasses all signal processing except "
3869 "for endpoint specific, always-on processing in the Audio Processing Object"
3870 " (APO), driver, and hardware.";
3871
Lei Zhangc05af2a2020-05-15 20:54:053872const char kRunVideoCaptureServiceInBrowserProcessName[] =
3873 "Run video capture service in browser";
3874const char kRunVideoCaptureServiceInBrowserProcessDescription[] =
3875 "Run the video capture service in the browser process.";
Brett Wilson7b44537e2017-08-18 01:38:283876
Jonah Ryan-Davis90ae3322021-09-21 17:34:483877const char kUseAngleDescriptionWindows[] =
Olli Etuaho122321192018-09-07 10:15:293878 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
3879 "computers by default. Using the OpenGL driver as the graphics backend may "
3880 "result in higher performance in some graphics-heavy applications, "
3881 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
3882 "video playback.";
3883
Olli Etuaho122321192018-09-07 10:15:293884const char kUseAngleD3D11[] = "D3D11";
3885const char kUseAngleD3D9[] = "D3D9";
Nathan Zabriskie70c046f2019-10-16 01:19:023886const char kUseAngleD3D11on12[] = "D3D11on12";
Olli Etuaho122321192018-09-07 10:15:293887
Brett Wilson7b44537e2017-08-18 01:38:283888const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
3889const char kUseWinrtMidiApiDescription[] =
3890 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
3891 "later).";
3892
Daniel Hosseinian159cb3d2020-03-13 03:02:023893#if BUILDFLAG(ENABLE_PRINTING)
Lei Zhangc05af2a2020-05-15 20:54:053894const char kGdiTextPrinting[] = "GDI Text Printing";
3895const char kGdiTextPrintingDescription[] =
3896 "Use GDI to print text as simply text";
3897
Lei Zhang1419cab2021-09-09 17:04:443898const char kPrintWithPostScriptType42FontsName[] =
3899 "Print with PostScript Type 42 fonts";
3900const char kPrintWithPostScriptType42FontsDescription[] =
3901 "When using PostScript level 3 printing, render text with Type 42 fonts if "
3902 "possible.";
3903
Lei Zhanga6a8a492020-05-14 03:55:033904const char kPrintWithReducedRasterizationName[] =
3905 "Print with reduced rasterization";
3906const char kPrintWithReducedRasterizationDescription[] =
3907 "When using GDI printing, avoid rasterization if possible.";
3908
Alan Screen574ffd662019-11-21 22:38:533909const char kUseXpsForPrintingName[] = "Use XPS for printing";
3910const char kUseXpsForPrintingDescription[] =
3911 "When enabled, use XPS printing API instead of the GDI print API.";
3912
Alan Screen49388112019-12-13 23:34:213913const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF";
3914const char kUseXpsForPrintingFromPdfDescription[] =
3915 "When enabled, use XPS printing API instead of the GDI print API when "
3916 "printing PDF documents.";
Daniel Hosseinian159cb3d2020-03-13 03:02:023917#endif // BUILDFLAG(ENABLE_PRINTING)
Alan Screen49388112019-12-13 23:34:213918
Tom5efa14f12021-06-30 00:37:323919const char kWin10TabSearchCaptionButtonName[] =
3920 "Windows 10 Tab Search Caption Button";
3921const char kWin10TabSearchCaptionButtonDescription[] =
3922 "Move the Tab Search entrypoint besides the window caption buttons on "
3923 "Windows 10 platforms.";
3924
Brett Wilson7b44537e2017-08-18 01:38:283925#endif // defined(OS_WIN)
3926
3927// Mac -------------------------------------------------------------------------
3928
Avi Drissman2e458df2020-07-29 16:24:313929#if defined(OS_MAC)
Brett Wilson7b44537e2017-08-18 01:38:283930
Daniel Hosseinian159cb3d2020-03-13 03:02:023931#if BUILDFLAG(ENABLE_PRINTING)
3932const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend";
3933const char kCupsIppPrintingBackendDescription[] =
3934 "Use the CUPS IPP printing backend instead of the original CUPS backend "
3935 "that calls the PPD API.";
3936#endif // BUILDFLAG(ENABLE_PRINTING)
3937
Owen Min3bfb32232020-10-28 17:52:153938const char kEnterpriseReportingApiKeychainRecreationName[] =
3939 "Enterprise reporting API keychain item recreation.";
3940const char kEnterpriseReportingApiKeychainRecreationDescription[] =
3941 "Allow enterprise reporting private API to recreate keychain item on Mac. "
3942 "The recreated item can be accessed by other binaries.";
3943
Sidney San Martín678fd4112019-03-30 00:13:053944const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar";
3945const char kImmersiveFullscreenDescription[] =
3946 "Automatically hide and show the toolbar in fullscreen.";
3947
Greg Kerrf46f31872019-08-08 20:22:443948const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox";
3949const char kMacSyscallSandboxDescription[] =
3950 "Controls whether the macOS sandbox filters syscalls.";
3951
Christopher Cameron93855ff2019-10-10 19:26:543952const char kMetalName[] = "Metal";
3953const char kMetalDescription[] =
3954 "Use Metal instead of OpenGL for rasterization (if out-of-process "
3955 "rasterization is enabled) and display (if the Skia renderer is enabled)";
3956
Elly Fong-Jonesbe71ce62021-04-07 15:25:033957const char kScreenTimeName[] = "Screen Time";
3958const char kScreenTimeDescription[] =
3959 "Integrate with the macOS Screen Time system.";
3960
Jonah Ryan-Davis90ae3322021-09-21 17:34:483961const char kUseAngleDescriptionMac[] =
3962 "Choose the graphics backend for ANGLE. The OpenGL backend is soon to be "
3963 "deprecated on Mac, and may contain driver bugs that are not planned to be "
3964 "fixed. The Metal backend is still experimental, and may contain bugs that "
3965 "are still being worked on. The Metal backend should be more performant, "
3966 "but may still be behind the OpenGL backend until fully released.";
3967
3968const char kUseAngleMetal[] = "Metal";
3969
Brett Wilson7b44537e2017-08-18 01:38:283970#endif
3971
Jonah Ryan-Davis90ae3322021-09-21 17:34:483972// Windows and Mac -------------------------------------------------------------
3973
3974#if defined(OS_WIN) || defined(OS_MAC)
3975
3976const char kUseAngleName[] = "Choose ANGLE graphics backend";
3977const char kUseAngleDefault[] = "Default";
3978const char kUseAngleGL[] = "OpenGL";
3979
3980#endif // defined(OS_WIN) || defined(OS_MAC)
3981
Brett Wilson7b44537e2017-08-18 01:38:283982// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:343983
Yuta Hijikata235fc62b2020-12-08 03:48:323984#if BUILDFLAG(IS_CHROMEOS_ASH)
vabr0215a8e2017-03-28 12:47:343985
Anastasiia N3967787c2020-11-17 15:05:203986const char kAccountManagementFlowsV2Name[] =
3987 "Enable redesign of account management flows";
3988const char kAccountManagementFlowsV2Description[] =
3989 "Enables redesign of account management flows and Account Manager page in "
3990 "Settings. "
3991 "See go/betterAM";
3992
Brett Wilson7b44537e2017-08-18 01:38:283993const char kAcceleratedMjpegDecodeName[] =
3994 "Hardware-accelerated mjpeg decode for captured frame";
3995const char kAcceleratedMjpegDecodeDescription[] =
3996 "Enable hardware-accelerated mjpeg decode for captured frame where "
3997 "available.";
vabr0215a8e2017-03-28 12:47:343998
Zentaro Kavanagh65b3e112019-09-03 16:18:233999const char kAllowDisableMouseAccelerationName[] =
4000 "Allow disabling mouse acceleration";
4001const char kAllowDisableMouseAccelerationDescription[] =
4002 "Shows a setting to disable mouse acceleration.";
4003
Vyshu9ea9e182021-02-04 17:53:064004const char kAllowRepeatedUpdatesName[] =
4005 "Continue checking for updates before reboot and after initial update.";
4006const char kAllowRepeatedUpdatesDescription[] =
4007 "Continues checking to see if there is a more recent update, even if user"
4008 "has not rebooted to apply the previous update.";
4009
Kyle Horimoto734f0752020-03-20 20:46:544010const char kAllowScrollSettingsName[] =
4011 "Allow changes to scroll acceleration/sensitivity for mice/touchpads.";
4012const char kAllowScrollSettingsDescription[] =
4013 "Shows settings to enable/disable scroll acceleration and to adjust the "
4014 "sensitivity for scrolling.";
4015
Xiaohui Chena32bf512021-09-10 16:48:444016extern const char kAmbientModeNewUrlName[] =
4017 "Use new backend URL format for ChromeOS Screensaver";
4018extern const char kAmbientModeNewUrlDescription[] =
4019 "Use new backend URL format for ChromeOS Screensaver. This helps with "
4020 "testing new backend migration.";
4021
Melissa Zhangbe43ccf2021-08-26 09:52:294022extern const char kAppDiscoveryForOobeName[] =
4023 "OOBE app recommendations with App Discovery Service.";
4024extern const char kAppDiscoveryForOobeDescription[] =
4025 "Use the App Discovery Service to request recommended apps for OOBE.";
4026
tby9a3d8072021-09-01 00:35:454027extern const char kAppDiscoveryRemoteUrlSearchName[] =
4028 "Remote URL app discovery results";
4029extern const char kAppDiscoveryRemoteUrlSearchDescription[] =
4030 "Surface results from a URL in the app discovery service.";
4031
Alex Newcomer2a59139f2021-05-27 19:02:114032extern const char kAppListBubbleName[] =
4033 "Productivity experiment: App Launcher";
4034extern const char kAppListBubbleDescription[] =
4035 "To evaluate an enhanced Launcher experience that aims to improve app "
4036 "workflows by optimizing access to apps, app content, and app actions.";
4037
Maggie Cai062ab3b2020-09-17 13:23:264038const char kAppServiceExternalProtocolName[] = "App Service External Protocol";
4039const char kAppServiceExternalProtocolDescription[] =
4040 "Use the App Service to provide data for external protocol dialog.";
4041
Ryo Hashimoto8f4b30ced2019-04-08 12:14:194042const char kArcCustomTabsExperimentName[] =
4043 "Enable Custom Tabs experiment for ARC";
4044const char kArcCustomTabsExperimentDescription[] =
4045 "Allow Android apps to use Custom Tabs."
4046 "This feature only works on the Canary and Dev channels.";
4047
Alexander Bolodurin4e0a465c2021-03-31 23:14:034048const char kArcDocumentsProviderUnknownSizeName[] =
4049 "Enable ARC DocumentsProvider unknown file size handling";
4050const char kArcDocumentsProviderUnknownSizeDescription[] =
4051 "Allow opening DocumentsProvider files where size is not reported.";
4052
Satoshi Niwa8b1d5282018-10-24 04:53:034053const char kArcFilePickerExperimentName[] =
4054 "Enable file picker experiment for ARC";
4055const char kArcFilePickerExperimentDescription[] =
4056 "Enables using Chrome OS file picker in ARC.";
4057
Tetsui Ohkubo54018862021-06-18 11:13:354058const char kArcImageCopyPasteCompatName[] =
4059 "Enable image copy & paste compatibility mode for ARC";
4060const char kArcImageCopyPasteCompatDescription[] =
4061 "Allows pasting of images to Android apps through commitContent API and "
4062 "share intent.";
4063
Tetsui Ohkubo4c6d7f42021-07-07 16:47:374064const char kArcKeyboardShortcutHelperIntegrationName[] =
4065 "Enable keyboard shortcut helper integration for ARC";
4066const char kArcKeyboardShortcutHelperIntegrationDescription[] =
4067 "Shows keyboard shortcuts from Android apps in Chrome OS Shortcut Viewer";
4068
Lev Rumyantsev6eddc802019-08-27 19:41:214069const char kArcNativeBridgeToggleName[] =
4070 "Toggle between native bridge implementations for ARC";
4071const char kArcNativeBridgeToggleDescription[] =
4072 "Toggle between native bridge implementations for ARC.";
Lev Rumyantsev7a8544312017-08-18 19:26:514073
Josh Horwichc50d5b22020-07-07 22:32:184074const char kArcNativeBridge64BitSupportExperimentName[] =
4075 "Enable experimental 64-bit native bridge support for ARC";
4076const char kArcNativeBridge64BitSupportExperimentDescription[] =
4077 "Enable experimental 64-bit native bridge support for ARC where available.";
4078
Yusuke Sato4717d1782021-03-12 23:27:174079const char kArcRtVcpuDualCoreName[] =
4080 "Enable ARC real time vcpu on a device with 2 logical cores online.";
4081const char kArcRtVcpuDualCoreDesc[] =
4082 "Enable ARC real time vcpu on a device with 2 logical cores online to "
4083 "reduce media playback glitch.";
4084
4085const char kArcRtVcpuQuadCoreName[] =
4086 "Enable ARC real time vcpu on a device with 3+ logical cores online.";
4087const char kArcRtVcpuQuadCoreDesc[] =
4088 "Enable ARC real time vcpu on a device with 3+ logical cores online to "
4089 "reduce media playback glitch.";
4090
Long Cheng373770c72021-09-23 18:33:074091const char kArcUsbDeviceDefaultAttachToVmName[] =
4092 "Attach unclaimed USB devices to ARCVM";
4093const char kArcUsbDeviceDefaultAttachToVmDescription[] =
4094 "When ARCVM is enabled, always attach unclaimed USB devices to ARCVM";
4095
Yury Khmele4649fc2020-12-01 22:59:154096const char kArcUseHighMemoryDalvikProfileName[] =
4097 "Enable ARC high-memory dalvik profile";
4098const char kArcUseHighMemoryDalvikProfileDesc[] =
4099 "Allow Android to use high-memory dalvik profile when applicable for "
4100 "high-memory devices.";
4101
Charles William Dick956790352021-08-24 05:25:254102const char kArcVmBalloonPolicyName[] =
4103 "Enable ARCVM limit cache balloon policy";
4104const char kArcVmBalloonPolicyDesc[] =
4105 "Trigger reclaim in ARCVM to reduce memory use when ChromeOS is running "
4106 "low on memory.";
4107
Tim Sergeant37be4a82021-06-11 07:35:234108const char kArcWebAppShareName[] = "Enable sharing to Web Apps from ARC";
4109const char kArcWebAppShareDescription[] =
4110 "Allow Android apps to send shared text and files to web apps. When "
4111 "disabled, web apps may still appear in share sheets, but will not "
4112 "receive any shared content.";
4113
Mustafa Camurcu32cfc592021-02-10 19:00:404114const char kArcEnableUsapName[] =
4115 "Enable ARC Unspecialized Application Processes";
4116const char kArcEnableUsapDesc[] =
4117 "Enable ARC Unspecialized Application Processes when applicable for "
4118 "high-memory devices.";
4119
Eliot Courtneye87a9c32018-11-20 03:33:024120const char kAshEnablePipRoundedCornersName[] =
4121 "Enable Picture-in-Picture rounded corners.";
4122const char kAshEnablePipRoundedCornersDescription[] =
4123 "Enable rounded corners on the Picture-in-Picture window.";
4124
Andrew Moylan2db11cd2019-05-22 14:25:154125const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
4126const char kAshEnableUnifiedDesktopDescription[] =
4127 "Enable unified desktop mode which allows a window to span multiple "
4128 "displays.";
4129
En-Shuo Hsu23db6bc2021-08-26 15:07:234130const char kAudioUrlName[] = "Enable chrome://audio";
4131const char kAudioUrlDescription[] =
4132 "Enable chrome://audio that is designed for debugging ChromeOS audio "
4133 "issues";
4134
Claudius van der Merwecf95ee62021-06-25 00:07:364135const char kBluetoothAdvertisementMonitoringName[] =
4136 "Bluetooth Advertisement Monitoring";
4137const char kBluetoothAdvertisementMonitoringDescription[] =
4138 "Advertisement monitoring allows applications to register low energy "
4139 "scanners that filter low energy advertisements in a power-efficient "
4140 "manner.";
4141
Michael Sun1b15a302020-04-07 02:57:294142const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size";
4143const char kBluetoothFixA2dpPacketSizeDescription[] =
4144 "Fixes Bluetooth A2DP packet size to a smaller default value to improve "
4145 "audio quality and may fix audio stutter.";
4146
Kyle Horimoto168d45b2021-07-13 01:51:294147const char kBluetoothRevampName[] = "Bluetooth Revamp";
4148const char kBluetoothRevampDescription[] =
4149 "Enables the Chrome OS Bluetooth Revamp, which updates Bluetooth system UI "
4150 "and related infrastructure.";
4151
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:344152const char kBluetoothWbsDogfoodName[] = "Bluetooth WBS dogfood";
4153const char kBluetoothWbsDogfoodDescription[] =
4154 "Enables Bluetooth wideband speech mic as default audio option. "
4155 "Note that flipping this flag makes no difference on most of the "
4156 "Chrome OS models, because Bluetooth WBS is either unsupported "
4157 "or fully launched. Only on the few models that Bluetooth WBS is "
4158 "still stablizing this flag will take effect.";
4159
Jefferson Choi Bernardc84c6502021-06-22 17:35:144160const char kButtonARCNetworkDiagnosticsName[] = "ARC Network Tests Button";
4161const char kButtonARCNetworkDiagnosticsDescription[] =
4162 "Enables the display of a button on the ARC Provisioning failure dialog "
4163 "that opens the connectivity section of the diagnostics app.";
4164
Jiaming Chenga8091322021-08-05 04:30:454165const char kCalendarViewName[] =
4166 "Productivity experiment: Monthly Calendar View";
4167const char kCalendarViewDescription[] =
4168 "Show Monthly Calendar View with Google Calendar events to increase "
4169 "productivity by helping users view their schedules more quickly.";
4170
Wei Lee4fe87182020-12-22 09:32:444171const char kPreferConstantFrameRateName[] = "Prefer Constant Frame Rate";
4172const char kPreferConstantFrameRateDescription[] =
4173 "Enables this flag to prefer using constant frame rate for camera when "
4174 "streaming";
4175
mojahsu3144bf32021-05-26 10:14:464176const char kForceControlFaceAeName[] = "Force control face AE";
4177const char kForceControlFaceAeDescription[] =
4178 "Control this flag to force enable or disable face AE for camera";
mojahsu11ea38ae2021-05-06 03:30:114179
Ricky Lianga3e6a162021-08-16 07:43:144180const char kHdrNetOverrideName[] = "HDRnet control override";
4181const char kHdrNetOverrideDescription[] =
4182 "Overrides the default to forcibly enable or disable the HDRnet feature";
4183
tby989a5b5ad2021-04-16 06:42:204184const char kCategoricalSearchName[] = "Launcher Categorical Search";
4185const char kCategoricalSearchDescription[] =
4186 "Launcher search results grouped by categories";
4187
Chad Duffinc0e2310e2021-06-23 00:13:574188const char kCellularAllowPerNetworkRoamingName[] =
4189 "Allow per-networking roaming";
4190const char kCellularAllowPerNetworkRoamingDescription[] =
4191 "Allows per-network cellular roaming configuration when cellular roaming "
4192 "is not disabled for the device through enterprise policy.";
4193
Regan Hsub9816d52021-05-26 15:03:484194const char kCellularForbidAttachApnName[] = "Forbid Use Attach APN";
4195const char kCellularForbidAttachApnDescription[] =
4196 "If enabled, the value of |kCellularUseAttachApn| should have no effect "
4197 "and the LTE attach APN configuration will not be sent to the modem. This "
4198 "flag exists because the |kCellularUseAttachApn| flag can be enabled "
4199 "by command-line arguments via board overlays which takes precedence over "
4200 "finch configs, which may be needed to turn off the Attach APN feature.";
4201
Vincent Palatinfd080f82020-12-21 19:47:064202const char kCellularUseAttachApnName[] = "Cellular use Attach APN";
4203const char kCellularUseAttachApnDescription[] =
4204 "Use the mobile operator database to set explicitly an Attach APN "
4205 "for the LTE connections rather than letting the modem decide which "
4206 "attach APN to use or retrieve it from the network";
4207
Azeem Arshad43b191b2021-01-15 23:59:564208const char kCellularUseExternalEuiccName[] = "Use external Euicc";
4209const char kCellularUseExternalEuiccDescription[] =
4210 "When enabled Cellular Setup and Settings UI will use the first available "
4211 "external Euicc.";
4212
Roman Arora595d5712021-09-24 18:06:054213const char kComponentUpdaterTestRequestName[] =
4214 "Enable the component updater check 'test-request' parameter";
4215const char kComponentUpdaterTestRequestDescription[] =
4216 "Enables the 'test-request' parameter for component updater check requests."
4217 " Overrides any other component updater check request parameters that may "
4218 "have been specified.";
4219
Yulun Wu1e355132020-02-11 20:12:224220const char kContextualNudgesName[] =
4221 "Contextual nudges for user gesture education";
4222const char kContextualNudgesDescription[] =
4223 "Enables contextual nudges, periodically showing the user a label "
4224 "explaining how to interact with a particular UI element using gestures.";
4225
Joel Hockey71ebbe62021-03-28 06:24:044226const char kCroshSWAName[] = "Crosh System Web App";
4227const char kCroshSWADescription[] =
4228 "When enabled, crosh (Chrome OS Shell) will run as a tabbed System Web App "
4229 "rather than a normal browser tab.";
4230
mlcui378ba4662021-02-16 00:13:344231const char kCrosLanguageSettingsUpdate2Name[] = "Language Settings Update 2";
4232const char kCrosLanguageSettingsUpdate2Description[] =
4233 "Enables the second language settings update. Requires "
4234 "#enable-cros-language-settings-update to be enabled.";
4235
Jing Wang859fb1a2020-11-27 00:26:484236const char kCrosOnDeviceGrammarCheckName[] = "On-device Grammar Check";
4237const char kCrosOnDeviceGrammarCheckDescription[] =
4238 "Enable new on-device grammar check component.";
4239
Brett Wilson7b44537e2017-08-18 01:38:284240const char kCrosRegionsModeName[] = "Cros-regions load mode";
4241const char kCrosRegionsModeDescription[] =
4242 "This flag controls cros-regions load mode";
4243const char kCrosRegionsModeDefault[] = "Default";
4244const char kCrosRegionsModeOverride[] = "Override VPD values.";
4245const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:344246
Fergus Dallf84aa822021-08-25 16:41:224247const char kCrostiniBullseyeUpgradeName[] = "Upgrade Crostini to Bullseye";
4248const char kCrostiniBullseyeUpgradeDescription[] =
4249 "Offer to upgrade Crostini containers on older versions to bullseye.";
4250
David Munro3528c5c2020-01-13 02:44:374251const char kCrostiniDiskResizingName[] = "Allow resizing Crostini disks";
4252const char kCrostiniDiskResizingDescription[] =
4253 "Use preallocated user-resizeable disks for Crostini instead of sparse "
4254 "automatically sized disks.";
4255
Fergus Dall9d0e95a2021-07-30 08:10:114256const char kCrostiniContainerInstallName[] =
4257 "Debian version for new Crostini containers";
4258const char kCrostiniContainerInstallDescription[] =
4259 "New Crostini containers will use this debian version";
David Munro3728ef72019-10-30 07:22:154260
Ben Wells7238dd02019-05-02 08:20:324261const char kCrostiniGpuSupportName[] = "Crostini GPU Support";
4262const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support.";
4263
David Munro7d1a6712021-07-12 06:52:264264const char kCrostiniUseDlcName[] = "Crostini Use DLC";
4265const char kCrostiniUseDlcDescription[] =
4266 "Download the termina VM using the new DLC service instead of the old "
4267 "component updater.";
4268
David Munro9fce777c2020-10-07 03:55:544269const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch";
4270const char kCrostiniResetLxdDbDescription[] =
4271 "Recreates the LXD database every time we launch it";
4272
Pilar Molina Lopezd5b787512020-11-19 00:21:484273const char kDisableBufferBWCompressionName[] =
4274 "Disable buffer bandwidth compression";
4275const char kDisableBufferBWCompressionDescription[] =
4276 "Disable bandwidth compression when allocating buffers";
4277
Ricky Liang8df43372020-07-09 09:41:094278const char kDisableCameraFrameRotationAtSourceName[] =
4279 "Disable camera frame rotation at source";
4280const char kDisableCameraFrameRotationAtSourceDescription[] =
4281 "Disable camera frame rotation to the upright display orientation in the "
4282 "video capture device";
4283
Thanh Nguyena4c933442019-05-11 03:43:554284const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()";
4285const char kDisableCancelAllTouchesDescription[] =
4286 "If enabled, a canceled touch will not force all other touches to be "
4287 "canceled.";
4288
Pavol Marko07c02b72020-11-19 12:04:534289const char kDisableIdleSocketsCloseOnMemoryPressureName[] =
4290 "Disable closing idle sockets on memory pressure";
4291const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] =
4292 "If enabled, idle sockets will not be closed when chrome detects memory "
4293 "pressure. This applies to web pages only and not to internal requests.";
4294
Daniele Castagna893d822e2019-03-08 21:37:114295const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
4296const char kDisableExplicitDmaFencesDescription[] =
4297 "Always rely on implicit syncrhonization between GPU and display "
4298 "controller instead of using dma-fences explcitily when available.";
4299
Bailey Berro01f09742020-07-21 05:40:594300const char kDisplayAlignmentAssistanceName[] =
4301 "Enable Display Alignment Assistance";
4302const char kDisplayAlignmentAssistanceDescription[] =
4303 "Show indicators on shared edges of the displays when user is "
4304 "attempting to move their mouse over to another display. Show preview "
4305 "indicators when the user is moving a display in display layouts.";
4306
Jon Mann8e448142021-07-29 19:31:304307const char kFastPairName[] = "Enable Fast Pair";
4308const char kFastPairDescription[] =
4309 "Enables Google Fast Pair service which uses BLE to discover supported "
4310 "nearby Bluetooth devices and surfaces a notification for quick pairing. "
4311 "Use along with #bluetooth-advertisement-monitoring to allow background "
4312 "scanning.";
4313
Miguel Casas8821b0982020-07-02 12:28:494314const char kUseHDRTransferFunctionName[] =
4315 "Monitor/Display HDR transfer function";
4316const char kUseHDRTransferFunctionDescription[] =
4317 "Allows using the HDR transfer functions of any connected monitor that "
4318 "supports it";
Miguel Casasf15028b12019-10-23 12:52:324319
Giovanni Ortuño Urquidi3e5e2072019-09-25 06:50:204320const char kDisableOfficeEditingComponentAppName[] =
4321 "Disable Office Editing for Docs, Sheets & Slides";
4322const char kDisableOfficeEditingComponentAppDescription[] =
4323 "Disables Office Editing for Docs, Sheets & Slides component app so "
4324 "handlers won't be registered, making it possible to install another "
4325 "version for testing.";
4326
Ahmed Fakhry4f567e692018-10-16 15:51:084327const char kDoubleTapToZoomInTabletModeName[] =
4328 "Double-tap to zoom in tablet mode";
4329const char kDoubleTapToZoomInTabletModeDescription[] =
4330 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
4331 "page.";
4332
Yulun Wub88a9202021-07-13 19:44:564333const char kQuickSettingsPWANotificationsName[] =
4334 "Enable setting of PWA notification permissions in quick settings ";
4335const char kQuickSettingsPWANotificationsDescription[] =
4336 "Replace website notification permissions with PWA notification "
4337 "permissions in the quick settings menu. Website notification permissions "
4338 "settings will be migrated to the lacros - chrome browser.";
4339
Austin Tankiang3d356862020-10-01 06:26:154340const char kDriveFsBidirectionalNativeMessagingName[] =
4341 "Enable bidirectional native messaging for DriveFS";
4342const char kDriveFsBidirectionalNativeMessagingDescription[] =
4343 "Enable enhanced native messaging host to communicate with DriveFS.";
4344
Per Åhgrend439e1e2021-05-16 13:49:554345const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS";
4346const char kCrOSEnforceSystemAecDescription[] =
4347 "Enforces using the system variant in CrAS of the AEC";
4348
4349const char kCrOSEnforceSystemAecAgcName[] =
4350 "Enforce using the system AEC and AGC in CrAS";
4351const char kCrOSEnforceSystemAecAgcDescription[] =
4352 "Enforces using the system variants in CrAS of the AEC and AGC.";
4353
4354const char kCrOSEnforceSystemAecNsName[] =
4355 "Enforce using the system AEC and NS in CrAS";
4356const char kCrOSEnforceSystemAecNsDescription[] =
4357 "Enforces using the system variants in CrAS of the AEC and NS.";
4358
4359const char kCrOSEnforceSystemAecNsAgcName[] =
4360 "Enforce using the system AEC, NS and AGC in CrAS";
4361const char kCrOSEnforceSystemAecNsAgcDescription[] =
4362 "Enforces using the system variants in CrAS of the AEC, NS and AGC.";
4363
Andrew Moylan2db11cd2019-05-22 14:25:154364const char kEnableAppReinstallZeroStateName[] =
4365 "Enable Zero State App Reinstall Suggestions.";
4366const char kEnableAppReinstallZeroStateDescription[] =
4367 "Enable Zero State App Reinstall Suggestions feature in launcher, which "
4368 "will show app reinstall recommendations at end of zero state list.";
4369
Matthew Mourgoscf22b4b2019-03-06 23:46:394370const char kEnableAppGridGhostName[] = "App Grid Ghosting";
4371const char kEnableAppGridGhostDescription[] =
4372 "Enables ghosting during an item drag in launcher.";
4373
Lei Zhang0a318af2018-11-14 02:19:464374const char kEnableArcUnifiedAudioFocusName[] =
Becca Hughes34415e82018-10-05 18:47:374375 "Enable unified audio focus on ARC";
Lei Zhang0a318af2018-11-14 02:19:464376const char kEnableArcUnifiedAudioFocusDescription[] =
Becca Hughes34415e82018-10-05 18:47:374377 "If audio focus is enabled in Chrome then this will delegate audio focus "
4378 "control in Android apps to Chrome.";
4379
Yue Liebaa9952018-12-07 21:41:264380const char kEnableAssistantAppSupportName[] = "Enable Assistant App Support";
4381const char kEnableAssistantAppSupportDescription[] =
4382 "Enable the Assistant App Support feature";
4383
Xiaohui Chenb523747b2019-03-14 23:38:324384const char kEnableAssistantLauncherIntegrationName[] =
4385 "Assistant & Launcher integration";
4386const char kEnableAssistantLauncherIntegrationDescription[] =
4387 "Combine Launcher search with the power of Assistant to provide the most "
4388 "useful answer for each query. Requires Assistant to be enabled.";
4389
Xiao Yangf59e6932019-07-19 00:18:134390const char kEnableAssistantRoutinesName[] = "Assistant Routines";
4391const char kEnableAssistantRoutinesDescription[] = "Enable Assistant Routines.";
4392
Alex Newcomere5a362c2019-05-02 19:31:354393const char kEnableBackgroundBlurName[] = "Enable background blur.";
4394const char kEnableBackgroundBlurDescription[] =
minchab2ded5ce2019-09-06 18:32:284395 "Enables background blur for the Launcher, Shelf, Unified System Tray etc.";
Alex Newcomere5a362c2019-05-02 19:31:354396
Alex Newcomer46bfe142020-07-10 20:28:564397const char kEnhancedClipboardName[] =
4398 "Productivity Experiment: Enable Enhanced Clipboard";
4399const char kEnhancedClipboardDescription[] =
4400 "Enables an experimental clipboard history which aims to reduce context "
4401 "switching. After copying to the clipboard, press search + v to show the "
4402 "history. Selecting something from the menu will result in a paste to the "
4403 "active window.";
4404
Lei Zhang1a6fd01b2021-03-24 17:03:484405const char kEnhancedClipboardNudgeSessionResetName[] =
Matthew Mourgosdfd6d852020-10-22 03:15:284406 "Enable resetting enhanced clipboard nudge data";
Lei Zhang1a6fd01b2021-03-24 17:03:484407const char kEnhancedClipboardNudgeSessionResetDescription[] =
Matthew Mourgosdfd6d852020-10-22 03:15:284408 "When enabled, this will reset the clipboard nudge shown data on every new "
4409 "user session, allowing the nudge to be shown again.";
4410
Ana Salazarde4d2692021-06-16 01:37:064411const char kEnhancedClipboardScreenshotNudgeName[] =
4412 "Enable clipboard history screenshot nudge";
4413const char kEnhancedClipboardScreenshotNudgeDescription[] =
4414 "When enabled, the keyboard shortcut for clipboard history will show in "
4415 "the screenshot notification banner in clamshell mode.";
4416
Charles Zhao9d1b8def2019-10-16 22:32:394417const char kEnableCrOSActionRecorderName[] = "Enable CrOS action recorder";
4418const char kEnableCrOSActionRecorderDescription[] =
4419 "When enabled, each app launching, file opening, setting change, and url "
4420 "visiting will be logged locally into an encrypted file. Should not be "
Charles Zhaoafe9e8d2019-10-17 00:34:344421 "enabled. Be aware that hash option only provides a thin layer of privacy.";
Charles Zhao9d1b8def2019-10-16 22:32:394422
Garrick Evans0387e712021-04-28 05:24:324423const char kEnableDnsProxyName[] = "Enable DNS proxy service";
4424const char kEnableDnsProxyDescription[] =
4425 "When enabled, standard DNS queries will be proxied through the system "
4426 "service";
4427
Garrick Evans1d407ca92021-05-10 04:04:304428const char kDnsProxyEnableDOHName[] =
4429 "Enable DNS-over-HTTPS in the DNS proxy service";
4430const char kDnsProxyEnableDOHDescription[] =
4431 "When enabled, the DNS proxy will perform DNS-over-HTTPS in accordance "
4432 "with the Chrome OS SecureDNS settings.";
4433
James Hawkinsa9fefa8d2020-10-08 00:24:034434const char kEnableHostnameSettingName[] = "Enable setting the device hostname";
4435const char kEnableHostnameSettingDescription[] =
4436 "Enables the ability to set the Chrome OS hostname, the name of the device "
4437 "that is exposed to the local network";
4438
Tim Sergeant9aeecd92021-05-24 07:29:074439const char kEnableGeneratedWebApksName[] = "Generated WebAPKs";
4440const char kEnableGeneratedWebApksDescription[] =
4441 "When enabled, generates and installs a WebAPK inside ARC for each "
4442 "installed and eligible PWA.";
4443
Harry Cuttscfe6d934f2019-06-05 21:45:554444const char kEnableGesturePropertiesDBusServiceName[] =
4445 "Enable gesture properties D-Bus service";
4446const char kEnableGesturePropertiesDBusServiceDescription[] =
4447 "Enable a D-Bus service for accessing gesture properties, which are used "
4448 "to configure input devices.";
4449
Xiaohui Chenf4283f32018-11-26 20:02:504450const char kEnableGoogleAssistantDspName[] =
4451 "Enable Google Assistant with hardware-based hotword";
4452const char kEnableGoogleAssistantDspDescription[] =
4453 "Enable an experimental feature that uses hardware-based hotword detection "
4454 "for Assistant. Only a limited number of devices have this type of "
4455 "hardware support.";
4456
Xiaohui Chenc3baca42018-11-30 19:29:374457const char kEnableGoogleAssistantStereoInputName[] =
4458 "Enable Google Assistant with stereo audio input";
4459const char kEnableGoogleAssistantStereoInputDescription[] =
4460 "Enable an experimental feature that uses stereo audio input for hotword "
4461 "and voice to text detection in Google Assistant.";
4462
Xiaohui Chen3f3a5bf12019-09-28 00:29:454463const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC";
4464const char kEnableGoogleAssistantAecDescription[] =
4465 "Enable an experimental feature that removes local feedback from audio "
4466 "input to help hotword and ASR when background audio is playing.";
4467
Rob Schonberger11bb2812019-07-31 23:41:004468const char kEnableHeuristicStylusPalmRejectionName[] =
4469 "Enable Heuristic for Stylus/Palm Rejection.";
4470const char kEnableHeuristicStylusPalmRejectionDescription[] =
4471 "Enable additional heuristic palm rejection logic when interacting with "
4472 "stylus usage. Not intended for all devices.";
4473
Harry Cutts8b445de2021-06-10 02:25:554474const char kEnableInputEventLoggingName[] = "Enable input event logging";
4475const char kEnableInputEventLoggingDescription[] =
4476 "Enable detailed logging of input events from touchscreens, touchpads, and "
4477 "mice. These events include the locations of all touches as well as "
4478 "relative pointer movements, and so may disclose sensitive data. They "
4479 "will be included in feedback reports and system logs, so DO NOT ENTER "
4480 "SENSITIVE INFORMATION with this flag enabled.";
4481
Harry Cuttsf74356712021-05-14 02:13:384482const char kEnableInputInDiagnosticsAppName[] =
4483 "Enable input device cards in the Diagnostics App";
4484const char kEnableInputInDiagnosticsAppDescription[] =
4485 "Enable input device cards in the Diagnostics App";
4486
Anton Swifton81ecf0c2021-05-04 02:28:514487const char kEnableInputNoiseCancellationUiName[] =
4488 "Enable Input Noise Cancellation UI.";
4489const char kEnableInputNoiseCancellationUiDescription[] =
4490 "Enable toggling input noise cancellation through the Quick Settings. By "
4491 "default, this flag is disabled.";
4492
[email protected]b2bed9d2020-12-09 23:49:424493const char kEnableLauncherSearchNormalizationName[] =
4494 "Enable normalization of launcher search results";
4495const char kEnableLauncherSearchNormalizationDescription[] =
4496 "Enable normalization of scores from different providers to the "
4497 "launcher.";
4498
Ana Salazar270fed42020-06-11 14:44:404499const char kNewDragSpecInLauncherName[] = "Enable Launcher App Paging";
4500const char kNewDragSpecInLauncherDescription[] =
4501 "Show visual affordance of launcher app pages and enable page previews "
4502 "when dragging apps.";
4503
Rob Schonbergerc258473f2019-11-08 05:09:354504const char kEnableNeuralStylusPalmRejectionName[] =
4505 "Enable Neural Palm Detection";
4506const char kEnableNeuralStylusPalmRejectionDescription[] =
4507 "Experimental: Enable Neural Palm detection. Not compatible with all "
4508 "devices.";
4509
Xiangdong Kongec5a0772021-05-03 21:53:014510const char kEnableOsFeedbackName[] = "Enable updated Feedback Tool App";
4511const char kEnableOsFeedbackDescription[] =
4512 "Enable the feedback tool with new UX design that helps users mitigate "
4513 "the issues while writing feedback and makes the UI easier to use.";
4514
Mitsuru Oshimadaf54572020-04-07 14:47:594515const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping";
4516const char kEnableNewShortcutMappingDescription[] =
4517 "Enables experimental new shortcut mapping";
4518
Rob Schonbergerba235782020-03-11 05:01:144519const char kEnablePalmOnMaxTouchMajorName[] =
4520 "Enable Palm when Touch is Maximum";
4521const char kEnablePalmOnMaxTouchMajorDescription[] =
4522 "Experimental: Enable Palm detection when the touchscreen reports max "
4523 "size. Not compatible with all devices.";
4524
4525const char kEnablePalmOnToolTypePalmName[] =
4526 "Enable Palm when Tool Type is Palm";
4527const char kEnablePalmOnToolTypePalmDescription[] =
4528 "Experimental: Enable palm detection when touchscreen reports "
4529 "TOOL_TYPE_PALM. Not compatible with all devices.";
4530
Rob Schonbergere0a8e3c2020-04-21 03:04:394531const char kEnablePalmSuppressionName[] =
4532 "Enable Palm Suppression with Stylus.";
4533const char kEnablePalmSuppressionDescription[] =
4534 "If enabled, suppresses touch when a stylus is on a touchscreen.";
4535
Yue Li354425c2021-06-15 00:26:044536const char kEnableQuickAnswersV2Name[] = "Enable Quick Answers V2 features";
4537const char kEnableQuickAnswersV2Description[] =
4538 "Enable Quick Answers V2 features.";
4539
Yue Li26c44942021-08-12 17:25:114540const char kDisableQuickAnswersV2TranslationName[] =
4541 "Disable Quick Answers Translation";
4542const char kDisableQuickAnswersV2TranslationDescription[] =
4543 "Disable translation services of the Quick Answers.";
4544
Brian Geffon134e77c52019-07-30 21:49:584545const char kTrimOnMemoryPressureName[] = "Trim Working Set on memory pressure";
4546const char kTrimOnMemoryPressureDescription[] =
4547 "Trim Working Set periodically on memory pressure";
4548
paulzhchen26343e92021-02-09 05:43:054549const char kEcheSWAName[] = "Enable Eche App SWA.";
4550const char kEcheSWADescription[] = "Enable the SWA version of the Eche.";
4551
paulzhchen7ee2f68e2021-04-22 23:06:464552const char kEcheSWAResizingName[] = "Allow resizing Eche App.";
4553const char kEcheSWAResizingDescription[] =
4554 "Enable a naive resize for the Eche window";
4555
Michael Checo9d122652021-03-18 15:04:344556const char kEnableNetworkingInDiagnosticsAppName[] =
4557 "Enable networking cards in the Diagnostics App";
4558const char kEnableNetworkingInDiagnosticsAppDescription[] =
4559 "Enable networking cards in the Diagnostics App";
4560
Pranav Batra96b8eba2021-07-02 21:17:214561const char kEnableOAuthIppName[] =
4562 "Enable OAuth when printing via the IPP protocol";
4563const char kEnableOAuthIppDescription[] =
4564 "Enable OAuth when printing via the IPP protocol";
4565
xiangdong kong6fce0b82021-08-21 02:53:304566const char kEnableRevenLogSourceName[] =
4567 "Enable Reven Log Source on chrome://system and feedback logs";
4568const char kEnableRevenLogSourceDescription[] =
4569 "Enable Reven Log Source on chrome://system and feedback logs";
4570
Eleni Dimitriadis86ff60602019-12-23 05:17:094571const char kEnableSuggestedFilesName[] = "Enable Suggested Files";
4572const char kEnableSuggestedFilesDescription[] =
Rachel Wongce88ffdd2021-08-10 04:32:564573 "Enable the Suggested Files feature in Launcher, which will show local "
4574 "file suggestions in the suggestion chips when the launcher is opened.";
4575
4576const char kEnableSuggestedDriveFilesName[] = "Enable Suggested Drive Files";
4577const char kEnableSuggestedDriveFilesDescription[] =
4578 "Enable the Suggested Drive Files feature in Launcher, which will show "
4579 "Drive file suggestions in the suggestion chips when the launcher is "
4580 "opened.";
Eleni Dimitriadis86ff60602019-12-23 05:17:094581
Taoyu Li6d8ba6e2021-08-31 06:15:434582const char kEnableWireGuardName[] = "Enable WireGuard VPN";
4583const char kEnableWireGuardDescription[] =
4584 "Enable the support of WireGuard VPN as a native VPN option. Requires a "
4585 "kernel version that support it.";
4586
Jason Zhang60f02d502021-07-21 03:30:004587const char kESimPolicyName[] = "Enable ESim Policy";
4588const char kESimPolicyDescription[] =
4589 "Enable the support for policy controlled provisioning and configuration "
4590 "of eSIM cellular networks";
4591
Prabir Pradhan67677e82020-09-11 18:26:524592const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients";
4593const char kExoGamepadVibrationDescription[] =
4594 "Allow Exo clients like Android to request vibration events for gamepads "
4595 "that support it.";
4596
Nicholas Hollingum4cbff262020-09-08 04:02:154597const char kExoOrdinalMotionName[] =
4598 "Raw (unaccelerated) motion for Linux applications";
4599const char kExoOrdinalMotionDescription[] =
4600 "Send unaccelerated values as raw motion events to linux applications.";
4601
Nicholas Hollingume9a6744f2019-10-03 05:57:294602const char kExoPointerLockName[] = "Pointer lock for Linux applications";
4603const char kExoPointerLockDescription[] =
4604 "Allow Linux applications to request a pointer lock, i.e. exclusive use of "
4605 "the mouse pointer.";
4606
Ben Sylvester Millar410c4d1c2021-01-29 00:19:424607const char kExoLockNotificationName[] = "Notification bubble for UI lock";
4608const char kExoLockNotificationDescription[] =
4609 "Show a notification bubble once an application has switched to "
4610 "non-immersive fullscreen mode or obtained pointer lock.";
4611
Akihiro Ota1519aad2021-02-01 21:36:524612const char kExperimentalAccessibilityDictationExtensionName[] =
4613 "Experimental accessibility dictation extension.";
4614const char kExperimentalAccessibilityDictationExtensionDescription[] =
4615 "Enables the JavaScript dictation extension.";
4616
Akihiro Ota59f4a212021-02-02 02:11:474617const char kExperimentalAccessibilityDictationOfflineName[] =
4618 "Experimental accessibility dictation offline.";
4619const char kExperimentalAccessibilityDictationOfflineDescription[] =
4620 "Enables offline speech recognition for the accessibility dictation "
4621 "feature.";
4622
Katie Dektar27081912021-09-07 23:18:234623const char kExperimentalAccessibilityDictationCommandsName[] =
4624 "Experimental accessibility dictation commands";
4625const char kExperimentalAccessibilityDictationCommandsDescription[] =
4626 "Enables text editing commands for the accessibility dictation feature.";
4627
Rose Garcia26e2ae32019-06-25 00:57:544628const char kExperimentalAccessibilitySwitchAccessTextName[] =
4629 "Enable enhanced Switch Access text input.";
4630const char kExperimentalAccessibilitySwitchAccessTextDescription[] =
4631 "Enable experimental or in-progress Switch Access features for improved "
4632 "text input";
4633
Anastasia Helfinsteinb4efe142020-09-25 05:15:424634const char kSwitchAccessPointScanningName[] =
4635 "Enable point scanning with Switch Access.";
4636const char kSwitchAccessPointScanningDescription[] =
4637 "Enable an in-process feature to select points onscreen with Switch "
4638 "Access.";
4639
Anastasia Helfinstein20349cf2021-02-04 01:25:214640const char kExperimentalAccessibilitySwitchAccessSetupGuideName[] =
4641 "Enable setup guide for Switch Access.";
4642const char kExperimentalAccessibilitySwitchAccessSetupGuideDescription[] =
4643 "Enable a setup guide to walk through the steps of initially configuring "
4644 "Switch Access.";
4645
Josiah K376e0352021-02-17 23:44:494646const char kMagnifierContinuousMouseFollowingModeSettingName[] =
4647 "Enable ability to choose continuous mouse following mode in Magnifier "
4648 "settings";
4649const char kMagnifierContinuousMouseFollowingModeSettingDescription[] =
4650 "Enable feature which adds ability to choose new continuous mouse "
4651 "following mode in Magnifier settings.";
4652
Nigel Taoa564f9a2021-07-11 14:54:154653const char kFilesArchivemountName[] = "Archivemount in Files App";
4654const char kFilesArchivemountDescription[] =
4655 "Enable mounting various archive formats in File Manager.";
4656
Ben Reich03d296b2021-07-13 04:38:054657const char kFilesBannerFrameworkName[] =
4658 "Updated Banner framework in Files app";
4659const char kFilesBannerFrameworkDescription[] =
4660 "Enable the updated branner framework in Files app";
4661
Omid Tourzanbf2a0dcf2020-09-10 08:53:554662const char kFilesSinglePartitionFormatName[] =
4663 "Enable Partitioning of Removable Disks.";
4664const char kFilesSinglePartitionFormatDescription[] =
4665 "Enable partitioning of removable disks into single partition.";
4666
Josh Simmons7888f7d2020-08-07 04:47:524667const char kFilesSWAName[] = "Enable Files App SWA.";
4668const char kFilesSWADescription[] =
4669 "Enable the SWA version of the file manager.";
4670
Joel Hockeya4865f1f2020-10-09 00:41:274671const char kFilesTrashName[] = "Enable Files Trash.";
4672const char kFilesTrashDescription[] =
4673 "Enable trash for My files volume in Files App.";
4674
François Degros0caa0d22020-08-13 02:22:324675const char kFilesZipUnpackName[] = "New ZIP unpacking in Files App";
4676const char kFilesZipUnpackDescription[] =
4677 "Enable new ZIP archive extraction system in File Manager.";
François Degros1e581402020-04-28 08:29:594678
Ricky Liang3bd2754b52020-10-07 02:50:324679const char kForceSpectreVariant2MitigationName[] =
4680 "Force Spectre variant 2 mitigagtion";
4681const char kForceSpectreVariant2MitigationDescription[] =
4682 "Forces Spectre variant 2 mitigation. Setting this to enabled will "
4683 "override #spectre-variant2-mitigation and any system-level setting that "
4684 "disables Spectre variant 2 mitigation.";
4685
Lei Zhang1a6fd01b2021-03-24 17:03:484686const char kFiltersInRecentsName[] = "Enable filters in Recents";
4687const char kFiltersInRecentsDescription[] =
Naoki Fukino46529392020-08-11 11:46:094688 "Enable file-type filters (Audio, Images, Videos) in Files App Recents "
4689 "view.";
4690
Daniel Anderssona36c4bc2021-06-04 22:09:434691const char kFocusFollowsCursorName[] = "Focus follows cursor";
4692const char kFocusFollowsCursorDescription[] =
4693 "Enable window focusing by moving the cursor.";
4694
yjliu8f78e8b2020-07-22 20:51:214695const char kFrameThrottleFpsName[] = "Set frame throttling fps.";
4696const char kFrameThrottleFpsDescription[] =
4697 "Set the throttle fps for compositor frame submission.";
4698const char kFrameThrottleFpsDefault[] = "Default";
4699const char kFrameThrottleFps5[] = "5 fps";
4700const char kFrameThrottleFps10[] = "10 fps";
4701const char kFrameThrottleFps15[] = "15 fps";
4702const char kFrameThrottleFps20[] = "20 fps";
4703const char kFrameThrottleFps25[] = "25 fps";
4704const char kFrameThrottleFps30[] = "30 fps";
4705
Nancy Wangd74f1752020-11-10 01:16:324706const char kFullRestoreName[] = "Full restore";
4707const char kFullRestoreDescription[] = "Chrome OS full restore";
4708
Noel Gordonc736eb32021-07-30 05:53:164709const char kFuseBoxName[] = "Enable ChromeOS FuseBox service";
4710const char kFuseBoxDescription[] = "ChromeOS FuseBox service.";
4711
Callistus4352dba2021-06-10 11:37:454712const char kHelpAppBackgroundPageName[] = "Help App Background Page";
4713const char kHelpAppBackgroundPageDescription[] =
4714 "Enables the Background page in the help app. The background page is used "
4715 "to initialize the Help App Launcher search index and show the Discover "
4716 "tab notification.";
4717
Callistus8e47f8b2021-04-14 02:02:304718const char kHelpAppDiscoverTabName[] = "Help App Discover Tab";
4719const char kHelpAppDiscoverTabDescription[] =
4720 "Enables the Discover tab in the help app. Even if the feature is enabled, "
4721 "internal app logic might decide not to show the tab.";
4722
Zufeng Wang9d3362eb822021-03-11 00:23:294723const char kHelpAppLauncherSearchName[] = "Help App launcher search";
4724const char kHelpAppLauncherSearchDescription[] =
4725 "Enables showing search results from the help app in the launcher.";
4726
Zufeng Wang884a7902020-06-30 05:37:334727const char kHelpAppSearchServiceIntegrationName[] =
4728 "Help App search service integration";
4729const char kHelpAppSearchServiceIntegrationDescription[] =
4730 "Enables the integration between the help app and the local search"
4731 " service. Includes using the search service for in app search.";
4732
Becca Hughes71465532019-04-12 19:18:554733const char kHideArcMediaNotificationsName[] = "Hide ARC media notifications";
4734const char kHideArcMediaNotificationsDescription[] =
4735 "Hides media notifications for ARC apps. Requires "
4736 "#enable-media-session-notifications to be enabled.";
4737
David Black863ff422021-07-02 20:05:304738const char kHoldingSpaceInProgressDownloadsIntegrationName[] =
4739 "Enable showing in-progress downloads in Tote.";
4740const char kHoldingSpaceInProgressDownloadsIntegrationDescription[] =
4741 "Show in-progress download functionality in Tote to increase productivity "
4742 "by giving users one place to go to monitor and access their downloads.";
4743
Lei Zhangc05af2a2020-05-15 20:54:054744const char kImeAssistAutocorrectName[] = "Enable assistive autocorrect";
4745const char kImeAssistAutocorrectDescription[] =
John Palmer3ace5a72020-03-11 05:57:514746 "Enable assistive auto-correct features for native IME";
4747
Curtis McMullana1900062021-06-28 01:13:254748const char kImeAssistEmojiEnhancedName[] = "Enable enhanced assistive emojis";
4749const char kImeAssistEmojiEnhancedDescription[] =
4750 "Enable enhanced assistive emoji suggestion features for native IME";
4751
Curtis McMullan35800d22020-11-26 06:45:194752const char kImeAssistMultiWordName[] =
4753 "Enable assistive multi word suggestions";
4754const char kImeAssistMultiWordDescription[] =
4755 "Enable assistive multi word suggestions for native IME";
4756
Curtis McMullan6f6526d2021-07-09 04:22:454757const char kImeAssistMultiWordExpandedName[] =
4758 "Enable expanded assistive multi word suggestions";
4759const char kImeAssistMultiWordExpandedDescription[] =
4760 "Enable expanded assistive multi word suggestions for native IME";
4761
Jing Wang1c45fe392020-03-05 01:10:234762const char kImeAssistPersonalInfoName[] = "Enable assistive personal info";
4763const char kImeAssistPersonalInfoDescription[] =
4764 "Enable auto-complete suggestions on personal infomation for native IME.";
4765
My Nguyenc5f0def2020-03-29 23:22:154766const char kImeEmojiSuggestAdditionName[] =
4767 "Enable emoji suggestion (addition)";
4768const char kImeEmojiSuggestAdditionDescription[] =
4769 "Enable emoji suggestion as addition to the text written for native IME.";
4770
Yingbing Wu09cd99a2020-02-14 09:14:244771const char kImeMozcProtoName[] = "Enable protobuf on Japanese IME";
4772const char kImeMozcProtoDescription[] =
4773 "Enable Japanese IME to use protobuf as interactive message format to "
4774 "replace JSON";
4775
Leo Zhang770ee9a2020-11-03 01:06:594776const char kImeServiceDecoderName[] = "ChromeOS IME Service Decoder";
4777const char kImeServiceDecoderDescription[] =
4778 "Controls whether ChromeOS system IME works with the NaCl decoders or "
4779 "the decoders loaded in the IME service.";
4780
John Palmerd6d1d0f2020-12-07 03:02:054781const char kImeSystemEmojiPickerName[] = "System emoji picker";
4782const char kImeSystemEmojiPickerDescription[] =
4783 "Controls whether a System emoji picker, or the virtual keyboard is used "
4784 "for inserting emoji.";
4785
John Palmer77ce9282021-07-15 09:23:094786const char kImeSystemEmojiPickerClipboardName[] =
4787 "System emoji picker clipboard";
4788const char kImeSystemEmojiPickerClipboardDescription[] =
4789 "Emoji picker will insert emoji into clipboard if they can't be inserted "
4790 "into a text field";
John Palmer90a32212021-08-03 08:49:134791const char kImeStylusHandwritingName[] = "Stylus Handwriting";
4792const char kImeStylusHandwritingDescription[] =
4793 "Enable VK UI for stylus in text fields";
John Palmer77ce9282021-07-15 09:23:094794
John Palmer2530f912021-05-24 05:06:304795const char kCrosLanguageSettingsImeOptionsInSettingsName[] =
4796 "Ime settings in settings";
4797const char kCrosLanguageSettingsImeOptionsInSettingsDescription[] =
4798 "Adds IME settings to the settings menu";
4799
Maggie Cai05324142020-05-07 00:41:494800const char kIntentPickerPWAPersistenceName[] = "Intent picker PWA Persistence";
4801const char kIntentPickerPWAPersistenceDescription[] =
4802 "Allow user to always open with PWA in intent picker.";
4803
Nick Czajka61982be2020-12-09 23:52:334804const char kKeyboardBasedDisplayArrangementInSettingsName[] =
4805 "Keyboard-based Display Arrangement in Settings";
4806const char kKeyboardBasedDisplayArrangementInSettingsDescription[] =
4807 "Enables using arrow keys to rearrange displays on Settings > Device > "
4808 "Displays page.";
4809
Erik Chend7082ec2021-06-25 01:04:124810const char kLacrosAvailabilityIgnoreName[] =
4811 "Ignore lacros-availability policy";
4812const char kLacrosAvailabilityIgnoreDescription[] =
4813 "Makes the lacros-availability policy have no effect. Instead Lacros "
4814 "availability will be controlled by experiment and/or user flags.";
4815
Hidehiko Abe9f190d12021-03-18 12:55:204816const char kLacrosPrimaryName[] = "Lacros as the primary browser";
4817const char kLacrosPrimaryDescription[] =
4818 "Use Lacros-chrome as the primary web browser on Chrome OS. "
4819 "This flag is ignored if Lacros support is disabled.";
4820
Erik Chen601a5d62020-12-07 20:05:124821const char kLacrosStabilityName[] = "Lacros stability";
4822const char kLacrosStabilityDescription[] = "Frequency of Lacros updates.";
4823
Erik Chen71bc6ad2021-05-11 18:06:404824const char kLacrosStabilityLeastStableDescription[] = "Daily updates";
4825const char kLacrosStabilityLessStableDescription[] = "Weekly updates";
4826const char kLacrosStabilityMoreStableDescription[] = "Monthly updates";
Erik Chen601a5d62020-12-07 20:05:124827
Jae Hoon Kim94e1cfd2021-05-19 20:52:524828const char kLacrosSelectionName[] = "Lacros selection";
4829const char kLacrosSelectionDescription[] =
4830 "Choosing between rootfs or stateful Lacros.";
4831
4832const char kLacrosSelectionRootfsDescription[] = "Rootfs";
4833const char kLacrosSelectionStatefulDescription[] = "Stateful";
4834
James Cook2fe5ca7b2020-10-09 02:54:174835const char kLacrosSupportName[] = "Lacros support";
James Cookac2473be2020-04-28 00:54:184836const char kLacrosSupportDescription[] =
Yuta Hijikata45214bc2021-04-27 16:36:384837 "Support for the experimental lacros-chrome browser. Please note that the "
4838 "first restart can take some time to setup lacros-chrome. Please DO NOT "
4839 "attempt to turn off the device during the restart.";
James Cookac2473be2020-04-28 00:54:184840
Rachel Wong0210c452021-04-29 03:40:024841const char kLauncherQueryHighlightingName[] = "Launcher query highlighting";
4842const char kLauncherQueryHighlightingDescription[] =
4843 "Enables highlighting occurrences of the search query in launcher search "
4844 "result titles.";
4845
Ahmed Fakhry039882f2020-06-16 21:56:214846const char kLimitShelfItemsToActiveDeskName[] =
4847 "Limit Shelf items to active desk";
4848const char kLimitShelfItemsToActiveDeskDescription[] =
4849 "Limits items on the shelf to the ones associated with windows on the "
4850 "active desk";
4851
Ahmed Fakhry15d707e2019-02-22 23:54:214852const char kListAllDisplayModesName[] = "List all display modes";
4853const char kListAllDisplayModesDescription[] =
4854 "Enables listing all external displays' modes in the display settings.";
4855
Gil Dekel11cbdfb2020-12-23 21:43:274856const char kEnableHardwareMirrorModeName[] = "Enable Hardware Mirror Mode";
4857const char kEnableHardwareMirrorModeDescription[] =
4858 "Enables hardware support when multiple displays are set to mirror mode.";
4859
Becca Hughesca82d2d2019-08-05 20:03:224860const char kLockScreenMediaControlsName[] = "Lock screen media controls";
4861const char kLockScreenMediaControlsDescription[] =
4862 "Enable media controls on the lock screen.";
4863
Megumi Hattori5a0d4182018-03-06 11:09:504864const char kLockScreenNotificationName[] = "Lock screen notification";
4865const char kLockScreenNotificationDescription[] =
4866 "Enable notifications on the lock screen.";
4867
Trent Apted0c8376c2021-08-23 07:18:214868const char kMediaAppHandlesAudioName[] = "Media App Handles Audio";
4869const char kMediaAppHandlesAudioDescription[] =
4870 "Enables opening audio files by default in chrome://media-app";
4871
Patti7a088712021-04-14 08:23:464872const char kMediaAppHandlesPdfName[] = "Media App Handles PDF";
4873const char kMediaAppHandlesPdfDescription[] =
4874 "Enables opening PDF files by default in chrome://media-app";
David Lei5f7c097e2020-11-19 19:32:044875
Mitch McDermottd6afe582021-07-23 03:49:374876const char kMediaAppMultiWindowName[] = "Media App Multi Window";
4877const char kMediaAppMultiWindowDescription[] =
4878 "Enables opening multiple instances of chrome://media-app";
4879
Steven Bennetts66bc3542020-06-25 23:05:284880const char kMeteredShowToggleName[] = "Show Metered Toggle";
4881const char kMeteredShowToggleDescription[] =
4882 "Shows a Metered toggle in the Network settings UI for WiFI and Cellular. "
4883 "The toggle allows users to set whether a network should be considered "
4884 "metered for purposes of bandwith usage (e.g. for automatic updates).";
4885
Toni Barzic5cf7da92021-05-19 21:07:404886const char kMicrophoneMuteNotificationsName[] = "Microphone Mute Notifications";
4887const char kMicrophoneMuteNotificationsDescription[] =
4888 "Enables notifications that are shown when an app tries to use microphone "
4889 "while audio input is muted.";
4890
4891const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device";
4892const char kMicrophoneMuteSwitchDeviceDescription[] =
4893 "Support for detecting the state of hardware microphone mute toggle. Only "
4894 "effective on devices that have a microphone mute toggle. Enabling the "
4895 "flag does not affect the toggle functionality, it only affects how the "
4896 "System UI handles the mute toggle state.";
4897
Bao-Duy Tranaa329d62020-11-27 05:40:584898const char kMultilingualTypingName[] = "Multilingual typing on CrOS";
4899const char kMultilingualTypingDescription[] =
4900 "Enables support for multilingual assistive typing on Chrome OS.";
4901
James Vecoref926b132021-07-10 00:08:264902const char kNearbyKeepAliveFixName[] = "Nearby Keep Alive Fix";
4903const char kNearbyKeepAliveFixDescription[] =
4904 "Enables custom KeepAlive interval and timeout for Nearby Connections and "
4905 "makes Nearby Connections WebRTC KeepAlive less chatty to help with "
4906 "battery life.";
4907
Josh Nohle928fdb62020-11-03 18:54:234908const char kNearbySharingName[] = "Nearby Sharing";
4909const char kNearbySharingDescription[] =
4910 "Enables Nearby Sharing for sharing content between devices.";
4911
Prameet Shah6ddd00d2021-08-17 23:05:344912const char kNearbySharingArcName[] = "ARC Nearby Sharing";
4913const char kNearbySharingArcDescription[] =
4914 "Enables Nearby Sharing from ARC apps.";
4915
Michael Hansen12166ea2021-06-25 18:17:354916const char kNearbySharingBackgroundScanningName[] =
4917 "Nearby Sharing Background Scanning";
4918const char kNearbySharingBackgroundScanningDescription[] =
4919 "Enables background scanning for Nearby Share, allowing devices to "
4920 "persistently scan and present a notification when a nearby device is "
4921 "attempting to share.";
4922
Josh Nohle3b48d0ad2020-11-03 19:18:574923const char kNearbySharingDeviceContactsName[] =
4924 "Nearby Sharing Device Contacts";
4925const char kNearbySharingDeviceContactsDescription[] =
4926 "Enables use of device contacts in Nearby Share.";
4927
Josh Nohle928fdb62020-11-03 18:54:234928const char kNearbySharingWebRtcName[] = "Nearby Sharing WebRTC";
4929const char kNearbySharingWebRtcDescription[] =
4930 "Enables use of WebRTC in Nearby Share.";
4931
Daniel Andersson9bfdde42021-07-15 20:59:144932const char kPerformantSplitViewResizing[] = "Performant Split View Resizing";
4933const char kPerformantSplitViewResizingDescription[] =
4934 "If enabled, windows may be moved instead of scaled when resizing split "
4935 "view in tablet mode.";
4936
Jason Sun1d947912021-06-21 16:54:234937const char kPhoneHubCameraRollName[] = "Camera Roll in Phone Hub";
4938const char kPhoneHubCameraRollDescription[] =
4939 "Enables the Camera Roll feature in Phone Hub, which allows users to "
4940 "access recent photos and videos taken on a connected Android device.";
4941
paulzhchenaae52d702021-07-12 23:47:074942const char kPhoneHubRecentAppsName[] = "Recent Apps in Phone Hub";
4943const char kPhoneHubRecentAppsDescription[] =
4944 "Enables the Recent Apps feature in Phone Hub, which allows users to "
4945 "relaunch a recently streamed app.";
4946
Bailey Berro2c1797702019-09-30 18:49:424947const char kReduceDisplayNotificationsName[] = "Reduce display notifications";
4948const char kReduceDisplayNotificationsDescription[] =
4949 "If enabled, notifications for display rotation, display removed, display "
4950 "mirroring, and display extending will be suppressed.";
4951
Rachel Carpenter57c8523c2020-09-23 01:11:224952const char kReleaseNotesNotificationAllChannelsName[] =
4953 "Release Notes Notification All Channels";
4954const char kReleaseNotesNotificationAllChannelsDescription[] =
4955 "Enables the release notes notification for all Chrome OS channels";
4956
Shengsong Tan22e55432021-03-25 05:03:124957const char kArcGhostWindowName[] = "Enable ARC ghost window";
4958const char kArcGhostWindowDescription[] =
4959 "Enables the pre-load app window for "
4960 "ARC++ app during ARCVM booting stage on full restore process";
4961
Cici Ruan1d41b0cb2021-08-24 00:34:464962const char kArcInputOverlayName[] = "Enable ARC Input Overlay";
4963const char kArcInputOverlayDescription[] =
4964 "Enables the input overlay feature for some Android game apps, "
4965 "so it can play with a keyboard and a mouse instead of touch screen";
4966
Kazuki Takisea674f582021-03-05 06:44:064967const char kArcResizeLockName[] = "Resize Lock for Android apps";
4968const char kArcResizeLockDescription[] =
Cici Ruan1d41b0cb2021-08-24 00:34:464969 "Enable keyboard and mouse input compatibility mode for Android games "
4970 "that are designed to only support touch input. This mode is only "
4971 "available on games for which there is an input overlay configuration.";
Kazuki Takisea674f582021-03-05 06:44:064972
Gavin Williamsd6404b02021-03-09 21:49:484973const char kScanAppMediaLinkName[] = "Show Media app link in Scan app";
4974const char kScanAppMediaLinkDescription[] =
4975 "Enables showing a link in the Scan app to open scanned images in the Media"
4976 " app.";
4977
Gavin Williams39e3ae6e2021-06-18 06:49:284978const char kScanAppMultiPageScanName[] =
4979 "Enable multi-page scanning in Scan app";
4980const char kScanAppMultiPageScanDescription[] =
4981 "Enables creating a single PDF file from multiple flatbed scans";
4982
Kyra Moed00bdf232021-05-06 19:59:364983extern const char kScanAppSearchablePdfName[] =
4984 "Enable saving scans as a searchable PDF.";
4985extern const char kScanAppSearchablePdfDescription[] =
4986 "Allow selecting Searchable PDF file type in Scan app"
4987 " with incorporation of OCR service.";
4988
Gavin Williamsc9c6a222021-04-06 23:30:354989const char kScanAppStickySettingsName[] = "Enable sticky settings in Scan app";
4990const char kScanAppStickySettingsDescription[] =
4991 "Enables sticky settings in Scan app for automatically saving scan"
4992 " settings in Chrome OS.";
4993
Joon Ahn74cda732021-04-08 19:58:104994const char kShimlessRMAFlowName[] = "Enable shimless RMA flow";
4995const char kShimlessRMAFlowDescription[] = "Enable shimless RMA flow";
4996
Andrew Moylan97585272019-02-19 19:01:224997const char kSchedulerConfigurationName[] = "Scheduler Configuration";
4998const char kSchedulerConfigurationDescription[] =
4999 "Instructs the OS to use a specific scheduler configuration setting.";
Greg Kerr33cd4662019-06-17 07:03:015000const char kSchedulerConfigurationConservative[] =
5001 "Disables Hyper-Threading on relevant CPUs.";
5002const char kSchedulerConfigurationPerformance[] =
5003 "Enables Hyper-Threading on relevant CPUs.";
Andrew Moylan97585272019-02-19 19:01:225004
Joel Rileyffbaf662020-10-27 23:07:375005const char kSelectToSpeakNavigationControlName[] =
5006 "Select-to-speak navigation control";
5007const char kSelectToSpeakNavigationControlDescription[] =
5008 "Enables enhanced Select-to-speak navigation features.";
5009
Ramya Nagarajan1fbdf5732021-02-12 23:31:585010const char kChromeOSSharingHubName[] = "Chrome OS Sharing Hub";
5011const char kChromeOSSharingHubDescription[] =
5012 "Enables the Sharing Hub (share sheet) on ChromeOS via the Omnibox.";
5013
Kyle Horimoto63a6bd42019-09-16 23:47:525014const char kShowBluetoothDebugLogToggleName[] =
5015 "Show Bluetooth debug log toggle";
5016const char kShowBluetoothDebugLogToggleDescription[] =
5017 "Enables a toggle which can enable debug (i.e., verbose) logs for "
5018 "Bluetooth";
5019
Sonny Sasaka1c5b0832021-08-23 22:15:485020const char kShowFeedbackReportQuestionnaireName[] =
5021 "Show feedback report questionnaire";
5022const char kShowFeedbackReportQuestionnaireDescription[] =
5023 "Show domain-related questionnaire in feedback report UI";
5024
Yu Liu9d01d342021-03-12 20:05:165025const char kBluetoothSessionizedMetricsName[] =
5026 "Enable Bluetooth sessionized metrics";
5027const char kBluetoothSessionizedMetricsDescription[] =
5028 "Enables collecting and processing Bluetooth sessionized metrics.";
5029
Andre Le85312482021-02-26 04:19:235030const char kShowDateInTrayName[] = "Enable Show Date In Tray";
5031const char kShowDateInTrayDescription[] =
5032 "Showing date in status area when the screen is sufficiently large.";
5033
James Cook0ba192bf2017-12-01 20:53:115034const char kShowTapsName[] = "Show taps";
5035const char kShowTapsDescription[] =
5036 "Draws a circle at each touch point, which makes touch points more obvious "
5037 "when projecting or mirroring the display. Similar to the Android OS "
5038 "developer option.";
5039
5040const char kShowTouchHudName[] = "Show HUD for touch points";
5041const char kShowTouchHudDescription[] =
5042 "Shows a trail of colored dots for the last few touch points. Pressing "
5043 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
5044 "debug hardware issues that generate spurious touch events.";
5045
Curt Clemens37a5c99c2021-06-19 00:30:065046const char kSmartLockUIRevampName[] = "Enable Smart Lock UI Revamp";
5047const char kSmartLockUIRevampDescription[] =
5048 "Replaces the existing Smart Lock UI on the lock screen with a new design "
5049 "and adds Smart Lock to the 'Lock screen and sign-in' section of settings.";
5050
Ricky Liang3bd2754b52020-10-07 02:50:325051const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation";
5052const char kSpectreVariant2MitigationDescription[] =
5053 "Controls whether Spectre variant 2 mitigation is enabled when "
5054 "bootstrapping the Seccomp BPF sandbox. Can be overridden by "
5055 "#force-spectre-variant2-mitigation.";
5056
James Cook9348f362019-11-15 01:15:585057const char kSplitSettingsSyncName[] = "Split OS and browser sync";
5058const char kSplitSettingsSyncDescription[] =
5059 "Allows OS sync to be configured separately from browser sync. Changes the "
5060 "OS settings UI to provide controls for OS data types. Requires "
5061 "#split-settings to be enabled.";
5062
Darren Shenf1724a62021-09-01 02:16:295063const char kSystemChinesePhysicalTypingName[] =
5064 "Use system IME for Chinese typing";
5065const char kSystemChinesePhysicalTypingDescription[] =
5066 "Use the system input engine instead of the Chrome extension for physical "
5067 "typing in Chinese.";
5068
Darren Shena0f8dae2021-08-16 01:00:445069const char kSystemKoreanPhysicalTypingName[] =
5070 "Use system IME for Korean typing";
5071const char kSystemKoreanPhysicalTypingDescription[] =
5072 "Use the system input engine instead of the Chrome extension for physical "
5073 "typing in Korean.";
5074
Darren Shenddfbd2e2020-09-16 23:07:025075const char kSystemLatinPhysicalTypingName[] =
5076 "Use system IME for latin-script typing";
5077const char kSystemLatinPhysicalTypingDescription[] =
5078 "Use the system input engine instead of the Chrome extension for physical "
5079 "typing in languages based on latin script.";
5080
Joel Hockey77a79962021-02-09 01:30:475081const char kPluginVmFullscreenName[] = "Plugin VM Fullscreen";
5082const char kPluginVmFullscreenDescription[] =
5083 "Hides shelf in immersive mode and allows esc hold to exit.";
5084
Joel Hockey6b489b3d2021-08-19 11:43:285085const char kTerminalSSHName[] = "Terminal SSH tabs";
5086const char kTerminalSSHDescription[] =
5087 "Enables SSH tabs in the Terminal System App.";
5088
Brett Wilson7b44537e2017-08-18 01:38:285089const char kTetherName[] = "Instant Tethering";
5090const char kTetherDescription[] =
5091 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
5092 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:375093
Brett Wilson7b44537e2017-08-18 01:38:285094const char kTouchscreenCalibrationName[] =
5095 "Enable/disable touchscreen calibration option in material design settings";
5096const char kTouchscreenCalibrationDescription[] =
5097 "If enabled, the user can calibrate the touch screen displays in "
5098 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:095099
Kartik Hegde5af70932021-08-12 23:04:205100const char kTrafficCountersSettingsUiName[] = "Traffic Counters Settings UI";
5101const char kTrafficCountersSettingsUiDescription[] =
5102 "If enabled, the SettingsUI will show data usage for cellular networks";
5103
Miguel Casas-Sanchezdcd69152019-09-04 21:22:365104const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device";
5105const char kUseFakeDeviceForMediaStreamDescription[] =
5106 "Forces Chrome to use a fake video capture device (a rolling pacman with a "
5107 "timestamp) instead of the system audio/video devices, for debugging "
5108 "purposes.";
5109
Qiang Xu045aff222018-05-21 23:21:015110const char kUiDevToolsName[] = "Enable native UI inspection";
5111const char kUiDevToolsDescription[] =
5112 "Enables inspection of native UI elements. For local inspection use "
5113 "chrome://inspect#other";
5114
Andrew Moylan97585272019-02-19 19:01:225115const char kUiSlowAnimationsName[] = "Slow UI animations";
5116const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
Mattias Nissler6bb633f2019-02-13 23:41:465117
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:235118const char kVaapiJpegImageDecodeAccelerationName[] =
5119 "VA-API JPEG decode acceleration for images";
5120const char kVaapiJpegImageDecodeAccelerationDescription[] =
5121 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
5122 " captures) using the VA-API.";
5123
Gil Dekel8f4b5642019-07-27 05:27:405124const char kVaapiWebPImageDecodeAccelerationName[] =
5125 "VA-API WebP decode acceleration for images";
5126const char kVaapiWebPImageDecodeAccelerationDescription[] =
5127 "Enable or disable decode acceleration of WebP images using the VA-API.";
5128
Jing Wang1293e3a2021-02-17 00:56:445129const char kVirtualKeyboardName[] = "Virtual Keyboard";
5130const char kVirtualKeyboardDescription[] =
5131 "Always show virtual keyboard regardless of having a physical keyboard "
5132 "present";
5133
Keith Leead929a62021-07-30 06:57:435134const char kVirtualKeyboardApiName[] = "Virtual Keyboard API";
5135const char kVirtualKeyboardApiDescription[] =
5136 "Enable the JS Virtual keyboard API, allowing manual control of the VK.";
5137
My Nguyen614dbcc2019-10-29 03:52:325138const char kVirtualKeyboardBorderedKeyName[] = "Virtual Keyboard Bordered Key";
5139const char kVirtualKeyboardBorderedKeyDescription[] =
5140 "Show virtual keyboard with bordered key";
5141
My Nguyen0bc9add2020-12-03 21:21:255142const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard";
5143const char kVirtualKeyboardDisabledDescription[] =
5144 "Always disable virtual keyboard regardless of device mode. Workaround for "
5145 "virtual keyboard showing with some external keyboards.";
5146
Jing Wang1293e3a2021-02-17 00:56:445147const char kVirtualKeyboardMultipasteName[] = "Virtual Keyboard MultiPaste";
5148const char kVirtualKeyboardMultipasteDescription[] =
5149 "Show virtual keyboard with multipaste UI";
Brett Wilson7b44537e2017-08-18 01:38:285150
Jing Wang90afcbd2021-07-19 06:54:445151const char kVirtualKeyboardMultipasteSuggestionName[] =
5152 "Virtual Keyboard MultiPaste Suggestion";
5153const char kVirtualKeyboardMultipasteSuggestionDescription[] =
5154 "Show multipaste items in virtual keyboard suggestion bar if they are "
5155 "copied recently";
5156
Jason Lin55903062021-04-12 05:09:195157const char kVmStatusPageName[] = "VM status page";
5158const char kVmStatusPageDescription[] = "Enable VM status page";
5159
Yen-lin Laif458f8012021-03-29 10:18:205160const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features";
5161const char kWakeOnWifiAllowedDescription[] =
5162 "Allows wake on WiFi features in shill to be enabled.";
5163
Maggie Cai6dd6b552021-04-27 08:40:325164const char kWebAppsCrosapiName[] = "Web Apps Crosapi";
5165const char kWebAppsCrosapiDescription[] =
5166 "Support web apps publishing from Lacros browser.";
5167
Kyle Horimotoc0108e112020-10-20 21:41:045168const char kWebuiDarkModeName[] = "WebUI dark mode";
5169const char kWebuiDarkModeDescription[] =
5170 "Allows dark mode usage in WebUI. Note that this does not necessary enable "
5171 "dark mode, which is enabled via the #enable-force-dark flag.";
5172
Jon Mannbaa9c882021-04-14 02:41:065173const char kWifiSyncAllowDeletesName[] =
5174 "Sync removal of Wi-Fi network configurations";
5175const char kWifiSyncAllowDeletesDescription[] =
5176 "Enables the option to sync deletions of Wi-Fi networks to other Chrome OS "
5177 "devices when Wi-Fi Sync is enabled.";
5178
Claude van der Merwe6a7f4e42020-08-19 23:26:505179const char kWifiSyncAndroidName[] =
5180 "Sync Wi-Fi network configurations with Android";
5181const char kWifiSyncAndroidDescription[] =
5182 "Enables the option to sync Wi-Fi network configurations between Chrome OS "
5183 "devices and a connected Android phone";
5184
Markus Handellabf6c7812020-12-15 18:14:355185// Prefer keeping this section sorted to adding new definitions down here.
5186
5187#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5188
David Roger42777702021-07-29 15:09:125189#if BUILDFLAG(IS_CHROMEOS_LACROS)
5190extern const char kMultiProfileAccountConsistencyName[] =
5191 "Account consistency for multi-profile.";
5192extern const char kMultiProfileAccountConsistencyDescription[] =
5193 "Enables integration of secondary profiles with the ChromeOS Account "
5194 "Manager.";
5195#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
5196
Alan Cutterae499a6e2021-04-30 08:07:575197#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS)
Alan Cutter03b39ef32021-05-10 09:23:125198const char kAllowDefaultWebAppMigrationForChromeOsManagedUsersName[] =
5199 "Allow default web app migration for Chrome OS managed users";
5200const char kAllowDefaultWebAppMigrationForChromeOsManagedUsersDescription[] =
5201 "The web app migration flags "
5202 "(chrome://flags/#enable-migrate-default-chrome-app-to-web-apps-gsuite and "
5203 "chrome://flags/#enable-migrate-default-chrome-app-to-web-apps-non-gsuite) "
5204 "are ignored for managed Chrome OS users unless this feature is enabled.";
5205
Zain Afzal9398ff42021-09-07 00:49:075206const char kDefaultCalculatorWebAppName[] = "Default install Calculator PWA";
5207const char kDefaultCalculatorWebAppDescription[] =
5208 "Enable default installing of the calculator PWA instead of the deprecated "
5209 "chrome app.";
Alan Cutterae499a6e2021-04-30 08:07:575210#endif // BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS)
5211
Pilar Molina Lopez40a3e2d2021-03-04 21:01:085212#if defined(OS_CHROMEOS)
5213const char kDeprecateLowUsageCodecsName[] = "Deprecates low usage media codecs";
5214const char kDeprecateLowUsageCodecsDescription[] =
5215 "Deprecates low usage codecs. Disable this feature to allow playback of "
5216 "AMR and GSM.";
Pilar Molina Lopez34dd68b2021-03-16 02:46:365217
5218const char kVaapiAV1DecoderName[] = "VA-API decode acceleration for AV1";
5219const char kVaapiAV1DecoderDescription[] =
5220 "Enable or disable decode acceleration of AV1 videos using the VA-API.";
Pilar Molina Lopez40a3e2d2021-03-04 21:01:085221#endif // defined(OS_CHROMEOS)
5222
Miguel Casasb93a0e352021-07-16 04:07:215223#if defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS_ASH)
5224const char kVaapiVP9kSVCEncoderName[] =
5225 "VA-API encode acceleration for k-SVC VP9";
5226const char kVaapiVP9kSVCEncoderDescription[] =
5227 "Enable or disable k-SVC VP9 encode acceleration using VA-API.";
5228#endif // defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS_ASH)
5229
Pilar Molina Lopezfb5103b72021-02-26 23:35:525230#if defined(OS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
5231const char kChromeOSDirectVideoDecoderName[] = "ChromeOS Direct Video Decoder";
5232const char kChromeOSDirectVideoDecoderDescription[] =
5233 "Enables the hardware-accelerated ChromeOS direct media::VideoDecoder "
5234 "implementation. Note that this might be entirely disallowed by the "
5235 "--platform-disallows-chromeos-direct-video-decoder command line switch "
5236 "which is added for platforms where said direct VideoDecoder does not work "
5237 "or is not well tested (see the disable_cros_video_decoder USE flag in "
5238 "Chrome OS)";
5239#endif // defined(OS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
5240
Isuru Pathirana9762a942021-02-03 17:38:035241#if BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC) || defined(OS_WIN)
Hirokazu Honda8ef07cd2020-04-17 03:36:385242const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture";
5243const char kZeroCopyVideoCaptureDescription[] =
5244 "Camera produces a gpu friendly buffer on capture and, if there is, "
5245 "hardware accelerated video encoder consumes the buffer";
Isuru Pathirana9762a942021-02-03 17:38:035246#endif // BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC) || defined(OS_WIN)
yhanadac5bff5b2017-05-18 06:37:095247
Collin Baker75a29462019-03-13 19:57:315248// All views-based platforms --------------------------------------------------
5249
5250#if defined(TOOLKIT_VIEWS)
5251
Robert Liaod79a0742021-05-18 18:49:155252const char kDownloadShelfWebUI[] = "Download Shelf WebUI";
5253const char kDownloadShelfWebUIDescription[] =
5254 "Replaces the Views download shelf with a WebUI download shelf.";
5255
Collin Baker75a29462019-03-13 19:57:315256#endif // defined(TOOLKIT_VIEWS)
5257
Brett Wilson7b44537e2017-08-18 01:38:285258// Random platform combinations -----------------------------------------------
5259
Avi Drissman2e458df2020-07-29 16:24:315260#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || \
Benjamin Lermanb5d88899d2021-07-29 08:00:315261 defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
Richard Knollc279d3232019-11-11 16:37:075262
dpapadef1e5f872021-07-15 17:40:125263const char kWebUIBrandingUpdateName[] = "WebUI Branding Update";
5264const char kWebUIBrandingUpdateDescription[] =
5265 "Changes various UI components in WebUI pages to have a more modern look.";
5266
dpapadf779e192021-04-15 20:06:585267const char kWebuiFeedbackName[] = "WebUI Feedback";
5268const char kWebuiFeedbackDescription[] =
5269 "If enabled, Chrome will show the Feedback WebUI, as opposed to Chrome "
5270 "App Feedback UI, when clicking on \"Report an issue...\"";
5271
dpapad8f3597792021-05-11 08:57:595272const char kSettingsLandingPageRedesignName[] =
5273 "Settings Landing Page Redesign";
5274const char kSettingsLandingPageRedesignDescription[] =
5275 "Changes the layout of the chrome://settings page to only show one section "
5276 "at a time.";
5277
Sean McAllister0d73ca3d2020-08-19 17:54:375278#endif // defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) ||
Benjamin Lermanb5d88899d2021-07-29 08:00:315279 // defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
lanwei83f54452018-06-21 23:51:045280
Josh Santana0863d7042021-02-04 20:56:455281#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX)
5282
Leonard Grey4f7614a72021-02-19 21:30:185283const char kCommanderName[] = "Commander";
5284const char kCommanderDescription[] =
Leonard Grey4d558b02021-03-02 00:59:265285 "Enable a text interface to browser features. Invoke with Ctrl-Space.";
Leonard Grey4f7614a72021-02-19 21:30:185286
Josh Santana0863d7042021-02-04 20:56:455287const char kDesktopRestructuredLanguageSettingsName[] =
5288 "Restructured Language Settings (Desktop)";
5289const char kDesktopRestructuredLanguageSettingsDescription[] =
5290 "Enable the new restructured language settings page";
5291
Josh Santana63007462021-02-10 17:19:015292const char kDesktopDetailedLanguageSettingsName[] =
5293 "Detailed Language Settings (Desktop)";
5294const char kDesktopDetailedLanguageSettingsDescription[] =
5295 "Enable the new detailed language settings page";
5296
Josh Santana0863d7042021-02-04 20:56:455297#endif // defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX)
5298
Lei Zhangc05af2a2020-05-15 20:54:055299#if defined(OS_CHROMEOS) || defined(OS_LINUX)
5300#if BUILDFLAG(USE_TCMALLOC)
5301const char kDynamicTcmallocName[] = "Dynamic Tcmalloc Tuning";
5302const char kDynamicTcmallocDescription[] =
5303 "Allows tcmalloc to dynamically adjust tunables based on system resource "
5304 "utilization.";
5305#endif // BUILDFLAG(USE_TCMALLOC)
5306#endif // #if defined(OS_CHROMEOS) || defined(OS_LINUX)
5307
Yuta Hijikata235fc62b2020-12-08 03:48:325308#if !defined(OS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
Lei Zhangc05af2a2020-05-15 20:54:055309const char kUserDataSnapshotName[] = "Enable user data snapshots";
5310const char kUserDataSnapshotDescription[] =
5311 "Enables taking snapshots of the user data directory after a Chrome "
5312 "update and restoring them after a version rollback.";
Yuta Hijikata235fc62b2020-12-08 03:48:325313#endif // !defined(OS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
Lei Zhangc05af2a2020-05-15 20:54:055314
Hassan Talat6443f0fa2021-01-06 20:58:495315#if defined(OS_WIN) || BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:275316const char kWebShareName[] = "Web Share";
5317const char kWebShareDescription[] =
5318 "Enables the Web Share (navigator.share) APIs on experimentally supported "
5319 "platforms.";
Hassan Talat6443f0fa2021-01-06 20:58:495320#endif // defined(OS_WIN) || BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:275321
Brett Wilson7b44537e2017-08-18 01:38:285322// Feature flags --------------------------------------------------------------
5323
Lei Zhang0a318af2018-11-14 02:19:465324#if defined(DCHECK_IS_CONFIGURABLE)
5325const char kDcheckIsFatalName[] = "DCHECKs are fatal";
5326const char kDcheckIsFatalDescription[] =
5327 "By default Chrome will evaluate in this build, but only log failures, "
5328 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
5329#endif // defined(DCHECK_IS_CONFIGURABLE)
5330
Moritz Firsching043d32542021-04-07 14:20:595331#if BUILDFLAG(ENABLE_JXL_DECODER)
5332const char kEnableJXLName[] = "Enable JXL image format";
5333const char kEnableJXLDescription[] =
5334 "Adds image decoding support for the JPEG XL image format.";
5335#endif // BUILDFLAG(ENABLE_JXL_DECODER)
5336
Derek Schuff71d9a922019-04-24 21:36:005337#if BUILDFLAG(ENABLE_NACL)
5338const char kNaclName[] = "Native Client";
5339const char kNaclDescription[] =
5340 "Support Native Client for all web applications, even those that were not "
5341 "installed from the Chrome Web Store.";
5342#endif // ENABLE_NACL
5343
Alan Screened2fdda2021-09-15 17:24:465344#if BUILDFLAG(ENABLE_OOP_PRINTING)
5345const char kEnableOopPrintDriversName[] =
5346 "Enables Out-of-Process Printer Drivers";
5347const char kEnableOopPrintDriversDescription[] =
5348 "Enables printing interactions with the operating system to be performed "
5349 "out-of-process.";
5350#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
5351
ckitagawa8dad53d2020-01-07 16:03:355352#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && defined(OS_ANDROID)
Mehran Mahmoudib8d0b7c2020-03-14 18:10:565353const char kPaintPreviewDemoName[] = "Paint Preview Demo";
5354const char kPaintPreviewDemoDescription[] =
5355 "If enabled a menu item is added to the Android main menu to demo paint "
ckitagawa8dad53d2020-01-07 16:03:355356 "previews.";
Mehran Mahmoudib0410d62020-06-15 20:07:285357const char kPaintPreviewStartupName[] = "Paint Preview Startup";
5358const char kPaintPreviewStartupDescription[] =
5359 "If enabled, paint previews for each tab are captured when a tab is hidden "
5360 "and are deleted when a tab is closed. If a paint preview was captured for "
5361 "the tab to be restored on startup, the paint preview will be shown "
5362 "instead.";
ckitagawa8dad53d2020-01-07 16:03:355363#endif // ENABLE_PAINT_PREVIEW && defined(OS_ANDROID)
5364
tom927b2ab82021-09-23 03:45:275365#if BUILDFLAG(ENABLE_SIDE_SEARCH)
5366const char kSideSearchName[] = "Side search";
5367const char kSideSearchDescription[] =
5368 "Enables an easily accessible way to access your most recent Google search "
5369 "results page embedded in a browser side panel";
5370
5371const char kSideSearchClearCacheWhenClosedName[] =
5372 "Side search clear cache when closed";
5373const char kSideSearchClearCacheWhenClosedDescription[] =
5374 "Clears the side search cache when the side panel is closed.";
5375
5376const char kSideSearchStatePerTabName[] = "Side search state per tab";
5377const char kSideSearchStatePerTabDescription[] =
5378 "Enables a per-tab toggled state for the side search side panel";
5379#endif // BUILDFLAG(ENABLE_SIDE_SEARCH)
5380
Lei Zhangc05af2a2020-05-15 20:54:055381#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
5382const char kWebUITabStripName[] = "WebUI tab strip";
5383const char kWebUITabStripDescription[] =
5384 "When enabled makes use of a WebUI-based tab strip.";
Tombae388942021-08-17 02:44:005385
5386const char kWebUITabStripContextMenuAfterTapName[] =
5387 "WebUI tab strip context menu after tap";
5388const char kWebUITabStripContextMenuAfterTapDescription[] =
5389 "Enables the context menu to appear after a tap gesture rather than "
5390 "following a press gesture.";
Lei Zhangc05af2a2020-05-15 20:54:055391#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
5392
Yuta Hijikata235fc62b2020-12-08 03:48:325393#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:485394const char kWebUITabStripTabDragIntegrationName[] =
5395 "ChromeOS drag-drop extensions for WebUI tab strip";
5396const char kWebUITabStripTabDragIntegrationDescription[] =
5397 "Enables special handling in ash for WebUI tab strip tab drags. Allows "
5398 "dragging tabs out to new windows.";
Yuta Hijikata235fc62b2020-12-08 03:48:325399#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:485400
Brett Wilson7b44537e2017-08-18 01:38:285401#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
5402
5403const char kAutofillCreditCardUploadName[] =
5404 "Enable offering upload of Autofilled credit cards";
5405const char kAutofillCreditCardUploadDescription[] =
5406 "Enables a new option to upload credit cards to Google Payments for sync "
5407 "to all Chrome devices.";
5408
5409#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
5410
Ian Barkley-Yeungcf2a9342020-10-13 17:04:475411#if !defined(OS_WIN) && !defined(OS_FUCHSIA)
5412const char kSendWebUIJavaScriptErrorReportsName[] =
5413 "Send WebUI JavaScript Error Reports";
5414const char kSendWebUIJavaScriptErrorReportsDescription[] =
5415 "If enabled, and if the user has consented to sending metrics to Google, "
5416 "then when the JavaScript has an error on a WebUI page, an error report "
5417 "will be sent to Google.";
5418#endif
5419
Robert Flackd69659f2021-06-02 22:32:335420#if defined(OS_WIN) || defined(OS_ANDROID)
5421const char kElasticOverscrollName[] = "Elastic Overscroll";
5422const char kElasticOverscrollDescription[] =
5423 "Enables Elastic Overscrolling on touchscreens and precision touchpads.";
5424#endif // defined(OS_WIN) || defined(OS_ANDROID)
5425
Wei Li51e9c162021-02-01 19:53:355426#if defined(OS_WIN) || (defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || \
5427 defined(OS_MAC)
5428const char kUIDebugToolsName[] = "Debugging tools for UI";
5429const char kUIDebugToolsDescription[] =
5430 "Enables additional keyboard shortcuts to help debugging.";
5431#endif
5432
Jordan Bayles7da20a22021-05-19 17:51:555433#if BUILDFLAG(IS_CHROMEOS_ASH)
5434const char kAuraWindowSubtreeCaptureName[] = "ChromeOS Window Subtree Capture";
5435const char kAuraWindowSubtreeCaptureDescription[] =
5436 "Enables capture of ChromeOS Aura windows using subtree capture. When "
5437 "disabled, the legacy slow capturer will be used.";
5438#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5439
Tomas Popela253a5832019-01-14 17:22:105440#if defined(WEBRTC_USE_PIPEWIRE)
Lei Zhang507fffd2020-01-29 23:47:545441const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support";
5442const char kWebrtcPipeWireCapturerDescription[] =
Tomas Popela253a5832019-01-14 17:22:105443 "When enabled the WebRTC will use the PipeWire multimedia server for "
5444 "capturing the desktop content on the Wayland display server.";
Tomas Popela253a5832019-01-14 17:22:105445#endif // #if defined(WEBRTC_USE_PIPEWIRE)
5446
ananubisff476b02021-07-27 07:09:585447#if BUILDFLAG(IS_CHROMEOS_ASH)
5448const char kWebKioskEnableLacrosName[] =
5449 "Enables Lacros in the web (PWA) Kiosk";
5450const char kWebKioskEnableLacrosDescription[] =
5451 "Uses Lacros-chrome as the web browser in the web (PWA) Kiosk session on "
5452 "Chrome OS. When disabled, the Ash-chrome will be used";
5453#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5454
Brett Wilson7b44537e2017-08-18 01:38:285455// ============================================================================
5456// Don't just add flags to the end, put them in the right section in
5457// alphabetical order just like the header file.
5458// ============================================================================
5459
vabr0215a8e2017-03-28 12:47:345460} // namespace flag_descriptions