blob: eef4f430095f46c2e26959de4e4cc908952e2193 [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
Brett Wilsonf27ff602017-07-07 22:28:4719const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
20const char kAcceleratedVideoDecodeDescription[] =
21 "Hardware-accelerated video decode where available.";
22
Hirokazu Honda732d3e622019-06-12 01:13:4423const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode";
24const char kAcceleratedVideoEncodeDescription[] =
25 "Hardware-accelerated video encode where available.";
26
Ted Meyer5322ea12020-12-07 22:25:3327const char kEnableMediaInternalsName[] = "Media-internals page";
28const char kEnableMediaInternalsDescription[] =
29 "Enables the chrome://media-internals debug page.";
30
Ankit Kumar 🌪️cc71c02a2020-08-06 03:44:3031#if BUILDFLAG(ENABLE_PLUGINS)
32const char kAccessiblePDFFormName[] = "Accessible PDF Forms";
33const char kAccessiblePDFFormDescription[] =
34 "Enables accessibility support for PDF forms.";
35#endif // BUILDFLAG(ENABLE_PLUGINS)
36
Mihai Sardarescua69193742019-12-06 17:31:3337const char kAccountIdMigrationName[] = "Account ID migration";
38const char kAccountIdMigrationDescription[] =
39 "Migrate to use Gaia ID instead of the email as the account identifer for "
40 "the Identity Manager.";
41
Andrew Xuaa868bf2021-07-15 01:59:1142const char kLauncherAppSortName[] = "Productivity experiment: Reorder Apps";
43const char kLauncherAppSortDescription[] =
44 "To evaluate an enhanced Launcher experience that enables users to reorder "
45 "their apps in order to find them more easily.";
46
Xiaocheng Huf7ed9cd2020-04-18 00:41:1047const char kAlignFontDisplayAutoTimeoutWithLCPGoalName[] =
48 "Align 'font-display: auto' timeout with LCP goal";
49const char kAlignFontDisplayAutoTimeoutWithLCPGoalDescription[] =
Xiaocheng Hu66795f02020-04-25 00:26:4750 "Make pending 'display: auto' web fonts enter the swap or failure period "
Xiaocheng Huf7ed9cd2020-04-18 00:41:1051 "immediately before reaching the LCP time limit (~2500ms), so that web "
52 "fonts do not become a source of bad LCP (Largest Contentful Paint).";
53
Brett Wilsonf27ff602017-07-07 22:28:4754const char kAllowInsecureLocalhostName[] =
55 "Allow invalid certificates for resources loaded from localhost.";
56const char kAllowInsecureLocalhostDescription[] =
57 "Allows requests to localhost over HTTPS even when an invalid certificate "
58 "is presented.";
59
Katie Dillon8b357312019-09-19 13:23:2360const char kAllowSyncXHRInPageDismissalName[] =
61 "Allows synchronous XHR requests in page dismissal";
62const char kAllowSyncXHRInPageDismissalDescription[] =
63 "Allows synchronous XHR requests during page dismissal when the page is "
64 "being navigated away or closed by the user.";
65
Judy Wangec296a12021-03-12 00:22:5266const char kWindowsFollowCursorName[] =
67 "Windows open on the display with the cursor";
68const char kWindowsFollowCursorDescription[] =
69 "When there are multiple displays, windows open on the display where "
70 "cursor is located.";
71
Chris Blumed5d85872021-02-17 18:21:0172const char kAnimatedImageResumeName[] = "Use animated image resume behavior";
73const char kAnimatedImageResumeDescription[] =
74 "Resumes animated images from the last frame drawn rather than attempt "
75 "to catch up to the frame that should be drawn based on current time.";
76
Dominic Mazzoni34dfc6482020-11-18 22:17:5877const char kAriaElementReflectionName[] = "Enable ARIA element reflection";
78const char kAriaElementReflectionDescription[] =
79 "Enable setting ARIA relationship attributes that reference other elements "
80 "directly without an IDREF";
81
Lei Zhang1a6fd01b2021-03-24 17:03:4882const char kCOLRV1FontsName[] = "COLR v1 Fonts";
83const char kCOLRV1FontsDescription[] =
Dominik Röttsches8723ca92021-02-10 10:02:0384 "Display COLR v1 color gradient vector fonts.";
85
Rune Lillesveen6d1d14c2021-03-25 22:03:0186extern const char kCSSContainerQueriesName[] = "Enable CSS Container Queries";
87extern const char kCSSContainerQueriesDescription[] =
88 "Enables support for @container, inline-size and block-size values for the "
89 "contain property, and the LayoutNG Grid implementation.";
90
Yue Zhangb4d923272020-05-01 03:42:5391const char kConditionalTabStripAndroidName[] = "Conditional Tab Strip";
92const char kConditionalTabStripAndroidDescription[] =
93 "Allows users to access conditional tab strip.";
94
Basia Zimirskab0d235a2021-02-24 19:42:5395const char kContentLanguagesInLanguagePickerName[] =
96 "Content languages in language picker";
97const char kContentLanguagesInLanguagePickerDescription[] =
98 "Enables bringing user's content languages that are translatable to the "
99 "top of the list with all languages shown in the translate menu";
100
John Delaneycd1a54d42020-05-13 23:06:33101const char kConversionMeasurementDebugModeName[] =
102 "Conversion Measurement Debug Mode";
103const char kConversionMeasurementDebugModeDescription[] =
104 "Enables debug mode for the Conversion Measurement API. This removes all "
105 "reporting delays and noise. Only works if the Conversion Measurement API "
106 "is already enabled.";
107
Alice Wang914bd482021-02-22 15:37:37108const char kDeprecateMenagerieAPIName[] = "Deprecate Menagerie API on Android";
109const char kDeprecateMenagerieAPIDescription[] =
110 "If enabled, the legacy Menagerie API for profile data will be replaced by "
111 "the new profile data source";
112
Alice Wang345e09442021-07-05 09:03:29113const char kForceStartupSigninPromoName[] = "Force Start-up Signin Promo";
114const char kForceStartupSigninPromoDescription[] =
115 "If enabled, the full screen signin promo will be forced to show up at "
116 "Chrome start-up.";
117
shivanigithub99368382021-06-16 18:33:37118const char kDebugHistoryInterventionNoUserActivationName[] =
119 "Debug flag for history intervention on no user activation";
120const char kDebugHistoryInterventionNoUserActivationDescription[] =
121 "This flag when enabled, will be used to debug an issue where a page that "
122 "did not get user activation "
123 "is able to work around the history intervention which is not the expected "
124 "behavior";
125
Anthony Cuidb01f8a52021-02-18 21:45:18126const char kDetectedSourceLanguageOptionName[] =
127 "Use Detected Language string on Desktop and Android";
128const char kDetectedSourceLanguageOptionDescription[] =
129 "Renames the 'Unknown' source language option to 'Detected Language' and "
130 "enables translation of unknown source language pages on Android.";
131
Maria Kazinovaeed8e4c2020-11-10 21:17:07132const char kDetectFormSubmissionOnFormClearName[] =
133 "Detect form submission when the form is cleared.";
134const char kDetectFormSubmissionOnFormClearDescription[] =
135 "Detect form submissions for change password forms that are cleared and "
136 "not removed from the page.";
137
Jan Wilken Dörried3f92e802020-09-11 11:43:08138const char kEditPasswordsInSettingsName[] = "Edit passwords in settings";
139const char kEditPasswordsInSettingsDescription[] =
140 "Enables password editing in settings.";
141
Vicky Minb02c3e92020-07-07 20:56:52142const char kEnableBluetoothSerialPortProfileInSerialApiName[] =
143 "Enable Bluetooth Serial Port Profile in Serial API";
144const char kEnableBluetoothSerialPortProfileInSerialApiDescription[] =
145 "When enabled, Bluetooth Serial Port Profile devices will be enumerated "
146 "for use with the Serial API.";
147
Vikas Soni7981a2d2021-07-30 18:51:11148const char kEnableDrDcName[] =
149 "Enables Display Compositor to use a new gpu thread.";
150const char kEnableDrDcDescription[] =
151 "When enabled, chrome uses 2 gpu threads instead of 1. "
152 " Display compositor uses new dr-dc gpu thread and all other clients "
153 "(raster, webgl, video) "
154 " continues using the gpu main thread.";
155
Yann Dago3256b872021-01-13 18:48:03156const char kEnablePolicyBlocklistThrottleRequiresPoliciesLoadedName[] =
157 "Url blocklist throttle wait for policies to be loaded";
158const char kEnablePolicyBlocklistThrottleRequiresPoliciesLoadedDescription[] =
159 "Enables behaviour for Url blocklist throttle to wait for all policies to "
160 "load";
161
Tsuyoshi Horo3bab99c2019-05-20 11:05:14162const char kEnableSignedExchangeSubresourcePrefetchName[] =
163 "Enable Signed Exchange subresource prefetching";
164const char kEnableSignedExchangeSubresourcePrefetchDescription[] =
165 "When enabled, the distributors of signed exchanges can let Chrome know "
166 "alternative signed exchange subresources by setting \"alternate\" link "
167 "header. Chrome will prefetch the alternate signed exchange subresources "
168 "and will load them if the publisher of the main signed exchange has set "
Tsuyoshi Horo5e61f162019-05-20 12:24:12169 "\"allowed-alt-sxg\" link header in the signed inner response of the "
Tsuyoshi Horo3bab99c2019-05-20 11:05:14170 "main signed exchange.";
171
Tsuyoshi Horo636e8652019-05-31 03:34:08172const char kEnableSignedExchangePrefetchCacheForNavigationsName[] =
173 "Enable Signed Exchange prefetch cache for navigations";
174const char kEnableSignedExchangePrefetchCacheForNavigationsDescription[] =
175 "When enabled, the prefetched signed exchanges is stored to a prefetch "
176 "cache attached to the frame. The body of the inner response is stored as "
177 "a blob and the verification process of the signed exchange is skipped for "
178 "the succeeding navigation.";
179
Behnood Momenzadeh5c944ff9b02020-06-04 18:35:35180const char kUseLookalikesForNavigationSuggestionsName[] =
181 "Use lookalike URL suggestions for navigation suggestions";
182const char kUseLookalikesForNavigationSuggestionsDescription[] =
183 "Use lookalike URL suggestions to suggest navigations to users who "
184 "face domain not found error.";
185
Regan Hsu3243afa2021-06-21 18:27:27186const char kUseStorkSmdsServerAddressName[] = "Use Stork SM-DS address";
187const char kUseStorkSmdsServerAddressDescription[] =
188 "Use the Stork SM-DS address to fetch pending eSIM profiles managed by the "
189 "Stork prod server. Note that Stork profiles can be created with an EID at "
190 "go/stork-profile, and managed at go/stork-batch > View Profiles. Also "
191 "note that an external EUICC card is required to use this feature, and "
192 "that the kCellularUseExternal flag must be enabled. Go to "
193 "go/cros-connectivity > Dev Tips for more instructions.";
194
Regan Hsu1ffea922020-09-10 17:08:47195const char kUseWallpaperStagingUrlName[] = "Use Wallpaper staging URL";
196const char kUseWallpaperStagingUrlDescription[] =
197 "Use the staging server as part of the Wallpaper App to verify "
198 "additions/removals of wallpapers.";
199
Christopher Lam867d4a02021-06-21 09:38:46200const char kSemanticColorsDebugOverrideName[] =
201 "Use semantic color debug override";
202const char kSemanticColorsDebugOverrideDescription[] =
203 "Use debug override colors to find system components that are not using "
204 "semantic colors.";
205
Kyle Horimoto874554a2019-01-31 00:52:09206const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
207const char kUseMessagesStagingUrlDescription[] =
208 "Use the staging server as part of the \"Messages\" feature under "
209 "\"Connected Devices\" settings.";
210
Jon Mann5ebbd1532020-04-17 22:12:05211const char kUseCustomMessagesDomainName[] = "Use custom Messages domain";
212const char kUseCustomMessagesDomainDescription[] =
213 "Use a custom URL as part of the \"Messages\" feature under "
214 "\"Connected Devices\" settings.";
215
Jazz Xu32261b542019-06-13 20:11:27216const char kAndroidPictureInPictureAPIName[] =
217 "Picture-in-Picture Web API for Android";
218const char kAndroidPictureInPictureAPIDescription[] =
219 "Enable Picture-in-Picture Web API for Android";
220
Lei Zhangc05af2a2020-05-15 20:54:05221const char kAppCacheName[] = "AppCache web API and browser backend";
222const char kAppCacheDescription[] =
Adrienne Walkerb44bdc902020-04-09 03:09:07223 "When disabled, turns off all AppCache code so that developers "
224 "can test that their code works properly in the future when AppCache "
Adrienne Walkerd701f472020-08-20 02:15:11225 "has been removed. If disabled, this will also delete any AppCache data "
226 "from profile directories.";
Adrienne Walkerb44bdc902020-04-09 03:09:07227
Daniel McArdleb87dd0092020-02-10 20:23:46228const char kDnsHttpssvcName[] = "Support for HTTPSSVC records in DNS.";
229const char kDnsHttpssvcDescription[] =
230 "When enabled, Chrome may query a configured DoH server for HTTPSSVC "
231 "records. If any HTTPSSVC records are returned, Chrome may upgrade the URL "
232 "to HTTPS. If the records indicate support for QUIC, Chrome may attempt "
233 "QUIC on the first connection.";
234
cfredric6f155762020-12-10 18:52:40235const char kEnableFirstPartySetsName[] = "Enable First-Party Sets";
236const char kEnableFirstPartySetsDescription[] =
237 "When enabled, Chrome will apply First-Party Sets to features such as the "
238 "SameParty cookie attribute.";
239
dalykc936eb612019-08-14 11:46:47240const char kDnsOverHttpsName[] = "Secure DNS lookups";
241const char kDnsOverHttpsDescription[] =
242 "Enables DNS over HTTPS. When this feature is enabled, your browser may "
243 "try to use a secure HTTPS connection to look up the addresses of websites "
244 "and other web resources.";
245
Basia Zimirskab87ded02021-07-27 20:39:08246extern const char kAssistantConsentV2Name[] = "AssistanConsentV2";
247extern const char kAssistantConsentV2Description[] =
248 "Enables different strategies for handling backing off from the consent "
249 "screen without explicitly clicking yes/no buttons, i.e. when a user taps "
250 "outside of the sheet.";
Basia Zimirskaae49bd32021-07-14 02:51:28251
Anne Lim24031e9d2019-09-12 23:03:19252const char kAutofillAlwaysReturnCloudTokenizedCardName[] =
253 "Return cloud token details for server credit cards when possible";
254const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] =
255 "When enabled and where available, forms filled using Google Payments "
256 "server cards are populated with cloud token details, including CPAN "
257 "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic "
258 "CVV).";
259
siashah2b698e2b2021-04-21 15:09:55260const char kAutofillAutoTriggerManualFallbackForCardsName[] =
261 "Auto trigger manual fallback for credit card form-filling failure cases";
262const char kAutofillAutoTriggerManualFallbackForCardsDescription[] =
263 "When enabled, manual fallback will be auto-triggered on form interaction "
264 "in the case where autofill failed to fill a credit card form accurately.";
265
siashah0a386222020-04-23 03:31:35266const char kAutofillEnableGoogleIssuedCardName[] =
267 "Enable Autofill Google-issued card";
268const char kAutofillEnableGoogleIssuedCardDescription[] =
269 "When enabled, Google-issued cards will be available in the autofill "
270 "suggestions.";
271
siashah2b698e2b2021-04-21 15:09:55272const char kAutofillEnableMerchantBoundVirtualCardsName[] =
273 "Offer merchant bound virtual cards in Autofill";
274const char kAutofillEnableMerchantBoundVirtualCardsDescription[] =
275 "When enabled, Autofill will offer to use merchant bound virtual cards in "
276 "payment forms.";
277
Manas Verma279acc72021-01-22 02:33:24278const char kAutofillEnableOfferNotificationName[] =
279 "Enable Autofill offers and rewards notification";
280const char kAutofillEnableOfferNotificationDescription[] =
281 "When enabled, a notification will be displayed on page navigation if the "
282 "domain has an eligible credit card linked offer or reward.";
283
Siyu An1ac0d072021-03-31 23:12:50284const char kAutofillEnableOfferNotificationCrossTabTrackingName[] =
285 "Enable cross tab status tracking for Autofill offer notification";
286const char kAutofillEnableOfferNotificationCrossTabTrackingDescription[] =
287 "When enabled, the offer notification showing will be tracked cross-tab, "
288 "and on one merchant, the notification will only be shown once.";
289
siashaheb118ad52020-12-15 00:17:07290const char kAutofillEnableOffersInClankKeyboardAccessoryName[] =
291 "Enable Autofill offers in keyboard accessory";
292const char kAutofillEnableOffersInClankKeyboardAccessoryDescription[] =
293 "When enabled, offers will be displayed in the keyboard accessory when "
294 "available.";
295
Ben Blake14592fe2020-06-16 15:34:38296const char kAutofillEnableOffersInDownstreamName[] =
297 "Enable Autofill offers in downstream";
298const char kAutofillEnableOffersInDownstreamDescription[] =
299 "When enabled, offer data will be retrieved during downstream and shown in "
300 "the dropdown list.";
301
siashah2b698e2b2021-04-21 15:09:55302const char kAutofillEnableStickyManualFallbackForCardsName[] =
303 "Make manual fallback sticky for credit cards";
304const char kAutofillEnableStickyManualFallbackForCardsDescription[] =
305 "When enabled, if the user interacts with the manual fallback bottom "
306 "sheet, it'll remain sticky until the user dismisses it.";
307
siyua1d492612019-03-14 09:27:45308const char kAutofillEnableToolbarStatusChipName[] =
309 "Move Autofill omnibox icons next to the profile avatar icon";
310const char kAutofillEnableToolbarStatusChipDescription[] =
311 "When enabled, Autofill data related icon will be shown in the status "
312 "chip next to the profile avatar icon in the toolbar.";
sebsge35b762c2018-03-29 20:33:27313
siyua19593222019-12-04 22:27:06314const char kAutofillEnableVirtualCardName[] =
315 "Offer to use cloud token virtual card in Autofill";
316const char kAutofillEnableVirtualCardDescription[] =
317 "When enabled, if all requirements are met, Autofill will offer to use "
318 "virtual credit cards in form filling.";
319
Jared Saul2188f762021-08-02 21:22:23320const char kAutofillFillMerchantPromoCodeFieldsName[] =
321 "Enable Autofill of promo code fields in forms";
322const char kAutofillFillMerchantPromoCodeFieldsDescription[] =
323 "When enabled, Autofill will attempt to fill merchant promo/coupon/gift "
324 "code fields when data is available.";
325
Siyu An1ac0d072021-03-31 23:12:50326const char kAutofillFixOfferInIncognitoName[] =
327 "Enable the fix for Autofill offer in Incognito mode";
328const char kAutofillFixOfferInIncognitoDescription[] =
329 "When enabled, the fix will be enabled and offers should work correctly in "
330 "Incognito mode.";
331
Jared Sauld47c2b72021-03-25 22:47:31332const char kAutofillParseMerchantPromoCodeFieldsName[] =
333 "Parse promo code fields in forms";
334const char kAutofillParseMerchantPromoCodeFieldsDescription[] =
335 "When enabled, Autofill will attempt to find merchant promo/coupon/gift "
336 "code fields when parsing forms.";
337
Parastoo Geranmayeh0f5ebbc2019-01-21 21:01:09338const char kAutofillProfileClientValidationName[] =
339 "Autofill Validates Profiles By Client";
340const char kAutofillProfileClientValidationDescription[] =
341 "Allows autofill to validate profiles on the client side";
342
Parastoo Geranmayeh25fccec22019-01-29 18:38:13343const char kAutofillProfileServerValidationName[] =
344 "Autofill Uses Server Validation";
345const char kAutofillProfileServerValidationDescription[] =
346 "Allows autofill to use server side validation";
347
Caitlin Fischer6d609542019-05-01 21:59:21348const char kAutofillPruneSuggestionsName[] = "Autofill Prune Suggestions";
349const char kAutofillPruneSuggestionsDescription[] =
350 "Further limits the number of suggestions in the Autofill dropdown.";
351
Lei Zhang507fffd2020-01-29 23:47:54352const char kAutofillSaveAndFillVPAName[] =
Christos Froussios13b412df2019-09-19 19:12:47353 "Offer save and autofill of UPI/VPA values";
Lei Zhang507fffd2020-01-29 23:47:54354const char kAutofillSaveAndFillVPADescription[] =
Christos Froussios13b412df2019-09-19 19:12:47355 "If enabled, when autofill recognizes a UPI/VPA value in a payment form, "
356 "it will offer to save it. If saved, it will be offered for filling in "
357 "fields which expect a VPA.";
358
Siyu Anc23b14fe2021-06-09 04:54:15359const char kAutofillSuggestVirtualCardsOnIncompleteFormName[] =
360 "Autofill suggests virtual cards on incomplete forms";
361const char kAutofillSuggestVirtualCardsOnIncompleteFormDescription[] =
362 "When enabled, merchant bound virtual cards will be suggested even if not "
363 "all "
siashah2b698e2b2021-04-21 15:09:55364 "of the card number, exp date and CVC fields are detected in a payment "
365 "form.";
366
Caitlin Fischer43edd90a2019-05-01 13:24:30367const char kAutofillUseImprovedLabelDisambiguationName[] =
368 "Autofill Uses Improved Label Disambiguation";
369const char kAutofillUseImprovedLabelDisambiguationDescription[] =
370 "When enabled, the Autofill dropdown's suggestions' labels are displayed "
371 "using the improved disambiguation format.";
372
Jia0175adae2019-05-15 00:21:25373const char kAutoScreenBrightnessName[] = "Auto Screen Brightness model";
374const char kAutoScreenBrightnessDescription[] =
Jiac75d4ee022020-08-11 02:34:12375 "Uses Auto Screen Brightness ML model (if it exists) to adjust screen "
376 "brightness based on ambient light. If disabled, screen brightness "
Jiae4e19242020-08-11 05:13:41377 "will be controlled by the heuristic model provided by powerd (and only "
378 "on devices that have ambient light sensors).";
Jia0175adae2019-05-15 00:21:25379
David Roger306b5cd82020-03-16 13:05:13380const char kAvatarToolbarButtonName[] = "Avatar Toolbar Button";
381const char kAvatarToolbarButtonDescription[] =
382 "Enables the avatar toolbar button and the associated menu";
383
Alexander Timin6ae060b62019-09-17 11:21:37384const char kBackForwardCacheName[] = "Back-forward cache";
385const char kBackForwardCacheDescription[] =
Rakina Zata Amni95a2a91d2020-07-14 12:41:44386 "If enabled, caches eligible pages after cross-site navigations."
387 "To enable caching pages on same-site navigations too, choose 'enabled "
388 "same-site support'.";
Alexander Timin6ae060b62019-09-17 11:21:37389
minch1b874012021-06-17 00:21:33390const char kBentoBarName[] = "Persistent desks bar";
391const char kBentoBarDescription[] =
392 "Showing a persistent desks bar at the top of the screen in clamshell mode "
393 "when there are more than one desk.";
394
Ioana Pandele69fe4672021-04-28 08:06:37395const char kBiometricReauthForPasswordFillingName[] =
396 "Biometric reauth for password filling";
397const char kBiometricReauthForPasswordFillingDescription[] =
398 "Enables biometric"
399 "re-authentication before password filling";
400
danielng1078c6372021-06-28 06:31:36401const char kBorealisDiskManagementName[] = "Borealis Disk management";
402const char kBorealisDiskManagementDescription[] =
403 "Enable experimental disk management settings.";
404
Brett Wilsonf27ff602017-07-07 22:28:47405const char kBypassAppBannerEngagementChecksName[] =
406 "Bypass user engagement checks";
407const char kBypassAppBannerEngagementChecksDescription[] =
408 "Bypasses user engagement checks for displaying app banners, such as "
409 "requiring that users have visited the site before and that the banner "
410 "hasn't been shown recently. This allows developers to test that other "
411 "eligibility requirements for showing app banners, such as having a "
412 "manifest, are met.";
413
Asami Doid88c97492020-10-29 05:49:09414const char kCheckOfflineCapabilityName[] = "Check offline capability for PWAs";
415const char kCheckOfflineCapabilityDescription[] =
416 "Use advanced offline capability check to decide whether the browser "
417 "displays install prompts for PWAs.";
418
Elaine Chienaeb4adc2020-12-08 04:22:05419const char kChromeLabsName[] = "Chrome Labs";
420const char kChromeLabsDescription[] =
421 "Access Chrome Labs through the toolbar menu to see featured user-facing "
422 "experimental features.";
423
Tobias Soppa20dd3c72021-08-12 14:27:40424const char kClosedTabCacheName[] = "Closed Tab Cache";
425const char kClosedTabCacheDescription[] =
426 "Enables closed tab cache to instantaneously restore recently closed tabs. "
427 "NOTE: This feature is higly experimental and will lead to various "
428 "breakages, enable at your own risk.";
429
Xianzhu Wang6708f9c2021-03-25 19:55:24430const char kCompositeAfterPaintName[] = "Composite after paint";
431const char kCompositeAfterPaintDescription[] =
432 "A new algorithm to create compositing layers. "
433 "See http://bit.ly/composite-after-paint.";
434
Ben Goldberger0074e682020-09-09 17:09:09435const char kContextMenuGoogleLensChipName[] =
436 "Google Lens powered image search for surfaced as a chip below the context "
437 "menu.";
438const char kContextMenuGoogleLensChipDescription[] =
439 "Enable a chip for a Shopping intent into Google Lens when supported. ";
440
Nandhini11a6a87b2019-08-22 22:45:24441const char kContextMenuSearchWithGoogleLensName[] =
442 "Google Lens powered image search in the context menu.";
443const char kContextMenuSearchWithGoogleLensDescription[] =
444 "Replaces default image search with an intent to Google Lens when "
445 "supported.";
446
Yu Su50dfedd52020-06-19 02:34:49447const char kContextMenuShopWithGoogleLensName[] =
448 "Google Lens powered image search for shoppable images in the context "
449 "menu.";
450const char kContextMenuShopWithGoogleLensDescription[] =
Yu Su9807c022020-06-26 00:09:28451 "Enable a menu item for a Shopping intent into Google Lens when supported. "
452 "By default replaces the Search with Google Lens option.";
Yu Su50dfedd52020-06-19 02:34:49453
454const char kContextMenuSearchAndShopWithGoogleLensName[] =
Yu Su9807c022020-06-26 00:09:28455 "Additional menu item for Google Lens image search for shoppable images in "
456 "the context menu.";
Yu Su50dfedd52020-06-19 02:34:49457const char kContextMenuSearchAndShopWithGoogleLensDescription[] =
Yu Su9807c022020-06-26 00:09:28458 "Display an additional menu item for a Shopping intent to Google Lens "
459 "below Search with Google Lens when Lens shopping feature is enabled";
Yu Su50dfedd52020-06-19 02:34:49460
Juan Mojica5797e4c2021-02-23 21:55:23461const char kContextMenuTranslateWithGoogleLensName[] =
462 "Google Lens powered image search for translatable images surfaced as a "
463 "chip under the context menu.";
464const char kContextMenuTranslateWithGoogleLensDescription[] =
465 "Enable a chip for a Translate intent into Google Lens when supported.";
466
Anupam Snigdha85854972021-06-14 18:07:29467const char kClipboardCustomFormatsName[] = "Clipboard Custom Formats";
468const char kClipboardCustomFormatsDescription[] =
469 "Allows read/write of custom formats with unsanitized clipboard content. "
470 "See crbug.com/106449";
471
sauski8fa237c2020-05-18 12:04:24472const char kClientStorageAccessContextAuditingName[] =
473 "Access contexts for client-side storage";
474const char kClientStorageAccessContextAuditingDescription[] =
475 "Record the first-party contexts in which client-side storage was accessed";
476
Shuran Huangd11e73e2021-04-14 16:10:12477const char kClearCrossSiteCrossBrowsingContextGroupWindowNameName[] =
478 "Clear window name in top-level cross-site cross-browsing-context-group "
479 "navigation";
480const char kClearCrossSiteCrossBrowsingContextGroupWindowNameDescription[] =
481 "Clear the preserved window.name property when it's a top-level cross-site "
482 "navigation that swaps BrowsingContextGroup.";
Shuran Huanga5be08b2021-01-20 18:46:29483
Dana Fried16e9d9c2021-01-28 09:32:28484#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
485const char kChromeTipsInMainMenuName[] =
486 "Show 'Tips for Chrome' in Help portion of main menu.";
487const char kChromeTipsInMainMenuDescription[] =
488 "Enables 'Tips for Chrome' in main menu; the menu item will take users to "
489 "an official Google site with information about the latest and most "
490 "popular Chrome features.";
Dana Fried1ae80f32021-05-10 19:57:37491
492const char kChromeTipsInMainMenuNewBadgeName[] =
493 "Show 'New' promo badge on 'Tips for Chrome' in Help portion of main menu.";
494const char kChromeTipsInMainMenuNewBadgeDescription[] =
495 "Enables 'New' promo badge on 'Tips for Chrome' in main menu; experiment to"
496 " test the value of this user education feature.";
Dana Fried16e9d9c2021-01-28 09:32:28497#endif
498
rbpottere877c1f2021-06-15 00:23:55499const char kChromeWhatsNewUIName[] =
500 "Show Chrome What's New page at chrome://whats-new";
501const char kChromeWhatsNewUIDescription[] =
502 "Enables Chrome What's New page at chrome://whats-new.";
503
rbpotterc22a7e9c2021-06-18 21:33:39504#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
505const char kChromeWhatsNewInMainMenuNewBadgeName[] =
506 "Show 'New' badge on 'What's New' menu item.";
507const char kChromeWhatsNewInMainMenuNewBadgeDescription[] =
508 "Enables 'New' promo badge on 'What's New' in the Help portion of the main "
509 "menu.";
510#endif
511
yjliu99c52fb2021-05-07 17:49:20512const char kCompositingBasedThrottling[] = "Compositing-based Throttling";
513const char kCompositingBasedThrottlingDescription[] =
514 "Enables compositing-based throttling to throttle appropriate frame sinks "
515 "that do not need to be refreshed at high fps.";
516
minch6bfe7b32020-10-15 18:46:42517const char kDarkLightTestName[] = "Dark/light mode of system UI";
518const char kDarkLightTestDescription[] =
519 "Enables the dark/light mode of system UI, which includes shelf, launcher, "
520 "system tray etc.";
521
Sasha McIntoshe889f9f2019-09-03 21:01:57522const char kDecodeJpeg420ImagesToYUVName[] = "YUV decoding for JPEG";
523const char kDecodeJpeg420ImagesToYUVDescription[] =
524 "Decode and render 4:2:0 formatted jpeg images from YUV instead of RGB."
525 "This feature requires GPU or OOP rasterization to also be enabled.";
526
Madeleine Barowsky266406d92019-08-12 19:20:15527const char kDecodeLossyWebPImagesToYUVName[] = "YUV Decoding for WebP";
528const char kDecodeLossyWebPImagesToYUVDescription[] =
529 "Decode and render lossy WebP images from YUV instead of RGB. "
530 "You must also have GPU rasterization or OOP rasterization.";
531
Alexis Menard61ecb91d2021-07-17 04:10:33532const char kDevicePostureName[] = "Device Posture API";
533const char kDevicePostureDescription[] =
534 "Enables Device Posture API (foldable devices)";
535
Daniele Castagna6a5cbdeb62020-02-18 22:48:14536const char kDoubleBufferCompositingName[] = "Double buffered compositing";
537const char kDoubleBufferCompositingDescription[] =
538 "Use double buffer for compositing (instead of triple-buffering). "
539 "Latency should be reduced in some cases. On the other hand, more skipped "
540 "frames are expected.";
541
Olivier Yiptongb60d2c42020-01-10 22:47:15542const char kFontAccessAPIName[] = "Font Access APIs";
543const char kFontAccessAPIDescription[] =
544 "Enables the experimental Font Access APIs, giving websites access "
545 "to enumerate local fonts and access their table data.";
546
Olivier Yiptongdc787f92021-02-02 21:44:14547const char kFontAccessPersistentName[] =
548 "Enable persistent access to the Font Access API";
549const char kFontAccessPersistentDescription[] =
550 "Enables persistent access to the Font Access API, giving websites access "
551 "to enumerate local fonts after being granted a permission.";
552
Christopher Cameronceb8727d2017-09-07 23:53:16553const char kForceColorProfileSRGB[] = "sRGB";
554const char kForceColorProfileP3[] = "Display P3 D65";
555const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
Sunny Sachanandani71e474a2019-06-11 02:32:03556const char kForceColorProfileSCRGBLinear[] =
557 "scRGB linear (HDR where available)";
558const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)";
Christopher Cameronceb8727d2017-09-07 23:53:16559
560const char kForceColorProfileName[] = "Force color profile";
561const char kForceColorProfileDescription[] =
562 "Forces Chrome to use a specific color profile instead of the color "
563 "of the window's current monitor, as specified by the operating system.";
564
Chris Blumeb504da1f22020-04-27 00:21:44565const char kDynamicColorGamutName[] = "Dynamic color gamut";
566const char kDynamicColorGamutDescription[] =
567 "Displays in wide color when the content is wide. When the content is "
568 "not wide, displays sRGB";
569
Keishi Hattori15299742020-04-20 04:00:09570const char kCooperativeSchedulingName[] = "Cooperative Scheduling";
571const char kCooperativeSchedulingDescription[] =
572 "Enables cooperative scheduling in Blink.";
573
Lijin Shen5feade62019-09-17 03:01:01574const char kDarkenWebsitesCheckboxInThemesSettingName[] =
575 "Darken websites checkbox in themes setting";
576const char kDarkenWebsitesCheckboxInThemesSettingDescription[] =
577 "Show a darken websites checkbox in themes settings when system default or "
578 "dark is selected. The checkbox can toggle the auto-darkening web contents "
579 "feature";
580
Brett Wilsonf27ff602017-07-07 22:28:47581const char kDebugPackedAppName[] = "Debugging for packed apps";
582const char kDebugPackedAppDescription[] =
583 "Enables debugging context menu options such as Inspect Element for packed "
584 "applications.";
585
Brett Wilsonf27ff602017-07-07 22:28:47586const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
587const char kDebugShortcutsDescription[] =
588 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
589
Behnood Momenzadeh7411ae92020-04-29 16:54:18590const char kDetectTargetEmbeddingLookalikesName[] =
591 "Detect target embedding domains as lookalikes.";
592const char kDetectTargetEmbeddingLookalikesDescription[] =
593 "Shows a lookalike interstitial when navigating to target embedding domains"
594 "(e.g. google.com.example.com).";
595
Sharon Yangf390ea92021-06-23 19:55:40596const char kDisableProcessReuse[] = "Disable subframe process reuse";
597const char kDisableProcessReuseDescription[] =
598 "Prevents out-of-process iframes from reusing compatible processes from "
599 "unrelated tabs. This is an experimental mode that will result in more "
600 "processes being created.";
601
Brett Wilsonf27ff602017-07-07 22:28:47602const char kDisallowDocWrittenScriptsUiName[] =
603 "Block scripts loaded via document.write";
604const char kDisallowDocWrittenScriptsUiDescription[] =
605 "Disallows fetches for third-party parser-blocking scripts inserted into "
606 "the main frame via document.write.";
607
Vladimir Levin4fd9269d2021-03-12 20:07:21608const char kDocumentTransitionName[] = "documentTransition API";
609const char kDocumentTransitionDescription[] =
610 "Controls the availability of the documentTransition JavaScript API.";
611
Becca Hughesac86cd442019-01-09 23:49:54612const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement";
613const char kEnableAudioFocusEnforcementDescription[] =
614 "Enables enforcement of a single media session having audio focus at "
615 "any one time. Requires #enable-media-session-service to be enabled too.";
616
Florian Uunk8c428ea2018-07-18 11:12:52617const char kEnableAutofillAccountWalletStorageName[] =
618 "Enable the account data storage for autofill";
619const char kEnableAutofillAccountWalletStorageDescription[] =
620 "Enable the ephemeral storage for account data for autofill.";
621
Mohamed Amir Yoseff6763132021-02-18 15:53:14622const char kEnableAutofillAddressSavePromptName[] =
623 "Autofill Address Save Prompts";
624const char kEnableAutofillAddressSavePromptDescription[] =
625 "Enable the Autofill address save prompts.";
626
Manas Verma7e5b391b2019-04-09 02:08:53627const char kEnableAutofillCreditCardAuthenticationName[] =
628 "Allow using platform authenticators to retrieve server cards";
629const char kEnableAutofillCreditCardAuthenticationDescription[] =
630 "When enabled, users will be given the option to use a platform "
631 "authenticator (if available) to verify card ownership when retrieving "
632 "credit cards from Google Payments.";
633
Anne Lim2de74292020-11-12 19:22:57634const char
635 kEnableAutofillInfoBarAccountIndicationFooterForSingleAccountUsersName[] =
636 "Display InfoBar footers with account indication information for "
637 "single account users";
638const char
639 kEnableAutofillInfoBarAccountIndicationFooterForSingleAccountUsersDescription
640 [] = "When enabled and user has single account, a footer indicating "
641 "user's e-mail address will appear at the bottom of InfoBars "
642 "which has corresponding account indication footer flags on.";
643
644const char kEnableAutofillInfoBarAccountIndicationFooterForSyncUsersName[] =
645 "Display InfoBar footers with account indication information for "
646 "sync users";
647const char
648 kEnableAutofillInfoBarAccountIndicationFooterForSyncUsersDescription[] =
649 "When enabled and user is signed in, a footer indicating user's e-mail "
650 "address will appear at the bottom of InfoBars which has "
651 "corresponding account indication footer flags on.";
652
Anne Lim99375dd2020-10-27 00:16:02653const char kEnableAutofillPasswordInfoBarAccountIndicationFooterName[] =
654 "Display password InfoBar footers with account indication information";
655const char kEnableAutofillPasswordInfoBarAccountIndicationFooterDescription[] =
Anne Limc83214c2020-10-23 07:18:05656 "When enabled, a footer indicating user's e-mail address will appear at "
Anne Lim99375dd2020-10-27 00:16:02657 "the bottom of corresponding password InfoBars.";
Anne Limc83214c2020-10-23 07:18:05658
Anne Lim1b70e5c22020-11-12 00:03:18659const char kEnableAutofillSaveCardInfoBarAccountIndicationFooterName[] =
660 "Display SaveCardInfoBar footer with account indication information";
661const char kEnableAutofillSaveCardInfoBarAccountIndicationFooterDescription[] =
662 "When enabled, a footer indicating user's e-mail address will appear at "
663 "the bottom of SaveCardInfoBar.";
664
siyua29899832019-06-07 19:42:12665const char kEnableAutofillCreditCardUploadFeedbackName[] =
666 "Enable feedback for credit card upload flow";
667const char kEnableAutofillCreditCardUploadFeedbackDescription[] =
668 "When enabled, if credit card upload succeeds, the avatar button will "
669 "show a highlight, otherwise the icon will be updated and if it is "
670 "clicked, the save card failure bubble will be shown.";
671
Lily Chen17c57972020-04-22 19:27:44672const char kEnableExperimentalCookieFeaturesName[] =
673 "Enable experimental cookie features";
674const char kEnableExperimentalCookieFeaturesDescription[] =
675 "Enable new features that affect setting, sending, and managing cookies. "
676 "The enabled features are subject to change at any time.";
677
Tarun Bansal56c92932019-04-01 17:58:36678const char kEnableSaveDataName[] = "Enables save data feature";
679const char kEnableSaveDataDescription[] =
680 "Enables save data feature. May cause user's traffic to be proxied via "
681 "Google's data reduction proxy.";
682
Tarun Bansal0c4a7d42020-05-11 19:19:33683const char kEnableNavigationPredictorName[] = "Enables navigation predictor";
684const char kEnableNavigationPredictorDescription[] =
685 "Enables navigation predictor feature that predicts the next likely "
686 "navigation using a set of heuristics.";
687
688const char kEnablePreconnectToSearchName[] =
689 "Enables preconnections to default search engine";
690const char kEnablePreconnectToSearchDescription[] =
691 "Enables the feature that preconnects to the user's default search engine.";
692
Jenny Blessing45326bf2019-08-29 23:50:37693const char kEnableRemovingAllThirdPartyCookiesName[] =
694 "Enable removing SameSite=None cookies";
695const char kEnableRemovingAllThirdPartyCookiesDescription[] =
696 "Enables UI on chrome://settings/siteData to remove all third-party "
697 "cookies and site data.";
698
Yann Dago4e326062020-10-01 20:22:20699const char kEnableBrowsingDataLifetimeManagerName[] =
700 "Enables the BrowsingDataLifetimeManager service to run.";
701const char kEnableBrowsingDataLifetimeManagerDescription[] =
702 "Enables the BrowsingDataLifetimeManager service to run and periodically "
703 "delete browsing data as specified by the BrowsingDataLifetime policy.";
704
Robert Liao5c756102020-03-20 19:46:43705const char kColorProviderRedirectionName[] = "Color Provider Redirection";
706const char kColorProviderRedirectionDescription[] =
707 "Redirects color requests to the color provider where possible.";
708
Daniel Murphy2b46f4602021-05-13 22:58:39709const char kDesktopPWAsPrefixAppNameInWindowTitleName[] =
710 "Desktop PWAs prefix window title with app name.";
711const char kDesktopPWAsPrefixAppNameInWindowTitleDescription[] =
712 "Prefix the window title of installed PWAs with the name of the PWA. On "
713 "ChromeOS this is visible only in the window/activity switcher.";
714
Eric Willigersc805ad612021-04-01 19:50:09715const char kDesktopPWAsAppIconShortcutsMenuUIName[] =
716 "Desktop PWAs app icon shortcuts menu UI";
717const char kDesktopPWAsAppIconShortcutsMenuUIDescription[] =
718 "Show web app shortcuts in the shelf context menu";
719
Lei Zhang1a6fd01b2021-03-24 17:03:48720const char kDesktopPWAsAttentionBadgingCrOSName[] =
Louise Brett7f5919222020-12-16 13:20:55721 "Desktop PWAs Attention Badging";
Lei Zhang1a6fd01b2021-03-24 17:03:48722const char kDesktopPWAsAttentionBadgingCrOSDescription[] =
Louise Brett7f5919222020-12-16 13:20:55723 "Enable attention badging for PWA icons in the shelf and launcher.";
Lei Zhang1a6fd01b2021-03-24 17:03:48724const char kDesktopPWAsAttentionBadgingCrOSApiAndNotifications[] =
Louise Brett240a9a92021-02-04 00:14:38725 "for Badging API and notifications";
Lei Zhang1a6fd01b2021-03-24 17:03:48726const char kDesktopPWAsAttentionBadgingCrOSApiOverridesNotifications[] =
Eric Willigers53993082021-03-15 06:58:03727 "for Badging API, or notifications for apps not using Badging API";
Lei Zhang1a6fd01b2021-03-24 17:03:48728const char kDesktopPWAsAttentionBadgingCrOSApiOnly[] = "for Badging API only";
729const char kDesktopPWAsAttentionBadgingCrOSNotificationsOnly[] =
Louise Brett240a9a92021-02-04 00:14:38730 "for notifications only";
Louise Brett7f5919222020-12-16 13:20:55731
Matt Giuca9d0aecb2021-01-15 09:10:00732const char kDesktopPWAsRemoveStatusBarName[] = "Desktop PWAs remove status bar";
733const char kDesktopPWAsRemoveStatusBarDescription[] =
734 "Hides the status bar popup in Desktop PWA app windows.";
735
Alan Cuttereaae7f42020-12-07 02:24:11736const char kDesktopPWAsElidedExtensionsMenuName[] =
737 "Desktop PWAs elided extensions menu";
738const char kDesktopPWAsElidedExtensionsMenuDescription[] =
739 "Moves the Extensions \"puzzle piece\" icon from the title bar into the "
740 "app menu for web app windows.";
741
Alan Cutter64377262020-12-09 06:49:28742const char kDesktopPWAsFlashAppNameInsteadOfOriginName[] =
743 "Desktop PWAs flash app name instead of origin";
744const char kDesktopPWAsFlashAppNameInsteadOfOriginDescription[] =
745 "Replaces the origin flash with an app name flash when launching a web app "
746 "window.";
747
Alexey Baskakov5e710232021-05-05 02:17:41748const char kDesktopPWAsNotificationIconAndTitleName[] =
749 "Desktop PWAs improvements in notification icon and title";
750const char kDesktopPWAsNotificationIconAndTitleDescription[] =
751 "Replaces the websites origin and the Chrome icon with the web app's name "
752 "and app icon in notifications.";
753
Alan Cutter0d7453cf2021-01-06 23:52:53754const char kDesktopPWAsLinkCapturingName[] =
755 "Desktop PWA declarative link capturing";
756const char kDesktopPWAsLinkCapturingDescription[] =
757 "Enable web app manifests to declare link capturing behavior. Prototype "
758 "implementation of: "
759 "https://github.com/WICG/sw-launch/blob/master/"
760 "declarative_link_capturing.md";
761
Phillis Tangc6b383942021-06-21 20:15:40762const char kDesktopPWAsManifestIdName[] = "Desktop PWA manifest id";
763const char kDesktopPWAsManifestIdDescription[] =
764 "Enable web app manifests to declare id. Prototype "
765 "implementation of: "
766 "https://github.com/philloooo/pwa-unique-id/blob/main/explainer.md";
767
Lei Zhang507fffd2020-01-29 23:47:54768const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips";
769const char kDesktopPWAsTabStripDescription[] =
Alan Cutter121812d2020-01-09 05:03:37770 "Experimental UI for exploring what PWA windows would look like with a tab "
771 "strip.";
772
Alan Cutter8a7d3ed2020-05-12 01:29:34773const char kDesktopPWAsTabStripLinkCapturingName[] =
774 "Desktop PWA tab strip link capturing";
775const char kDesktopPWAsTabStripLinkCapturingDescription[] =
776 "Experimental behaviour for \"Desktop PWA tab strips\" to capture link "
777 "navigations within the app scope and bring them into the app's tabbed "
778 "window.";
779
Louise Brett51548fb2021-06-18 00:27:21780const char kDesktopPWAsTabStripSettingsName[] =
781 "Desktop PWA tab strips settings";
782const char kDesktopPWAsTabStripSettingsDescription[] =
783 "Experimental UI for selecting whether a PWA should open in tabbed mode.";
784
Ivan Šandrk8a710392021-05-20 13:53:13785const char kDesktopPWAsSubAppsName[] = "Desktop PWA Sub Apps";
786const char kDesktopPWAsSubAppsDescription[] =
787 "Enable installed PWAs to create shortcuts by installing their sub apps. "
788 "Prototype implementation of: "
789 "https://github.com/ivansandrk/multi-apps/blob/main/explainer.md";
790
Samuel Tang104341852021-03-17 18:19:06791const char kDesktopPWAsProtocolHandlingName[] = "Desktop PWA Protocol handling";
792const char kDesktopPWAsProtocolHandlingDescription[] =
793 "Enable web app manifests to declare protocol handling behavior."
794 "See: https://crbug.com/1019239.";
795
Lu Huangc911aaf32021-02-12 22:13:06796const char kDesktopPWAsUrlHandlingName[] = "Desktop PWA URL handling";
797const char kDesktopPWAsUrlHandlingDescription[] =
798 "Enable web app manifests to declare URL handling behavior. Prototype "
799 "implementation of: "
800 "https://github.com/WICG/pwa-url-handler/blob/master/explainer.md";
801
Amanda Baker23fb8fa2021-03-24 18:19:04802const char kDesktopPWAsWindowControlsOverlayName[] =
803 "Desktop PWA Window Controls Overlay";
804const char kDesktopPWAsWindowControlsOverlayDescription[] =
805 "Enable web app manifests to declare Window Controls Overlay as a display "
806 "override. Prototype implementation of: "
807 "https://github.com/WICG/window-controls-overlay/blob/main/explainer.md";
808
Alexey Baskakovd913a1272021-07-09 02:12:19809const char kDesktopPWAsWebBundlesName[] = "Desktop PWAs Web Bundles";
810const char kDesktopPWAsWebBundlesDescription[] =
811 "Adds support for web bundles, making web apps able to be launched "
812 "offline.";
813
Alan Cutter2ab7a042020-09-14 03:57:40814const char kEnableMigrateDefaultChromeAppToWebAppsGSuiteName[] =
815 "Migrate default G Suite Chrome apps to web apps";
816const char kEnableMigrateDefaultChromeAppToWebAppsGSuiteDescription[] =
817 "Enable the migration of default installed G Suite Chrome apps over to "
818 "their corresponding web apps.";
819
820const char kEnableMigrateDefaultChromeAppToWebAppsNonGSuiteName[] =
821 "Migrate default non-G Suite Chrome apps to web apps";
822const char kEnableMigrateDefaultChromeAppToWebAppsNonGSuiteDescription[] =
823 "Enable the migration of default installed non-G Suite Chrome apps over to "
824 "their corresponding web apps.";
825
Yann Dago413d39d2020-11-11 01:40:50826const char kEnableSyncRequiresPoliciesLoadedName[] =
827 "Sync waits for all policies to load before starting";
828const char kEnableSyncRequiresPoliciesLoadedDescription[] =
829 "Enables behaviour for Sync to wait for all policies to load before "
830 "starting";
831
Steven Valdez89a44ea92019-05-01 15:18:49832const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data";
833const char kEnableTLS13EarlyDataDescription[] =
834 "This option enables TLS 1.3 Early Data, allowing GET requests to be sent "
835 "during the handshake when resuming a connection to a compatible TLS 1.3 "
836 "server.";
837
Joel Riley700551502021-05-28 00:20:00838const char kEnhancedNetworkVoicesName[] = "Enhanced network voices";
839const char kEnhancedNetworkVoicesDescription[] =
840 "This option enables high-quality, network-based voices in "
841 "Select-to-speak.";
842
Adam Langleyf66f28d22020-02-05 18:10:38843const char kPostQuantumCECPQ2Name[] = "TLS Post-Quantum Confidentiality";
844const char kPostQuantumCECPQ2Description[] =
845 "This option enables a post-quantum (i.e. resistent to quantum computers) "
846 "key exchange algorithm in TLS (CECPQ2).";
847
James Hollyer1b943edb2020-10-28 03:28:06848const char kMacCoreLocationBackendName[] = "Core Location Backend";
849const char kMacCoreLocationBackendDescription[] =
850 "Enables usage of the Core Location APIs as the backend for Geolocation "
851 "API";
James Hollyer070f60a2020-05-05 06:13:15852
Mohamed Adel52ac1ae2020-09-08 16:10:27853const char kNewMacNotificationAPIName[] =
854 "Determines which notification API to use on macOS devices";
855const char kNewMacNotificationAPIDescription[] =
856 "Enables the usage of Apple's new notification API which will run on macOS "
857 "10.14+";
858
Pete Lavallee2d4415c72019-10-07 20:43:56859const char kWinrtGeolocationImplementationName[] =
860 "WinRT Geolocation Implementation";
861const char kWinrtGeolocationImplementationDescription[] =
862 "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows "
863 "for geolocation";
864
Alex Ilinb4148422021-07-16 17:16:24865extern const char kEnableExtendedSyncPromosCapabilityName[] =
866 "Enables reading the extended sync promo account capability";
867extern const char kEnableExtendedSyncPromosCapabilityDescription[] =
868 "When enabled, starts reading the account capability to decide whether "
869 "or not Chrome should display an extended sync promo";
870
Dominic Farolinoaf2f3b72021-05-03 23:44:16871const char kEnableFencedFramesName[] = "Enable the <fencedframe> element.";
872const char kEnableFencedFramesDescription[] =
873 "Fenced frames are an experimental web platform feature that allows "
874 "embedding an isolated top-level page. See "
875 "https://github.com/shivanigithub/fenced-frame";
876
James Hollyer24f30cb722021-06-18 21:22:24877const char kEnableGamepadButtonAxisEventsName[] =
878 "Gamepad Button and Axis Events";
879const char kEnableGamepadButtonAxisEventsDescription[] =
880 "Enables the ability to subscribe to changes in buttons and/or axes "
881 "on the gamepad object.";
882
Mikhail Pozdnyakov73373a62017-08-24 17:31:25883const char kEnableGenericSensorExtraClassesName[] =
884 "Generic Sensor Extra Classes";
885const char kEnableGenericSensorExtraClassesDescription[] =
886 "Enables an extra set of sensor classes based on Generic Sensor API, which "
887 "expose previously unavailable platform features, i.e. AmbientLightSensor "
888 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47889
Vikas Soni78daa632019-01-12 01:32:52890const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
891const char kEnableGpuServiceLoggingDescription[] =
892 "Enable printing the actual GL driver calls.";
893
Jimmy Gong07656e42021-04-08 02:31:08894const char kEnableShortcutCustomizationAppName[] =
895 "Enable shortcut customization app";
896const char kEnableShortcutCustomizationAppDescription[] =
897 "Enable the shortcut customization SWA, allowing users to customize system "
898 "shortcuts.";
899
Robert Ogdene7bbbcb2020-03-24 22:37:33900const char kEnableSRPIsolatedPrerendersName[] =
901 "Enable Navigation Predictor Isolated Prerenders";
902const char kEnableSRPIsolatedPrerendersDescription[] =
903 "Enable Navigation Predictions on the Google SRP to be fully isolated.";
904
Robert Ogden26de9972020-03-27 21:00:25905const char kEnableSRPIsolatedPrerenderProbingName[] =
906 "Enable Probing on Navigation Predictor Isolated Prerenders";
907const char kEnableSRPIsolatedPrerenderProbingDescription[] =
908 "Enable probing checks for Isolated Prerenders which will block commit.";
909
Robert Ogden1261e8f2020-06-24 22:45:46910const char kEnableSRPIsolatedPrerendersNSPName[] =
911 "Enable NoStatePrefetch on Navigation Predictor Isolated Prerenders";
912const char kEnableSRPIsolatedPrerendersNSPDescription[] =
913 "Enables NoStatePrefetch on Isolated Prerenders.";
914
Charlene Yane75ce252019-05-22 17:56:32915const char kDownloadAutoResumptionNativeName[] =
916 "Enable download auto-resumption in native";
917const char kDownloadAutoResumptionNativeDescription[] =
918 "Enables download auto-resumption in native";
919
Xing Liu13e5ec12020-05-08 17:32:34920const char kDownloadLaterName[] = "Enable download later";
921const char kDownloadLaterDescription[] = "Enables download later feature.";
922
Xing Liue36464f42020-07-14 17:25:03923const char kDownloadLaterDebugOnWifiName[] =
924 "Show download later dialog on WIFI.";
925const char kDownloadLaterDebugOnWifiNameDescription[] =
926 "Show download later dialog on WIFI.";
927
Shakti Sahu59679ed72021-07-22 22:13:46928const char kDownloadProgressMessageName[] = "Show download progress message";
929const char kDownloadProgressMessageDescription[] =
930 "Shows download progress message UI.";
931
Ian Kilpatricke68ef11a2018-07-04 03:52:10932const char kEnableLayoutNGName[] = "Enable LayoutNG";
933const char kEnableLayoutNGDescription[] =
934 "Enable Blink's next generation layout engine.";
935
Aleks Totic1f9056a2020-12-01 01:51:15936const char kEnableLayoutNGTableName[] = "Enable TableNG";
937const char kEnableLayoutNGTableDescription[] =
938 "Enable Blink's next generation table layout.";
939
Scott Littled0fd2d002018-04-13 03:37:26940const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading";
941const char kEnableLazyFrameLoadingDescription[] =
Scott Littledf79081b2019-05-29 23:03:39942 "Defers the loading of iframes marked with the attribute 'loading=lazy' "
943 "until the page is scrolled down near them.";
Scott Littled0fd2d002018-04-13 03:37:26944
rajendrant793ff512018-08-10 17:07:59945const char kEnableLazyImageLoadingName[] = "Enable lazy image loading";
946const char kEnableLazyImageLoadingDescription[] =
Scott Littledf79081b2019-05-29 23:03:39947 "Defers the loading of images marked with the attribute 'loading=lazy' "
948 "until the page is scrolled down near them.";
rajendrant793ff512018-08-10 17:07:59949
Becca Hughesac86cd442019-01-09 23:49:54950const char kEnableMediaSessionServiceName[] = "Media Session Service";
951const char kEnableMediaSessionServiceDescription[] =
952 "Enables the media session mojo service and internal media session "
953 "support.";
954
Bernhard Bauer5533f9912017-11-06 17:56:02955const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
956const char kEnableNetworkLoggingToFileDescription[] =
957 "Enables network logging to a file named netlog.json in the user data "
958 "directory. The file can be imported into chrome://net-internals.";
959
Shakti Sahu5a046f62019-03-12 19:25:34960const char kEnableNewDownloadBackendName[] = "Enable new download backend";
961const char kEnableNewDownloadBackendDescription[] =
962 "Enables the new download backend that uses offline content provider";
963
Lucas Furukawa Gadani9f57e192019-04-05 14:56:10964const char kEnablePortalsName[] = "Enable Portals.";
965const char kEnablePortalsDescription[] =
966 "Portals are an experimental web platform feature that allows embedding"
967 " and seamless transitions between pages."
968 " See https://github.com/WICG/portals and https://wicg.github.io/portals/";
969
Jeremy Roman30e81e82020-01-29 22:56:47970const char kEnablePortalsCrossOriginName[] = "Enable cross-origin Portals.";
971const char kEnablePortalsCrossOriginDescription[] =
972 "Allows portals to load cross-origin URLs in addition to same-origin ones."
973 " Has no effect if Portals are not enabled.";
974
Doug Arnettc52291a2020-05-07 18:52:30975const char kEnableTranslateSubFramesName[] = "Translate sub frames";
976const char kEnableTranslateSubFramesDescription[] =
977 "Enable the translation of sub frames (as well as the main frame)";
978
Qiaofei Yebeb9a232020-07-22 23:47:04979const char kEnableWindowsGamingInputDataFetcherName[] =
980 "Enable Windows.Gaming.Input";
981const char kEnableWindowsGamingInputDataFetcherDescription[] =
982 "Enable Windows.Gaming.Input by default to provide game controller "
983 "support on Windows 10 desktop.";
984
Titouan Rigoudyf619f5462020-09-25 16:35:49985const char kBlockInsecurePrivateNetworkRequestsName[] =
986 "Block insecure private network requests.";
987const char kBlockInsecurePrivateNetworkRequestsDescription[] =
988 "Prevents non-secure contexts from making sub-resource requests to "
989 "more-private IP addresses. An IP address IP1 is more private than IP2 if "
990 "1) IP1 is localhost and IP2 is not, or 2) IP1 is private and IP2 is "
991 "public. This is a first step towards full enforcement of CORS-RFC1918: "
992 "https://wicg.github.io/cors-rfc1918";
993
arthursonzogni27ef983f2021-06-15 10:09:40994const char kCrossOriginEmbedderPolicyCredentiallessName[] =
995 "Enable Cross-Origin-Embedder-Policy: credentialless";
996const char kCrossOriginEmbedderPolicyCredentiallessDescription[] =
997 "Credentialless is a Cross-Origin-Embedder-Policy (COEP) variant. "
998 "COEP:credentialless causes no-cors cross-origin requests not to include "
999 "credentials (cookies, client certificates, etc...). Similarly to "
1000 "require-corp, it can be used to enable cross-origin-isolation.";
1001
Zentaro Kavanagh53c48cb22021-03-25 00:19:061002const char kDeprecateAltClickName[] =
1003 "Enable Alt+Click deprecation notifications";
1004const char kDeprecateAltClickDescription[] =
1005 "Start providing notifications about Alt+Click deprecation and enable "
1006 "Search+Click as an alternative.";
1007
Zentaro Kavanaghc1898fe2021-06-25 00:31:451008const char kDeprecateAltBasedSixPackName[] =
1009 "Deprecate Alt based six-pack (PgUp, PgDn, Home, End, Delete, Insert)";
1010const char kDeprecateAltBasedSixPackDescription[] =
1011 "Show deprecation notifications and disable functionality for Alt based "
1012 "six pack deprecations. The Search based versions continue to work.";
1013
Jimmy Gongba69b982020-08-25 00:01:291014const char kDiagnosticsAppName[] = "Diagnostics app";
1015const char kDiagnosticsAppDescription[] =
1016 "Enables the Diagnostics app that allows Chrome OS users to be able to "
1017 "view their system telemetric information and run diagnostic tests for "
1018 "their device.";
1019
Michael Checoc6abb922021-05-21 17:55:021020const char kDiagnosticsAppNavigationName[] = "Diagnostics app navigation";
1021const char kDiagnosticsAppNavigationDescription[] =
1022 "Enables the navigation panel in the Diagnostics app.";
1023
Yutaka Hiranoaa0e62e2019-09-05 11:01:041024const char kDisableKeepaliveFetchName[] = "Disable fetch with keepalive set";
1025const char kDisableKeepaliveFetchDescription[] =
1026 "Disable fetch with keepalive set "
1027 "(https://fetch.spec.whatwg.org/#request-keepalive-flag).";
1028
Chris Hall4a4225f62019-01-18 03:07:161029const char kExperimentalAccessibilityLanguageDetectionName[] =
1030 "Experimental accessibility language detection";
1031const char kExperimentalAccessibilityLanguageDetectionDescription[] =
1032 "Enable language detection for in-page content which is then exposed to "
Chris Hall31e92b22019-11-15 05:57:221033 "assistive technologies such as screen readers.";
Chris Hall4a4225f62019-01-18 03:07:161034
Chris Hall4f3ca5582019-11-19 02:55:491035const char kExperimentalAccessibilityLanguageDetectionDynamicName[] =
1036 "Experimental accessibility language detection for dynamic content";
1037const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] =
1038 "Enable language detection for dynamic content which is then exposed to "
1039 "assistive technologies such as screen readers.";
1040
Rahul Arakeri61a2ad272019-03-19 22:55:081041const char kCompositorThreadedScrollbarScrollingName[] =
Rahul Arakeriac87fb12019-05-14 00:07:221042 "Compositor threaded scrollbar scrolling";
Rahul Arakeri61a2ad272019-03-19 22:55:081043const char kCompositorThreadedScrollbarScrollingDescription[] =
1044 "Enables pointer-based scrollbar scrolling on the compositor thread "
1045 "instead of the main thread";
1046
Alexei Filippov522a5222019-03-29 03:33:181047const char kMemlogName[] = "Chrome heap profiler start mode.";
1048const char kMemlogDescription[] =
1049 "Starts heap profiling service that records sampled memory allocation "
1050 "profile having each sample attributed with a callstack. "
1051 "The sampling resolution is controlled with --memlog-sampling-rate flag. "
1052 "Recorded heap dumps can be obtained at chrome://tracing "
1053 "[category:memory-infra] and chrome://memory-internals. This setting "
1054 "controls which processes will be profiled since their start. To profile "
1055 "any given process at a later time use chrome://memory-internals page.";
1056const char kMemlogModeMinimal[] = "Browser and GPU";
1057const char kMemlogModeAll[] = "All processes";
1058const char kMemlogModeAllRenderers[] = "All renderers";
1059const char kMemlogModeRendererSampling[] = "Single renderer";
1060const char kMemlogModeBrowser[] = "Browser only";
1061const char kMemlogModeGpu[] = "GPU only";
Alexei Filippov2e8bfee2019-03-07 21:51:271062
Alexei Filippov522a5222019-03-29 03:33:181063const char kMemlogSamplingRateName[] =
1064 "Heap profiling sampling interval (in bytes).";
1065const char kMemlogSamplingRateDescription[] =
1066 "Heap profiling service uses Poisson process to sample allocations. "
1067 "Default value for the interval between samples is 100000 (100KB). "
1068 "This results in low noise for large and/or frequent allocations "
Alexei Filippov2e8bfee2019-03-07 21:51:271069 "[size * frequency >> 100KB]. This means that aggregate numbers [e.g. "
erikchen99bfce02018-02-14 20:29:221070 "total size of malloc-ed objects] and large and/or frequent allocations "
Alexei Filippov522a5222019-03-29 03:33:181071 "can be trusted with high fidelity. "
1072 "Lower intervals produce higher samples resolution, but come at a cost of "
1073 "higher performance overhead.";
1074const char kMemlogSamplingRate10KB[] = "10KB";
1075const char kMemlogSamplingRate50KB[] = "50KB";
1076const char kMemlogSamplingRate100KB[] = "100KB";
1077const char kMemlogSamplingRate500KB[] = "500KB";
1078const char kMemlogSamplingRate1MB[] = "1MB";
1079const char kMemlogSamplingRate5MB[] = "5MB";
erikchen8bc20d82018-02-14 03:21:511080
Alexei Filippov522a5222019-03-29 03:33:181081const char kMemlogStackModeName[] = "Heap profiling stack traces type.";
1082const char kMemlogStackModeDescription[] =
1083 "By default heap profiling service records native stacks. "
1084 "A post-processing step is required to symbolize the stacks. "
1085 "'Native with thread names' adds the thread name as the first frame of "
1086 "each native stack. It's also possible to record a pseudo stack using "
1087 "trace events as identifiers. It's also possible to do a mix of both.";
1088const char kMemlogStackModeMixed[] = "Mixed";
1089const char kMemlogStackModeNative[] = "Native";
1090const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names";
1091const char kMemlogStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:051092
Ali Stanfielda835700c2021-07-24 01:03:201093const char kEnableLensRegionSearchFlagId[] = "enable-lens-region-search";
1094const char kEnableLensRegionSearchName[] =
1095 "Search your screen with Google Lens";
Ali Stanfield980a7492021-07-21 19:21:261096const char kEnableLensRegionSearchDescription[] =
Ali Stanfielda835700c2021-07-24 01:03:201097 "Right click and select \"Search part of the page with Google Lens\" to "
1098 "search any region of the site to learn more about the visual content you "
1099 "see while you browse and shop on the web.";
Ali Stanfield980a7492021-07-21 19:21:261100
rajendrant41f3f1b2020-12-16 10:29:311101const char kEnableLoginDetectionName[] = "Enable login detection";
1102const char kEnableLoginDetectionDescription[] =
1103 "Allow user sign-in to be detected based on heuristics.";
1104
Anatoliy Potapchukf096475c2021-04-06 15:51:591105const char kEnableManagedConfigurationWebApiName[] =
1106 "Enable Managed Configuration Web API";
1107const char kEnableManagedConfigurationWebApiDescription[] =
1108 "Allows website to access a managed configuration provided by the device "
1109 "administrator for the origin.";
1110
Jimmy Gongcd463fc2021-02-11 01:32:181111const char kEnablePciguardUiName[] =
1112 "Enable Pciguard (Thunderbolt + USB4 tunneling) UI for settings";
1113const char kEnablePciguardUiDescription[] =
1114 "Enable toggling Pciguard settings through the Settings App. By default, "
Jimmy Gong4b6a2792021-02-26 03:00:001115 "this flag is enabled.";
Jimmy Gongcd463fc2021-02-11 01:32:181116
Ben Goldberger2a1433a42021-04-21 18:37:151117const char kEnablePenetratingImageSelectionName[] =
1118 "Penetrating Image Selection";
1119const char kEnablePenetratingImageSelectionDescription[] =
1120 "Enables image options to be surfaced in the context menu for nodes "
1121 "covered by transparent overlays.";
1122
F#m59d036e2017-09-13 07:22:171123const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
1124const char kEnablePixelCanvasRecordingDescription[] =
1125 "Pixel canvas recording allows the compositor to raster contents aligned "
1126 "with the pixel and improves text rendering. This should be enabled when a "
1127 "device is using fractional scale factor.";
1128
Robert Flack55c53a412021-03-22 14:46:081129const char kReduceHorizontalFlingVelocityName[] =
1130 "Reduce horizontal fling velocity";
1131const char kReduceHorizontalFlingVelocityDescription[] =
1132 "Reduces the velocity of horizontal flings to 20\% of their original"
1133 "velocity.";
1134
Ella Gebee81c92018-08-14 15:51:091135const char kEnableResamplingInputEventsName[] =
1136 "Enable resampling input events";
1137const char kEnableResamplingInputEventsDescription[] =
1138 "Predicts mouse and touch inputs position at rAF time based on previous "
1139 "input";
1140const char kEnableResamplingScrollEventsName[] =
1141 "Enable resampling scroll events";
1142const char kEnableResamplingScrollEventsDescription[] =
1143 "Predicts the scroll amount at vsync time based on previous input";
Joao Victor Almeida371702c2021-01-08 18:41:561144const char kEnableResamplingScrollEventsExperimentalPredictionName[] =
1145 "Enable experimental prediction for scroll events";
1146const char kEnableResamplingScrollEventsExperimentalPredictionDescription[] =
1147 "Predicts the scroll amount after the vsync time to more closely match "
1148 "when the frame is visible.";
Ella Gebee81c92018-08-14 15:51:091149
Lei Zhang1a6fd01b2021-03-24 17:03:481150const char kEnableRestrictedWebApisName[] =
Anqing Zhaoc7136af2021-01-20 05:52:391151 "Enable the restriced web APIs for high-trusted apps.";
Lei Zhang1a6fd01b2021-03-24 17:03:481152const char kEnableRestrictedWebApisDescription[] =
Anqing Zhaoc7136af2021-01-20 05:52:391153 "Enable the restricted web APIs for dev trial. This will be replaced with "
1154 "permission policies to control the capabilities afterwards.";
1155
Brett Wilsonf27ff602017-07-07 22:28:471156const char kEnableUseZoomForDsfName[] =
1157 "Use Blink's zoom for device scale factor.";
1158const char kEnableUseZoomForDsfDescription[] =
1159 "If enabled, Blink uses its zooming mechanism to scale content for device "
1160 "scale factor.";
1161const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
1162const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
1163const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
1164
Sean Harrison9dc405a52019-08-27 18:23:101165const char kEnableSubresourceRedirectName[] =
rajendrante2bfd3a2020-11-23 19:48:541166 "Enable Subresource Redirect Compression";
Sean Harrison9dc405a52019-08-27 18:23:101167const char kEnableSubresourceRedirectDescription[] =
rajendrante2bfd3a2020-11-23 19:48:541168 "Allow subresource compression for data savings";
Sean Harrison9dc405a52019-08-27 18:23:101169
Adam Langley7542a7b2019-10-04 02:00:551170const char kEnableWebAuthenticationCableV2SupportName[] =
1171 "Web Authentication caBLE v2 support";
1172const char kEnableWebAuthenticationCableV2SupportDescription[] =
Adam Langley339aa0f2021-04-05 21:46:041173 "Enable use of phones that are signed into the same account, with Sync "
1174 "enabled, to be used as 2nd-factor security keys.";
Kim Paulhamusae635a32018-06-27 07:30:541175
Yicheng Li0a78f462020-08-14 00:08:121176const char kEnableWebAuthenticationChromeOSAuthenticatorName[] =
1177 "ChromeOS platform Web Authentication support";
1178const char kEnableWebAuthenticationChromeOSAuthenticatorDescription[] =
1179 "Enable the ChromeOS platform authenticator for the Web Authentication "
1180 "API.";
1181
Andreas Haasb400d912019-08-28 18:54:101182const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly";
1183const char kExperimentalWebAssemblyFeaturesDescription[] =
1184 "Enable web pages to use experimental WebAssembly features.";
1185
Clemens Hammacher0c8a15a2018-04-27 13:45:321186const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
1187const char kEnableWasmBaselineDescription[] =
1188 "Enables WebAssembly baseline compilation and tier up.";
1189
Clemens Backes50e0ecd2020-01-20 10:43:241190const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation";
1191const char kEnableWasmLazyCompilationDescription[] =
1192 "Enables lazy (JIT on first call) compilation of WebAssembly modules.";
1193
Clemens Backes963eb37be2020-01-10 11:56:491194const char kEnableWasmTieringName[] = "WebAssembly tiering";
1195const char kEnableWasmTieringDescription[] =
1196 "Enables tiered compilation of WebAssembly (will tier up to TurboFan if "
Clemens Backes50e0ecd2020-01-20 10:43:241197 "#enable-webassembly-baseline is enabled).";
Clemens Backes963eb37be2020-01-10 11:56:491198
Christopher Thompsonf3ba20122019-06-06 22:01:011199const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info.";
1200const char kEvDetailsInPageInfoDescription[] =
1201 "Shows the EV certificate details in the Page Info bubble.";
1202
Mark Schillaci0bd47bd2020-12-09 04:03:351203const char kExperimentalAccessibilityLabelsName[] =
1204 "Experimental Accessibility Labels";
1205const char kExperimentalAccessibilityLabelsDescription[] =
1206 "Enables experimental accessibility labels feature. Note that this only "
1207 "enables the feature, and enabling the service is a profile preference.";
1208
Brett Wilsonf27ff602017-07-07 22:28:471209const char kExperimentalWebPlatformFeaturesName[] =
1210 "Experimental Web Platform features";
1211const char kExperimentalWebPlatformFeaturesDescription[] =
1212 "Enables experimental Web Platform features that are in development.";
1213
1214const char kExtensionContentVerificationName[] =
1215 "Extension Content Verification";
1216const char kExtensionContentVerificationDescription[] =
1217 "This flag can be used to turn on verification that the contents of the "
1218 "files on disk for extensions from the webstore match what they're "
1219 "expected to be. This can be used to turn on this feature if it would not "
1220 "otherwise have been turned on, but cannot be used to turn it off (because "
1221 "this setting can be tampered with by malware).";
1222const char kExtensionContentVerificationBootstrap[] =
1223 "Bootstrap (get expected hashes, but do not enforce them)";
1224const char kExtensionContentVerificationEnforce[] =
1225 "Enforce (try to get hashes, and enforce them if successful)";
1226const char kExtensionContentVerificationEnforceStrict[] =
1227 "Enforce strict (hard fail if we can't get hashes)";
1228
1229const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1230const char kExtensionsOnChromeUrlsDescription[] =
1231 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1232 "request this permission.";
galinapae72e152017-05-12 13:12:281233
Axel Antoine12df71182019-07-25 18:11:211234const char kFilteringScrollPredictionName[] = "Filtering scroll prediction";
1235const char kFilteringScrollPredictionDescription[] =
1236 "Enable filtering of predicted scroll events";
1237
David Bokan432978d2019-08-15 18:18:521238const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets";
1239const char kFractionalScrollOffsetsDescription[] =
1240 "Enables fractional scroll offsets inside Blink, exposing non-integer "
1241 "offsets to web APIs.";
1242
Brett Wilsonecb80982017-07-12 20:34:511243const char kForceEffectiveConnectionTypeName[] =
1244 "Override effective connection type";
1245const char kForceEffectiveConnectionTypeDescription[] =
1246 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:301247 "returned by the network quality estimator. Slow 2G on Cellular returns "
1248 "Slow 2G when connected to a cellular network, and the actual estimate "
Tarun Bansalce1cfba2021-03-02 07:05:061249 "effective connection type when not on a cellular network.";
Brett Wilsonecb80982017-07-12 20:34:511250const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
1251const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
1252const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:301253const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
1254 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:511255const char kEffectiveConnectionType2GDescription[] = "2G";
1256const char kEffectiveConnectionType3GDescription[] = "3G";
1257const char kEffectiveConnectionType4GDescription[] = "4G";
1258
Jay Harris583f48922019-05-06 05:55:241259const char kFileHandlingAPIName[] = "File Handling API";
1260const char kFileHandlingAPIDescription[] =
1261 "Enables the file handling API, allowing websites to register as file "
Jesse McKennabe661982020-10-29 23:57:421262 "handlers.";
Jay Harris583f48922019-05-06 05:55:241263
Darwin Huang1473bc32021-06-18 01:56:231264const char kFileHandlingIconsName[] = "File Handling Icons";
1265const char kFileHandlingIconsDescription[] =
1266 "Allows websites using the file handling API to also register file type "
1267 "icons. See https://github.com/WICG/file-handling/blob/main/explainer.md "
1268 "for more information.";
1269
Viktor Semeniukd5cfc262021-02-25 12:51:221270const char kFillingAcrossAffiliatedWebsitesName[] =
1271 "Fill passwords across affiliated websites.";
1272const char kFillingAcrossAffiliatedWebsitesDescription[] =
1273 "Enables filling password on a website when there is saved "
1274 "password on affiliated website.";
1275
Brett Wilsonecb80982017-07-12 20:34:511276const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1277const char kFillOnAccountSelectDescription[] =
1278 "Filling of passwords when an account is explicitly selected by the user "
1279 "rather than autofilling credentials on page load.";
1280
Brett Wilsonecb80982017-07-12 20:34:511281const char kForceTextDirectionName[] = "Force text direction";
1282const char kForceTextDirectionDescription[] =
1283 "Explicitly force the per-character directionality of UI text to "
1284 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1285 "direction of the character language.";
1286const char kForceDirectionLtr[] = "Left-to-right";
1287const char kForceDirectionRtl[] = "Right-to-left";
1288
1289const char kForceUiDirectionName[] = "Force UI direction";
1290const char kForceUiDirectionDescription[] =
1291 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1292 "mode, overriding the default direction of the UI language.";
1293
Tommy Steimel863e6cf2019-07-01 19:07:361294const char kGlobalMediaControlsName[] = "Global Media Controls";
1295const char kGlobalMediaControlsDescription[] =
1296 "Enables the Global Media Controls UI in the toolbar.";
1297
Takumi Fujimotod25d2b72019-12-19 00:36:181298const char kGlobalMediaControlsForCastName[] = "Global Media Controls for Cast";
1299const char kGlobalMediaControlsForCastDescription[] =
1300 "Shows Cast sessions in the Global Media Controls UI. Requires "
1301 "#global-media-controls and #cast-media-route-provider to also be enabled.";
1302
Jazz Xu223d04c2020-09-22 20:23:011303const char kGlobalMediaControlsForChromeOSName[] =
Jazz Xu326c62c2020-09-24 02:01:521304 "Global Media Controls for ChromeOS";
Jazz Xu223d04c2020-09-22 20:23:011305const char kGlobalMediaControlsForChromeOSDescription[] =
1306 "Enable Global Media Controls UI in shelf and quick settings.";
1307
Tommy Steimele5c5c122020-02-06 23:22:351308const char kGlobalMediaControlsPictureInPictureName[] =
1309 "Global Media Controls Picture-in-Picture";
1310const char kGlobalMediaControlsPictureInPictureDescription[] =
1311 "Enables Picture-in-Picture controls in the Global Media Controls UI. "
1312 "Requires "
1313 "#global-media-controls to also be enabled.";
1314
Noah Rose Ledesma210c5602020-06-22 21:06:461315const char kGlobalMediaControlsSeamlessTransferName[] =
1316 "Global Media Controls Seamless Transfer";
1317const char kGlobalMediaControlsSeamlessTransferDescription[] =
1318 "Enables selection of audio output device to play media through in "
1319 "the Global Media Controls UI. Requires #global-media-controls to "
1320 "also be enabled.";
1321
Noah Rose Ledesma1bbd0712020-09-09 20:36:441322const char kGlobalMediaControlsModernUIName[] =
1323 "Global Media Controls Modern UI";
1324
1325const char kGlobalMediaControlsModernUIDescription[] =
1326 "Use a redesigned version of the Global Media Controls UI. Requires "
1327 "#global-media-controls to also be enabled.";
1328
Jazz Xu15f2b1c2020-07-09 14:42:141329const char kGlobalMediaControlsOverlayControlsName[] =
Tommy Steimel371f69e2020-07-20 16:45:311330 "Enable overlay controls for Global Media Controls";
Jazz Xu15f2b1c2020-07-09 14:42:141331const char kGlobalMediaControlsOverlayControlsDescription[] =
Tommy Steimel371f69e2020-07-20 16:45:311332 "Allowing controls to be dragged out from Global Media Controls dialog. "
Jazz Xu15f2b1c2020-07-09 14:42:141333 "Requires #global-media-controls to also be enabled.";
1334
Juan Mojicacd2cab02021-04-19 22:10:241335const char kGoogleLensSdkIntentName[] =
1336 "Enable the use of the Lens SDK when starting intent into Lens.";
1337const char kGoogleLensSdkIntentDescription[] =
1338 "Starts Lens using the Lens SDK if supported.";
1339
Brett Wilsonecb80982017-07-12 20:34:511340const char kGpuRasterizationName[] = "GPU rasterization";
danakj51faabd2020-03-31 17:25:051341const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content.";
Brett Wilsonecb80982017-07-12 20:34:511342
Curtis McMullanf2e45bf2020-08-26 09:51:391343const char kHandwritingGestureEditingName[] = "Handwriting Gestures Editing";
1344const char kHandwritingGestureEditingDescription[] =
1345 "Enables editing with handwriting gestures within the virtual keyboard.";
1346
Curtis McMullan88e039e2021-07-27 08:06:311347const char kHandwritingLegacyRecognitionName[] =
1348 "Handwriting Legacy Recognition";
1349const char kHandwritingLegacyRecognitionDescription[] =
1350 "Enables new on-device recognition for handwriting legacy paths.";
1351
Tommy Steimel1aadd7b2019-01-18 19:39:421352const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
1353const char kHardwareMediaKeyHandlingDescription[] =
1354 "Enables using media keys to control the active media session. This "
1355 "requires MediaSessionService to be enabled too";
1356
John Delaney521fe9f2020-04-29 22:18:191357const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations";
1358const char kHeavyAdPrivacyMitigationsDescription[] =
1359 "Enables privacy mitigations for the heavy ad intervention. Disabling "
1360 "this makes the intervention deterministic. Defaults to enabled.";
John Delaney782c77762019-10-28 15:53:561361
1362const char kHeavyAdInterventionName[] = "Heavy Ad Intervention";
1363const char kHeavyAdInterventionDescription[] =
1364 "Unloads ads that use too many device resources.";
1365
Toni Barzic7e93fa52020-01-29 01:35:471366const char kHideShelfControlsInTabletModeName[] =
1367 "Hide shelf control buttons in tablet mode.";
1368
1369const char kHideShelfControlsInTabletModeDescription[] =
1370 "Hides home, back, and overview button from the shelf while the device is "
1371 "in tablet mode. Predicated on shelf-hotseat feature being enabled.";
1372
Wei-Yin Chen (陳威尹)565a41612020-06-30 22:29:561373const char kTabSwitcherOnReturnName[] = "Tab switcher on return";
Matt Simmons2048b2a2018-12-20 20:12:561374const char kTabSwitcherOnReturnDescription[] =
1375 "Enable tab switcher on return after specified time has elapsed";
1376
Brett Wilsonecb80982017-07-12 20:34:511377const char kHostedAppShimCreationName[] =
1378 "Creation of app shims for hosted apps on Mac";
1379const char kHostedAppShimCreationDescription[] =
1380 "Create app shims on Mac when creating a hosted app.";
1381
Emily Stark70158ce2021-07-16 18:26:311382const char kHttpsOnlyModeName[] = "HTTPS-First Mode Setting";
Chris Thompson8bc143b2021-06-28 19:20:321383const char kHttpsOnlyModeDescription[] =
Emily Stark70158ce2021-07-16 18:26:311384 "Adds a setting under chrome://settings/security to opt-in to HTTPS-First "
Chris Thompson8bc143b2021-06-28 19:20:321385 "Mode.";
1386
Corentin Walleze660b152020-07-15 16:07:541387const char kIgnoreGpuBlocklistName[] = "Override software rendering list";
1388const char kIgnoreGpuBlocklistDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511389 "Overrides the built-in software rendering list and enables "
1390 "GPU-acceleration on unsupported system configurations.";
1391
Jimmy Gong6de11b02021-02-04 21:35:011392const char kImprovedKeyboardShortcutsName[] =
1393 "Enable improved keyboard shortcuts";
1394const char kImprovedKeyboardShortcutsDescription[] =
1395 "Ensure keyboard shortcuts work consistently with international keyboard "
1396 "layouts and deprecate legacy shortcuts.";
1397
Matt Amert2df4f1452019-12-09 04:59:491398const char kImpulseScrollAnimationsName[] = "Impulse-style scroll animations";
1399const char kImpulseScrollAnimationsDescription[] =
1400 "Replaces the default scroll animation with Impulse-style scroll "
1401 "animations.";
1402
Side Yilmaz424606f2021-04-09 14:08:291403const char kIncognitoBrandConsistencyForAndroidName[] =
1404 "Enable Incognito brand consistency in Android.";
1405const char kIncognitoBrandConsistencyForAndroidDescription[] =
1406 "When enabled, keeps Incognito UI consistent regardless of any selected "
1407 "theme.";
1408
Rohit Agarwal6e9b6022021-08-10 19:44:371409const char kIncognitoReauthenticationForAndroidName[] =
1410 "Enable device reauthentication for Incognito.";
1411const char kIncognitoReauthenticationForAndroidDescription[] =
1412 "When enabled, a setting appears in Settings > Privacy and Security, to "
1413 "enable reauthentication for accessing your existing Incognito tabs.";
1414
Rohit Agarwalf0fca3eb2021-03-31 12:40:391415const char kIncognitoBrandConsistencyForDesktopName[] =
1416 "Enable Incognito brand consistency in desktop.";
1417const char kIncognitoBrandConsistencyForDesktopDescription[] =
1418 "When enabled, removes any theme or background customization done by the "
1419 "user on the Incognito UI.";
1420
Rohit Agarwal967518a2021-05-31 09:13:201421const char kIncognitoClearBrowsingDataDialogForDesktopName[] =
1422 "Enable clear browsing data dialog in Incognito.";
1423const char kIncognitoClearBrowsingDataDialogForDesktopDescription[] =
1424 "When enabled, clear browsing data option would be enabled in Incognito "
1425 "which upon clicking would show a dialog to close all Incognito windows.";
1426
Side Yilmaz745252f2021-05-03 13:10:221427const char kUpdateHistoryEntryPointsInIncognitoName[] =
Side Yilmaza8ef2ad2021-06-01 15:09:231428 "Update history entry points in Incognito.";
Side Yilmaz745252f2021-05-03 13:10:221429const char kUpdateHistoryEntryPointsInIncognitoDescription[] =
1430 "When enabled, the entry points to history UI from Incognito mode will be "
1431 "removed for iOS and Desktop. An educative placeholder will be shown for "
1432 "Android history page.";
1433
Alex Ilasi1670e872021-07-23 03:19:541434const char kIncognitoNtpRealBoxName[] =
1435 "Incognito New Tab Page Real Search Box";
1436const char kIncognitoNtpRealBoxDescription[] =
1437 "When enabled, Incognito New Tap Page will display a Real Search Box.";
1438
Saba Khukhunashvilif7a4f822021-07-23 10:59:211439const char kIncognitoNtpRevampName[] = "Revamped Incognito New Tab Page";
1440const char kIncognitoNtpRevampDescription[] =
1441 "When enabled, Incognito new tab page will have an updated UI";
1442
Ramin Halavatidf9668c2020-10-30 15:35:531443const char kIncognitoScreenshotName[] = "Incognito Screenshot";
1444const char kIncognitoScreenshotDescription[] =
1445 "Enables Incognito screenshots on Android. It will also make Incognito "
1446 "thumbnails visible.";
1447
Rohit Agarwal485ecac2021-04-07 19:52:571448const char kInheritNativeThemeFromParentWidgetName[] =
1449 "Allow widgets to inherit native theme from its parent widget.";
1450const char kInheritNativeThemeFromParentWidgetDescription[] =
1451 "When enabled, secondary UI like menu, dialog etc would be in dark mode "
1452 "when Incognito mode is open.";
1453
Brett Wilsonecb80982017-07-12 20:34:511454const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1455const char kInProductHelpDemoModeChoiceDescription[] =
1456 "Selects the In-Product Help demo mode.";
1457
Jarrydc3639ac2020-04-09 17:05:391458const char kInstalledAppsInCbdName[] = "Installed Apps in Clear Browsing Data";
1459const char kInstalledAppsInCbdDescription[] =
1460 "Adds the installed apps warning dialog to the clear browsing data flow "
1461 "which allows users to protect installed apps' data from being deleted.";
1462
Brett Wilsonecb80982017-07-12 20:34:511463const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1464const char kJavascriptHarmonyDescription[] =
1465 "Enable web pages to use experimental JavaScript features.";
1466
1467const char kJavascriptHarmonyShippingName[] =
1468 "Latest stable JavaScript features";
1469const char kJavascriptHarmonyShippingDescription[] =
1470 "Some web pages use legacy or non-standard JavaScript extensions that may "
1471 "conflict with the latest JavaScript features. This flag allows disabling "
1472 "support of those features for compatibility with such pages.";
1473
Christopher Thompson493f1062020-01-28 23:16:431474const char kLegacyTLSEnforcedName[] =
1475 "Enforce deprecation of legacy TLS versions";
1476const char kLegacyTLSEnforcedDescription[] =
1477 "Enable connection errors and interstitials for sites that use legacy TLS "
1478 "versions (TLS 1.0 and TLS 1.1), which are deprecated and will be removed "
1479 " in the future.";
1480
Yu Suc19bb6cc2021-02-25 06:38:291481const char kLensCameraAssistedSearchName[] =
1482 "Google Lens in Omnibox and New Tab Page";
1483const char kLensCameraAssistedSearchDescription[] =
1484 "Enable an entry point to Google Lens to allow users to search what they "
1485 "see using their mobile camera.";
1486
Andrey Zaytsev8b7787e2021-05-14 15:00:221487const char kLinkDoctorDeprecationAndroidName[] =
1488 "Link Doctor Deprecation on Android";
1489const char kLinkDoctorDeprecationAndroidDescription[] =
1490 "Removes the setting for retrieving suggestions on navigation errors since "
1491 "this feature is deprecated.";
1492
Michael Crouse1c9adba2020-07-08 17:39:011493const char kLiteVideoName[] = "Enable LiteVideos";
1494const char kLiteVideoDescription[] =
1495 "Enable the LiteVideo optimization to throttle media requests to "
1496 "reduce data usage";
1497
Tarun Bansalb137fff2020-08-07 18:57:211498const char kLiteVideoDownlinkBandwidthKbpsName[] =
1499 "Lite Video: Adjust throttling downlink (in Kbps).";
1500const char kLiteVideoDownlinkBandwidthKbpsDescription[] =
1501 "Specify the throttling bandwidth to be used";
1502
Michael Crouse1c9adba2020-07-08 17:39:011503const char kLiteVideoForceOverrideDecisionName[] = "Force LiteVideos decision";
1504const char kLiteVideoForceOverrideDecisionDescription[] =
1505 "Force the LiteVideo decision to be allowed on every navigation.";
1506
Hazem Ashmawyf1cd7e42019-03-25 18:17:321507const char kLogJsConsoleMessagesName[] =
1508 "Log JS console messages in system logs";
1509const char kLogJsConsoleMessagesDescription[] =
1510 "Enable logging JS console messages in system logs, please note that they "
1511 "may contain PII.";
1512
Becca Hughes71e8ceb2020-03-31 22:23:401513const char kMediaHistoryName[] = "Enable Media History";
1514const char kMediaHistoryDescription[] =
1515 "Enables Media History which records data around media playbacks on "
1516 "websites.";
1517
spqchanb87755692018-04-05 00:46:091518const char kMediaRouterCastAllowAllIPsName[] =
1519 "Connect to Cast devices on all IP addresses";
1520const char kMediaRouterCastAllowAllIPsDescription[] =
1521 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:311522 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:091523
Tommy Steimel40355072021-04-13 00:12:471524const char kMediaSessionWebRTCName[] = "Enable WebRTC actions in Media Session";
1525const char kMediaSessionWebRTCDescription[] =
1526 "Adds new actions into Media Session for video conferencing.";
1527
manukh202a6dd2021-02-19 21:23:251528const char kMemoriesName[] = "Memories";
Moe Ahmadi3b617f82021-07-30 00:43:271529const char kMemoriesDescription[] = "Enables chrome://history/journeys.";
manukh202a6dd2021-02-19 21:23:251530
manukhd4270bc2021-02-19 21:17:281531const char kMemoriesDebugName[] = "Memories Debug";
1532const char kMemoriesDebugDescription[] =
Moe Ahmadi3b617f82021-07-30 00:43:271533 "Shows visit metadata in chrome://history to debug history clustering.";
manukhd4270bc2021-02-19 21:17:281534
Andrey Zaytsevad83cbc32020-09-30 15:43:181535const char kMetricsSettingsAndroidName[] = "Metrics Settings on Android";
1536const char kMetricsSettingsAndroidDescription[] =
1537 "Enables the new design of metrics settings.";
1538
Carlos IL0dc832832020-07-17 01:14:441539const char kMixedFormsDisableAutofillName[] =
1540 "Disable autofill for mixed forms";
1541const char kMixedFormsDisableAutofillDescription[] =
1542 "If enabled, autofill is not allowed for mixed forms (forms on HTTPS sites "
1543 "that submit over HTTP), and a warning bubble will be shown instead. "
1544 "Autofill for passwords is not affected by this setting.";
1545
1546const char kMixedFormsInterstitialName[] = "Mixed forms interstitial";
1547const char kMixedFormsInterstitialDescription[] =
1548 "When enabled, a full-page interstitial warning is shown when a mixed "
1549 "content form (a form on an HTTPS site that submits over HTTP) is "
1550 "submitted.";
1551
David Roger2183afb2019-02-21 14:19:151552const char kMobileIdentityConsistencyName[] = "Mobile identity consistency";
1553const char kMobileIdentityConsistencyDescription[] =
1554 "Enables stronger identity consistency on mobile";
1555
Tanmoy Mollik8036d7f2021-05-12 11:50:031556const char kWipeDataOnChildAccountSigninName[] =
1557 "Wipe Data On Child account signin";
1558const char kWipeDataOnChildAccountSigninDescription[] =
1559 "Wipe Data from previous account when signing in a child account";
1560
Tanmoy Mollika2f25a162021-04-01 12:19:461561const char kMobileIdentityConsistencyFREName[] =
1562 "Mobile identity consistency FRE";
1563const char kMobileIdentityConsistencyFREDescription[] =
1564 "Enables stronger identity consistency on mobile with different UIs for "
1565 "the First Run Experience.";
1566
Peter Beverloo01ca25e2021-01-12 15:23:591567const char kMobilePwaInstallUseBottomSheetName[] =
1568 "Mobile PWA Installation bottom sheet";
1569const char kMobilePwaInstallUseBottomSheetDescription[] =
1570 "Enables use of a rich bottom sheet when offering mobile PWA installation.";
1571
Brian Geffon12b581a2021-02-03 23:48:031572const char kMojoLinuxChannelSharedMemName[] =
1573 "Enable Mojo Shared Memory Channel";
1574const char kMojoLinuxChannelSharedMemDescription[] =
1575 "If enabled Mojo on Linux based platforms can use shared memory as an "
1576 "alternate channel for most messages.";
1577
Ella Ge1282f552019-06-24 20:06:031578const char kMouseSubframeNoImplicitCaptureName[] =
1579 "Disable mouse implicit capture for iframe";
1580const char kMouseSubframeNoImplicitCaptureDescription[] =
1581 "When enable, mouse down does not implicit capture for iframe.";
1582
Viktor Semeniuk3e74da92021-04-15 14:34:471583const char kMutingCompromisedCredentialsName[] =
1584 "Enables muting of compromised credentials";
1585const char kMutingCompromisedCredentialsDescription[] =
1586 "When enable, insecure credential muting state is respected.";
1587
Alisa Lin79251142021-06-15 20:22:121588const char kCanvas2DLayersName[] =
1589 "Enables canvas 2D methods BeginLayer and EndLayer";
1590const char kCanvas2DLayersDescription[] =
1591 "Enables the canvas 2D methods BeginLayer and EndLayer.";
1592
Aaron Krajeski229cffd2020-05-11 22:30:331593const char kNewCanvas2DAPIName[] = "Experimental canvas 2D API features";
1594const char kNewCanvas2DAPIDescription[] =
1595 "Enables in-progress features for the canvas 2D API. See "
1596 "https://github.com/fserb/canvas2d.";
1597
Andreea Costinas1e592142021-04-20 13:24:251598const char kSystemProxyForSystemServicesName[] =
1599 "Enable system-proxy for selected system services";
1600const char kSystemProxyForSystemServicesDescription[] =
1601 "Enabling this flag will allow Chrome OS system service which require "
1602 "network connectivity to use the system-proxy daemon for authentication to "
1603 "remote HTTP web proxies.";
1604
Nicolas Ouellet-Payeura77464c2020-10-14 15:19:491605const char kDestroyProfileOnBrowserCloseName[] =
1606 "Destroy Profile on browser close";
1607const char kDestroyProfileOnBrowserCloseDescription[] =
1608 "Release memory and other resources when a Profile's last browser window "
1609 "is closed, rather than when Chrome closes completely.";
1610
Brett Wilsonecb80982017-07-12 20:34:511611const char kNewUsbBackendName[] = "Enable new USB backend";
1612const char kNewUsbBackendDescription[] =
Reilly Grant314576eb2021-04-15 18:26:491613 "Enables the new experimental USB backend for macOS";
vabr0215a8e2017-03-28 12:47:341614
Taylor Bergquist187a9f92019-08-12 22:13:151615const char kNewTabstripAnimationName[] = "New tabstrip animations";
1616const char kNewTabstripAnimationDescription[] =
1617 "New implementation of tabstrip animations.";
1618
Alex Newcomerd7b0cc42018-05-25 22:58:481619const char kNotificationIndicatorName[] = "Notification Indicators";
1620const char kNotificationIndicatorDescription[] =
Matthew Mourgos7d884692020-08-28 19:31:181621 "Enable notification indicators, which appear on shelf app icons and "
1622 "launcher apps when a notification is active.";
Alex Newcomerd7b0cc42018-05-25 22:58:481623
Xing Liub9070262021-01-07 20:52:161624const char kNotificationSchedulerName[] = "Notification scheduler";
1625const char kNotificationSchedulerDescription[] =
1626 "Enable notification scheduler feature.";
1627
Xing Liu1919ec232019-07-22 20:38:041628const char kNotificationSchedulerDebugOptionName[] =
1629 "Notification scheduler debug options";
1630const char kNotificationSchedulerDebugOptionDescription[] =
1631 "Enable debugging mode to override certain behavior of notification "
1632 "scheduler system for easier manual testing.";
1633const char kNotificationSchedulerImmediateBackgroundTaskDescription[] =
1634 "Show scheduled notification right away.";
1635
Peter Beverlooc30c9ddf2021-02-24 19:56:031636const char kNotificationsSystemFlagName[] = "Enable system notifications.";
1637const char kNotificationsSystemFlagDescription[] =
1638 "Enable support for using the system notification toasts and notification "
Brett Wilsonecb80982017-07-12 20:34:511639 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:341640
Angela Yoeurng93be4b22021-06-08 16:26:321641const char kOmniboxActiveSearchEnginesName[] =
1642 "Active Search Engines section on settings page";
1643const char kOmniboxActiveSearchEnginesDescription[] =
1644 "Enables a 'Your Search Engines' section on "
1645 "chrome://settings/searchEngines.";
1646
Tomasz Wiszkowski8a0e0dc42020-02-19 00:06:371647const char kOmniboxAdaptiveSuggestionsCountName[] =
1648 "Adaptive Omnibox Suggestions count";
1649const char kOmniboxAdaptiveSuggestionsCountDescription[] =
1650 "Dynamically adjust number of presented Omnibox suggestions depending on "
1651 "available space. When enabled, this feature will increase (or decrease) "
1652 "amount of offered Omnibox suggestions to fill in the space between the "
1653 "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches "
1654 "flag to adjust the limit of offered suggestions. The number of shown "
1655 "suggestions will be no less than the platform default limit.";
1656
Brandon Wylie1299ff82020-01-23 02:13:371657const char kOmniboxAssistantVoiceSearchName[] =
1658 "Omnibox Assistant Voice Search";
1659const char kOmniboxAssistantVoiceSearchDescription[] =
1660 "When enabled, use Assistant for omnibox voice query recognition instead of"
1661 " Android's built-in voice recognition service. Only works on Android.";
1662
Lei Zhang1a6fd01b2021-03-24 17:03:481663const char kOmniboxBookmarkPathsName[] = "Omnibox Bookmark Paths";
1664const char kOmniboxBookmarkPathsDescription[] =
manukh61e782512020-10-01 17:33:451665 "Allows inputs to match with bookmark paths. E.g. 'planets jupiter' can "
1666 "suggest a bookmark titled 'Jupiter' with URL "
1667 "'en.wikipedia.org/wiki/Jupiter' located in a path containing 'planet.'";
1668
Tommy Li19e27ede2020-08-14 22:52:401669const char kOmniboxClobberTriggersContextualWebZeroSuggestName[] =
1670 "Omnibox Clobber Triggers Contextual Web ZeroSuggest";
1671const char kOmniboxClobberTriggersContextualWebZeroSuggestDescription[] =
Tommy Li354a0e42020-07-30 16:46:141672 "If enabled, when the user clears the whole omnibox text (i.e. via "
Tommy Li19e27ede2020-08-14 22:52:401673 "Backspace), Chrome will request ZeroSuggest suggestions for the OTHER "
1674 "page classification (contextual web).";
Tommy Li354a0e42020-07-30 16:46:141675
Tomasz Wiszkowski70fb35f2020-02-27 00:39:191676const char kOmniboxCompactSuggestionsName[] = "Omnibox: Compact suggestions";
1677const char kOmniboxCompactSuggestionsDescription[] =
1678 "Conserve the space for Omnibox Suggestions by slightly reducing their "
1679 "size.";
1680
Angela Yoeurng07a5adb2020-12-02 02:14:011681const char kOmniboxDisableCGIParamMatchingName[] =
1682 "Disable CGI Param Name Matching";
1683const char kOmniboxDisableCGIParamMatchingDescription[] =
1684 "Disables using matches in CGI parameter names while scoring suggestions.";
1685
Mustafa Emre Acercb21d5d2021-01-12 08:08:351686const char kOmniboxDefaultTypedNavigationsToHttpsName[] =
1687 "Omnibox - Use HTTPS as the default protocol for navigations";
1688const char kOmniboxDefaultTypedNavigationsToHttpsDescription[] =
1689 "Use HTTPS as the default protocol when the user types a URL without "
1690 "a protocol in the omnibox such as 'example.com'. Presently, such an entry "
1691 "navigates to http://example.com. When this feature is enabled, it will "
1692 "navigate to https://example.com if the HTTPS URL is available. If Chrome "
1693 "can't determine the availability of the HTTPS URL within the timeout, it "
1694 "will fall back to the HTTP URL.";
1695
manukh6941c4c2021-07-20 00:18:341696const char kOmniboxDocumentProviderAsoName[] = "Omnibox Document Provider ASO";
1697const char kOmniboxDocumentProviderAsoDescription[] =
1698 "If document suggestions are enabled, swaps the backend from cloudsearch "
1699 "to ASO (Apps Search Overlay) search.";
1700
Justin Donnellyf2703482019-10-24 21:42:151701const char kOmniboxExperimentalSuggestScoringName[] =
1702 "Omnibox Experimental Suggest Scoring";
1703const char kOmniboxExperimentalSuggestScoringDescription[] =
1704 "Enables an experimental scoring mode for suggestions when Google is the "
1705 "default search engine.";
1706
Angela Yoeurng715e56082021-05-06 03:13:321707const char kOmniboxKeywordSpaceTriggeringSettingName[] =
1708 "Omnibox Keyword Space Triggering Setting";
1709const char kOmniboxKeywordSpaceTriggeringSettingDescription[] =
1710 "Adds a setting to the search engines setting page to control whether "
1711 "spacebar activates keyword mode.";
1712
Filip Gorskib116dee2020-08-20 14:12:101713const char kOmniboxMostVisitedTilesName[] = "Omnibox Most Visited Tiles";
1714const char kOmniboxMostVisitedTilesDescription[] =
1715 "Display a list of frquently visited pages from history as a single row "
1716 "with a carousel instead of one URL per line.";
1717
manukh6941c4c2021-07-20 00:18:341718const char kOmniboxPreserveLongerShortcutsTextName[] =
1719 "Omnibox Preserve Longer Shortcuts Text";
1720const char kOmniboxPreserveLongerShortcutsTextDescription[] =
1721 "When disabled, updating shortcuts truncates its text to the user input. "
1722 "When enabled, 3 additional characters are preserved.";
1723
Moe Ahmadi064dbcd2020-08-20 01:53:311724const char kOmniboxTrendingZeroPrefixSuggestionsOnNTPName[] =
1725 "Omnibox Trending Zero Prefix Suggestions";
1726const char kOmniboxTrendingZeroPrefixSuggestionsOnNTPDescription[] =
1727 "Enables trending zero prefix suggestions for signed-in users with no or "
1728 "insufficient search history.";
1729
manuk695f9d4532020-03-18 19:22:081730const char kOmniboxRichAutocompletionName[] = "Omnibox Rich Autocompletion";
1731const char kOmniboxRichAutocompletionDescription[] =
1732 "Allow autocompletion for titles and non-prefixes. I.e. suggestions whose "
1733 "titles or URLs contain the user input as a continuous chunk, but not "
1734 "necessarily a prefix, can be the default suggestion. Typically, only "
1735 "suggestions whose URLs are prefixed by the user input can be. The "
1736 "potential variations toggle 4 params: 1) 'Title UI' displays titles, 2) "
1737 "'2-Line UI' includes titles (and URLs when autocompleting titles) on a "
1738 "2nd line, 3) 'Title AC' autocompletes titles, and 4) 'Non-Prefix AC' "
1739 "autocompletes non-prefixes.";
manuk55bdd972020-07-17 01:06:221740const char kOmniboxRichAutocompletionMinCharName[] =
1741 "Omnibox Rich Autocompletion Min Characters";
1742const char kOmniboxRichAutocompletionMinCharDescription[] =
1743 "Specifies min input character length to trigger rich autocompletion.";
manuk2a837412020-07-30 20:57:561744const char kOmniboxRichAutocompletionShowAdditionalTextName[] =
1745 "Omnibox Rich Autocompletion Show Additional Text";
1746const char kOmniboxRichAutocompletionShowAdditionalTextDescription[] =
1747 "Show the suggestion title or URL additional text when the input matches "
1748 "the URL or title respectively. Defaults to true.";
manukh848a0252020-09-30 19:14:141749const char kOmniboxRichAutocompletionSplitName[] =
1750 "Omnibox Rich Autocompletion Split";
1751const char kOmniboxRichAutocompletionSplitDescription[] =
1752 "Allow splitting the user input to intermix with autocompletions; e.g., "
1753 "the user input 'x z' could be autocompleted as 'x [y ]z'.";
manukheea2de32021-01-22 02:36:231754const char kOmniboxRichAutocompletionPreferUrlsOverPrefixesName[] =
1755 "Omnibox Rich Autocompletion Prefer URLs over prefixes";
1756const char kOmniboxRichAutocompletionPreferUrlsOverPrefixesDescription[] =
1757 "When the input matches both a suggestion's title's prefix and its URL's "
1758 "non-prefix, autocomplete the URL.";
manukh6b9c59c2020-08-28 19:29:251759const char kOmniboxRichAutocompletionPromisingName[] =
1760 "Omnibox Rich Autocompletion Promising Combinations";
1761const char kOmniboxRichAutocompletionPromisingDescription[] =
1762 "Allow autocompletion for titles and non-prefixes; see Omnibox Rich "
1763 "Autocompletion.";
manuk695f9d4532020-03-18 19:22:081764
Rachel Wonge497f032020-09-21 04:26:411765const char kOmniboxRichEntitiesInLauncherName[] =
1766 "Omnibox rich entities in the launcher";
1767const char kOmniboxRichEntitiesInLauncherDescription[] =
1768 "Enable rich entity formatting for Omnibox results in the launcher.";
1769
Tomasz Wiszkowski8d447752021-07-20 02:58:261770const char kOmniboxOnFocusSuggestionsContextualWebAllowSRPName[] =
1771 "Allow Omnibox contextual web on-focus suggestions on the SRP";
1772const char kOmniboxOnFocusSuggestionsContextualWebAllowSRPDescription[] =
1773 "Enables on-focus suggestions on the Search Results page. "
1774 "Requires on-focus suggestions for the contextual web to be enabled. "
1775 "Will only work if user is signed-in and syncing.";
1776
Tommy Li55784022020-04-28 20:58:181777const char kOmniboxOnFocusSuggestionsContextualWebName[] =
1778 "Omnibox on-focus suggestions for the contextual Web";
1779const char kOmniboxOnFocusSuggestionsContextualWebDescription[] =
1780 "Enables on-focus suggestions on the Open Web, that are contextual to the "
1781 "current URL. Will only work if user is signed-in and syncing, or is "
1782 "otherwise eligible to send the current page URL to the suggest server.";
1783
Benoit Lizeab08362c2017-07-19 14:50:541784const char kOmniboxSpareRendererName[] =
1785 "Start spare renderer on omnibox focus";
1786const char kOmniboxSpareRendererDescription[] =
1787 "When the omnibox is focused, start an empty spare renderer. This can "
1788 "speed up the load of the navigation from the omnibox.";
1789
Gang Wua4a85312020-06-20 05:14:131790const char kOmniboxTabSwitchSuggestionsName[] =
1791 "Omnibox switch to tab suggestions";
1792const char kOmniboxTabSwitchSuggestionsDescription[] =
1793 "Enable URL suggestions to optionally take the user to a tab where a "
1794 "website is already opened.";
1795
manukfdd97402020-07-22 18:19:171796const char kOmniboxMaxZeroSuggestMatchesName[] =
1797 "Omnibox Max Zero Suggest Matches";
1798const char kOmniboxMaxZeroSuggestMatchesDescription[] =
1799 "Changes the maximum number of autocomplete matches displayed when zero "
1800 "suggest is active (i.e. displaying suggestions without input).";
1801
Brett Wilsonecb80982017-07-12 20:34:511802const char kOmniboxUIMaxAutocompleteMatchesName[] =
1803 "Omnibox UI Max Autocomplete Matches";
Brett Wilsonecb80982017-07-12 20:34:511804const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1805 "Changes the maximum number of autocomplete matches displayed in the "
1806 "Omnibox UI.";
1807
Mustafa Emre Acer0626cbb2021-07-14 20:35:041808const char kOmniboxUpdatedConnectionSecurityIndicatorsName[] =
1809 "Omnibox Updated connection security indicators";
1810const char kOmniboxUpdatedConnectionSecurityIndicatorsDescription[] =
1811 "Use new connection security indicators for https pages in the omnibox.";
1812
Kevin Baileycd6889922019-05-30 17:22:551813const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches";
1814const char kOmniboxMaxURLMatchesDescription[] =
1815 "The maximum number of URL matches to show, unless there are no "
1816 "replacements.";
1817
manuk4e2979d2020-07-08 23:29:281818const char kOmniboxDynamicMaxAutocompleteName[] =
1819 "Omnibox Dynamic Max Autocomplete";
1820const char kOmniboxDynamicMaxAutocompleteDescription[] =
1821 "Configures the maximum number of autocomplete matches displayed in the "
1822 "Omnibox UI dynamically based on the number of URL matches.";
1823
Ce Chenc8d803a2020-04-27 09:31:331824const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] =
1825 "Omnibox on device head suggestions (incognito only)";
1826const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] =
Ce Chen20af01c2019-07-02 19:16:361827 "Google head non personalized search suggestions provided by a compact on "
Ce Chenc8d803a2020-04-27 09:31:331828 "device model for incognito";
1829
1830const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoName[] =
1831 "Omnibox on device head suggestions (non-incognito only)";
1832const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoDescription[] =
1833 "Google head non personalized search suggestions provided by a compact on "
1834 "device model for non-incognito";
Ce Chen20af01c2019-07-02 19:16:361835
Tommy Li52c20852020-10-09 23:40:091836const char kOmniboxWebUIOmniboxPopupName[] = "WebUI Omnibox Popup";
1837const char kOmniboxWebUIOmniboxPopupDescription[] =
1838 "If enabled, uses WebUI to render the omnibox suggestions popup, similar "
1839 "to how the NTP \"realbox\" is implemented.";
1840
Ryan Sturm98e6aec2020-11-30 20:34:381841const char kEnableSearchPrefetchName[] = "Search Prefetch";
1842const char kEnableSearchPrefetchDescription[] =
1843 "Allow the default search engine to specify prefetch behavior for "
1844 "suggestions to search results pages.";
1845
Adrienne Walkerc87477e2018-06-06 22:28:211846const char kOopRasterizationName[] = "Out of process rasterization";
1847const char kOopRasterizationDescription[] =
1848 "Perform Ganesh raster in the GPU Process instead of the renderer. "
1849 "Must also enable GPU rasterization";
1850
Khushal Sagar5d9d4f22020-05-28 15:42:131851const char kOopRasterizationDDLName[] =
1852 "Out of process rasterization using DDLs";
1853const char kOopRasterizationDDLDescription[] =
1854 "Use Skia Deferred Display Lists when performing rasterization in the GPU "
1855 "process "
1856 "Must also enable OOP rasterization";
1857
mcrousecece5812021-03-03 22:31:571858const char kOptimizationGuideModelDownloadingName[] =
1859 "Allow optimization guide model downloads";
1860const char kOptimizationGuideModelDownloadingDescription[] =
1861 "Enables the optimization guide to download prediction models.";
1862
Robert Ogden52285a52021-07-01 19:26:201863const char kOptimizationGuideModelPushNotificationName[] =
1864 "Enable optimization guide push notifications";
1865const char kOptimizationGuideModelPushNotificationDescription[] =
1866 "Enables the optimization guide to receive push notifications.";
1867
Eric Karl34c48382019-10-15 02:04:171868const char kEnableDeJellyName[] = "Experimental de-jelly effect";
1869const char kEnableDeJellyDescription[] =
1870 "Enables an experimental effect which attempts to mitigate "
1871 "\"jelly-scrolling\". This is an experimental implementation with known "
1872 "bugs, visual artifacts, and performance cost. This implementation may be "
1873 "removed at any time.";
1874
Ethan Mooney01e6f192021-06-10 13:14:071875const char kOsSettingsAppNotificationsPageName[] =
1876 "CrOS Settings App Notifications Page";
1877const char kOsSettingsAppNotificationsPageDescription[] =
1878 "If enabled, a new App Notifications subpage will appear in the "
1879 "CrOS Settings Apps section.";
1880
Daniel Classon5d8a0fd2020-06-30 03:28:491881const char kOsSettingsDeepLinkingName[] = "CrOS Settings Deep Linking";
1882const char kOsSettingsDeepLinkingDescription[] =
1883 "Enables a unique URL for each path in CrOS settings. "
1884 "This allows deep linking to individual settings, i.e. in settings search.";
1885
Wez600f06c2021-03-05 20:32:301886const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1887const char kOverlayScrollbarsDescription[] =
1888 "Enable the experimental overlay scrollbars implementation. You must also "
1889 "enable threaded compositing to have the scrollbars animate.";
1890
Daniele Castagna74ddb9c2018-06-21 22:59:021891const char kOverlayStrategiesName[] = "Select HW overlay strategies";
1892const char kOverlayStrategiesDescription[] =
1893 "Select strategies used to promote quads to HW overlays.";
1894const char kOverlayStrategiesDefault[] = "Default";
1895const char kOverlayStrategiesNone[] = "None";
1896const char kOverlayStrategiesUnoccludedFullscreen[] =
1897 "Unoccluded fullscreen buffers (single-fullscreen)";
1898const char kOverlayStrategiesUnoccluded[] =
1899 "Unoccluded buffers (single-fullscreen,single-on-top)";
1900const char kOverlayStrategiesOccludedAndUnoccluded[] =
1901 "Occluded and unoccluded buffers "
1902 "(single-fullscreen,single-on-top,underlay)";
1903
Scott Littleb26dc862020-09-30 18:08:111904const char kOverrideLanguagePrefsForHrefTranslateName[] =
1905 "Override user-blocklisted languages for hrefTranslate";
1906const char kOverrideLanguagePrefsForHrefTranslateDescription[] =
1907 "When using hrefTranslate, ignore the user's blocklist of languages that "
1908 "shouldn't be translated.";
1909const char kOverrideSitePrefsForHrefTranslateName[] =
1910 "Override user-blocklisted sites for hrefTranslate";
1911const char kOverrideSitePrefsForHrefTranslateDescription[] =
1912 "When using hrefTranslate, ignore the user's blocklist of websites that "
1913 "shouldn't be translated.";
Scott Littleab2a3a52021-07-08 19:17:111914const char kOverrideUnsupportedPageLanguageForHrefTranslateName[] =
1915 "Force translation on pages with unsupported languages for hrefTranslate";
1916const char kOverrideUnsupportedPageLanguageForHrefTranslateDescription[] =
1917 "When using hrefTranslate, force translation on pages where the page's "
1918 "language cannot be determined or is unsupported.";
1919const char kOverrideSimilarLanguagesForHrefTranslateName[] =
1920 "Force translation on pages with a similar page language for hrefTranslate";
1921const char kOverrideSimilarLanguagesForHrefTranslateDescription[] =
1922 "When using hrefTranslate, force translation on pages where the page's "
1923 "language is similar to the target language specified via hrefTranslate.";
Scott Littleb26dc862020-09-30 18:08:111924
Jinsuk Kim2e139e432021-02-26 03:46:561925const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1926const char kOverscrollHistoryNavigationDescription[] =
1927 "History navigation in response to horizontal overscroll.";
1928
minch1ad858c2021-06-24 20:30:011929const char kOverviewButtonName[] = "Overview button at the status area";
1930const char kOverviewButtonDescription[] =
1931 "If enabled, always show the overview button at the status area.";
1932
Olesia Marukhno4d09c9072021-04-08 09:43:231933const char kPageInfoV2DesktopName[] = "Page info version two desktop";
1934const char kPageInfoV2DesktopDescription[] =
1935 "Enable the second version of the page info menu on desktop.";
1936
Xing Liu5400a002017-09-15 21:48:291937const char kParallelDownloadingName[] = "Parallel downloading";
1938const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061939 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291940
Maxim Kolosovskiy411dc8742020-07-25 11:50:141941const char kPasswordChangeInSettingsName[] =
1942 "Rework password change flow from settings";
1943const char kPasswordChangeInSettingsDescription[] =
1944 "Change password when bulk leak check detected an issue.";
1945
Milica Selakovice8bdde612020-02-19 11:48:361946const char kPasswordChangeName[] = "Rework password change flow";
1947const char kPasswordChangeDescription[] =
1948 "Change password when password leak is detected.";
1949
Vaclav Brozekd8a3f542017-11-16 14:21:131950const char kPasswordImportName[] = "Password import";
1951const char kPasswordImportDescription[] =
1952 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511953
Maxim Kolosovskiybf5b2262020-09-25 15:47:331954const char kPasswordScriptsFetchingName[] = "Fetch password scripts";
1955const char kPasswordScriptsFetchingDescription[] =
1956 "Fetches scripts for password change flows.";
1957
Hui Yingst13aa6c22021-07-09 20:58:531958const char kPdfUnseasonedName[] = "Pepper-free PDF viewer";
1959const char kPdfUnseasonedDescription[] = "Enables the Pepper-free PDF viewer.";
1960
Carlos ILc5c2e2702020-12-15 21:19:501961const char kPdfXfaFormsName[] = "PDF XFA support";
1962const char kPdfXfaFormsDescription[] =
1963 "Enables support for XFA forms in PDFs. "
1964 "Has no effect if Chrome was not built with XFA support.";
1965
Aran Gilman5e9672bed2019-08-02 19:07:491966const char kForceWebContentsDarkModeName[] = "Force Dark Mode for Web Contents";
1967const char kForceWebContentsDarkModeDescription[] =
1968 "Automatically render all web contents using a dark theme.";
1969
Alison Maherc07a3fb2019-10-07 21:25:031970const char kForcedColorsName[] = "Forced Colors";
1971const char kForcedColorsDescription[] =
1972 "Enables forced colors mode for web content.";
1973
Matt Amertecf4bf32019-09-25 19:50:391974const char kPercentBasedScrollingName[] = "Percent-based Scrolling";
1975const char kPercentBasedScrollingDescription[] =
1976 "If enabled, mousewheel and keyboard scrolls will scroll by a percentage "
1977 "of the scroller size.";
1978
Olesia Marukhno16fdd647a2020-05-04 09:34:001979const char kPermissionChipName[] = "Permissions Chip Experiment";
1980const char kPermissionChipDescription[] =
1981 "Enables an experimental permission prompt that uses a chip in the location"
1982 " bar.";
1983
Bret Sepulveda4aec1d5f2021-03-18 15:24:401984const char kPermissionChipGestureSensitiveName[] =
1985 "Gesture-sensitive Permissions Chip";
1986const char kPermissionChipGestureSensitiveDescription[] =
1987 "If the Permissions Chip Experiment is enabled, controls whether or not "
1988 "the chip should be more prominent when the request is associated with a "
1989 "gesture.";
1990
1991const char kPermissionChipRequestTypeSensitiveName[] =
1992 "Request-type-sensitive Permissions Chip";
1993const char kPermissionChipRequestTypeSensitiveDescription[] =
1994 "If the Permissions Chip Experiment is enabled, controls whether or not "
1995 "the chip should be more or less prominent depending on the request type.";
1996
Andy Paicu204a1bb82020-11-12 21:50:141997const char kPermissionPredictionsName[] = "Permission Predictions";
1998const char kPermissionPredictionsDescription[] =
1999 "Use the Permission Predictions Service to surface permission requests "
2000 "using a quieter UI when the likelihood of the user granting the "
2001 "permission is predicted to be low. Requires "
2002 "chrome://flags/#quiet-notification-prompts and `Safe Browsing Enhanced "
2003 "Protection` to be enabled.";
2004
Illia Klimovdf283b02021-07-07 17:33:252005const char kPermissionQuietChipName[] = "Quiet Permission Chip Experiment";
2006const char kPermissionQuietChipDescription[] =
2007 "Enables an experimental permission prompt that uses the quiet chip "
2008 "instead of the right-hand side address bar icon for quiet permission "
2009 "prompts. Requires chrome://flags/#quiet-notification-prompts to be "
2010 "enabled.";
2011
Francois Beaufort3890c312021-05-19 19:03:292012const char kPlaybackSpeedButtonName[] = "Playback Speed Button";
2013const char kPlaybackSpeedButtonDescription[] =
2014 "Enable the playback speed button on the media controls.";
2015
Ella Geb58eed12019-09-05 23:37:012016const char kPointerLockOptionsName[] = "Enables pointer lock options";
2017const char kPointerLockOptionsDescription[] =
2018 "Enables pointer lock unadjustedMovement. When unadjustedMovement is set "
2019 "to true, pointer movements wil not be affected by the underlying platform "
2020 "modications such as mouse accelaration.";
2021
Hiroki Nakagawa5bc48482020-11-19 08:23:552022const char kPrerender2Name[] = "Prerender2";
2023const char kPrerender2Description[] =
Lingqi Chid869d3e2021-06-08 00:00:012024 "Enables the new prerenderer implementation for "
2025 "<script type=speculationrules> that specifies prerender candidates.";
Hiroki Nakagawa5bc48482020-11-19 08:23:552026
Tymofii Chudakov58d51bcf2020-10-05 09:20:212027const char kPrivacyAdvisorName[] = "Privacy Advisor";
2028const char kPrivacyAdvisorDescription[] =
2029 "Provides contextual entry points for adjusting privacy settings";
2030
Rainhard Findling62b818f2021-06-08 09:38:092031const char kPrivacyReviewName[] = "Privacy Review";
2032const char kPrivacyReviewDescription[] =
2033 "Shows a new subpage in Settings that helps the user to review various "
2034 "privacy settings.";
2035
Sean Harrison0a44455c2020-11-17 18:14:542036const char kPrivacySandboxSettingsName[] = "Privacy Sandbox Settings";
2037const char kPrivacySandboxSettingsDescription[] =
Rainhard Findlingd9b03f92021-02-15 13:41:592038 "Enables privacy sandbox settings. Requires at least one of the Privacy "
2039 "Sandbox APIs to be enabled.";
Sean Harrison0a44455c2020-11-17 18:14:542040
sauski288c8472021-05-05 18:01:262041const char kPrivacySandboxSettings2Name[] = "Privacy Sandbox Settings 2";
2042const char kPrivacySandboxSettings2Description[] =
2043 "Enables the second set of privacy sandbox settings. Requires "
2044 "#privacy-sandbox-settings to also be enabled";
2045
Daniel Rubery3b09cd22021-07-26 22:00:392046const char kSafeBrowsingPerProfileNetworkContextsName[] =
2047 "Per-profile Safe Browsing network contexts";
2048const char kSafeBrowsingPerProfileNetworkContextsDescription[] =
2049 "Keys the Safe Browsing network context by the profile initiating the "
2050 "request";
2051
Rainhard Findlingb08b52dc2020-12-01 10:23:072052const char kSafetyCheckWeakPasswordsName[] = "Safety check for weak passwords";
2053const char kSafetyCheckWeakPasswordsDescription[] =
Jan Wilken Dörrie61fa525d2021-02-12 09:28:482054 "If weak passwords were found, show them in safety check.";
Rainhard Findlingb08b52dc2020-12-01 10:23:072055
Dana Friedac7b8ff2019-09-18 21:27:572056const char kProminentDarkModeActiveTabTitleName[] =
2057 "Prominent Dark Mode Active Tab Titles";
2058const char kProminentDarkModeActiveTabTitleDescription[] =
2059 "Makes the active tab title in dark mode bolder so the active tab is "
2060 "easier "
2061 "to identify.";
2062
Mohsen Izadi93faac12017-07-29 04:45:152063const char kPullToRefreshName[] = "Pull-to-refresh gesture";
2064const char kPullToRefreshDescription[] =
2065 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:012066const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:152067
Finnur Thorarinsson818e6c112021-05-19 13:06:462068const char kPwaUpdateDialogForNameAndIconName[] =
2069 "Enable PWA install update dialog for name/icon changes";
2070const char kPwaUpdateDialogForNameAndIconDescription[] =
2071 "Enable a confirmation dialog that shows up when a PWA changes its "
2072 "icon/name";
2073
Brett Wilsonecb80982017-07-12 20:34:512074const char kQuicName[] = "Experimental QUIC protocol";
2075const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
2076
Max Tauroe049b272021-06-01 18:45:342077const char kQuickActionSearchWidgetAndroidName[] = "Quick Action Search Widget";
2078const char kQuickActionSearchWidgetAndroidDescription[] =
2079 "When enabled, the quick action search widget will be available to add to "
2080 "the homescreen.";
2081
Max Tauro7972e5a32021-07-20 23:55:542082const char kQuickActionSearchWidgetAndroidDinoVariantName[] =
2083 "Quick Action Search Widget - Dino Variant";
2084const char kQuickActionSearchWidgetAndroidDinoVariantDescription[] =
2085 "When enabled, the Dino widget will be available to add to the homescreen";
2086
Kamila2724bd702019-09-10 16:08:582087const char kQuietNotificationPromptsName[] =
2088 "Quieter notification permission prompts";
2089const char kQuietNotificationPromptsDescription[] =
2090 "Enables quieter permission prompts for notification permission requests. "
2091 "When a site wishes to show notifications, the usual modal dialog is "
2092 "replaced with a quieter version.";
2093
Yulun Wuc7439a652021-06-18 17:24:182094const char kSettingsAppNotificationSettingsName[] =
2095 "Split notification permission settings";
2096const char kSettingsAppNotificationSettingsDescription[] =
2097 "Remove per-app notification permissions settings from the quick settings "
2098 "menu. Notification permission settings will be split between the "
2099 "lacros-chrome browser's notification permission page "
2100 "and the ChromeOS settings app.";
2101
Illia Klimov5ba0f172020-09-30 21:23:232102const char kAbusiveNotificationPermissionRevocationName[] =
2103 "Abusive notification permission revocation";
2104const char kAbusiveNotificationPermissionRevocationDescription[] =
2105 "Enables notification permission revocation for abusive origins. "
2106 "Prior to dispatching a push message to the service worker, the origin is "
2107 "verified through Safe Browsing. Origins with abusive notification "
2108 "permission requests or content will have the notification permission "
2109 "revoked.";
2110
Tymofii Chudakova0b5f232020-08-06 12:13:002111const char kContentSettingsRedesignName[] = "Content settings page redesign";
2112const char kContentSettingsRedesignDescription[] =
2113 "Enables a new content settings page UI.";
2114
Caroline Risingd572da02021-03-30 20:41:082115const char kReadLaterNewBadgePromoName[] = "Reading list 'New' badge promo";
2116const char kReadLaterNewBadgePromoDescription[] =
2117 "Causes a 'New' badge to appear on the entry point for adding to the "
2118 "reading list in the tab context menu.";
2119
Alan Cutter20fd08f2020-12-01 13:39:162120const char kRecordWebAppDebugInfoName[] = "Record web app debug info";
2121const char kRecordWebAppDebugInfoDescription[] =
2122 "Enables recording additional web app related debugging data to be "
Alan Cutter919b4592021-07-08 05:50:442123 "displayed in: chrome://web-app-internals";
Alan Cutter20fd08f2020-12-01 13:39:162124
Mike Taylorcf2393772021-05-25 16:35:412125const char kReduceUserAgentName[] = "Reduce User-Agent request header";
2126const char kReduceUserAgentDescription[] =
2127 "Reduce (formerly, \"freeze\") the amount of information available in "
2128 "the User-Agent request header. "
2129 "See https://www.chromium.org/updates/ua-reduction for more info.";
2130
James Hollyer6e5f5c32020-07-27 21:18:102131const char kRestrictGamepadAccessName[] = "Restrict gamepad access";
2132const char kRestrictGamepadAccessDescription[] =
Charlie Hudb284b3f2021-03-19 19:52:222133 "Enables Permissions Policy and Secure Context restrictions on the Gamepad "
2134 "API";
James Hollyer6e5f5c32020-07-27 21:18:102135
Dominic Farolino0e1f9a1a2020-11-25 23:25:002136const char kMBIModeName[] = "MBI Scheduling Mode";
2137const char kMBIModeDescription[] =
2138 "Enables independent agent cluster scheduling, via the "
2139 "AgentSchedulingGroup infrastructure.";
2140
OlivierLi95a0f6a52020-06-18 15:40:082141const char kIntensiveWakeUpThrottlingName[] =
2142 "Throttle Javascript timers in background.";
2143const char kIntensiveWakeUpThrottlingDescription[] =
Francois Doray6cff4e02020-07-01 01:12:582144 "When enabled, wake ups from DOM Timers are limited to 1 per minute in a "
2145 "page that has been hidden for 5 minutes. For additional details, see "
2146 "https://www.chromestatus.com/feature/4718288976216064.";
OlivierLi95a0f6a52020-06-18 15:40:082147
Joe DeBlasiofb277092019-07-03 23:46:362148const char kSafetyTipName[] =
2149 "Show Safety Tip UI when visiting low-reputation websites";
2150const char kSafetyTipDescription[] =
2151 "If enabled, a Safety Tip UI may be displayed when visiting or interacting "
2152 "with a site Chrome believes may be suspicious.";
2153
cfredricaba4a462021-06-22 18:29:132154const char kSamePartyCookiesConsideredFirstPartyName[] =
2155 "Consider SameParty cookies to be first-party.";
2156const char kSamePartyCookiesConsideredFirstPartyDescription[] =
2157 "If enabled, SameParty cookies will not be blocked even if third-party "
2158 "cookies are blocked.";
2159
Dylan Cutlerc2988fe2021-08-05 14:24:372160const char kPartitionedCookiesName[] = "Partitioned cookies";
2161const char kPartitionedCookiesDescription[] =
2162 "Controls if the Partitioned cookie attribute is enabled.";
2163
Steven Bingler646b3612020-07-06 17:27:182164const char kSchemefulSameSiteName[] = "Schemeful Same-Site";
2165const char kSchemefulSameSiteDescription[] =
2166 "Modify the same-site computation such that origins with the same "
2167 "registrable domain but different schemes are considered cross-site. This "
2168 "change only applies to cookies with the 'SameSite' attribute.";
2169
Elaine Chien2b731c82021-01-28 17:50:562170const char kScrollableTabStripFlagId[] = "scrollable-tabstrip";
Taylor Bergquist6e2cbe32021-02-03 21:46:142171const char kScrollableTabStripName[] = "Tab Scrolling";
Charlene Yan0ccd7f52019-04-12 23:20:592172const char kScrollableTabStripDescription[] =
Taylor Bergquist6e2cbe32021-02-03 21:46:142173 "Enables tab strip to scroll left and right when full.";
Charlene Yan0ccd7f52019-04-12 23:20:592174
Taylor Bergquist1e4bc9bf2021-04-27 21:51:082175const char kScrollableTabStripButtonsName[] = "Tab Scrolling Buttons";
2176const char kScrollableTabStripButtonsDescription[] =
2177 "When the scrollable-tabstrip flag is enabled, this enables buttons to "
2178 "permanently appear on the tabstrip.";
2179
David Bokanebe23cc52020-05-11 18:20:462180const char kScrollUnificationName[] = "Scroll Unification";
2181const char kScrollUnificationDescription[] =
2182 "Refactoring project that eliminates scroll handling code from Blink. "
2183 "Does not affect behavior or performance.";
2184
Andrey Zaytsev0c74fc42021-03-17 10:48:012185const char kSearchHistoryLinkName[] = "Search History Link";
2186const char kSearchHistoryLinkDescription[] =
2187 "Changes the Clear Browsing Data UI to display a link to clear search "
2188 "history on My Google Activity.";
2189
Rouslan Solomakhine73fa7852020-08-28 10:33:462190const char kSecurePaymentConfirmationDebugName[] =
2191 "Secure Payment Confirmation Debug Mode";
2192const char kSecurePaymentConfirmationDebugDescription[] =
2193 "This flag removes the restriction that PaymentCredential in WebAuthn and "
2194 "secure payment confirmation in PaymentRequest API must use user verifying "
2195 "platform authenticators.";
2196
Victor Hugo Vianna Silvabc7f5dd62021-01-07 15:18:502197const char kSendTabToSelfWhenSignedInName[] = "Send tab to self when signed-in";
2198const char kSendTabToSelfWhenSignedInDescription[] =
2199 "Makes the tab sharing feature also available for users who have \"only\" "
2200 "signed-in to their Google Account (as opposed to having enabled Sync).";
2201
Kyle Milka9b53215c32021-05-10 18:40:342202extern const char kSendTabToSelfV2Name[] = "Send tab to self 2.0";
2203extern const char kSendTabToSelfV2Description[] =
2204 "Enables new received tab "
2205 "UI shown next to the profile icon instead of using system notifications.";
2206
Peter Boströmb136d872021-06-16 18:56:072207const char kSidePanelFlagId[] = "side-panel";
Peter Boström259e1472020-10-22 22:26:242208const char kSidePanelName[] = "Side panel";
Peter Boströmb136d872021-06-16 18:56:072209const char kSidePanelDescription[] =
2210 "Enables a browser-level side panel for a useful and persistent way to "
2211 "access your Reading List and Bookmarks.";
Peter Boström259e1472020-10-22 22:26:242212
John Lee0d7ba332021-07-29 18:41:572213const char kSidePanelDragAndDropFlagId[] = "side-panel-drag-and-drop";
2214const char kSidePanelDragAndDropName[] = "Side panel drag and drop";
2215const char kSidePanelDragAndDropDescription[] =
2216 "Enables drag and drop of bookmarks within the side panel.";
2217
Yasmin69a132f2019-08-07 15:30:362218const char kSharedClipboardUIName[] =
2219 "Enable shared clipboard feature signals to be handled";
2220const char kSharedClipboardUIDescription[] =
2221 "Enables shared clipboard feature signals to be handled by showing "
2222 "a list of user's available devices to share the clipboard.";
2223
Kyle Milkacf3aa6e12021-07-28 00:34:022224const char kSharingDesktopScreenshotsName[] = "Desktop Screenshots";
2225const char kSharingDesktopScreenshotsDescription[] =
2226 "Enables taking"
2227 " screenshots from the desktop sharing hub.";
2228
Kristi Parkaedd01f2021-04-02 23:40:072229const char kSharingHubDesktopAppMenuName[] = "Desktop Sharing Hub in App Menu";
2230const char kSharingHubDesktopAppMenuDescription[] =
2231 "Enables the Chrome Sharing Hub in the 3-dot menu for desktop.";
2232
2233const char kSharingHubDesktopOmniboxName[] = "Desktop Sharing Hub in Omnibox";
2234const char kSharingHubDesktopOmniboxDescription[] =
2235 "Enables the Chrome Sharing Hub in the omnibox for desktop.";
2236
Alex Chaud7886842020-05-13 15:37:052237const char kSharingPreferVapidName[] =
2238 "Prefer sending Sharing message via VAPID";
2239const char kSharingPreferVapidDescription[] =
2240 "Prefer sending Sharing message via FCM WebPush authenticated using VAPID.";
2241
Alex Chauf15a7192020-01-30 17:37:512242const char kSharingSendViaSyncName[] =
2243 "Enable sending Sharing message via Sync";
2244const char kSharingSendViaSyncDescription[] =
2245 "Enables sending Sharing message via commiting to Chrome Sync's "
2246 "SHARING_MESSAGE data type";
2247
Toni Barzicf630740ec2021-06-30 15:53:212248const char kShelfDragToPinName[] = "Pin apps in shelf using drag";
2249
2250const char kShelfDragToPinDescription[] =
2251 "Enables pinning unpinned items in shelf by dragging them to the part of "
2252 "the shelf that contains pinned apps.";
2253
Manu Cornetd7ef7c52018-05-01 22:08:232254const char kShelfHoverPreviewsName[] =
2255 "Show previews of running apps when hovering over the shelf.";
2256const char kShelfHoverPreviewsDescription[] =
2257 "Shows previews of the open windows for a given running app when hovering "
2258 "over the shelf.";
2259
Brett Wilsonecb80982017-07-12 20:34:512260const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
2261const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:382262 "Annotates web forms with Autofill signatures as HTML attributes. Also "
2263 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:512264
2265const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
2266const char kShowAutofillTypePredictionsDescription[] =
2267 "Annotates web forms with Autofill field type predictions as placeholder "
2268 "text.";
2269
Lei Zhang1a6fd01b2021-03-24 17:03:482270const char kShowPerformanceMetricsHudName[] = "Show performance metrics in HUD";
2271const char kShowPerformanceMetricsHudDescription[] =
Weiliang Chene39e7652020-11-18 05:30:152272 "Display the performance metrics of current page in a heads up display on "
2273 "the page.";
2274
pwarren878671672019-12-13 19:18:162275const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
2276const char kShowOverdrawFeedbackDescription[] =
2277 "Visualize overdraw by color-coding elements based on if they have other "
2278 "elements drawn underneath.";
2279
kylechare8835ca92020-03-16 15:34:582280const char kSkiaRendererName[] = "Skia API for compositing";
Jonathan Backer93610a82019-03-27 14:02:382281const char kSkiaRendererDescription[] =
2282 "If enabled, the display compositor will use Skia as the graphics API "
kylechare8835ca92020-03-16 15:34:582283 "instead of OpenGL ES.";
Jonathan Backer93610a82019-03-27 14:02:382284
Lukasz Anforowiczd2e16e62019-03-28 19:06:592285const char kIsolateOriginsName[] = "Isolate additional origins";
2286const char kIsolateOriginsDescription[] =
2287 "Requires dedicated processes for an additional set of origins, "
2288 "specified as a comma-separated list.";
2289
Mike West6b2bd752020-12-02 06:36:592290const char kIsolationByDefaultName[] =
2291 "Change web-facing behaviors that prevent origin-level isolation";
2292const char kIsolationByDefaultDescription[] =
2293 "Change several web APIs that make it difficult to isolate origins into "
2294 "distinct processes. While these changes will ideally become new default "
2295 "behaviors for the web, this flag is likely to break your experience on "
2296 "sites you visit today.";
2297
Lukasz Anforowicz738a88d2018-11-05 19:19:342298const char kSiteIsolationOptOutName[] = "Disable site isolation";
2299const char kSiteIsolationOptOutDescription[] =
2300 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:572301 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
2302 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:222303 "isolation is force-enabled using a command line switch or using an "
2304 "enterprise policy. "
2305 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:572306 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:342307const char kSiteIsolationOptOutChoiceDefault[] = "Default";
2308const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:512309
Brett Wilsonecb80982017-07-12 20:34:512310const char kSmoothScrollingName[] = "Smooth Scrolling";
2311const char kSmoothScrollingDescription[] =
2312 "Animate smoothly when scrolling page content.";
2313
Majid Valipourae11335e2020-10-14 04:09:242314const char kWebOTPCrossDeviceName[] = "WebOTP Cross Device";
2315const char kWebOTPCrossDeviceDescription[] =
2316 "Enable the WebOTP API to work across devices";
Sam Goto09d69a12019-11-20 23:56:562317
shivanigithub75489e352021-02-22 19:24:302318const char kSplitCacheByNetworkIsolationKeyName[] = "HTTP Cache Partitioning";
2319const char kSplitCacheByNetworkIsolationKeyDescription[] =
2320 "Partitions the HTTP Cache by (top-level site, current-frame site) to "
2321 "disallow cross-site tracking.";
2322
Charlie Reis45fc8d72021-05-27 23:37:172323const char kStrictExtensionIsolationName[] = "Strict Extension Isolation";
2324const char kStrictExtensionIsolationDescription[] =
2325 "Experimental security mode that prevents extensions from sharing a "
2326 "process with each other.";
2327
Lei Zhang507fffd2020-01-29 23:47:542328const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation";
2329const char kStrictOriginIsolationDescription[] =
W. James MacLeanf79c97e2019-05-02 20:35:462330 "Experimental security mode that strengthens the site isolation policy. "
2331 "Controls whether site isolation should use origins instead of scheme and "
2332 "eTLD+1.";
2333
Brandon Maslenda12cf82019-08-23 20:54:182334const char kStorageAccessAPIName[] = "Storage Access API";
2335const char kStorageAccessAPIDescription[] =
2336 "Enables the Storage Access API, allowing websites to request storage "
2337 "access when it would otherwise be restricted.";
2338
Lexi Stavrakos094fd642020-06-17 23:26:432339const char kStoragePressureEventName[] = "Enable storage pressure Event";
2340const char kStoragePressureEventDescription[] =
2341 "If enabled, Chrome will dispatch a DOM event, informing applications "
2342 "about storage pressure (low disk space)";
2343
Talal Jawaid493a07732021-05-06 21:30:232344const char kStoreHoursAndroidName[] = "Store Hours";
2345const char kStoreHoursAndroidDescription[] =
2346 "When enabled, shows store hours for stores in tab grid view.";
2347
Brett Wilsonecb80982017-07-12 20:34:512348const char kSuggestionsWithSubStringMatchName[] =
2349 "Substring matching for Autofill suggestions";
2350const char kSuggestionsWithSubStringMatchDescription[] =
2351 "Match Autofill suggestions based on substrings (token prefixes) rather "
2352 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:342353
Siyu An9655bd22020-09-14 23:09:072354const char kSyncAutofillWalletOfferDataName[] =
2355 "Enable syncing autofill offer data";
2356const char kSyncAutofillWalletOfferDataDescription[] =
2357 "When enabled, allows syncing autofill wallet offer data type.";
2358
Brett Wilsonecb80982017-07-12 20:34:512359const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
2360const char kSyncSandboxDescription[] =
2361 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:342362
Mikel Astiz850b0fe2021-06-16 09:47:272363const char kSyncTrustedVaultPassphrasePromoName[] =
2364 "Enable promos for sync trusted vault passphrase.";
2365const char kSyncTrustedVaultPassphrasePromoDescription[] =
2366 "Enables promos for an experimental sync passphrase type, referred to as "
2367 "trusted vault.";
2368
2369const char kSyncTrustedVaultPassphraseRecoveryName[] =
2370 "Enable sync trusted vault passphrase with improved recovery.";
2371const char kSyncTrustedVaultPassphraseRecoveryDescription[] =
2372 "Enables support for an experimental sync passphrase type, referred to as "
2373 "trusted vault, including logic and APIs for improved account recovery "
2374 "flows.";
2375
Joe Downing8cbbc192018-05-14 17:37:072376const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
2377const char kSystemKeyboardLockDescription[] =
2378 "Enables websites to use the keyboard.lock() API to intercept system "
2379 "keyboard shortcuts and have the events routed directly to the website "
2380 "when in fullscreen mode.";
2381
Ahmed Mehfoozf719a672020-12-17 23:32:522382const char kStylusBatteryStatusName[] =
2383 "Show stylus battery stylus in the stylus tools menu";
2384const char kStylusBatteryStatusDescription[] =
2385 "Enables viewing the current stylus battery level in the stylus tools "
2386 "menu.";
2387
Jesse McKennafbdeac62021-04-26 16:38:472388const char kSubframeShutdownDelayName[] =
2389 "Add delay to subframe renderer process shutdown";
2390const char kSubframeShutdownDelayDescription[] =
2391 "Delays shutdown of subframe renderer processes by a few seconds to allow "
2392 "them to be potentially reused. This aims to reduce process churn in "
2393 "navigations where the source and destination share subframes.";
2394
Matt Simmons1fd0c9f2019-04-15 19:08:222395const char kTabEngagementReportingName[] = "Tab Engagement Metrics";
2396const char kTabEngagementReportingDescription[] =
2397 "Tracks tab engagement and lifetime metrics.";
2398
Yusuf Ozuysal67f05a02019-02-15 19:30:522399const char kTabGridLayoutAndroidName[] = "Tab Grid Layout";
2400const char kTabGridLayoutAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462401 "Allows users to see their tabs in a grid layout in the tab switcher on "
2402 "phones.";
Yusuf Ozuysal67f05a02019-02-15 19:30:522403
Ayman Almadhoun5a72fa742021-04-28 05:49:152404const char kCommerceMerchantViewerAndroidName[] = "Merchant Viewer";
2405const char kCommerceMerchantViewerAndroidDescription[] =
2406 "Allows users to view merchant trust signals on eligible pages.";
2407
Zhiyuan Cai7a67fff2021-06-18 21:35:532408const char kCommercePriceTrackingAndroidName[] = "Price Tracking";
2409const char kCommercePriceTrackingAndroidDescription[] =
2410 "Allows users to track product prices through Chrome.";
2411
Yusuf Ozuysal436d90b82019-03-15 22:17:582412const char kTabGroupsAndroidName[] = "Tab Groups";
2413const char kTabGroupsAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462414 "Allows users to create groups to better organize their tabs on phones.";
Yusuf Ozuysal436d90b82019-03-15 22:17:582415
Yue Zhange5610102019-11-01 19:46:392416const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation";
2417const char kTabGroupsContinuationAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462418 "Allows users to access continuation features in Tab Group on phones.";
Yue Zhange5610102019-11-01 19:46:392419
Yue Zhang2834d6b2019-05-01 17:30:282420const char kTabGroupsUiImprovementsAndroidName[] = "Tab Groups UI Improvements";
2421const char kTabGroupsUiImprovementsAndroidDescription[] =
Yue Zhang5a167c72020-03-16 16:56:462422 "Allows users to access new features in Tab Group UI on phones.";
Yue Zhang2834d6b2019-05-01 17:30:282423
Wei-Yin Chen (陳威尹)102222492019-05-22 19:27:092424const char kTabToGTSAnimationAndroidName[] = "Enable Tab-to-GTS Animation";
2425const char kTabToGTSAnimationAndroidDescription[] =
2426 "Allows users to see an animation when entering or leaving the "
Yue Zhang5a167c72020-03-16 16:56:462427 "Grid Tab Switcher on phones.";
Wei-Yin Chen (陳威尹)102222492019-05-22 19:27:092428
Charlene Yan45ff10d92020-09-16 03:14:592429const char kTabGroupsAutoCreateName[] = "Tab Groups Auto Create";
2430const char kTabGroupsAutoCreateDescription[] =
2431 "Automatically creates groups for users, if tab groups are enabled.";
2432
Charlene Yan65e7cfe2020-07-28 18:55:292433const char kTabGroupsCollapseFreezingName[] = "Tab Groups Collapse Freezing";
2434const char kTabGroupsCollapseFreezingDescription[] =
2435 "Experimental tab freezing upon collapsing a tab group.";
2436
Charlene Yan5b80e052020-04-02 20:48:562437const char kTabGroupsFeedbackName[] = "Tab Groups Feedback";
2438const char kTabGroupsFeedbackDescription[] =
2439 "Enables the feedback app to appear in the tab group editor bubble, if tab "
2440 "groups are enabled.";
2441
Dana Fried7ecd0e02021-02-03 21:20:572442const char kTabGroupsNewBadgePromoName[] = "Tab Groups 'New' Badge Promo";
2443const char kTabGroupsNewBadgePromoDescription[] =
2444 "Causes a 'New' badge to appear on the entry point for creating a tab "
2445 "group in the tab context menu.";
2446
Alyssa Frederickab694f22021-07-02 20:05:392447const char kTabGroupsSaveName[] = "Tab Groups Save";
2448const char kTabGroupsSaveDescription[] =
2449 "Enables users to explicitly save and recall tab groups.";
2450
Dana Friedacaa8ef52019-02-08 02:20:352451const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
2452const char kTabHoverCardImagesDescription[] =
2453 "Shows a preview image in tab hover cards, if tab hover cards are enabled.";
2454
Dana Fried07b03c62019-07-31 19:20:562455const char kTabOutlinesInLowContrastThemesName[] =
2456 "Tab Outlines in Low Contrast Themes";
2457const char kTabOutlinesInLowContrastThemesDescription[] =
2458 "Expands the range of situations in which tab outline strokes are "
2459 "displayed, improving accessiblity in dark and incognito mode.";
2460
Emily Shack8cf347332021-06-11 18:04:092461const char kTabRestoreSubMenusName[] = "Show app menu history sub menus";
2462const char kTabRestoreSubMenusDescription[] =
2463 "Show app menu history sub menus for the contents of recently closed tab "
2464 "groups and windows.";
2465
Cheick6a288cd2021-01-18 16:04:222466const char kTextFragmentColorChangeName[] = "Text Fragment color change";
2467const char kTextFragmentColorChangeDescription[] =
2468 "Changes the Text Fragment background color"
2469 "away from the default yellow.";
2470
mcrouse2b928eb2021-02-26 21:59:092471const char kTFLiteLanguageDetectionName[] = "TFLite-based Language Detection";
2472const char kTFLiteLanguageDetectionDescription[] =
2473 "Uses TFLite for language detection in place of CLD3";
2474
Daniele Castagnaac71d892020-07-07 17:30:372475const char kTintCompositedContentName[] = "Tint composited content";
2476const char kTintCompositedContentDescription[] =
2477 "Tint contents composited using Viz with a shade of red to help debug and "
Daniele Castagna0fead93e2018-01-10 20:40:292478 "study overlay support.";
2479
Peter Kastingd77428352018-10-26 15:20:252480const char kTopChromeTouchUiName[] = "Touch UI Layout";
2481const char kTopChromeTouchUiDescription[] =
2482 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:342483
Brett Wilsonecb80982017-07-12 20:34:512484const char kThreadedScrollingName[] = "Threaded scrolling";
2485const char kThreadedScrollingDescription[] =
2486 "Threaded handling of scroll-related input events. Disabling this will "
2487 "force all such scroll events to be handled on the main thread. Note that "
2488 "this can dramatically hurt scrolling performance of most websites and is "
2489 "intended for testing purposes only.";
2490
W. James MacLean17fc6852021-05-06 18:29:292491const char kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesName[] =
2492 "Throttle non-visible cross-origin iframes";
2493const char
2494 kThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframesDescription[] =
2495 "When enabled, all cross-origin iframes with zero visibility (either "
2496 "display:none or zero area) will be throttled, regardless of whether "
2497 "they are same-process or cross-process. When disabled, only cross-"
2498 "process iframes will be throttled.";
2499
Brett Wilsonecb80982017-07-12 20:34:512500const char kTouchDragDropName[] = "Touch initiated drag and drop";
2501const char kTouchDragDropDescription[] =
2502 "Touch drag and drop can be initiated through long press on a draggable "
2503 "element.";
2504
Brett Wilsonecb80982017-07-12 20:34:512505const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
2506const char kTouchSelectionStrategyDescription[] =
2507 "Controls how text selection granularity changes when touch text selection "
2508 "handles are dragged. Non-default behavior is experimental.";
2509const char kTouchSelectionStrategyCharacter[] = "Character";
2510const char kTouchSelectionStrategyDirection[] = "Direction";
2511
2512const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
2513const char kTraceUploadUrlDescription[] =
2514 "This is to be used in conjunction with the enable-navigation-tracing "
2515 "flag. Please select the label that best describes the recorded traces. "
2516 "This will choose the destination the traces are uploaded to. If you are "
2517 "not sure, select other. If left empty, no traces will be uploaded.";
2518const char kTraceUploadUrlChoiceOther[] = "Other";
2519const char kTraceUploadUrlChoiceEmloading[] = "emloading";
2520const char kTraceUploadUrlChoiceQa[] = "QA";
2521const char kTraceUploadUrlChoiceTesting[] = "Testing";
2522
Josh Simmons7a8e7a942021-06-19 01:08:562523const char kTranslateAssistContentName[] = "Translate AssistContent";
2524const char kTranslateAssistContentDescription[] =
2525 "Enables populating translate details for the current page in "
2526 "AssistContent.";
2527
Anthony Vallee-Dubois265c5692018-06-01 15:57:142528const char kTranslateForceTriggerOnEnglishName[] =
2529 "Select which language model to use to trigger translate on English "
2530 "content";
2531const char kTranslateForceTriggerOnEnglishDescription[] =
2532 "Force the Translate Triggering on English pages experiment to be enabled "
2533 "with the selected language model active.";
2534
Josh Simmons8c98484872021-05-05 20:50:012535const char kTranslateIntentName[] = "Translate intent";
2536const char kTranslateIntentDescription[] =
2537 "Enables an intent that allows Assistant to initiate a translation of the "
2538 "foreground tab.";
Haohao Wang5b525f722019-05-18 15:37:522539
Mustafa Emre Acerb3aa36a82018-05-22 21:44:052540const char kTreatInsecureOriginAsSecureName[] =
2541 "Insecure origins treated as secure";
2542const char kTreatInsecureOriginAsSecureDescription[] =
2543 "Treat given (insecure) origins as secure origins. Multiple origins can be "
Alan Cutter733ec9a2019-08-27 15:33:132544 "supplied as a comma-separated list. Origins must have their protocol "
2545 "specified e.g. \"http://example.com\". For the definition of secure "
2546 "contexts, see https://w3c.github.io/webappsec-secure-contexts/";
Mustafa Emre Acerb3aa36a82018-05-22 21:44:052547
Joe DeBlasio2a4fb9982019-05-06 23:44:432548const char kTreatUnsafeDownloadsAsActiveName[] =
2549 "Treat risky downloads over insecure connections as active mixed content";
2550const char kTreatUnsafeDownloadsAsActiveDescription[] =
2551 "Disallows downloads of unsafe files (files that can potentially execute "
2552 "code), where the final download origin or any origin in the redirect "
2553 "chain is insecure if the originating page is secure.";
2554
David Van Cleve08c5bc012020-03-26 17:31:462555const char kTrustTokensName[] = "Enable Trust Tokens";
2556const char kTrustTokensDescription[] =
2557 "Enables the prototype Trust Token API "
2558 "(https://github.com/wicg/trust-token-api).";
2559
Will Cassellafd1edf02020-08-26 23:13:082560const char kTurnOffStreamingMediaCachingOnBatteryName[] =
2561 "Turn off caching of streaming media to disk while on battery power.";
2562const char kTurnOffStreamingMediaCachingOnBatteryDescription[] =
2563 "Reduces disk activity during media playback, which can result in "
2564 "power savings.";
2565
2566const char kTurnOffStreamingMediaCachingAlwaysName[] =
Shawn Pickett0b470712019-08-15 00:43:452567 "Turn off caching of streaming media to disk.";
Will Cassellafd1edf02020-08-26 23:13:082568const char kTurnOffStreamingMediaCachingAlwaysDescription[] =
Shawn Pickett0b470712019-08-15 00:43:452569 "Reduces disk activity during media playback, which can result in "
2570 "power savings.";
2571
Vasilii Sukhanov36365432021-07-02 08:38:212572const char kUnifiedPasswordManagerAndroidName[] =
2573 "Google Mobile Services for passwords";
Friedrich Horschig2683d832021-06-09 15:47:562574const char kUnifiedPasswordManagerAndroidDescription[] =
2575 "Uses Google Mobile Services to store and retrieve passwords."
2576 "Warning: Highly experimental. May lead to loss of passwords and "
2577 "impact performance.";
2578
François Beaufortdb160c12019-05-01 06:28:142579const char kUnsafeWebGPUName[] = "Unsafe WebGPU";
2580const char kUnsafeWebGPUDescription[] =
Rafael Cintron9bce9f6e2019-12-19 04:05:052581 "Enables access to the experimental WebGPU API. Warning: As GPU sandboxing "
François Beaufortdb160c12019-05-01 06:28:142582 "isn't implemented yet for the WebGPU API, it is possible to read GPU data "
2583 "for other processes.";
2584
Maya Lekova4785fd22020-08-31 10:36:072585const char kUnsafeFastJSCallsName[] = "Unsafe fast JS calls";
2586const char kUnsafeFastJSCallsDescription[] =
2587 "Enables experimental fast API between Blink and V8."
2588 "Warning: type checking, few POD types and array types "
2589 "are not supported yet, so crashes are possible.";
2590
Brett Wilsonecb80982017-07-12 20:34:512591const char kUiPartialSwapName[] = "Partial swap";
2592const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
2593
cfredric04aa50c2020-10-30 13:32:022594const char kUseFirstPartySetName[] = "First-Party Set";
2595const char kUseFirstPartySetDescription[] =
2596 "Use the provided list of origins as a First-Party Set, with the first "
2597 "valid origin as the owner of the set.";
2598
Maria Kazinova85a2ece2021-06-14 19:24:282599const char kUsernameFirstFlowName[] = "Username first flow voting";
Vadym Doroshenkoa063a512019-12-12 17:59:072600const char kUsernameFirstFlowDescription[] =
Maria Kazinova85a2ece2021-06-14 19:24:282601 "Support of sending votes on username first flow i.e. login "
2602 "flows where a user has to type username first on one page and then "
Maria Kazinova58cedc02021-08-02 17:15:112603 "password on another page. Votes are send on single username forms and are "
2604 "based on user interaction with the save prompt.";
2605
2606const char kUsernameFirstFlowFallbackCrowdsourcingName[] =
2607 "Username first flow fallback crowdsourcing";
2608const char kUsernameFirstFlowFallbackCrowdsourcingDescription[] =
2609 "Support of sending additional votes on username first flow i.e. login "
2610 "flows where a user has to type username first on one page and then "
2611 "password on another page. These votes are sent on single password forms "
2612 "and contain information whether a 1-password form follows a 1-text form "
2613 "and the value's type(or pattern) in the latter (e.g. email-like, "
2614 "phone-like, arbitrary string).";
Maria Kazinova85a2ece2021-06-14 19:24:282615
2616const char kUsernameFirstFlowFillingName[] = "Username first flow filling";
2617const char kUsernameFirstFlowFillingDescription[] =
Vadym Doroshenkoa063a512019-12-12 17:59:072618 "Support of username saving and filling on username first flow i.e. login "
Vadym Doroshenkob7f9ef22019-07-16 13:51:062619 "flows where a user has to type username first on one page and then "
2620 "password on another page";
2621
Zentaro Kavanagh892851f2019-05-29 15:13:312622const char kUseSearchClickForRightClickName[] =
2623 "Use Search+Click for right click";
2624const char kUseSearchClickForRightClickDescription[] =
2625 "When enabled search+click will be remapped to right click, allowing "
2626 "webpages and apps to consume alt+click. When disabled the legacy "
2627 "behavior of remapping alt+click to right click will remain unchanged.";
2628
Michael Hablich896d52662017-10-23 15:59:572629const char kV8VmFutureName[] = "Future V8 VM features";
2630const char kV8VmFutureDescription[] =
2631 "This enables upcoming and experimental V8 VM features. "
2632 "This flag does not enable experimental JavaScript features.";
2633
Brett Wilsonecb80982017-07-12 20:34:512634const char kWalletServiceUseSandboxName[] =
2635 "Use Google Payments sandbox servers";
2636const char kWalletServiceUseSandboxDescription[] =
2637 "For developers: use the sandbox service for Google Payments API calls.";
2638
Jeffrey Young35f24d32021-01-27 22:58:212639const char kWallpaperWebUIName[] = "Enable new wallpaper experience";
2640const char kWallpaperWebUIDescription[] =
2641 "Enables the wallpaper picker "
2642 "in ChromeOS Settings";
2643
Ovidio Henriquez3d729f62020-02-07 00:43:292644const char kWebBluetoothNewPermissionsBackendName[] =
2645 "Use the new permissions backend for Web Bluetooth";
2646const char kWebBluetoothNewPermissionsBackendDescription[] =
2647 "Enables the new permissions backend for Web Bluetooth. This will enable "
2648 "persistent storage of device permissions.";
2649
Tsuyoshi Horoabfb079d2019-10-17 02:09:062650const char kWebBundlesName[] = "Web Bundles";
2651const char kWebBundlesDescription[] =
2652 "Enables experimental supports for Web Bundles (Bundled HTTP Exchanges) "
2653 "navigation.";
2654
Ken Buchanan26fbf14c2021-03-04 05:36:142655const char kWebIdName[] = "WebID";
2656const char kWebIdDescription[] =
2657 "Enables WebID HTTP filtering and JavaScript "
2658 "API to intermediate federated identity requests.";
2659
Ayu Ishiidbdd5c92020-03-20 23:40:522660const char kWebOtpBackendName[] = "Web OTP";
2661const char kWebOtpBackendDescription[] =
2662 "Enables Web OTP API that uses the specified backend.";
Yi Gu13cc7242020-12-10 03:23:372663const char kWebOtpBackendSmsVerification[] = "Code Browser API";
2664const char kWebOtpBackendUserConsent[] = "User Consent API";
2665const char kWebOtpBackendAuto[] = "Automatically select the backend";
Ayu Ishiidbdd5c92020-03-20 23:40:522666
Kenneth Russell08c7dc32021-07-09 08:06:592667const char kWebglDeveloperExtensionsName[] = "WebGL Developer Extensions";
2668const char kWebglDeveloperExtensionsDescription[] =
2669 "Enabling this option allows web applications to access WebGL extensions "
2670 "intended only for use during development time.";
2671
Brett Wilsonecb80982017-07-12 20:34:512672const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
2673const char kWebglDraftExtensionsDescription[] =
2674 "Enabling this option allows web applications to access the WebGL "
Kenneth Russell08c7dc32021-07-09 08:06:592675 "extensions that are still in draft status.";
Brett Wilsonecb80982017-07-12 20:34:512676
Danyao Wang47a0f312019-05-09 20:52:242677const char kWebPaymentsExperimentalFeaturesName[] =
2678 "Experimental Web Payments API features";
2679const char kWebPaymentsExperimentalFeaturesDescription[] =
2680 "Enable experimental Web Payments API features";
2681
Liquan (Max) Gu5f1223972019-12-13 21:07:102682const char kWebPaymentsMinimalUIName[] = "Web Payments Minimal UI";
2683const char kWebPaymentsMinimalUIDescription[] =
2684 "Allow Payment Request API to open a minimal UI to replace the Payment "
2685 "Request UI when appropriate.";
2686
Liquan (Max) Gu8fcb9192020-05-20 16:22:182687const char kAppStoreBillingDebugName[] =
2688 "Web Payments App Store Billing Debug Mode";
2689const char kAppStoreBillingDebugDescription[] =
2690 "App-store purchases (e.g., Google Play Store) within a TWA can be "
2691 "requested using the Payment Request API. This flag removes the "
2692 "restriction that the TWA has to be installed from the app-store.";
2693
Per Åhgrencef44262019-11-20 10:54:512694const char kWebrtcCaptureMultiChannelApmName[] =
2695 "WebRTC multi-channel capture audio processing.";
2696const char kWebrtcCaptureMultiChannelApmDescription[] =
2697 "Support in WebRTC for processing capture audio in multi channel without "
2698 "downmixing when running APM in the render process.";
2699
Qingsi Wangec2dbf942018-11-03 05:33:042700const char kWebrtcHideLocalIpsWithMdnsName[] =
2701 "Anonymize local IPs exposed by WebRTC.";
2702const char kWebrtcHideLocalIpsWithMdnsDecription[] =
2703 "Conceal local IP addresses with mDNS hostnames.";
2704
Alex Loikob5fb1282018-08-14 10:04:402705const char kWebrtcHybridAgcName[] = "WebRTC hybrid Agc2/Agc1.";
2706const char kWebrtcHybridAgcDescription[] =
2707 "WebRTC Agc2 digital adaptation with Agc1 analog adaptation.";
2708
Alessio Bazzica1fcfa3e2021-06-04 17:26:572709const char kWebrtcAnalogAgcClippingControlName[] =
2710 "WebRTC Agc1 analog clipping control.";
2711const char kWebrtcAnalogAgcClippingControlDescription[] =
2712 "WebRTC Agc1 analog clipping controller to reduce saturation.";
2713
Brett Wilsonecb80982017-07-12 20:34:512714const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
2715const char kWebrtcHwDecodingDescription[] =
2716 "Support in WebRTC for decoding video streams using platform hardware.";
2717
2718const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
2719const char kWebrtcHwEncodingDescription[] =
2720 "Support in WebRTC for encoding video streams using platform hardware.";
2721
Elad Alon85e0d0be2018-06-26 10:38:372722const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
2723const char kWebRtcRemoteEventLogDescription[] =
2724 "Allow collecting WebRTC event logs and uploading them to Crash. "
2725 "Please note that, even if enabled, this will still require "
2726 "a policy to be set, for it to have an effect.";
2727
Brett Wilsonecb80982017-07-12 20:34:512728const char kWebrtcSrtpAesGcmName[] =
2729 "Negotiation with GCM cipher suites for SRTP in WebRTC";
2730const char kWebrtcSrtpAesGcmDescription[] =
2731 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
2732
Sergey Silkinc33244f2020-01-31 17:21:302733const char kWebrtcUseMinMaxVEADimensionsName[] =
2734 "WebRTC Min/Max Video Encode Accelerator dimensions";
2735const char kWebrtcUseMinMaxVEADimensionsDescription[] =
2736 "When enabled, WebRTC will only use the Video Encode Accelerator for "
2737 "video resolutions inside those published as supported.";
2738
Alex Cooper01f110e2020-01-08 02:24:162739const char kWebXrForceRuntimeName[] = "Force WebXr Runtime";
2740const char kWebXrForceRuntimeDescription[] =
2741 "Force the browser to use a particular runtime, even if it would not "
2742 "usually be enabled or would otherwise not be selected based on the "
2743 "attached hardware.";
2744
2745const char kWebXrRuntimeChoiceNone[] = "No Runtime";
Alex Cooper01f110e2020-01-08 02:24:162746const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR";
Alex Cooper01f110e2020-01-08 02:24:162747
Will Cassellaa1a4d1112019-12-27 20:52:312748const char kWebXrIncubationsName[] = "WebXR Incubations";
2749const char kWebXrIncubationsDescription[] =
2750 "Enables experimental features for WebXR.";
Piotr Bialeckid77fb9c2019-04-26 17:06:242751
Elly Fong-Jones32ead50d2020-09-26 01:19:112752const char kWindowNamingName[] = "Window Naming";
2753const char kWindowNamingDescription[] =
2754 "Whether the window naming UI is enabled.";
2755
Brett Wilsonecb80982017-07-12 20:34:512756const char kZeroCopyName[] = "Zero-copy rasterizer";
2757const char kZeroCopyDescription[] =
2758 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:342759
Peng Huang70021682019-09-18 19:42:282760const char kEnableVulkanName[] = "Vulkan";
Sean Gilhulyab1dbc62020-01-28 22:49:472761const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend.";
Peng Huang70021682019-09-18 19:42:282762
Gayane Petrosyan65380732021-01-15 01:09:532763const char kSharedHighlightingUseBlocklistName[] =
2764 "Shared Highlighting blocklist";
2765const char kSharedHighlightingUseBlocklistDescription[] =
2766 "Uses a blocklist to disable Shared Highlighting link generation on "
2767 "certain sites where personalized or dynamic content or other technical "
2768 "restrictions make it unlikely that a URL can be generated and actually "
2769 "work when shared.";
2770
Kyle Milka17458ca2021-03-05 20:40:242771const char kSharedHighlightingV2Name[] = "Shared Highlighting 2.0";
2772const char kSharedHighlightingV2Description[] =
2773 "Improvements to Shared Highlighting. Including ability to reshare or "
2774 "remove a highlight.";
2775
Cheick Cisseb8f706032021-06-22 01:50:472776const char kSharedHighlightingAmpName[] = "Shared Highlighting for AMP Viewers";
2777const char kSharedHighlightingAmpDescription[] =
2778 "Enables Shared Highlighting for AMP Viwers.";
2779
Gayane Petrosyana08c07372021-03-11 23:27:532780const char kPreemptiveLinkToTextGenerationName[] =
Cheick Cisse032ea112021-02-11 02:23:262781 "Preemptive generation of link to text";
Gayane Petrosyana08c07372021-03-11 23:27:532782const char kPreemptiveLinkToTextGenerationDescription[] =
Cheick Cisse032ea112021-02-11 02:23:262783 "Enables link to text to be generated in advance.";
2784
Mario Bianucci3be046eb2021-02-26 18:41:482785const char kDraw1PredictedPoint12Ms[] = "1 point 12ms ahead.";
2786const char kDraw2PredictedPoints6Ms[] = "2 points, each 6ms ahead.";
2787const char kDraw1PredictedPoint6Ms[] = "1 point 6ms ahead.";
2788const char kDraw2PredictedPoints3Ms[] = "2 points, each 3ms ahead.";
2789const char kDrawPredictedPointsDefault[] = "Disabled";
2790const char kDrawPredictedPointsDescription[] =
2791 "Draw predicted points when using the delegated ink trails API. Requires "
2792 "experimental web platform features to be enabled.";
2793const char kDrawPredictedPointsName[] = "Draw predicted delegated ink points";
2794
Daniel Vogelheim236d9a82021-04-01 15:40:532795const char kSanitizerApiName[] = "Sanitizer API";
2796const char kSanitizerApiDescription[] =
2797 "Enable the Sanitizer API. See: https://github.com/WICG/sanitizer-api";
2798
Peng Huang723f26e2021-06-04 01:55:102799const char kUsePassthroughCommandDecoderName[] =
2800 "Use passthrough command decoder";
2801const char kUsePassthroughCommandDecoderDescription[] =
2802 "Use chrome passthrough command decoder instead of validating command "
2803 "decoder.";
2804
Igor Ruvinovbe0d649c2021-06-09 19:50:252805const char kExtensionWorkflowJustificationName[] =
2806 "Extension request justification";
2807const char kExtensionWorkflowJustificationDescription[] =
2808 "Enables users to justify their extension requests by causing a text field "
2809 "to appear on the extension request dialog.";
2810
Brett Wilsonff596952017-07-14 01:06:552811// Android ---------------------------------------------------------------------
2812
2813#if defined(OS_ANDROID)
2814
Shakti Sahu1c04a2872021-03-17 16:38:482815const char kAddToHomescreenIPHName[] = "Add to homescreen IPH";
2816const char kAddToHomescreenIPHDescription[] =
2817 " Shows in-product-help messages educating users about add to homescreen "
2818 "option in chrome.";
2819
Vikas Soni5463f1a2020-08-17 22:47:302820const char kAImageReaderName[] = "Android ImageReader";
2821const char kAImageReaderDescription[] =
2822 " Enables MediaPlayer and MediaCodec to use AImageReader on Android. "
2823 " This feature is only available for android P+ devices. Disabling it also "
2824 " disables SurfaceControl.";
2825
Trevor Perrier990a1c62020-09-11 20:27:322826const char kAndroidDetailedLanguageSettingsName[] =
2827 "Detailed Language Settings";
2828const char kAndroidDetailedLanguageSettingsDescription[] =
2829 "Enable the new detailed language settings page";
2830
Trevor Perrierc1384bb2021-06-04 23:54:032831const char kAndroidForceAppLanguagePromptName[] =
2832 "Force second run app language prompt";
2833const char kAndroidForceAppLanguagePromptDescription[] =
2834 "When enabled the app language prompt to change the UI language will"
2835 "always be shown.";
2836
Lijin Shen4e002bf32020-12-01 22:41:322837const char kAndroidLayoutChangeTabReparentingName[] =
2838 "Android Chrome UI phone/tablet layout change tab reparenting";
2839const char kAndroidLayoutChangeTabReparentingDescription[] =
2840 "If enabled, when the screen size switches between phone and tablet size, "
2841 "the UI layout updates to the proper one and the current tabs are "
2842 "reparented instead of reloaded.";
2843
Vikas Sonif14e32c2020-08-15 06:17:222844const char kAndroidSurfaceControlName[] = "Android SurfaceControl";
2845const char kAndroidSurfaceControlDescription[] =
Vikas Soni5463f1a2020-08-17 22:47:302846 " Enables SurfaceControl to manage the buffer queue for the "
2847 " DisplayCompositor on Android. This feature is only available on "
2848 " android Q+ devices";
Vikas Sonif14e32c2020-08-15 06:17:222849
Josh Simmons825de242020-11-19 19:23:002850const char kAssistantIntentPageUrlName[] =
2851 "Include page URL in Assistant intent";
2852const char kAssistantIntentPageUrlDescription[] =
2853 "Include the current page's URL in the Assistant voice transcription "
2854 "intent.";
2855
Josh Simmons68325af2021-01-15 21:10:212856const char kAssistantIntentTranslateInfoName[] =
2857 "Translate info in Assistant intent";
2858const char kAssistantIntentTranslateInfoDescription[] =
2859 "Include page translation details in the Assistant voice transcription "
2860 "intent. This includes the page's URL and its original, current, and "
2861 "default target language.";
2862
Miriam Gershenson8cf1397222018-01-23 22:48:292863const char kAsyncDnsName[] = "Async DNS resolver";
2864const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
2865
Brett Wilsonff596952017-07-14 01:06:552866const char kAutofillAccessoryViewName[] =
2867 "Autofill suggestions as keyboard accessory view";
2868const char kAutofillAccessoryViewDescription[] =
2869 "Shows Autofill suggestions on top of the keyboard rather than in a "
2870 "dropdown.";
2871
Caitlin Fischer43edd90a2019-05-01 13:24:302872const char kAutofillUseMobileLabelDisambiguationName[] =
2873 "Autofill Uses Mobile Label Disambiguation";
2874const char kAutofillUseMobileLabelDisambiguationDescription[] =
2875 "When enabled, Autofill suggestions' labels are displayed using a "
2876 "mobile-friendly format.";
2877
Gang Wua7bfb5f42021-04-09 18:54:212878const char kAppMenuMobileSiteOptionName[] =
2879 "Show Mobile Site option in app menu";
2880const char kAppMenuMobileSiteOptionDescription[] =
2881 "When enabled, app menu should show 'Mobile site' when showing desktop "
2882 "site, instead of showing 'Desktop Site' with checkbox";
2883
Alex Hawker0062f5252020-07-29 21:41:072884const char kBentoOfflineName[] =
2885 "Enables an experiment for Offline Bento content on Android";
2886const char kBentoOfflineDescription[] =
2887 "Enables displaying Bento content on the offline page for Android.";
2888
Xing Liu7b448302021-04-09 05:35:142889const char kBookmarkBottomSheetName[] = "Enables bookmark bottom sheet";
2890const char kBookmarkBottomSheetDescription[] =
2891 "Enables showing a bookmark bottom sheet when adding a bookmark.";
2892
Ramin Halavatiba7ddcc2019-11-13 06:19:282893const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode";
2894const char kCCTIncognitoDescription[] =
2895 "Enables incognito mode for Chrome Custom Tabs, on Android.";
2896
Rohit Agarwalc3973312020-11-18 14:40:232897const char kCCTIncognitoAvailableToThirdPartyName[] =
2898 "Allow third party to open Custom Tabs Incognito mode";
2899const char kCCTIncognitoAvailableToThirdPartyDescription[] =
2900 "Enabling it would allow third party apps to open incognito mode for "
2901 "Chrome Custom Tabs, on Android.";
2902
Xing Liu1e6b43d2021-03-15 19:26:452903const char kChimeAlwaysShowNotificationDescription[] =
2904 "A debug flag to always show Chime notification after receiving a payload.";
2905const char kChimeAlwaysShowNotificationName[] =
2906 "Always show Chime notification";
2907
2908const char kChimeAndroidSdkDescription[] =
2909 "Enable Chime SDK to receive push notification.";
2910const char kChimeAndroidSdkName[] = "Use Chime SDK";
2911
ckitagawa12ef4152020-12-03 19:14:572912const char kContinuousSearchName[] = "Continuous Search Navigation";
2913const char kContinuousSearchDescription[] =
2914 "Enables caching of search results to permit a more seamless search "
2915 "experience.";
2916
Gayane Petrosyan311a76d12020-07-15 00:27:492917const char kChromeShareHighlightsAndroidName[] =
2918 "Chrome Share text highlights on Android";
2919const char kChromeShareHighlightsAndroidDescription[] =
2920 "Enables UI to generate and share link to text highlights on Android";
2921
Tanya Guptabefbdb32020-10-28 19:36:552922const char kChromeShareLongScreenshotName[] = "Chrome Share Long Screenshots";
2923const char kChromeShareLongScreenshotDescription[] =
2924 "Enables UI to edit and share long screenshots on Android";
2925
Jeffrey Cohen5f2a9fe2019-12-11 01:23:422926const char kChromeShareScreenshotName[] = "Chrome Share Screenshots";
2927const char kChromeShareScreenshotDescription[] =
2928 "Enables UI to edit and share screenshots";
2929
Kyle Milka7a10dbf2021-08-05 20:30:372930const char kChromeSharingHubName[] = "Chrome Sharing Hub";
2931const char kChromeSharingHubDescription[] =
2932 "Enables the Chrome Sharing Hub/custom share sheet for Android.";
2933
Tomasz Wiszkowski34f9afea2021-04-08 18:50:562934const char kClipboardSuggestionContentHiddenName[] =
2935 "Clipboard suggestion content hidden";
2936const char kClipboardSuggestionContentHiddenDescription[] =
2937 "Prevents the Clipboard suggestion from proactively retrieving the "
2938 "clipboard content.";
2939
David Maunder915c7ef2019-09-20 16:22:082940const char kCloseTabSuggestionsName[] = "Suggest to close Tabs";
2941const char kCloseTabSuggestionsDescription[] =
2942 "Suggests to the user to close Tabs that haven't been used beyond a "
2943 "configurable threshold or where duplicates of Tabs exist. "
2944 "The threshold is configurable.";
Richard Knoll368596e52019-08-14 09:16:282945
David Maunder8cf7fd82020-08-20 19:31:542946const char kCriticalPersistedTabDataName[] = "Enable CriticalPersistedTabData";
2947const char kCriticalPersistedTabDataDescription[] =
2948 "A new method of persisting Tab data across restarts has been devised "
2949 "and implemented. This actives the new approach.";
2950
Josh Simmons4a41bc72020-07-06 19:13:012951const char kContextMenuPerformanceInfoAndRemoteHintFetchingName[] =
2952 "Context menu performance info and remote hint fetching";
2953const char kContextMenuPerformanceInfoAndRemoteHintFetchingDescription[] =
2954 "Enables showing link performance information in the context menu and "
2955 "allows communicating with Google servers to fetch performance information "
2956 "for the main frame URL.";
Josh Simmons0cc3b5eb2020-02-25 20:08:422957
Donn Denman140a08562020-03-09 18:23:192958const char kContextualSearchDebugName[] = "Contextual Search debug";
2959const char kContextualSearchDebugDescription[] =
2960 "Enables internal debugging of Contextual Search behavior on the client "
2961 "and server.";
2962
Donn Denman19688bc2021-03-05 18:48:402963const char kContextualSearchForceCaptionName[] =
2964 "Contextual Search force a caption";
2965const char kContextualSearchForceCaptionDescription[] =
2966 "Forces a caption to always be shown in the Touch to Search Bar.";
Donn Denman4315f262019-03-02 02:47:412967
Donn Denmand12d7cc2021-02-17 21:54:442968const char kContextualSearchLiteralSearchTapName[] =
2969 "Contextual Search literal search with tap";
2970const char kContextualSearchLiteralSearchTapDescription[] =
2971 "Enables Contextual Search to be activated with a single tap and produce "
2972 "a literal search. This is intended to be used in conjunction with the "
2973 "long-press resolve feature to allow both gestures to trigger a form of "
2974 "Touch to Search.";
2975
Donn Denman6be77d42019-05-04 15:55:422976const char kContextualSearchLongpressResolveName[] =
2977 "Contextual Search long-press Resolves";
2978const char kContextualSearchLongpressResolveDescription[] =
2979 "Enables communicating with Google servers when a long-press gesture is "
Donn Denmanc0a33cbf2020-02-27 15:26:052980 "recognized under some privacy-limited conditions, including having Touch "
2981 "to Search enabled in preferences. The page context data sent to Google is "
2982 "potentially privacy sensitive! This disables the tap gesture from "
2983 "triggering Touch to Search unless that experiment arm is enabled.";
Donn Denman6be77d42019-05-04 15:55:422984
Donn Denman8e58ead2017-11-04 01:44:012985const char kContextualSearchMlTapSuppressionName[] =
2986 "Contextual Search ML tap suppression";
2987const char kContextualSearchMlTapSuppressionDescription[] =
2988 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:022989 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
2990 "enabled!";
Brett Wilsonff596952017-07-14 01:06:552991
Donn Denman59729812018-01-09 01:27:022992const char kContextualSearchRankerQueryName[] =
2993 "Contextual Search Ranker prediction";
2994const char kContextualSearchRankerQueryDescription[] =
2995 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
2996
2997const char kContextualSearchSecondTapName[] =
2998 "Contextual Search second tap triggering";
2999const char kContextualSearchSecondTapDescription[] =
3000 "Enables triggering on a second tap gesture even when Ranker would "
3001 "normally suppress that tap.";
3002
Sinan Sahincdaed9f2021-01-20 22:43:283003const char kContextualSearchThinWebViewImplementationName[] =
3004 "Use Contextual Search ThinWebView implementation";
3005const char kContextualSearchThinWebViewImplementationDescription[] =
3006 "Use ThinWebView and BottomSheet based implementation for Contextual"
3007 "Search.";
3008
Donn Denman58a1da42020-01-27 23:40:383009const char kContextualSearchTranslationsName[] =
3010 "Contextual Search translations";
3011const char kContextualSearchTranslationsDescription[] =
3012 "Enables automatic translations of words on a page to be presented in the "
3013 "caption of the bottom bar.";
3014
Eric Secklerb9545b32020-08-11 21:29:423015const char kCpuAffinityRestrictToLittleCoresName[] = "Restrict to LITTLE cores";
3016const char kCpuAffinityRestrictToLittleCoresDescription[] =
3017 "Restricts Chrome threads to LITTLE cores on devices with big.LITTLE or "
3018 "similar CPU architectures.";
3019
Sky Malice49e21652021-06-29 17:20:293020const char kDynamicColorAndroidName[] = "Dynamic colors on Android";
3021const char kDynamicColorAndroidDescription[] =
3022 "Enabled dynamic colors on supported devices, such as Pixel devices "
3023 "running Android 12.";
3024
Fabio Tirelo918089a2018-10-22 21:24:083025const char kAutofillManualFallbackAndroidName[] =
3026 "Enable Autofill manual fallback for Addresses and Payments (Android)";
3027const char kAutofillManualFallbackAndroidDescription[] =
3028 "If enabled, adds toggle for addresses and payments bottom sheet to the "
3029 "keyboard accessory.";
3030
Fabio Tirelo315e65922018-09-05 03:35:493031const char kEnableAutofillRefreshStyleName[] =
3032 "Enable Autofill refresh style (Android)";
3033const char kEnableAutofillRefreshStyleDescription[] =
3034 "Enable modernized style for Autofill on Android";
3035
Brett Wilsonff596952017-07-14 01:06:553036const char kEnableAndroidSpellcheckerDescription[] =
3037 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:553038
Lei Tianbd5a3bf2018-02-28 19:01:163039const char kEnableCommandLineOnNonRootedName[] =
3040 "Enable command line on non-rooted devices";
3041const char kEnableCommandLineOnNoRootedDescription[] =
3042 "Enable reading command line file on non-rooted devices (DANGEROUS).";
3043
Thomas Guilbert4df60322020-05-18 20:23:323044const char kEnableUseAaudioDriverName[] = "Use AAudio Driver";
3045const char kEnableUseAaudioDriverDescription[] =
3046 "Enable the use of AAudio, if supported by the current Android version.";
3047
Lei Zhang0a318af2018-11-14 02:19:463048const char kExploreSitesName[] = "Explore websites";
3049const char kExploreSitesDescription[] =
3050 "Enables portal from new tab page to explore websites.";
3051
Jian Lif1423512021-06-21 18:03:523052const char kFeedInteractiveRefreshName[] = "Refresh feeds";
3053const char kFeedInteractiveRefreshDescription[] =
3054 "Enables refreshing feeds triggered by the users.";
3055
Reda Tawfik863175b2020-08-03 16:19:033056const char kFillingPasswordsFromAnyOriginName[] =
3057 "Filling passwords from any origin";
3058const char kFillingPasswordsFromAnyOriginDescription[] =
3059 "Enabling this flag adds a button to the password fallback sheet. The "
3060 "button opens a different sheet that allows filling a password from any "
3061 "origin.";
3062
Wenyu Fua369f1552020-05-01 00:54:453063const char kHomepagePromoCardName[] =
3064 "Enable homepage promo card on the New Tab Page";
3065const char kHomepagePromoCardDescription[] =
3066 "Enable homepage promo card that will be shown to users with partner "
3067 "configured homepage.";
3068
Jinsuk Kimfa1b7eb2021-06-30 00:04:323069const char kInstanceSwitcherName[] = "Enable instance switcher";
3070const char kInstanceSwitcherDescription[] =
3071 "Enable instance switcher dialog UI that helps users manage multiple "
3072 "instances of Chrome.";
3073
Wei-Yin Chen (陳威尹)85149442020-06-30 22:28:463074const char kInstantStartName[] = "Instant start";
Wei-Yin Chen (陳威尹)50c2f462020-05-14 07:27:423075const char kInstantStartDescription[] =
3076 "Show start surface before native library is loaded.";
3077
Jochen Eisingerd0e43f52020-01-22 17:04:323078const char kIntentBlockExternalFormRedirectsNoGestureName[] =
3079 "Block intents from form submissions without user gesture";
3080const char kIntentBlockExternalFormRedirectsNoGestureDescription[] =
3081 "Require a user gesture that triggered a form submission in order to "
3082 "allow for redirecting to an external intent.";
3083
Ian Wells34ce1482020-04-03 17:36:163084const char kInterestFeedV2Name[] = "Interest Feed v2";
3085const char kInterestFeedV2Description[] =
3086 "Show content suggestions on the New Tab Page and Start Surface using the "
3087 "new Feed Component.";
3088
Dan Harrington4043b222021-01-15 18:33:423089const char kInterestFeedV2HeartsName[] = "Interest Feed v2 Hearts";
3090const char kInterestFeedV2HeartsDescription[] = "Enable hearts on Feedv2.";
3091
Jian Lifb04af72021-04-01 21:17:173092const char kInterestFeedV2AutoplayName[] = "Interest Feed v2 Autoplay";
3093const char kInterestFeedV2AutoplayDescription[] = "Enable autoplay on Feedv2.";
3094
Vincent Boisselle482b6a12020-11-13 21:59:293095const char kInterestFeedV1ClickAndViewActionsConditionalUploadName[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443096 "Interest Feed V1 clicks/views conditional upload";
Vincent Boisselle482b6a12020-11-13 21:59:293097const char kInterestFeedV1ClickAndViewActionsConditionalUploadDescription[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443098 "Only enable the upload of clicks/views in Feed V1 after reaching "
3099 "conditions.";
3100
Vincent Boisselle482b6a12020-11-13 21:59:293101const char kInterestFeedV2ClickAndViewActionsConditionalUploadName[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443102 "Interest Feed V2 clicks/views conditional upload";
Vincent Boisselle482b6a12020-11-13 21:59:293103const char kInterestFeedV2ClickAndViewActionsConditionalUploadDescription[] =
Vincent Boisselle5c4e4d02020-10-13 23:04:443104 "Only enable the upload of clicks/views in Feed V2 after reaching "
3105 "conditions.";
3106
Aishwarya Rajesh0dd71922021-07-28 20:22:383107const char kMessagesForAndroidAdsBlockedName[] = "Ads Blocked Messages UI";
3108const char kMessagesForAndroidAdsBlockedDescription[] =
3109 "When enabled, ads blocked message will use the new Messages UI.";
3110
Aishwarya Rajesh010d43a2021-07-16 19:52:213111const char kMessagesForAndroidChromeSurveyName[] = "Chrome Survey Messages UI";
3112const char kMessagesForAndroidChromeSurveyDescription[] =
3113 "When enabled, survey prompt will use the new Messages UI.";
3114
Pavel Yatsuk358291752020-09-03 18:25:223115const char kMessagesForAndroidInfrastructureName[] = "Messages infrastructure";
3116const char kMessagesForAndroidInfrastructureDescription[] =
3117 "When enabled, will initialize Messages UI infrastructure";
Pavel Yatsukb3a7475e2021-05-10 21:20:153118
Lijin Shen92af4f72021-08-06 20:47:223119const char kMessagesForAndroidNotificationBlockedName[] =
3120 "Notification Blocked Messages UI";
3121const char kMessagesForAndroidNotificationBlockedDescription[] =
3122 "When enabled, notification blocked prompt will use the new Messages UI.";
3123
Pavel Yatsuk358291752020-09-03 18:25:223124const char kMessagesForAndroidPasswordsName[] = "Passwords Messages UI";
3125const char kMessagesForAndroidPasswordsDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153126 "When enabled, password prompt will use the new Messages UI.";
3127
Lijin Shen2d61a0a32021-07-20 23:15:523128const char kMessagesForAndroidPermissionUpdateName[] =
3129 "Permission Update Messages UI";
3130const char kMessagesForAndroidPermissionUpdateDescription[] =
3131 "When enabled, permission update prompt will use the new Messages UI.";
3132
Lijin Shenba9a6b0e2021-02-18 01:59:063133const char kMessagesForAndroidPopupBlockedName[] = "Popup Blocked Messages UI";
3134const char kMessagesForAndroidPopupBlockedDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153135 "When enabled, popup blocked prompt will use the new Messages UI.";
3136
Pavel Yatsuk3b7dfe902021-07-09 01:33:093137const char kMessagesForAndroidReaderModeName[] = "Reader Mode Messages UI";
3138const char kMessagesForAndroidReaderModeDescription[] =
3139 "When enabled, reader mode prompt will use the new Messages UI.";
3140
Lijin Shen0ccf7282021-04-26 19:38:133141const char kMessagesForAndroidSafetyTipName[] = "Safety Tip Messages UI";
3142const char kMessagesForAndroidSafetyTipDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153143 "When enabled, safety tip prompt will use the new Messages UI.";
Pavel Yatsuk358291752020-09-03 18:25:223144
Lijin Shend98ce992021-05-01 01:47:423145extern const char kMessagesForAndroidSaveCardName[] = "Save Card Messages UI";
3146extern const char kMessagesForAndroidSaveCardDescription[] =
Pavel Yatsukb3a7475e2021-05-10 21:20:153147 "When enabled, save card prompt will use the new Messages UI.";
3148
3149const char kMessagesForAndroidUpdatePasswordName[] =
3150 "Update password Messages UI";
3151const char kMessagesForAndroidUpdatePasswordDescription[] =
3152 "When enabled, update password prompt will use the new Messages UI.";
Lijin Shend98ce992021-05-01 01:47:423153
Jinsuk Kim55b5ab72021-05-17 00:11:303154const char kNewWindowAppMenuName[] = "Show a menu item 'New Window'";
3155const char kNewWindowAppMenuDescription[] =
3156 "Show a new menu item 'New Window' on tablet-sized screen when Chrome "
3157 "can open a new window and create a new instance in it.";
3158
Sinan Sahin18cc52c2019-09-12 23:07:153159const char kOfflineIndicatorV2Name[] = "Offline indicator V2";
3160const char kOfflineIndicatorV2Description[] =
3161 "Show a persistent offline indicator when offline.";
3162
Yafei Duan36b4b5b2018-08-07 00:40:033163const char kOfflinePagesLivePageSharingName[] =
3164 "Enables live page sharing of offline pages";
3165const char kOfflinePagesLivePageSharingDescription[] =
3166 "Enables to share current loaded page as offline page by saving as MHTML "
3167 "first.";
3168
bttk24a2caea2020-03-30 21:33:003169const char kAndroidPartnerCustomizationPhenotypeName[] =
3170 "Use homepage and bookmarks from partner customization";
3171const char kAndroidPartnerCustomizationPhenotypeDescription[] =
3172 "This flag loads a new configuration source of the default homepage and "
3173 "bookmarks.";
3174
Ehimare Okoyomon3b068432020-12-16 18:52:263175const char kPageInfoDiscoverabilityName[] = "Page info discoverability";
3176const char kPageInfoDiscoverabilityDescription[] =
3177 "Improve discoverability of permission controls in the page info bubble. "
3178 "After a permission decision is made, the page info icon in the address "
3179 "bar will show a brief animation.";
3180
Jordan Oroshiba244e9ff2021-02-04 22:20:393181const char kPageInfoHistoryName[] = "Page info history";
3182const char kPageInfoHistoryDescription[] =
3183 "Enable a history sub page to the page info menu, and a button to forget "
3184 "a site, removing all preferences and history.";
3185
Olesia Marukhno4d09c9072021-04-08 09:43:233186extern const char kPageInfoV2DesktopName[];
3187extern const char kPageInfoV2DesktopDescription[];
3188
Rodney S. Sampson IIbebce082021-07-28 16:30:183189extern const char kPasswordProtectionForSignedInUsersName[] =
3190 "Password Protection for Signed-In Users";
3191extern const char kPasswordProtectionForSignedInUsersDescription[] =
3192 "Enable signed-in (Google account) password protection for signed-in "
3193 "users and allows users to change their signed-in password through "
3194 "password reuse warnings on phishing or low reputation sites.";
3195
Finnur Thorarinssonaeb6b582020-01-28 17:52:463196const char kPhotoPickerVideoSupportName[] = "Photo Picker Video Support";
3197const char kPhotoPickerVideoSupportDescription[] =
3198 "Enables video files to be shown in the Photo Picker dialog";
3199
Lei Zhang507fffd2020-01-29 23:47:543200const char kProcessSharingWithDefaultSiteInstancesName[] =
Aaron Colwell5235f352019-07-25 20:10:243201 "Process sharing with default site instances";
Lei Zhang507fffd2020-01-29 23:47:543202const char kProcessSharingWithDefaultSiteInstancesDescription[] =
Aaron Colwell5235f352019-07-25 20:10:243203 "When site isolation is disabled, this mode changes how sites are lumped "
3204 "in to shared processes. For sites that do not require isolation, this "
3205 "feature groups them into a single 'default' site instance (per browsing "
3206 "instance) instead of creating unique site instances for each one. This "
3207 "enables resource savings by creating fewer processes for sites that do "
3208 "not need isolation.";
3209
Lei Zhang507fffd2020-01-29 23:47:543210const char kProcessSharingWithStrictSiteInstancesName[] =
Andrei Chulkov1a12e6d22019-07-15 11:16:073211 "Process sharing with strict site instances";
Lei Zhang507fffd2020-01-29 23:47:543212const char kProcessSharingWithStrictSiteInstancesDescription[] =
Andrei Chulkov1a12e6d22019-07-15 11:16:073213 "When site isolation is disabled, this mode changes how sites are lumped "
3214 "in to a shared process. Process selection is usually controlled with "
3215 "site instances. With strict site isolation, each site on a page gets its "
3216 "own site instance and process. With site isolation disabled and without "
3217 "this mode, all sites that share a process are put into the same site "
3218 "instance. This mode adds a third way: site instances are strictly "
3219 "separated like strict site isolation, but process selection puts multiple "
3220 "site instances in a single process.";
3221
Shakti Sahu1f8a9422020-03-12 05:50:503222const char kQueryTilesName[] = "Show query tiles";
3223const char kQueryTilesDescription[] = "Shows query tiles in Chrome";
Shakti Sahucad2a0a2020-10-23 06:42:283224const char kQueryTilesNTPName[] = "Show query tiles in NTP";
3225const char kQueryTilesNTPDescription[] = "Shows query tiles in NTP";
Shakti Sahuaaf8a8c2020-04-30 23:40:273226const char kQueryTilesOmniboxName[] = "Show query tiles in omnibox";
3227const char kQueryTilesOmniboxDescription[] = "Shows query tiles in omnibox";
Shakti Sahu8fe5edd2020-05-14 18:57:133228const char kQueryTilesSingleTierName[] = "Show only one level of query tiles";
3229const char kQueryTilesSingleTierDescription[] =
3230 "Show only one level of query tiles";
Shakti Sahudfb40992020-05-12 14:54:543231const char kQueryTilesEnableQueryEditingName[] =
3232 "Query Tiles - Enable query edit mode";
3233const char kQueryTilesEnableQueryEditingDescription[] =
3234 "When a query tile is tapped, the query text will be shown in the omnibox "
3235 "and user will have a chance to edit the text before submitting";
Min Qineac94ae2020-08-14 06:38:453236const char kQueryTilesEnableTrendingName[] =
3237 "Query Tiles - Enable trending queries";
3238const char kQueryTilesEnableTrendingDescription[] =
3239 "Allow tiles of trending queries to show up in front of curated tiles";
Min Qindb99e6f2020-04-29 06:37:263240const char kQueryTilesCountryCode[] = "Country code for getting tiles";
3241const char kQueryTilesCountryCodeDescription[] =
3242 "When query tiles are enabled, this value determines tiles for which "
3243 "country should be displayed.";
3244const char kQueryTilesCountryCodeUS[] = "US";
3245const char kQueryTilesCountryCodeIndia[] = "IN";
3246const char kQueryTilesCountryCodeBrazil[] = "BR";
3247const char kQueryTilesCountryCodeNigeria[] = "NG";
3248const char kQueryTilesCountryCodeIndonesia[] = "ID";
Hesen Zhang7bdc5ca2020-09-03 06:29:023249const char kQueryTilesLocalOrderingName[] =
3250 "Query Tiles - Enable local ordering";
3251const char kQueryTilesLocalOrderingDescription[] =
3252 "Enables ordering query tiles locally based on user interactions.";
Shakti Sahu8fe5edd2020-05-14 18:57:133253const char kQueryTilesInstantFetchName[] = "Query tile instant fetch";
Xing Liu06f2fa02020-04-30 02:45:193254const char kQueryTilesInstantFetchDescription[] =
3255 "Immediately schedule background task to fetch query tiles";
Min Qin60ae5b82021-01-07 07:07:503256const char kQueryTilesMoreTrendingName[] =
3257 "Query Tiles - more trending queries";
3258const char kQueryTilesMoreTrendingDescription[] =
3259 "Request more trending queries from the server";
Min Qinbe050b72021-06-26 01:32:393260const char kQueryTilesRankTilesName[] = "Query Tiles - rank tiles on server";
3261const char kQueryTilesRankTilesDescription[] =
3262 "Rank tiles on server based on client context";
Min Qin60ae5b82021-01-07 07:07:503263const char kQueryTilesSwapTrendingName[] =
3264 "Query Tiles - Swap trending queries";
3265const char kQueryTilesSwapTrendingDescription[] =
3266 "Swap trending queries if user didn't click on them after several "
3267 "impressions";
Min Qindb99e6f2020-04-29 06:37:263268
Caroline Risingdb7df182021-01-11 19:49:143269const char kReadLaterFlagId[] = "read-later";
3270const char kReadLaterName[] = "Reading List";
3271const char kReadLaterDescription[] =
3272 "Allow users to save tabs for later. Enables a new button and menu for "
3273 "accessing tabs saved for later.";
3274
Brett Wilsonff596952017-07-14 01:06:553275const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
3276const char kReaderModeHeuristicsDescription[] =
3277 "Determines what pages the Reader Mode infobar is shown on.";
3278const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
3279const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
3280const char kReaderModeHeuristicsAllArticles[] = "All articles";
3281const char kReaderModeHeuristicsAlwaysOff[] = "Never";
3282const char kReaderModeHeuristicsAlwaysOn[] = "Always";
3283
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:183284const char kReaderModeInCCTName[] = "Reader Mode in CCT";
3285const char kReaderModeInCCTDescription[] =
3286 "Open Reader Mode in Chrome Custom Tabs.";
3287
Xing Liub9070262021-01-07 20:52:163288const char kReadLaterReminderNotificationName[] =
3289 "Read later reminder notification";
3290const char kReadLaterReminderNotificationDescription[] =
3291 "Enables read later weekly reminder notification.";
3292
Ioana Pandele9fc19b2f2020-01-23 22:16:503293const char kRecoverFromNeverSaveAndroidName[] =
3294 "UI to recover from never save passwords on Android";
3295const char kRecoverFromNeverSaveAndroidDescription[] =
3296 "Enables showing UI which allows for easy reverting of the decision to "
3297 "never save passwords on a certain webiste";
3298
David Trainora38e60e2020-08-04 23:43:253299const char kReengagementNotificationName[] =
3300 "Enable re-engagement notifications";
3301const char kReengagementNotificationDescription[] =
3302 "Enables Chrome to use the in-product help system to decide when "
3303 "to show re-engagement notifications.";
3304
Donn Denmanc42123c2020-03-19 01:44:243305const char kRelatedSearchesName[] =
3306 "Enables an experiment for Related Searches on Android";
3307const char kRelatedSearchesDescription[] =
Donn Denman15522f42021-02-09 22:49:493308 "Enables requesting related searches suggestions. These will be requested "
3309 "but not shown unless the UI flag is also enabled.";
3310
Donn Denman6ca112ac2021-06-11 21:33:063311const char kRelatedSearchesAlternateUxName[] =
3312 "Enables showing Related Searches in an alternate user experience.";
3313const char kRelatedSearchesAlternateUxDescription[] =
3314 "Enables showing related searches with an alternative from the normal "
3315 "user experience treatment.";
3316
3317const char kRelatedSearchesInBarName[] =
3318 "Enables showing Related Searches in the peeking bar.";
3319const char kRelatedSearchesInBarDescription[] =
3320 "Enables showing related searches suggestions in a carousel in the "
3321 "peeking bar of the bottom sheet on Android.";
3322
3323const char kRelatedSearchesSimplifiedUxName[] =
3324 "Enables showing Related Searches in a simplified user experience.";
3325const char kRelatedSearchesSimplifiedUxDescription[] =
3326 "Enables showing related searches with a simplified form of the normal "
3327 "user experience treatment.";
3328
Donn Denman15522f42021-02-09 22:49:493329const char kRelatedSearchesUiName[] =
3330 "Forces showing of the Related Searches UI on Android";
3331const char kRelatedSearchesUiDescription[] =
3332 "Forces the Related Searches UI and underlying requests to be enabled "
3333 "regardless of whether they are safe or useful. This requires the Related "
3334 "Searches feature flag to also be enabled.";
Donn Denmanc42123c2020-03-19 01:44:243335
Elly Fong-Jonescbab60562021-07-20 22:14:553336const char kShareUsageRankingName[] =
3337 "Incorporate usage history into share target ranking.";
3338const char kShareUsageRankingDescription[] =
3339 "Incorporate the history of which apps were shared to when producing the "
3340 "ordered list of 3P share targets in the share hub.";
3341
Gang Wu325f03f42021-02-25 20:00:463342const char kRequestDesktopSiteForTabletsName[] =
3343 "Request desktop site for tablets on Android";
3344const char kRequestDesktopSiteForTabletsDescription[] =
3345 "Requests a desktop site, if the screen size is large enough on Android."
3346 " On tablets with small screens a mobile site will be requested by "
3347 "default.";
3348
Bettinabfcec6e2020-08-24 20:26:183349const char kSafeBrowsingClientSideDetectionAndroidName[] =
3350 "Safe Browsing Client Side Detection on Android";
3351const char kSafeBrowsingClientSideDetectionAndroidDescription[] =
3352 "Enable DOM feature collection on Safe Browsing pings on Android";
3353
Rodney S. Sampson II17e4bdf2021-07-14 02:55:443354const char kSafeBrowsingPasswordCheckIntegrationForSavedPasswordsAndroidName[] =
3355 "Safe Browsing PasswordCheck Integration for Saved Passwords Android";
3356const char
3357 kSafeBrowsingPasswordCheckIntegrationForSavedPasswordsAndroidDescription[] =
3358 "Allows Android Chrome users to change their saved passwords through "
Rodney S. Sampson IIbebce082021-07-28 16:30:183359 "password reuse warnings on phishing or low reputation sites.";
Rodney S. Sampson II17e4bdf2021-07-14 02:55:443360
Bettina Deaf4491972020-09-30 23:39:443361const char kEnhancedProtectionPromoAndroidName[] =
3362 "Enable enhanced protection promo card on Android on the New Tab Page";
3363const char kEnhancedProtectionPromoAndroidDescription[] =
3364 "Enable enhanced protection promo card for users that have not signed up "
3365 "for enhanced protection.";
3366
Varun Khaneja80712a82018-10-12 23:34:593367const char kSafeBrowsingUseLocalBlacklistsV2Name[] =
3368 "Use local Safe Browsing blacklists";
3369const char kSafeBrowsingUseLocalBlacklistsV2Description[] =
3370 "If enabled, maintain a copy of Safe Browsing blacklists in the browser "
3371 "process to check the Safe Browsing reputation of URLs without calling "
3372 "into GmsCore for every URL.";
3373
Brett Wilsonff596952017-07-14 01:06:553374const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
3375const char kSetMarketUrlForTestingDescription[] =
3376 "When enabled, sets the market URL for use in testing the update menu "
3377 "item.";
3378
Donn Denman6ca112ac2021-06-11 21:33:063379const char kSingleTouchSelectName[] =
3380 "Enables selecting plain text with a single touch.";
3381const char kSingleTouchSelectDescription[] =
3382 "Enables selecting plain text with a single touch on Android.";
3383
Alex Moshchuk07e1bb42019-03-08 04:44:083384const char kSiteIsolationForPasswordSitesName[] =
3385 "Site Isolation For Password Sites";
3386const char kSiteIsolationForPasswordSitesDescription[] =
3387 "Security mode that enables site isolation for sites based on "
3388 "password-oriented heuristics, such as a user typing in a password.";
3389
Hung Vuc394db62020-08-21 21:26:523390const char kSmartSuggestionForLargeDownloadsName[] =
3391 "Smart suggestion for large downloads";
3392const char kSmartSuggestionForLargeDownloadsDescription[] =
3393 "Smart suggestion that offers download locations for large files.";
3394
Ioana Pandele9fc19b2f2020-01-23 22:16:503395const char kStartSurfaceAndroidName[] = "Start Surface";
3396const char kStartSurfaceAndroidDescription[] =
3397 "Enable showing the start surface when launching Chrome via the "
3398 "launcher.";
3399
Sophey Dong5bbcaf42021-07-13 14:06:143400const char kSharingHubLinkToggleName[] = "Sharing Hub Link Toggle";
3401const char kSharingHubLinkToggleDescription[] =
3402 "Enable the link toggle in the Sharing Hub.";
3403
Lei Zhang0a318af2018-11-14 02:19:463404const char kStrictSiteIsolationName[] = "Strict site isolation";
3405const char kStrictSiteIsolationDescription[] =
3406 "Security mode that enables site isolation for all sites (SitePerProcess). "
3407 "In this mode, each renderer process will contain pages from at most one "
3408 "site, using out-of-process iframes when needed. "
3409 "Check chrome://process-internals to see the current isolation mode. "
3410 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
3411 "default. Here, 'Disabled' is a legacy value that actually means "
3412 "'Default,' in which case site isolation may be already enabled based on "
3413 "platform, enterprise policy, or field trial. See also "
3414 "#site-isolation-trial-opt-out for how to disable site isolation for "
3415 "testing.";
3416
Lei Zhang1a6fd01b2021-03-24 17:03:483417const char kThemeRefactorAndroidName[] = "Theme refactor on Android";
3418const char kThemeRefactorAndroidDescription[] =
Sinan Sahin9623c942021-02-03 19:28:043419 "Enables the theme refactoring on Android.";
3420
Sky Malice4cca0ff2020-10-26 18:32:503421const char kToolbarIphAndroidName[] = "Enable Toolbar IPH on Android";
3422const char kToolbarIphAndroidDescription[] =
3423 "Enables in product help bubbles on the toolbar. In particular, the home "
3424 "button and the tab switcher button.";
3425
Basia Zimirska1ae58362021-03-12 18:27:173426const char kToolbarMicIphAndroidName[] =
3427 "Enable IPH on Android on the mic in the toolbar";
3428const char kToolbarMicIphAndroidDescription[] =
3429 "Enables in product help bubble on the mic button in the toolbar.";
3430
Brett Wilsonff596952017-07-14 01:06:553431const char kUpdateMenuBadgeName[] = "Force show update menu badge";
3432const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:443433 "When enabled, a badge will be shown on the app menu button if the update "
3434 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:553435
3436const char kUpdateMenuItemCustomSummaryDescription[] =
3437 "When this flag and the force show update menu item flag are enabled, a "
3438 "custom summary string will be displayed below the update menu item.";
3439const char kUpdateMenuItemCustomSummaryName[] =
3440 "Update menu item custom summary";
3441
Tommy Nyquist3c02e592018-10-18 23:36:443442const char kUpdateMenuTypeName[] =
3443 "Forces the update menu type to a specific type";
3444const char kUpdateMenuTypeDescription[] =
3445 "When set, forces the update type to be a specific one, which impacts "
Tommy Nyquist023d505f2019-02-16 02:18:383446 "the app menu badge and menu item for updates. For Inline Update, the "
3447 "update available flag is implied. The 'Inline Update: Success' selection "
3448 "goes through the whole inline update flow to the end with a successful "
3449 "outcome. The other 'Inline Update' options go through the same flow, but "
3450 "stop at various stages, see their error type for details.";
Tommy Nyquist3c02e592018-10-18 23:36:443451const char kUpdateMenuTypeNone[] = "None";
3452const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
3453const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Tommy Nyquist023d505f2019-02-16 02:18:383454const char kUpdateMenuTypeInlineUpdateSuccess[] = "Inline Update: Success";
3455const char kUpdateMenuTypeInlineUpdateDialogCanceled[] =
3456 "Inline Update Error: Dialog Canceled";
3457const char kUpdateMenuTypeInlineUpdateDialogFailed[] =
3458 "Inline Update Error: Dialog Failed";
3459const char kUpdateMenuTypeInlineUpdateDownloadFailed[] =
3460 "Inline Update Error: Download Failed";
3461const char kUpdateMenuTypeInlineUpdateDownloadCanceled[] =
3462 "Inline Update Error: Download Canceled";
3463const char kUpdateMenuTypeInlineUpdateInstallFailed[] =
3464 "Inline Update Error: Install Failed";
Brett Wilsonff596952017-07-14 01:06:553465
Richard Knoll1fc70942021-03-11 13:34:343466const char kUseNotificationCompatBuilderName[] =
3467 "Use NotificationCompat.Builder for Web Notifications";
3468const char kUseNotificationCompatBuilderDescription[] =
3469 "This enables using NotificationCompat.Builder instead of "
3470 "Notification.Builder to create Web Notifications.";
3471
Alexander Cooperfaad86452020-10-27 19:39:023472const char kUserMediaScreenCapturingName[] = "Screen Capture API";
3473const char kUserMediaScreenCapturingDescription[] =
3474 "Allows sites to request a video stream of your screen.";
3475
Shakti Sahu2741f8d2020-08-14 03:38:363476const char kVideoTutorialsName[] = "Enable video tutorials";
3477const char kVideoTutorialsDescription[] = "Show video tutorials in Chrome";
Shakti Sahu607d9cd2020-10-22 01:10:103478const char kVideoTutorialsInstantFetchName[] =
3479 "Video tutorials fetch on startup";
3480const char kVideoTutorialsInstantFetchDescription[] =
3481 "Fetch video tutorials on startup";
Shakti Sahu2741f8d2020-08-14 03:38:363482
bttk8031f3fb2021-02-25 20:21:243483const char kAdaptiveButtonInTopToolbarName[] = "Adaptive button in top toolbar";
3484const char kAdaptiveButtonInTopToolbarDescription[] =
3485 "Enables showing an adaptive action button in the top toolbar";
bttk74acf1b2021-05-19 20:20:593486const char kAdaptiveButtonInTopToolbarCustomizationName[] =
3487 "Adaptive button in top toolbar customization";
3488const char kAdaptiveButtonInTopToolbarCustomizationDescription[] =
3489 "Enables UI for customizing the adaptive action button in the top toolbar";
bttk8031f3fb2021-02-25 20:21:243490const char kShareButtonInTopToolbarName[] = "Share button in top toolbar";
3491const char kShareButtonInTopToolbarDescription[] =
3492 "Enables UI to initiate sharing from the top toolbar. Enabling Adaptive "
3493 "Button overrides this.";
Josh Simmons68941d122020-11-11 02:49:043494const char kVoiceButtonInTopToolbarName[] = "Voice button in top toolbar";
3495const char kVoiceButtonInTopToolbarDescription[] =
bttk8031f3fb2021-02-25 20:21:243496 "Enables showing the voice search button in the top toolbar. Enabling "
3497 "Adaptive Button overrides this.";
Josh Simmons68941d122020-11-11 02:49:043498
Tommy Nyquist26ffb642019-02-20 20:31:523499const char kInlineUpdateFlowName[] = "Enable Google Play inline update flow";
3500const char kInlineUpdateFlowDescription[] =
3501 "When this flag is set, instead of taking the user to the Google Play "
3502 "Store when an update is available, the user is presented with an inline "
3503 "flow where they do not have to leave Chrome until the update is ready "
3504 "to install.";
3505
Shimi Zhang86c5f212020-11-23 20:36:513506const char kSwipeToMoveCursorName[] = "Swipe to move cursor";
3507const char kSwipeToMoveCursorDescription[] =
Shimi Zhang7a4a6002020-12-08 01:37:443508 "Allows user to use touch gestures to move the text cursor around. This "
3509 "flag will only take effect on Android 11 and above.";
Shimi Zhang86c5f212020-11-23 20:36:513510
Marc Treib12dcc972020-10-02 15:27:203511const char kWalletRequiresFirstSyncSetupCompleteName[] =
3512 "Controls whether Wallet (GPay) integration on Android requires "
3513 "first-sync-setup to be complete";
3514const char kWalletRequiresFirstSyncSetupCompleteDescription[] =
3515 "Controls whether the Wallet (GPay) integration on Android requires "
3516 "first-sync-setup to be complete. Only has an effect if "
3517 "enable-autofill-account-wallet-storage is also enabled.";
3518
Carlos Knippschild0cf5a072020-12-01 00:15:533519const char kWebFeedName[] = "Web Feed";
3520const char kWebFeedDescription[] =
3521 "Allows users to keep up with and consume web content.";
3522
Gayane Petrosyanb54b5c82021-04-27 14:18:233523const char kWebNotesStylizeName[] = "WebNotes Stylize";
3524const char kWebNotesStylizeDescription[] =
3525 "Allows users to create and share stylized webnotes.";
3526
Justin DeWitt83faf9d12020-12-17 23:18:033527const char kXsurfaceMetricsReportingName[] = "Xsurface Metrics Reporting";
3528const char kXsurfaceMetricsReportingDescription[] =
3529 "Allows metrics reporting state to be passed to Xsurface";
3530
SebSG9cfb03f2021-07-20 22:07:143531const char kWebNotesPublishName[] = "WebNotes Publish";
3532const char kWebNotesPublishDescription[] =
3533 "Allows users to save their created notes.";
3534
Brett Wilson7b44537e2017-08-18 01:38:283535// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:553536
Brett Wilson7b44537e2017-08-18 01:38:283537#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:483538
Lei Zhang1a6fd01b2021-03-24 17:03:483539const char kAllowAllSitesToInitiateMirroringName[] =
Takumi Fujimotobf466ac2020-08-18 20:55:153540 "Allow all sites to initiate mirroring";
Lei Zhang1a6fd01b2021-03-24 17:03:483541const char kAllowAllSitesToInitiateMirroringDescription[] =
Takumi Fujimotobf466ac2020-08-18 20:55:153542 "When enabled, allows all websites to request to initiate tab mirroring "
3543 "via Presentation API. Requires #cast-media-route-provider to also be "
3544 "enabled";
3545
echo linkercfa62032021-04-27 05:23:333546const char kAppManagementIntentSettingsName[] =
3547 "App Management intent settings";
3548const char kAppManagementIntentSettingsDescription[] =
3549 "Enables and displays the intent settings link handling setting for App "
3550 "Management.";
3551
evliu467c11b82020-11-17 01:29:303552const char kEnableAccessibilityLiveCaptionName[] = "Live Caption";
3553const char kEnableAccessibilityLiveCaptionDescription[] =
3554 "Enables the live caption feature which generates captions for "
Katie Df558c1a2020-04-21 20:33:593555 "media playing in Chrome. Turn the feature on in "
3556 "chrome://settings/accessibility.";
3557
Rob Schonberger539fa2e52021-03-25 05:26:593558const char kEnableAccessibilityLiveCaptionSodaName[] = "SODA for Live Caption";
3559const char kEnableAccessibilityLiveCaptionSodaDescription[] =
3560 "If Live Caption (chrome://flags/#enable-accessibility-live-captions) is "
3561 "enabled, whether or not to use SODA for live captions instead of the web "
3562 "api. Turn on the feature in chrome://settings/accessibility.";
3563
John Lee651b47672020-09-14 19:55:023564const char kCopyLinkToTextName[] = "Copy Link To Text";
3565const char kCopyLinkToTextDescription[] =
3566 "Adds an item to the context menu to allow a user to copy a link to the "
3567 "page with the selected text highlighted.";
3568
Owen Min478d330e2020-10-19 19:18:483569const char kEnterpriseRealtimeExtensionRequestName[] =
3570 "Enterprise real-time extension request report";
3571const char kEnterpriseRealtimeExtensionRequestDescription[] =
3572 "Enable the real-time extension request uploading. The feature requires "
3573 "the enterprise reporting and extension request being enabled.";
3574
John Williamse5a683b2020-07-28 03:01:483575const char kGlobalMediaControlsCastStartStopName[] =
3576 "Global media controls control Cast start/stop";
3577const char kGlobalMediaControlsCastStartStopDescription[] =
3578 "Allows global media controls to control when a Cast session is started "
3579 "or stopped instead of relying on the Cast dialog.";
3580
Richard Knoll7b293562021-07-08 08:49:063581const char kMuteNotificationSnoozeActionName[] =
3582 "Snooze action for mute notifications";
3583const char kMuteNotificationSnoozeActionDescription[] =
3584 "Adds a Snooze action to mute notifications shown while sharing a screen.";
3585
Esmael El-Moslimanyf85849d2021-01-15 02:18:103586const char kNtpCacheOneGoogleBarName[] = "Cache OneGoogleBar";
3587const char kNtpCacheOneGoogleBarDescription[] =
3588 "Enables using the OneGoogleBar cached response in chrome://new-tab-page, "
3589 "when available.";
3590
Tibor Goldschwendt16a63cb2020-08-04 19:08:153591const char kNtpModulesName[] = "NTP Modules";
3592const char kNtpModulesDescription[] = "Shows modules on the New Tab Page.";
3593
Andre Vincent60a5c5d2020-12-24 02:53:013594const char kNtpDriveModuleName[] = "NTP Drive Module";
3595const char kNtpDriveModuleDescription[] =
3596 "Shows the Google Drive module on the New Tab Page";
3597
Jeremy Selier6d7e19fe2021-07-20 17:08:343598const char kNtpPhotosModuleName[] = "NTP Photos Module";
3599const char kNtpPhotosModuleDescription[] =
3600 "Shows the Google Photos module on the New Tab Page";
3601
Esmael El-Moslimany75e33762020-10-21 18:26:433602const char kNtpRecipeTasksModuleName[] = "NTP Recipe Tasks Module";
3603const char kNtpRecipeTasksModuleDescription[] =
3604 "Shows the recipe tasks module on the New Tab Page.";
3605
Tibor Goldschwendt08c6b882020-10-01 03:09:323606const char kNtpShoppingTasksModuleName[] = "NTP Shopping Tasks Module";
3607const char kNtpShoppingTasksModuleDescription[] =
3608 "Shows the shopping tasks module on the New Tab Page.";
3609
Yue Zhangd50dd692020-12-24 01:20:023610const char kNtpChromeCartModuleName[] = "NTP Chrome Cart Module";
3611const char kNtpChromeCartModuleDescription[] =
3612 "Shows the chrome cart module on the New Tab Page.";
3613
Lydia Lam44eea142021-06-10 01:19:003614const char kNtpModulesDragAndDropName[] = "NTP Modules Drag and Drop";
3615const char kNtpModulesDragAndDropDescription[] =
3616 "Enables modules to be reordered via dragging and dropping on the "
3617 "New Tab Page.";
3618
Deanna Oei155c24c2021-06-10 22:48:193619const char kNtpModulesRedesignedName[] = "NTP Modules Redesigned";
3620const char kNtpModulesRedesignedDescription[] =
3621 "Shows the redesigned modules on the New Tab Page.";
3622
Marlon Facey03502f342021-07-14 20:58:583623const char kNtpRealboxSuggestionAnswersName[] =
3624 "NTP Realbox Suggestion Answers";
3625const char kNtpRealboxSuggestionAnswersDescription[] =
3626 "Shows suggestion answers in the NTP Realbox when enabled.";
3627
Aran Gilman766c2ad2019-04-18 00:15:413628const char kEnableReaderModeName[] = "Enable Reader Mode";
3629const char kEnableReaderModeDescription[] =
3630 "Allows viewing of simplified web pages by selecting 'Customize and "
3631 "control Chrome'>'Distill page'";
3632
Wei Li2946b352019-08-19 21:49:543633const char kHappinessTrackingSurveysForDesktopDemoName[] =
3634 "Happiness Tracking Surveys Demo";
3635const char kHappinessTrackingSurveysForDesktopDemoDescription[] =
3636 "Enable showing Happiness Tracking Surveys Demo to users on Desktop";
3637
Jon Flatley8c785582019-06-05 00:33:423638const char kKernelnextVMsName[] = "Enable VMs on experimental kernels.";
3639const char kKernelnextVMsDescription[] =
3640 "Enables VM support on devices running experimental kernel versions.";
3641
Travis Skarebcdb5ed32018-08-17 01:49:403642const char kOmniboxDriveSuggestionsName[] =
3643 "Omnibox Google Drive Document suggestions";
3644const char kOmniboxDriveSuggestionsDescriptions[] =
3645 "Display suggestions for Google Drive documents in the omnibox when Google "
3646 "is the default search engine.";
3647
Kevin Bailey9ec05532019-01-31 23:01:333648const char kOmniboxExperimentalKeywordModeName[] =
3649 "Omnibox Experimental Keyword Mode";
3650const char kOmniboxExperimentalKeywordModeDescription[] =
3651 "Enables various experimental features related to keyword mode, its "
Justin Donnellyf2703482019-10-24 21:42:153652 "suggestions and layout.";
Kevin Bailey9ec05532019-01-31 23:01:333653
Orin Jaworskiab717e6d2021-03-05 21:45:023654const char kOmniboxPedalsBatch2Name[] = "Omnibox Pedals batch 2";
3655const char kOmniboxPedalsBatch2Description[] =
Orin Jaworski3fb624e2021-05-06 17:27:403656 "Enable the second batch of Omnibox Pedals (Safety Check, etc.).";
3657
3658const char kOmniboxPedalsBatch2NonEnglishName[] =
3659 "Omnibox Pedals batch 2 for non-English locales";
3660const char kOmniboxPedalsBatch2NonEnglishDescription[] =
3661 "Enable the second batch of Omnibox Pedals (Safety Check, etc.) for "
3662 "locales other than 'en' and 'en-GB'. This flag has no effect unless "
3663 "\"Omnibox Pedals batch 2\" is also enabled.";
Orin Jaworskiab717e6d2021-03-05 21:45:023664
Orin Jaworskib09ea1bb2021-06-24 22:01:193665const char kOmniboxPedalsBatch3Name[] = "Omnibox Pedals batch 3";
3666const char kOmniboxPedalsBatch3Description[] =
3667 "Enable the third batch of Omnibox Pedals.";
3668
Justin Donnellyf2472062021-04-02 17:00:233669const char kOmniboxPedalsDefaultIconColoredName[] =
3670 "Omnibox Pedals Default Icon Colored";
3671const char kOmniboxPedalsDefaultIconColoredDescription[] =
3672 "Enable a color version of the default icon shown on the button for most "
3673 "omnibox Pedals (aka Chrome Actions).";
3674
Orin Jaworskif7cb0f112021-08-06 22:51:383675const char kOmniboxPedalsTranslationConsoleName[] =
3676 "Omnibox Pedals Translation Console";
3677const char kOmniboxPedalsTranslationConsoleDescription[] =
3678 "Use translation strings sourced from Translation Console "
3679 "for triggering some omnibox Pedals (aka Chrome Actions).";
3680
Justin Donnelly5726ecf2020-08-14 00:53:523681const char kOmniboxKeywordSearchButtonName[] = "Omnibox keyword search button";
3682const char kOmniboxKeywordSearchButtonDescription[] =
3683 "Enable the omnibox keyword search button which offers a way to search "
Orin Jaworski35e654fd2021-05-04 21:04:403684 "on specific sites from the omnibox.";
Justin Donnelly5726ecf2020-08-14 00:53:523685
Kevin Bailey7d918b92019-05-02 16:00:143686const char kOmniboxShortBookmarkSuggestionsName[] =
3687 "Omnibox short bookmark suggestions";
3688const char kOmniboxShortBookmarkSuggestionsDescription[] =
3689 "Match very short input words to beginning of words in bookmark "
3690 "suggestions.";
3691
Caroline Risingdb7df182021-01-11 19:49:143692const char kReadLaterFlagId[] = "read-later";
3693const char kReadLaterName[] = "Reading List";
3694const char kReadLaterDescription[] =
3695 "Click on the Bookmark icon or right click on a tab to add tabs to a "
3696 "reading list.";
3697
Chris Thompson657d5c82020-10-08 23:04:103698const char kSCTAuditingName[] = "SCT auditing";
3699const char kSCTAuditingDescription[] =
3700 "Enables SCT auditing for users who have opted in to Safe Browsing "
3701 "Extended Reporting.";
3702
Brett Wilson7b44537e2017-08-18 01:38:283703#endif // !defined(OS_ANDROID)
3704
3705// Windows ---------------------------------------------------------------------
3706
3707#if defined(OS_WIN)
3708
David Bienvenud0ddda32018-11-01 16:59:163709const char kCalculateNativeWinOcclusionName[] =
3710 "Calculate window occlusion on Windows";
3711const char kCalculateNativeWinOcclusionDescription[] =
3712 "Calculate window occlusion on Windows will be used in the future "
3713 "to throttle and potentially unload foreground tabs in occluded windows";
3714
Rainhard Findling4bdbaa1d2020-10-26 20:40:303715const char kChromeCleanupScanCompletedNotificationName[] =
3716 "Chrome cleanup scan completion notification";
3717const char kChromeCleanupScanCompletedNotificationDescription[] =
3718 "Allows you to be notified when a Chrome cleaner scan you started "
3719 "completes.";
3720
Frank Liberato754d14f2019-01-30 23:31:173721const char kD3D11VideoDecoderName[] = "D3D11 Video Decoder";
3722const char kD3D11VideoDecoderDescription[] =
3723 "Enables D3D11VideoDecoder for hardware accelerated video decoding.";
3724
Lei Zhang1a6fd01b2021-03-24 17:03:483725const char kEnableIncognitoShortcutOnDesktopName[] =
Mariam Alidbe57662020-08-06 12:28:353726 "Enable Incognito Desktop Shortcut";
Lei Zhang1a6fd01b2021-03-24 17:03:483727const char kEnableIncognitoShortcutOnDesktopDescription[] =
Mariam Alidbe57662020-08-06 12:28:353728 "Enables users to create a desktop shortcut for incognito mode.";
3729
Armando Miragliad2e6fc9e2020-03-06 09:23:093730const char kEnableMediaFoundationVideoCaptureName[] =
3731 "MediaFoundation Video Capture";
3732const char kEnableMediaFoundationVideoCaptureDescription[] =
3733 "Enable/Disable the usage of MediaFoundation for video capture. Fall back "
3734 "to DirectShow if disabled.";
3735
henrikac66d1012021-01-19 13:59:183736const char kRawAudioCaptureName[] = "Raw audio capture";
3737const char kRawAudioCaptureDescription[] =
3738 "Enable/Disable the usage of WASAPI raw audio capture. When enabled, the "
3739 "audio stream is a 'raw' stream that bypasses all signal processing except "
3740 "for endpoint specific, always-on processing in the Audio Processing Object"
3741 " (APO), driver, and hardware.";
3742
Lei Zhangc05af2a2020-05-15 20:54:053743const char kRunVideoCaptureServiceInBrowserProcessName[] =
3744 "Run video capture service in browser";
3745const char kRunVideoCaptureServiceInBrowserProcessDescription[] =
3746 "Run the video capture service in the browser process.";
Brett Wilson7b44537e2017-08-18 01:38:283747
Rainhard Findling29e729d2020-06-05 08:07:343748const char kSafetyCheckChromeCleanerChildName[] =
3749 "Chrome Cleanup Tool in safety check";
3750const char kSafetyCheckChromeCleanerChildDescription[] =
3751 "Enables the Chrome Cleanup Tool child in safety check.";
3752
Olli Etuaho122321192018-09-07 10:15:293753const char kUseAngleName[] = "Choose ANGLE graphics backend";
3754const char kUseAngleDescription[] =
3755 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
3756 "computers by default. Using the OpenGL driver as the graphics backend may "
3757 "result in higher performance in some graphics-heavy applications, "
3758 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
3759 "video playback.";
3760
3761const char kUseAngleDefault[] = "Default";
3762const char kUseAngleGL[] = "OpenGL";
3763const char kUseAngleD3D11[] = "D3D11";
3764const char kUseAngleD3D9[] = "D3D9";
Nathan Zabriskie70c046f2019-10-16 01:19:023765const char kUseAngleD3D11on12[] = "D3D11on12";
Olli Etuaho122321192018-09-07 10:15:293766
Brett Wilson7b44537e2017-08-18 01:38:283767const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
3768const char kUseWinrtMidiApiDescription[] =
3769 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
3770 "later).";
3771
Daniel Hosseinian159cb3d2020-03-13 03:02:023772#if BUILDFLAG(ENABLE_PRINTING)
Lei Zhangc05af2a2020-05-15 20:54:053773const char kGdiTextPrinting[] = "GDI Text Printing";
3774const char kGdiTextPrintingDescription[] =
3775 "Use GDI to print text as simply text";
3776
Lei Zhanga6a8a492020-05-14 03:55:033777const char kPrintWithReducedRasterizationName[] =
3778 "Print with reduced rasterization";
3779const char kPrintWithReducedRasterizationDescription[] =
3780 "When using GDI printing, avoid rasterization if possible.";
3781
Alan Screen574ffd662019-11-21 22:38:533782const char kUseXpsForPrintingName[] = "Use XPS for printing";
3783const char kUseXpsForPrintingDescription[] =
3784 "When enabled, use XPS printing API instead of the GDI print API.";
3785
Alan Screen49388112019-12-13 23:34:213786const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF";
3787const char kUseXpsForPrintingFromPdfDescription[] =
3788 "When enabled, use XPS printing API instead of the GDI print API when "
3789 "printing PDF documents.";
Daniel Hosseinian159cb3d2020-03-13 03:02:023790#endif // BUILDFLAG(ENABLE_PRINTING)
Alan Screen49388112019-12-13 23:34:213791
Tom5efa14f12021-06-30 00:37:323792const char kWin10TabSearchCaptionButtonName[] =
3793 "Windows 10 Tab Search Caption Button";
3794const char kWin10TabSearchCaptionButtonDescription[] =
3795 "Move the Tab Search entrypoint besides the window caption buttons on "
3796 "Windows 10 platforms.";
3797
Brett Wilson7b44537e2017-08-18 01:38:283798#endif // defined(OS_WIN)
3799
3800// Mac -------------------------------------------------------------------------
3801
Avi Drissman2e458df2020-07-29 16:24:313802#if defined(OS_MAC)
Brett Wilson7b44537e2017-08-18 01:38:283803
Daniel Hosseinian159cb3d2020-03-13 03:02:023804#if BUILDFLAG(ENABLE_PRINTING)
3805const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend";
3806const char kCupsIppPrintingBackendDescription[] =
3807 "Use the CUPS IPP printing backend instead of the original CUPS backend "
3808 "that calls the PPD API.";
3809#endif // BUILDFLAG(ENABLE_PRINTING)
3810
Owen Min3bfb32232020-10-28 17:52:153811const char kEnterpriseReportingApiKeychainRecreationName[] =
3812 "Enterprise reporting API keychain item recreation.";
3813const char kEnterpriseReportingApiKeychainRecreationDescription[] =
3814 "Allow enterprise reporting private API to recreate keychain item on Mac. "
3815 "The recreated item can be accessed by other binaries.";
3816
Sidney San Martín678fd4112019-03-30 00:13:053817const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar";
3818const char kImmersiveFullscreenDescription[] =
3819 "Automatically hide and show the toolbar in fullscreen.";
3820
Greg Kerrf46f31872019-08-08 20:22:443821const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox";
3822const char kMacSyscallSandboxDescription[] =
3823 "Controls whether the macOS sandbox filters syscalls.";
3824
Christopher Cameron93855ff2019-10-10 19:26:543825const char kMetalName[] = "Metal";
3826const char kMetalDescription[] =
3827 "Use Metal instead of OpenGL for rasterization (if out-of-process "
3828 "rasterization is enabled) and display (if the Skia renderer is enabled)";
3829
Elly Fong-Jonesbe71ce62021-04-07 15:25:033830const char kScreenTimeName[] = "Screen Time";
3831const char kScreenTimeDescription[] =
3832 "Integrate with the macOS Screen Time system.";
3833
Brett Wilson7b44537e2017-08-18 01:38:283834#endif
3835
3836// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:343837
Yuta Hijikata235fc62b2020-12-08 03:48:323838#if BUILDFLAG(IS_CHROMEOS_ASH)
vabr0215a8e2017-03-28 12:47:343839
Anastasiia N3967787c2020-11-17 15:05:203840const char kAccountManagementFlowsV2Name[] =
3841 "Enable redesign of account management flows";
3842const char kAccountManagementFlowsV2Description[] =
3843 "Enables redesign of account management flows and Account Manager page in "
3844 "Settings. "
3845 "See go/betterAM";
3846
Brett Wilson7b44537e2017-08-18 01:38:283847const char kAcceleratedMjpegDecodeName[] =
3848 "Hardware-accelerated mjpeg decode for captured frame";
3849const char kAcceleratedMjpegDecodeDescription[] =
3850 "Enable hardware-accelerated mjpeg decode for captured frame where "
3851 "available.";
vabr0215a8e2017-03-28 12:47:343852
Zentaro Kavanagh65b3e112019-09-03 16:18:233853const char kAllowDisableMouseAccelerationName[] =
3854 "Allow disabling mouse acceleration";
3855const char kAllowDisableMouseAccelerationDescription[] =
3856 "Shows a setting to disable mouse acceleration.";
3857
Vyshu9ea9e182021-02-04 17:53:063858const char kAllowRepeatedUpdatesName[] =
3859 "Continue checking for updates before reboot and after initial update.";
3860const char kAllowRepeatedUpdatesDescription[] =
3861 "Continues checking to see if there is a more recent update, even if user"
3862 "has not rebooted to apply the previous update.";
3863
Kyle Horimoto734f0752020-03-20 20:46:543864const char kAllowScrollSettingsName[] =
3865 "Allow changes to scroll acceleration/sensitivity for mice/touchpads.";
3866const char kAllowScrollSettingsDescription[] =
3867 "Shows settings to enable/disable scroll acceleration and to adjust the "
3868 "sensitivity for scrolling.";
3869
Alex Newcomer2a59139f2021-05-27 19:02:113870extern const char kAppListBubbleName[] =
3871 "Productivity experiment: App Launcher";
3872extern const char kAppListBubbleDescription[] =
3873 "To evaluate an enhanced Launcher experience that aims to improve app "
3874 "workflows by optimizing access to apps, app content, and app actions.";
3875
Maggie Cai062ab3b2020-09-17 13:23:263876const char kAppServiceExternalProtocolName[] = "App Service External Protocol";
3877const char kAppServiceExternalProtocolDescription[] =
3878 "Use the App Service to provide data for external protocol dialog.";
3879
Ryo Hashimoto8f4b30ced2019-04-08 12:14:193880const char kArcCustomTabsExperimentName[] =
3881 "Enable Custom Tabs experiment for ARC";
3882const char kArcCustomTabsExperimentDescription[] =
3883 "Allow Android apps to use Custom Tabs."
3884 "This feature only works on the Canary and Dev channels.";
3885
Alexander Bolodurin4e0a465c2021-03-31 23:14:033886const char kArcDocumentsProviderUnknownSizeName[] =
3887 "Enable ARC DocumentsProvider unknown file size handling";
3888const char kArcDocumentsProviderUnknownSizeDescription[] =
3889 "Allow opening DocumentsProvider files where size is not reported.";
3890
Satoshi Niwa8b1d5282018-10-24 04:53:033891const char kArcFilePickerExperimentName[] =
3892 "Enable file picker experiment for ARC";
3893const char kArcFilePickerExperimentDescription[] =
3894 "Enables using Chrome OS file picker in ARC.";
3895
Tetsui Ohkubo54018862021-06-18 11:13:353896const char kArcImageCopyPasteCompatName[] =
3897 "Enable image copy & paste compatibility mode for ARC";
3898const char kArcImageCopyPasteCompatDescription[] =
3899 "Allows pasting of images to Android apps through commitContent API and "
3900 "share intent.";
3901
Tetsui Ohkubo4c6d7f42021-07-07 16:47:373902const char kArcKeyboardShortcutHelperIntegrationName[] =
3903 "Enable keyboard shortcut helper integration for ARC";
3904const char kArcKeyboardShortcutHelperIntegrationDescription[] =
3905 "Shows keyboard shortcuts from Android apps in Chrome OS Shortcut Viewer";
3906
Lev Rumyantsev6eddc802019-08-27 19:41:213907const char kArcNativeBridgeToggleName[] =
3908 "Toggle between native bridge implementations for ARC";
3909const char kArcNativeBridgeToggleDescription[] =
3910 "Toggle between native bridge implementations for ARC.";
Lev Rumyantsev7a8544312017-08-18 19:26:513911
Josh Horwichc50d5b22020-07-07 22:32:183912const char kArcNativeBridge64BitSupportExperimentName[] =
3913 "Enable experimental 64-bit native bridge support for ARC";
3914const char kArcNativeBridge64BitSupportExperimentDescription[] =
3915 "Enable experimental 64-bit native bridge support for ARC where available.";
3916
Yusuke Sato4717d1782021-03-12 23:27:173917const char kArcRtVcpuDualCoreName[] =
3918 "Enable ARC real time vcpu on a device with 2 logical cores online.";
3919const char kArcRtVcpuDualCoreDesc[] =
3920 "Enable ARC real time vcpu on a device with 2 logical cores online to "
3921 "reduce media playback glitch.";
3922
3923const char kArcRtVcpuQuadCoreName[] =
3924 "Enable ARC real time vcpu on a device with 3+ logical cores online.";
3925const char kArcRtVcpuQuadCoreDesc[] =
3926 "Enable ARC real time vcpu on a device with 3+ logical cores online to "
3927 "reduce media playback glitch.";
3928
Yury Khmele4649fc2020-12-01 22:59:153929const char kArcUseHighMemoryDalvikProfileName[] =
3930 "Enable ARC high-memory dalvik profile";
3931const char kArcUseHighMemoryDalvikProfileDesc[] =
3932 "Allow Android to use high-memory dalvik profile when applicable for "
3933 "high-memory devices.";
3934
Tim Sergeant37be4a82021-06-11 07:35:233935const char kArcWebAppShareName[] = "Enable sharing to Web Apps from ARC";
3936const char kArcWebAppShareDescription[] =
3937 "Allow Android apps to send shared text and files to web apps. When "
3938 "disabled, web apps may still appear in share sheets, but will not "
3939 "receive any shared content.";
3940
Mustafa Camurcu32cfc592021-02-10 19:00:403941const char kArcEnableUsapName[] =
3942 "Enable ARC Unspecialized Application Processes";
3943const char kArcEnableUsapDesc[] =
3944 "Enable ARC Unspecialized Application Processes when applicable for "
3945 "high-memory devices.";
3946
Eliot Courtneye87a9c32018-11-20 03:33:023947const char kAshEnablePipRoundedCornersName[] =
3948 "Enable Picture-in-Picture rounded corners.";
3949const char kAshEnablePipRoundedCornersDescription[] =
3950 "Enable rounded corners on the Picture-in-Picture window.";
3951
Andrew Moylan2db11cd2019-05-22 14:25:153952const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
3953const char kAshEnableUnifiedDesktopDescription[] =
3954 "Enable unified desktop mode which allows a window to span multiple "
3955 "displays.";
3956
Claudius van der Merwecf95ee62021-06-25 00:07:363957const char kBluetoothAdvertisementMonitoringName[] =
3958 "Bluetooth Advertisement Monitoring";
3959const char kBluetoothAdvertisementMonitoringDescription[] =
3960 "Advertisement monitoring allows applications to register low energy "
3961 "scanners that filter low energy advertisements in a power-efficient "
3962 "manner.";
3963
Ryan Hansberry7c6c2b22019-06-18 21:07:143964const char kBluetoothAggressiveAppearanceFilterName[] =
3965 "Aggressive Bluetooth device filtering";
3966const char kBluetoothAggressiveAppearanceFilterDescription[] =
3967 "Enables a more aggressive Bluetooth filter in the UI to hide devices that "
3968 "likely cannot be connected to.";
3969
Michael Sun1b15a302020-04-07 02:57:293970const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size";
3971const char kBluetoothFixA2dpPacketSizeDescription[] =
3972 "Fixes Bluetooth A2DP packet size to a smaller default value to improve "
3973 "audio quality and may fix audio stutter.";
3974
Kyle Horimoto168d45b2021-07-13 01:51:293975const char kBluetoothRevampName[] = "Bluetooth Revamp";
3976const char kBluetoothRevampDescription[] =
3977 "Enables the Chrome OS Bluetooth Revamp, which updates Bluetooth system UI "
3978 "and related infrastructure.";
3979
Hsin-Yu Chao6f2cfd6a2020-11-16 04:37:343980const char kBluetoothWbsDogfoodName[] = "Bluetooth WBS dogfood";
3981const char kBluetoothWbsDogfoodDescription[] =
3982 "Enables Bluetooth wideband speech mic as default audio option. "
3983 "Note that flipping this flag makes no difference on most of the "
3984 "Chrome OS models, because Bluetooth WBS is either unsupported "
3985 "or fully launched. Only on the few models that Bluetooth WBS is "
3986 "still stablizing this flag will take effect.";
3987
Jefferson Choi Bernardc84c6502021-06-22 17:35:143988const char kButtonARCNetworkDiagnosticsName[] = "ARC Network Tests Button";
3989const char kButtonARCNetworkDiagnosticsDescription[] =
3990 "Enables the display of a button on the ARC Provisioning failure dialog "
3991 "that opens the connectivity section of the diagnostics app.";
3992
Jiaming Chenga8091322021-08-05 04:30:453993const char kCalendarViewName[] =
3994 "Productivity experiment: Monthly Calendar View";
3995const char kCalendarViewDescription[] =
3996 "Show Monthly Calendar View with Google Calendar events to increase "
3997 "productivity by helping users view their schedules more quickly.";
3998
Wei Lee4fe87182020-12-22 09:32:443999const char kPreferConstantFrameRateName[] = "Prefer Constant Frame Rate";
4000const char kPreferConstantFrameRateDescription[] =
4001 "Enables this flag to prefer using constant frame rate for camera when "
4002 "streaming";
4003
mojahsu3144bf32021-05-26 10:14:464004const char kForceControlFaceAeName[] = "Force control face AE";
4005const char kForceControlFaceAeDescription[] =
4006 "Control this flag to force enable or disable face AE for camera";
mojahsu11ea38ae2021-05-06 03:30:114007
tby989a5b5ad2021-04-16 06:42:204008const char kCategoricalSearchName[] = "Launcher Categorical Search";
4009const char kCategoricalSearchDescription[] =
4010 "Launcher search results grouped by categories";
4011
Chad Duffinc0e2310e2021-06-23 00:13:574012const char kCellularAllowPerNetworkRoamingName[] =
4013 "Allow per-networking roaming";
4014const char kCellularAllowPerNetworkRoamingDescription[] =
4015 "Allows per-network cellular roaming configuration when cellular roaming "
4016 "is not disabled for the device through enterprise policy.";
4017
Regan Hsub9816d52021-05-26 15:03:484018const char kCellularForbidAttachApnName[] = "Forbid Use Attach APN";
4019const char kCellularForbidAttachApnDescription[] =
4020 "If enabled, the value of |kCellularUseAttachApn| should have no effect "
4021 "and the LTE attach APN configuration will not be sent to the modem. This "
4022 "flag exists because the |kCellularUseAttachApn| flag can be enabled "
4023 "by command-line arguments via board overlays which takes precedence over "
4024 "finch configs, which may be needed to turn off the Attach APN feature.";
4025
Vincent Palatinfd080f82020-12-21 19:47:064026const char kCellularUseAttachApnName[] = "Cellular use Attach APN";
4027const char kCellularUseAttachApnDescription[] =
4028 "Use the mobile operator database to set explicitly an Attach APN "
4029 "for the LTE connections rather than letting the modem decide which "
4030 "attach APN to use or retrieve it from the network";
4031
Azeem Arshad43b191b2021-01-15 23:59:564032const char kCellularUseExternalEuiccName[] = "Use external Euicc";
4033const char kCellularUseExternalEuiccDescription[] =
4034 "When enabled Cellular Setup and Settings UI will use the first available "
4035 "external Euicc.";
4036
Yulun Wu1e355132020-02-11 20:12:224037const char kContextualNudgesName[] =
4038 "Contextual nudges for user gesture education";
4039const char kContextualNudgesDescription[] =
4040 "Enables contextual nudges, periodically showing the user a label "
4041 "explaining how to interact with a particular UI element using gestures.";
4042
Joel Hockey71ebbe62021-03-28 06:24:044043const char kCroshSWAName[] = "Crosh System Web App";
4044const char kCroshSWADescription[] =
4045 "When enabled, crosh (Chrome OS Shell) will run as a tabbed System Web App "
4046 "rather than a normal browser tab.";
4047
mlcui378ba4662021-02-16 00:13:344048const char kCrosLanguageSettingsUpdate2Name[] = "Language Settings Update 2";
4049const char kCrosLanguageSettingsUpdate2Description[] =
4050 "Enables the second language settings update. Requires "
4051 "#enable-cros-language-settings-update to be enabled.";
4052
Jing Wang859fb1a2020-11-27 00:26:484053const char kCrosOnDeviceGrammarCheckName[] = "On-device Grammar Check";
4054const char kCrosOnDeviceGrammarCheckDescription[] =
4055 "Enable new on-device grammar check component.";
4056
Brett Wilson7b44537e2017-08-18 01:38:284057const char kCrosRegionsModeName[] = "Cros-regions load mode";
4058const char kCrosRegionsModeDescription[] =
4059 "This flag controls cros-regions load mode";
4060const char kCrosRegionsModeDefault[] = "Default";
4061const char kCrosRegionsModeOverride[] = "Override VPD values.";
4062const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:344063
David Munro3528c5c2020-01-13 02:44:374064const char kCrostiniDiskResizingName[] = "Allow resizing Crostini disks";
4065const char kCrostiniDiskResizingDescription[] =
4066 "Use preallocated user-resizeable disks for Crostini instead of sparse "
4067 "automatically sized disks.";
4068
Fergus Dall9d0e95a2021-07-30 08:10:114069const char kCrostiniContainerInstallName[] =
4070 "Debian version for new Crostini containers";
4071const char kCrostiniContainerInstallDescription[] =
4072 "New Crostini containers will use this debian version";
David Munro3728ef72019-10-30 07:22:154073
Ben Wells7238dd02019-05-02 08:20:324074const char kCrostiniGpuSupportName[] = "Crostini GPU Support";
4075const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support.";
4076
David Munro7d1a6712021-07-12 06:52:264077const char kCrostiniUseDlcName[] = "Crostini Use DLC";
4078const char kCrostiniUseDlcDescription[] =
4079 "Download the termina VM using the new DLC service instead of the old "
4080 "component updater.";
4081
David Munro9fce777c2020-10-07 03:55:544082const char kCrostiniResetLxdDbName[] = "Crostini Reset LXD DB on launch";
4083const char kCrostiniResetLxdDbDescription[] =
4084 "Recreates the LXD database every time we launch it";
4085
Pilar Molina Lopezd5b787512020-11-19 00:21:484086const char kDisableBufferBWCompressionName[] =
4087 "Disable buffer bandwidth compression";
4088const char kDisableBufferBWCompressionDescription[] =
4089 "Disable bandwidth compression when allocating buffers";
4090
Ricky Liang8df43372020-07-09 09:41:094091const char kDisableCameraFrameRotationAtSourceName[] =
4092 "Disable camera frame rotation at source";
4093const char kDisableCameraFrameRotationAtSourceDescription[] =
4094 "Disable camera frame rotation to the upright display orientation in the "
4095 "video capture device";
4096
Thanh Nguyena4c933442019-05-11 03:43:554097const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()";
4098const char kDisableCancelAllTouchesDescription[] =
4099 "If enabled, a canceled touch will not force all other touches to be "
4100 "canceled.";
4101
Pavol Marko07c02b72020-11-19 12:04:534102const char kDisableIdleSocketsCloseOnMemoryPressureName[] =
4103 "Disable closing idle sockets on memory pressure";
4104const char kDisableIdleSocketsCloseOnMemoryPressureDescription[] =
4105 "If enabled, idle sockets will not be closed when chrome detects memory "
4106 "pressure. This applies to web pages only and not to internal requests.";
4107
Daniele Castagna893d822e2019-03-08 21:37:114108const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
4109const char kDisableExplicitDmaFencesDescription[] =
4110 "Always rely on implicit syncrhonization between GPU and display "
4111 "controller instead of using dma-fences explcitily when available.";
4112
Bailey Berro01f09742020-07-21 05:40:594113const char kDisplayAlignmentAssistanceName[] =
4114 "Enable Display Alignment Assistance";
4115const char kDisplayAlignmentAssistanceDescription[] =
4116 "Show indicators on shared edges of the displays when user is "
4117 "attempting to move their mouse over to another display. Show preview "
4118 "indicators when the user is moving a display in display layouts.";
4119
Su Hong Koobbd04e02020-04-04 00:16:064120const char kDisplayIdentificationName[] =
4121 "Enable display identification highlight";
4122const char kDisplayIdentificationDescription[] =
4123 "Shows a blue highlight around the edges of the display that is selected "
4124 "in the Displays Settings page. Only shown when the Displays Settings page "
4125 "is open.";
4126
Jon Mann8e448142021-07-29 19:31:304127const char kFastPairName[] = "Enable Fast Pair";
4128const char kFastPairDescription[] =
4129 "Enables Google Fast Pair service which uses BLE to discover supported "
4130 "nearby Bluetooth devices and surfaces a notification for quick pairing. "
4131 "Use along with #bluetooth-advertisement-monitoring to allow background "
4132 "scanning.";
4133
Miguel Casas8821b0982020-07-02 12:28:494134const char kUseHDRTransferFunctionName[] =
4135 "Monitor/Display HDR transfer function";
4136const char kUseHDRTransferFunctionDescription[] =
4137 "Allows using the HDR transfer functions of any connected monitor that "
4138 "supports it";
Miguel Casasf15028b12019-10-23 12:52:324139
Giovanni Ortuño Urquidi3e5e2072019-09-25 06:50:204140const char kDisableOfficeEditingComponentAppName[] =
4141 "Disable Office Editing for Docs, Sheets & Slides";
4142const char kDisableOfficeEditingComponentAppDescription[] =
4143 "Disables Office Editing for Docs, Sheets & Slides component app so "
4144 "handlers won't be registered, making it possible to install another "
4145 "version for testing.";
4146
Ahmed Fakhry4f567e692018-10-16 15:51:084147const char kDoubleTapToZoomInTabletModeName[] =
4148 "Double-tap to zoom in tablet mode";
4149const char kDoubleTapToZoomInTabletModeDescription[] =
4150 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
4151 "page.";
4152
Yulun Wub88a9202021-07-13 19:44:564153const char kQuickSettingsPWANotificationsName[] =
4154 "Enable setting of PWA notification permissions in quick settings ";
4155const char kQuickSettingsPWANotificationsDescription[] =
4156 "Replace website notification permissions with PWA notification "
4157 "permissions in the quick settings menu. Website notification permissions "
4158 "settings will be migrated to the lacros - chrome browser.";
4159
Austin Tankiang3d356862020-10-01 06:26:154160const char kDriveFsBidirectionalNativeMessagingName[] =
4161 "Enable bidirectional native messaging for DriveFS";
4162const char kDriveFsBidirectionalNativeMessagingDescription[] =
4163 "Enable enhanced native messaging host to communicate with DriveFS.";
4164
Andrew Moylan2db11cd2019-05-22 14:25:154165const char kEnableAppDataSearchName[] = "Enable app data search in launcher";
4166const char kEnableAppDataSearchDescription[] =
4167 "Allow launcher search to access data available through Firebase App "
4168 "Indexing";
4169
Per Åhgrend439e1e2021-05-16 13:49:554170const char kCrOSEnforceSystemAecName[] = "Enforce using the system AEC in CrAS";
4171const char kCrOSEnforceSystemAecDescription[] =
4172 "Enforces using the system variant in CrAS of the AEC";
4173
4174const char kCrOSEnforceSystemAecAgcName[] =
4175 "Enforce using the system AEC and AGC in CrAS";
4176const char kCrOSEnforceSystemAecAgcDescription[] =
4177 "Enforces using the system variants in CrAS of the AEC and AGC.";
4178
4179const char kCrOSEnforceSystemAecNsName[] =
4180 "Enforce using the system AEC and NS in CrAS";
4181const char kCrOSEnforceSystemAecNsDescription[] =
4182 "Enforces using the system variants in CrAS of the AEC and NS.";
4183
4184const char kCrOSEnforceSystemAecNsAgcName[] =
4185 "Enforce using the system AEC, NS and AGC in CrAS";
4186const char kCrOSEnforceSystemAecNsAgcDescription[] =
4187 "Enforces using the system variants in CrAS of the AEC, NS and AGC.";
4188
Andrew Moylan2db11cd2019-05-22 14:25:154189const char kEnableAppReinstallZeroStateName[] =
4190 "Enable Zero State App Reinstall Suggestions.";
4191const char kEnableAppReinstallZeroStateDescription[] =
4192 "Enable Zero State App Reinstall Suggestions feature in launcher, which "
4193 "will show app reinstall recommendations at end of zero state list.";
4194
Matthew Mourgoscf22b4b2019-03-06 23:46:394195const char kEnableAppGridGhostName[] = "App Grid Ghosting";
4196const char kEnableAppGridGhostDescription[] =
4197 "Enables ghosting during an item drag in launcher.";
4198
Lei Zhang0a318af2018-11-14 02:19:464199const char kEnableArcUnifiedAudioFocusName[] =
Becca Hughes34415e82018-10-05 18:47:374200 "Enable unified audio focus on ARC";
Lei Zhang0a318af2018-11-14 02:19:464201const char kEnableArcUnifiedAudioFocusDescription[] =
Becca Hughes34415e82018-10-05 18:47:374202 "If audio focus is enabled in Chrome then this will delegate audio focus "
4203 "control in Android apps to Chrome.";
4204
Yue Liebaa9952018-12-07 21:41:264205const char kEnableAssistantAppSupportName[] = "Enable Assistant App Support";
4206const char kEnableAssistantAppSupportDescription[] =
4207 "Enable the Assistant App Support feature";
4208
Xiaohui Chenb523747b2019-03-14 23:38:324209const char kEnableAssistantLauncherIntegrationName[] =
4210 "Assistant & Launcher integration";
4211const char kEnableAssistantLauncherIntegrationDescription[] =
4212 "Combine Launcher search with the power of Assistant to provide the most "
4213 "useful answer for each query. Requires Assistant to be enabled.";
4214
Xiao Yangf59e6932019-07-19 00:18:134215const char kEnableAssistantRoutinesName[] = "Assistant Routines";
4216const char kEnableAssistantRoutinesDescription[] = "Enable Assistant Routines.";
4217
Yue Lic30931472020-08-13 02:30:354218const char kEnableAutoSelectName[] = "Auto Select";
4219const char kEnableAutoSelectDescription[] =
4220 "Automatically select the word under cursor on contextual menu click.";
4221
Alex Newcomere5a362c2019-05-02 19:31:354222const char kEnableBackgroundBlurName[] = "Enable background blur.";
4223const char kEnableBackgroundBlurDescription[] =
minchab2ded5ce2019-09-06 18:32:284224 "Enables background blur for the Launcher, Shelf, Unified System Tray etc.";
Alex Newcomere5a362c2019-05-02 19:31:354225
Alex Newcomer46bfe142020-07-10 20:28:564226const char kEnhancedClipboardName[] =
4227 "Productivity Experiment: Enable Enhanced Clipboard";
4228const char kEnhancedClipboardDescription[] =
4229 "Enables an experimental clipboard history which aims to reduce context "
4230 "switching. After copying to the clipboard, press search + v to show the "
4231 "history. Selecting something from the menu will result in a paste to the "
4232 "active window.";
4233
Lei Zhang1a6fd01b2021-03-24 17:03:484234const char kEnhancedClipboardNudgeSessionResetName[] =
Matthew Mourgosdfd6d852020-10-22 03:15:284235 "Enable resetting enhanced clipboard nudge data";
Lei Zhang1a6fd01b2021-03-24 17:03:484236const char kEnhancedClipboardNudgeSessionResetDescription[] =
Matthew Mourgosdfd6d852020-10-22 03:15:284237 "When enabled, this will reset the clipboard nudge shown data on every new "
4238 "user session, allowing the nudge to be shown again.";
4239
Ana Salazarde4d2692021-06-16 01:37:064240const char kEnhancedClipboardScreenshotNudgeName[] =
4241 "Enable clipboard history screenshot nudge";
4242const char kEnhancedClipboardScreenshotNudgeDescription[] =
4243 "When enabled, the keyboard shortcut for clipboard history will show in "
4244 "the screenshot notification banner in clamshell mode.";
4245
Charles Zhao9d1b8def2019-10-16 22:32:394246const char kEnableCrOSActionRecorderName[] = "Enable CrOS action recorder";
4247const char kEnableCrOSActionRecorderDescription[] =
4248 "When enabled, each app launching, file opening, setting change, and url "
4249 "visiting will be logged locally into an encrypted file. Should not be "
Charles Zhaoafe9e8d2019-10-17 00:34:344250 "enabled. Be aware that hash option only provides a thin layer of privacy.";
Charles Zhao9d1b8def2019-10-16 22:32:394251
Garrick Evans0387e712021-04-28 05:24:324252const char kEnableDnsProxyName[] = "Enable DNS proxy service";
4253const char kEnableDnsProxyDescription[] =
4254 "When enabled, standard DNS queries will be proxied through the system "
4255 "service";
4256
Garrick Evans1d407ca92021-05-10 04:04:304257const char kDnsProxyEnableDOHName[] =
4258 "Enable DNS-over-HTTPS in the DNS proxy service";
4259const char kDnsProxyEnableDOHDescription[] =
4260 "When enabled, the DNS proxy will perform DNS-over-HTTPS in accordance "
4261 "with the Chrome OS SecureDNS settings.";
4262
James Hawkinsa9fefa8d2020-10-08 00:24:034263const char kEnableHostnameSettingName[] = "Enable setting the device hostname";
4264const char kEnableHostnameSettingDescription[] =
4265 "Enables the ability to set the Chrome OS hostname, the name of the device "
4266 "that is exposed to the local network";
4267
Tim Sergeant9aeecd92021-05-24 07:29:074268const char kEnableGeneratedWebApksName[] = "Generated WebAPKs";
4269const char kEnableGeneratedWebApksDescription[] =
4270 "When enabled, generates and installs a WebAPK inside ARC for each "
4271 "installed and eligible PWA.";
4272
Harry Cuttscfe6d934f2019-06-05 21:45:554273const char kEnableGesturePropertiesDBusServiceName[] =
4274 "Enable gesture properties D-Bus service";
4275const char kEnableGesturePropertiesDBusServiceDescription[] =
4276 "Enable a D-Bus service for accessing gesture properties, which are used "
4277 "to configure input devices.";
4278
Xiaohui Chenf4283f32018-11-26 20:02:504279const char kEnableGoogleAssistantDspName[] =
4280 "Enable Google Assistant with hardware-based hotword";
4281const char kEnableGoogleAssistantDspDescription[] =
4282 "Enable an experimental feature that uses hardware-based hotword detection "
4283 "for Assistant. Only a limited number of devices have this type of "
4284 "hardware support.";
4285
Xiaohui Chenc3baca42018-11-30 19:29:374286const char kEnableGoogleAssistantStereoInputName[] =
4287 "Enable Google Assistant with stereo audio input";
4288const char kEnableGoogleAssistantStereoInputDescription[] =
4289 "Enable an experimental feature that uses stereo audio input for hotword "
4290 "and voice to text detection in Google Assistant.";
4291
Xiaohui Chen3f3a5bf12019-09-28 00:29:454292const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC";
4293const char kEnableGoogleAssistantAecDescription[] =
4294 "Enable an experimental feature that removes local feedback from audio "
4295 "input to help hotword and ASR when background audio is playing.";
4296
Rob Schonberger11bb2812019-07-31 23:41:004297const char kEnableHeuristicStylusPalmRejectionName[] =
4298 "Enable Heuristic for Stylus/Palm Rejection.";
4299const char kEnableHeuristicStylusPalmRejectionDescription[] =
4300 "Enable additional heuristic palm rejection logic when interacting with "
4301 "stylus usage. Not intended for all devices.";
4302
Harry Cutts8b445de2021-06-10 02:25:554303const char kEnableInputEventLoggingName[] = "Enable input event logging";
4304const char kEnableInputEventLoggingDescription[] =
4305 "Enable detailed logging of input events from touchscreens, touchpads, and "
4306 "mice. These events include the locations of all touches as well as "
4307 "relative pointer movements, and so may disclose sensitive data. They "
4308 "will be included in feedback reports and system logs, so DO NOT ENTER "
4309 "SENSITIVE INFORMATION with this flag enabled.";
4310
Harry Cuttsf74356712021-05-14 02:13:384311const char kEnableInputInDiagnosticsAppName[] =
4312 "Enable input device cards in the Diagnostics App";
4313const char kEnableInputInDiagnosticsAppDescription[] =
4314 "Enable input device cards in the Diagnostics App";
4315
Anton Swifton81ecf0c2021-05-04 02:28:514316const char kEnableInputNoiseCancellationUiName[] =
4317 "Enable Input Noise Cancellation UI.";
4318const char kEnableInputNoiseCancellationUiDescription[] =
4319 "Enable toggling input noise cancellation through the Quick Settings. By "
4320 "default, this flag is disabled.";
4321
[email protected]b2bed9d2020-12-09 23:49:424322const char kEnableLauncherSearchNormalizationName[] =
4323 "Enable normalization of launcher search results";
4324const char kEnableLauncherSearchNormalizationDescription[] =
4325 "Enable normalization of scores from different providers to the "
4326 "launcher.";
4327
Ana Salazar270fed42020-06-11 14:44:404328const char kNewDragSpecInLauncherName[] = "Enable Launcher App Paging";
4329const char kNewDragSpecInLauncherDescription[] =
4330 "Show visual affordance of launcher app pages and enable page previews "
4331 "when dragging apps.";
4332
Rob Schonbergerc258473f2019-11-08 05:09:354333const char kEnableNeuralStylusPalmRejectionName[] =
4334 "Enable Neural Palm Detection";
4335const char kEnableNeuralStylusPalmRejectionDescription[] =
4336 "Experimental: Enable Neural Palm detection. Not compatible with all "
4337 "devices.";
4338
Xiangdong Kongec5a0772021-05-03 21:53:014339const char kEnableOsFeedbackName[] = "Enable updated Feedback Tool App";
4340const char kEnableOsFeedbackDescription[] =
4341 "Enable the feedback tool with new UX design that helps users mitigate "
4342 "the issues while writing feedback and makes the UI easier to use.";
4343
Mitsuru Oshimadaf54572020-04-07 14:47:594344const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping";
4345const char kEnableNewShortcutMappingDescription[] =
4346 "Enables experimental new shortcut mapping";
4347
Rob Schonbergerba235782020-03-11 05:01:144348const char kEnablePalmOnMaxTouchMajorName[] =
4349 "Enable Palm when Touch is Maximum";
4350const char kEnablePalmOnMaxTouchMajorDescription[] =
4351 "Experimental: Enable Palm detection when the touchscreen reports max "
4352 "size. Not compatible with all devices.";
4353
4354const char kEnablePalmOnToolTypePalmName[] =
4355 "Enable Palm when Tool Type is Palm";
4356const char kEnablePalmOnToolTypePalmDescription[] =
4357 "Experimental: Enable palm detection when touchscreen reports "
4358 "TOOL_TYPE_PALM. Not compatible with all devices.";
4359
Rob Schonbergere0a8e3c2020-04-21 03:04:394360const char kEnablePalmSuppressionName[] =
4361 "Enable Palm Suppression with Stylus.";
4362const char kEnablePalmSuppressionDescription[] =
4363 "If enabled, suppresses touch when a stylus is on a touchscreen.";
4364
[email protected]683123b92019-12-10 03:52:224365const char kEnableQuickAnswersName[] = "Enable Quick Answers";
4366const char kEnableQuickAnswersDescription[] =
4367 "Enable the Quick Answers feature";
4368
Yue Li19ffe542020-10-28 02:52:284369const char kEnableQuickAnswersOnEditableTextName[] =
4370 "Enable Quick Answers on editable text";
4371const char kEnableQuickAnswersOnEditableTextDescription[] =
4372 "Enable Quick Answers on editable text.";
4373
Li Linb89713c2020-05-13 00:20:374374const char kEnableQuickAnswersTextAnnotatorName[] =
4375 "Enable Quick Answers text annotator";
4376const char kEnableQuickAnswersTextAnnotatorDescription[] =
4377 "Enable Quick Answers text annotator.";
4378
Yue Li869ba962020-09-19 00:27:134379const char kEnableQuickAnswersTranslationName[] =
4380 "Enable Quick Answers translation";
4381const char kEnableQuickAnswersTranslationDescription[] =
4382 "Enable Quick Answers translation.";
4383
Yue Li8468585fe2020-09-30 20:46:134384const char kEnableQuickAnswersTranslationCloudAPIName[] =
4385 "Enable Quick Answers translation using the Cloud API";
4386const char kEnableQuickAnswersTranslationCloudAPIDescription[] =
4387 "Enable Quick Answers translation using the Cloud API.";
4388
Yue Li354425c2021-06-15 00:26:044389const char kEnableQuickAnswersV2Name[] = "Enable Quick Answers V2 features";
4390const char kEnableQuickAnswersV2Description[] =
4391 "Enable Quick Answers V2 features.";
4392
Brian Geffon134e77c52019-07-30 21:49:584393const char kTrimOnMemoryPressureName[] = "Trim Working Set on memory pressure";
4394const char kTrimOnMemoryPressureDescription[] =
4395 "Trim Working Set periodically on memory pressure";
4396
paulzhchen26343e92021-02-09 05:43:054397const char kEcheSWAName[] = "Enable Eche App SWA.";
4398const char kEcheSWADescription[] = "Enable the SWA version of the Eche.";
4399
paulzhchen7ee2f68e2021-04-22 23:06:464400const char kEcheSWAResizingName[] = "Allow resizing Eche App.";
4401const char kEcheSWAResizingDescription[] =
4402 "Enable a naive resize for the Eche window";
4403
Michael Checo9d122652021-03-18 15:04:344404const char kEnableNetworkingInDiagnosticsAppName[] =
4405 "Enable networking cards in the Diagnostics App";
4406const char kEnableNetworkingInDiagnosticsAppDescription[] =
4407 "Enable networking cards in the Diagnostics App";
4408
Pranav Batra96b8eba2021-07-02 21:17:214409const char kEnableOAuthIppName[] =
4410 "Enable OAuth when printing via the IPP protocol";
4411const char kEnableOAuthIppDescription[] =
4412 "Enable OAuth when printing via the IPP protocol";
4413
Eleni Dimitriadis86ff60602019-12-23 05:17:094414const char kEnableSuggestedFilesName[] = "Enable Suggested Files";
4415const char kEnableSuggestedFilesDescription[] =
Rachel Wongce88ffdd2021-08-10 04:32:564416 "Enable the Suggested Files feature in Launcher, which will show local "
4417 "file suggestions in the suggestion chips when the launcher is opened.";
4418
4419const char kEnableSuggestedDriveFilesName[] = "Enable Suggested Drive Files";
4420const char kEnableSuggestedDriveFilesDescription[] =
4421 "Enable the Suggested Drive Files feature in Launcher, which will show "
4422 "Drive file suggestions in the suggestion chips when the launcher is "
4423 "opened.";
Eleni Dimitriadis86ff60602019-12-23 05:17:094424
Jason Zhang60f02d502021-07-21 03:30:004425const char kESimPolicyName[] = "Enable ESim Policy";
4426const char kESimPolicyDescription[] =
4427 "Enable the support for policy controlled provisioning and configuration "
4428 "of eSIM cellular networks";
4429
Prabir Pradhan67677e82020-09-11 18:26:524430const char kExoGamepadVibrationName[] = "Gamepad Vibration for Exo Clients";
4431const char kExoGamepadVibrationDescription[] =
4432 "Allow Exo clients like Android to request vibration events for gamepads "
4433 "that support it.";
4434
Nicholas Hollingum4cbff262020-09-08 04:02:154435const char kExoOrdinalMotionName[] =
4436 "Raw (unaccelerated) motion for Linux applications";
4437const char kExoOrdinalMotionDescription[] =
4438 "Send unaccelerated values as raw motion events to linux applications.";
4439
Nicholas Hollingume9a6744f2019-10-03 05:57:294440const char kExoPointerLockName[] = "Pointer lock for Linux applications";
4441const char kExoPointerLockDescription[] =
4442 "Allow Linux applications to request a pointer lock, i.e. exclusive use of "
4443 "the mouse pointer.";
4444
Ben Sylvester Millar410c4d1c2021-01-29 00:19:424445const char kExoLockNotificationName[] = "Notification bubble for UI lock";
4446const char kExoLockNotificationDescription[] =
4447 "Show a notification bubble once an application has switched to "
4448 "non-immersive fullscreen mode or obtained pointer lock.";
4449
Akihiro Ota1519aad2021-02-01 21:36:524450const char kExperimentalAccessibilityDictationExtensionName[] =
4451 "Experimental accessibility dictation extension.";
4452const char kExperimentalAccessibilityDictationExtensionDescription[] =
4453 "Enables the JavaScript dictation extension.";
4454
Akihiro Ota59f4a212021-02-02 02:11:474455const char kExperimentalAccessibilityDictationOfflineName[] =
4456 "Experimental accessibility dictation offline.";
4457const char kExperimentalAccessibilityDictationOfflineDescription[] =
4458 "Enables offline speech recognition for the accessibility dictation "
4459 "feature.";
4460
Rose Garcia26e2ae32019-06-25 00:57:544461const char kExperimentalAccessibilitySwitchAccessTextName[] =
4462 "Enable enhanced Switch Access text input.";
4463const char kExperimentalAccessibilitySwitchAccessTextDescription[] =
4464 "Enable experimental or in-progress Switch Access features for improved "
4465 "text input";
4466
Anastasia Helfinsteinb4efe142020-09-25 05:15:424467const char kSwitchAccessPointScanningName[] =
4468 "Enable point scanning with Switch Access.";
4469const char kSwitchAccessPointScanningDescription[] =
4470 "Enable an in-process feature to select points onscreen with Switch "
4471 "Access.";
4472
Anastasia Helfinstein20349cf2021-02-04 01:25:214473const char kExperimentalAccessibilitySwitchAccessSetupGuideName[] =
4474 "Enable setup guide for Switch Access.";
4475const char kExperimentalAccessibilitySwitchAccessSetupGuideDescription[] =
4476 "Enable a setup guide to walk through the steps of initially configuring "
4477 "Switch Access.";
4478
Josiah Kdc82fb152021-01-12 20:30:394479const char kMagnifierPanningImprovementsName[] =
4480 "Enable panning improvements in magnifier";
4481const char kMagnifierPanningImprovementsDescription[] =
4482 "Enable feature which adds additional mouse and keyboard panning "
4483 "functionality in Magnifier.";
4484
Josiah K376e0352021-02-17 23:44:494485const char kMagnifierContinuousMouseFollowingModeSettingName[] =
4486 "Enable ability to choose continuous mouse following mode in Magnifier "
4487 "settings";
4488const char kMagnifierContinuousMouseFollowingModeSettingDescription[] =
4489 "Enable feature which adds ability to choose new continuous mouse "
4490 "following mode in Magnifier settings.";
4491
Nigel Taoa564f9a2021-07-11 14:54:154492const char kFilesArchivemountName[] = "Archivemount in Files App";
4493const char kFilesArchivemountDescription[] =
4494 "Enable mounting various archive formats in File Manager.";
4495
Ben Reich03d296b2021-07-13 04:38:054496const char kFilesBannerFrameworkName[] =
4497 "Updated Banner framework in Files app";
4498const char kFilesBannerFrameworkDescription[] =
4499 "Enable the updated branner framework in Files app";
4500
Omid Tourzanbf2a0dcf2020-09-10 08:53:554501const char kFilesSinglePartitionFormatName[] =
4502 "Enable Partitioning of Removable Disks.";
4503const char kFilesSinglePartitionFormatDescription[] =
4504 "Enable partitioning of removable disks into single partition.";
4505
Josh Simmons7888f7d2020-08-07 04:47:524506const char kFilesSWAName[] = "Enable Files App SWA.";
4507const char kFilesSWADescription[] =
4508 "Enable the SWA version of the file manager.";
4509
Joel Hockeya4865f1f2020-10-09 00:41:274510const char kFilesTrashName[] = "Enable Files Trash.";
4511const char kFilesTrashDescription[] =
4512 "Enable trash for My files volume in Files App.";
4513
François Degros0caa0d22020-08-13 02:22:324514const char kFilesZipMountName[] = "New ZIP mounting in Files App";
4515const char kFilesZipMountDescription[] =
4516 "Enable new ZIP archive mounting system in File Manager.";
4517
4518const char kFilesZipPackName[] = "New ZIP packing in Files App";
4519const char kFilesZipPackDescription[] =
4520 "Enable new ZIP archive creation system in File Manager.";
4521
4522const char kFilesZipUnpackName[] = "New ZIP unpacking in Files App";
4523const char kFilesZipUnpackDescription[] =
4524 "Enable new ZIP archive extraction system in File Manager.";
François Degros1e581402020-04-28 08:29:594525
Ricky Liang3bd2754b52020-10-07 02:50:324526const char kForceSpectreVariant2MitigationName[] =
4527 "Force Spectre variant 2 mitigagtion";
4528const char kForceSpectreVariant2MitigationDescription[] =
4529 "Forces Spectre variant 2 mitigation. Setting this to enabled will "
4530 "override #spectre-variant2-mitigation and any system-level setting that "
4531 "disables Spectre variant 2 mitigation.";
4532
Lei Zhang1a6fd01b2021-03-24 17:03:484533const char kFiltersInRecentsName[] = "Enable filters in Recents";
4534const char kFiltersInRecentsDescription[] =
Naoki Fukino46529392020-08-11 11:46:094535 "Enable file-type filters (Audio, Images, Videos) in Files App Recents "
4536 "view.";
4537
Daniel Anderssona36c4bc2021-06-04 22:09:434538const char kFocusFollowsCursorName[] = "Focus follows cursor";
4539const char kFocusFollowsCursorDescription[] =
4540 "Enable window focusing by moving the cursor.";
4541
yjliu8f78e8b2020-07-22 20:51:214542const char kFrameThrottleFpsName[] = "Set frame throttling fps.";
4543const char kFrameThrottleFpsDescription[] =
4544 "Set the throttle fps for compositor frame submission.";
4545const char kFrameThrottleFpsDefault[] = "Default";
4546const char kFrameThrottleFps5[] = "5 fps";
4547const char kFrameThrottleFps10[] = "10 fps";
4548const char kFrameThrottleFps15[] = "15 fps";
4549const char kFrameThrottleFps20[] = "20 fps";
4550const char kFrameThrottleFps25[] = "25 fps";
4551const char kFrameThrottleFps30[] = "30 fps";
4552
Nancy Wangd74f1752020-11-10 01:16:324553const char kFullRestoreName[] = "Full restore";
4554const char kFullRestoreDescription[] = "Chrome OS full restore";
4555
Noel Gordonc736eb32021-07-30 05:53:164556const char kFuseBoxName[] = "Enable ChromeOS FuseBox service";
4557const char kFuseBoxDescription[] = "ChromeOS FuseBox service.";
4558
Callistus4352dba2021-06-10 11:37:454559const char kHelpAppBackgroundPageName[] = "Help App Background Page";
4560const char kHelpAppBackgroundPageDescription[] =
4561 "Enables the Background page in the help app. The background page is used "
4562 "to initialize the Help App Launcher search index and show the Discover "
4563 "tab notification.";
4564
Callistus8e47f8b2021-04-14 02:02:304565const char kHelpAppDiscoverTabName[] = "Help App Discover Tab";
4566const char kHelpAppDiscoverTabDescription[] =
4567 "Enables the Discover tab in the help app. Even if the feature is enabled, "
4568 "internal app logic might decide not to show the tab.";
4569
Zufeng Wang9d3362eb822021-03-11 00:23:294570const char kHelpAppLauncherSearchName[] = "Help App launcher search";
4571const char kHelpAppLauncherSearchDescription[] =
4572 "Enables showing search results from the help app in the launcher.";
4573
Zufeng Wang884a7902020-06-30 05:37:334574const char kHelpAppSearchServiceIntegrationName[] =
4575 "Help App search service integration";
4576const char kHelpAppSearchServiceIntegrationDescription[] =
4577 "Enables the integration between the help app and the local search"
4578 " service. Includes using the search service for in app search.";
4579
Becca Hughes71465532019-04-12 19:18:554580const char kHideArcMediaNotificationsName[] = "Hide ARC media notifications";
4581const char kHideArcMediaNotificationsDescription[] =
4582 "Hides media notifications for ARC apps. Requires "
4583 "#enable-media-session-notifications to be enabled.";
4584
David Black863ff422021-07-02 20:05:304585const char kHoldingSpaceInProgressDownloadsIntegrationName[] =
4586 "Enable showing in-progress downloads in Tote.";
4587const char kHoldingSpaceInProgressDownloadsIntegrationDescription[] =
4588 "Show in-progress download functionality in Tote to increase productivity "
4589 "by giving users one place to go to monitor and access their downloads.";
4590
Lei Zhangc05af2a2020-05-15 20:54:054591const char kImeAssistAutocorrectName[] = "Enable assistive autocorrect";
4592const char kImeAssistAutocorrectDescription[] =
John Palmer3ace5a72020-03-11 05:57:514593 "Enable assistive auto-correct features for native IME";
4594
Curtis McMullana1900062021-06-28 01:13:254595const char kImeAssistEmojiEnhancedName[] = "Enable enhanced assistive emojis";
4596const char kImeAssistEmojiEnhancedDescription[] =
4597 "Enable enhanced assistive emoji suggestion features for native IME";
4598
Curtis McMullan35800d22020-11-26 06:45:194599const char kImeAssistMultiWordName[] =
4600 "Enable assistive multi word suggestions";
4601const char kImeAssistMultiWordDescription[] =
4602 "Enable assistive multi word suggestions for native IME";
4603
Curtis McMullan6f6526d2021-07-09 04:22:454604const char kImeAssistMultiWordExpandedName[] =
4605 "Enable expanded assistive multi word suggestions";
4606const char kImeAssistMultiWordExpandedDescription[] =
4607 "Enable expanded assistive multi word suggestions for native IME";
4608
Jing Wang1c45fe392020-03-05 01:10:234609const char kImeAssistPersonalInfoName[] = "Enable assistive personal info";
4610const char kImeAssistPersonalInfoDescription[] =
4611 "Enable auto-complete suggestions on personal infomation for native IME.";
4612
My Nguyenc5f0def2020-03-29 23:22:154613const char kImeEmojiSuggestAdditionName[] =
4614 "Enable emoji suggestion (addition)";
4615const char kImeEmojiSuggestAdditionDescription[] =
4616 "Enable emoji suggestion as addition to the text written for native IME.";
4617
Yingbing Wu09cd99a2020-02-14 09:14:244618const char kImeMozcProtoName[] = "Enable protobuf on Japanese IME";
4619const char kImeMozcProtoDescription[] =
4620 "Enable Japanese IME to use protobuf as interactive message format to "
4621 "replace JSON";
4622
Leo Zhang770ee9a2020-11-03 01:06:594623const char kImeServiceDecoderName[] = "ChromeOS IME Service Decoder";
4624const char kImeServiceDecoderDescription[] =
4625 "Controls whether ChromeOS system IME works with the NaCl decoders or "
4626 "the decoders loaded in the IME service.";
4627
John Palmerd6d1d0f2020-12-07 03:02:054628const char kImeSystemEmojiPickerName[] = "System emoji picker";
4629const char kImeSystemEmojiPickerDescription[] =
4630 "Controls whether a System emoji picker, or the virtual keyboard is used "
4631 "for inserting emoji.";
4632
John Palmer77ce9282021-07-15 09:23:094633const char kImeSystemEmojiPickerClipboardName[] =
4634 "System emoji picker clipboard";
4635const char kImeSystemEmojiPickerClipboardDescription[] =
4636 "Emoji picker will insert emoji into clipboard if they can't be inserted "
4637 "into a text field";
John Palmer90a32212021-08-03 08:49:134638const char kImeStylusHandwritingName[] = "Stylus Handwriting";
4639const char kImeStylusHandwritingDescription[] =
4640 "Enable VK UI for stylus in text fields";
John Palmer77ce9282021-07-15 09:23:094641
John Palmer2530f912021-05-24 05:06:304642const char kCrosLanguageSettingsImeOptionsInSettingsName[] =
4643 "Ime settings in settings";
4644const char kCrosLanguageSettingsImeOptionsInSettingsDescription[] =
4645 "Adds IME settings to the settings menu";
4646
Maggie Caib388c3f2020-06-12 03:39:424647const char kIntentHandlingSharingName[] = "Intent handling for sharing";
4648const char kIntentHandlingSharingDescription[] =
4649 "Support sharing in Chrome OS intent handling.";
4650
Maggie Cai05324142020-05-07 00:41:494651const char kIntentPickerPWAPersistenceName[] = "Intent picker PWA Persistence";
4652const char kIntentPickerPWAPersistenceDescription[] =
4653 "Allow user to always open with PWA in intent picker.";
4654
Nick Czajka61982be2020-12-09 23:52:334655const char kKeyboardBasedDisplayArrangementInSettingsName[] =
4656 "Keyboard-based Display Arrangement in Settings";
4657const char kKeyboardBasedDisplayArrangementInSettingsDescription[] =
4658 "Enables using arrow keys to rearrange displays on Settings > Device > "
4659 "Displays page.";
4660
Erik Chend7082ec2021-06-25 01:04:124661const char kLacrosAvailabilityIgnoreName[] =
4662 "Ignore lacros-availability policy";
4663const char kLacrosAvailabilityIgnoreDescription[] =
4664 "Makes the lacros-availability policy have no effect. Instead Lacros "
4665 "availability will be controlled by experiment and/or user flags.";
4666
Hidehiko Abe9f190d12021-03-18 12:55:204667const char kLacrosPrimaryName[] = "Lacros as the primary browser";
4668const char kLacrosPrimaryDescription[] =
4669 "Use Lacros-chrome as the primary web browser on Chrome OS. "
4670 "This flag is ignored if Lacros support is disabled.";
4671
Erik Chen601a5d62020-12-07 20:05:124672const char kLacrosStabilityName[] = "Lacros stability";
4673const char kLacrosStabilityDescription[] = "Frequency of Lacros updates.";
4674
Erik Chen71bc6ad2021-05-11 18:06:404675const char kLacrosStabilityLeastStableDescription[] = "Daily updates";
4676const char kLacrosStabilityLessStableDescription[] = "Weekly updates";
4677const char kLacrosStabilityMoreStableDescription[] = "Monthly updates";
Erik Chen601a5d62020-12-07 20:05:124678
Jae Hoon Kim94e1cfd2021-05-19 20:52:524679const char kLacrosSelectionName[] = "Lacros selection";
4680const char kLacrosSelectionDescription[] =
4681 "Choosing between rootfs or stateful Lacros.";
4682
4683const char kLacrosSelectionRootfsDescription[] = "Rootfs";
4684const char kLacrosSelectionStatefulDescription[] = "Stateful";
4685
James Cook2fe5ca7b2020-10-09 02:54:174686const char kLacrosSupportName[] = "Lacros support";
James Cookac2473be2020-04-28 00:54:184687const char kLacrosSupportDescription[] =
Yuta Hijikata45214bc2021-04-27 16:36:384688 "Support for the experimental lacros-chrome browser. Please note that the "
4689 "first restart can take some time to setup lacros-chrome. Please DO NOT "
4690 "attempt to turn off the device during the restart.";
James Cookac2473be2020-04-28 00:54:184691
Rachel Wong0210c452021-04-29 03:40:024692const char kLauncherQueryHighlightingName[] = "Launcher query highlighting";
4693const char kLauncherQueryHighlightingDescription[] =
4694 "Enables highlighting occurrences of the search query in launcher search "
4695 "result titles.";
4696
Ahmed Fakhry039882f2020-06-16 21:56:214697const char kLimitShelfItemsToActiveDeskName[] =
4698 "Limit Shelf items to active desk";
4699const char kLimitShelfItemsToActiveDeskDescription[] =
4700 "Limits items on the shelf to the ones associated with windows on the "
4701 "active desk";
4702
Ahmed Fakhry15d707e2019-02-22 23:54:214703const char kListAllDisplayModesName[] = "List all display modes";
4704const char kListAllDisplayModesDescription[] =
4705 "Enables listing all external displays' modes in the display settings.";
4706
Gil Dekel11cbdfb2020-12-23 21:43:274707const char kEnableHardwareMirrorModeName[] = "Enable Hardware Mirror Mode";
4708const char kEnableHardwareMirrorModeDescription[] =
4709 "Enables hardware support when multiple displays are set to mirror mode.";
4710
Becca Hughesca82d2d2019-08-05 20:03:224711const char kLockScreenMediaControlsName[] = "Lock screen media controls";
4712const char kLockScreenMediaControlsDescription[] =
4713 "Enable media controls on the lock screen.";
4714
Megumi Hattori5a0d4182018-03-06 11:09:504715const char kLockScreenNotificationName[] = "Lock screen notification";
4716const char kLockScreenNotificationDescription[] =
4717 "Enable notifications on the lock screen.";
4718
Patti7a088712021-04-14 08:23:464719const char kMediaAppHandlesPdfName[] = "Media App Handles PDF";
4720const char kMediaAppHandlesPdfDescription[] =
4721 "Enables opening PDF files by default in chrome://media-app";
David Lei5f7c097e2020-11-19 19:32:044722
Mitch McDermottd6afe582021-07-23 03:49:374723const char kMediaAppMultiWindowName[] = "Media App Multi Window";
4724const char kMediaAppMultiWindowDescription[] =
4725 "Enables opening multiple instances of chrome://media-app";
4726
Steven Bennetts66bc3542020-06-25 23:05:284727const char kMeteredShowToggleName[] = "Show Metered Toggle";
4728const char kMeteredShowToggleDescription[] =
4729 "Shows a Metered toggle in the Network settings UI for WiFI and Cellular. "
4730 "The toggle allows users to set whether a network should be considered "
4731 "metered for purposes of bandwith usage (e.g. for automatic updates).";
4732
Toni Barzic5cf7da92021-05-19 21:07:404733const char kMicrophoneMuteNotificationsName[] = "Microphone Mute Notifications";
4734const char kMicrophoneMuteNotificationsDescription[] =
4735 "Enables notifications that are shown when an app tries to use microphone "
4736 "while audio input is muted.";
4737
4738const char kMicrophoneMuteSwitchDeviceName[] = "Microphone Mute Switch Device";
4739const char kMicrophoneMuteSwitchDeviceDescription[] =
4740 "Support for detecting the state of hardware microphone mute toggle. Only "
4741 "effective on devices that have a microphone mute toggle. Enabling the "
4742 "flag does not affect the toggle functionality, it only affects how the "
4743 "System UI handles the mute toggle state.";
4744
Bao-Duy Tranaa329d62020-11-27 05:40:584745const char kMultilingualTypingName[] = "Multilingual typing on CrOS";
4746const char kMultilingualTypingDescription[] =
4747 "Enables support for multilingual assistive typing on Chrome OS.";
4748
James Vecoref926b132021-07-10 00:08:264749const char kNearbyKeepAliveFixName[] = "Nearby Keep Alive Fix";
4750const char kNearbyKeepAliveFixDescription[] =
4751 "Enables custom KeepAlive interval and timeout for Nearby Connections and "
4752 "makes Nearby Connections WebRTC KeepAlive less chatty to help with "
4753 "battery life.";
4754
Josh Nohle928fdb62020-11-03 18:54:234755const char kNearbySharingName[] = "Nearby Sharing";
4756const char kNearbySharingDescription[] =
4757 "Enables Nearby Sharing for sharing content between devices.";
4758
Michael Hansen12166ea2021-06-25 18:17:354759const char kNearbySharingBackgroundScanningName[] =
4760 "Nearby Sharing Background Scanning";
4761const char kNearbySharingBackgroundScanningDescription[] =
4762 "Enables background scanning for Nearby Share, allowing devices to "
4763 "persistently scan and present a notification when a nearby device is "
4764 "attempting to share.";
4765
Josh Nohle3b48d0ad2020-11-03 19:18:574766const char kNearbySharingDeviceContactsName[] =
4767 "Nearby Sharing Device Contacts";
4768const char kNearbySharingDeviceContactsDescription[] =
4769 "Enables use of device contacts in Nearby Share.";
4770
Josh Nohle928fdb62020-11-03 18:54:234771const char kNearbySharingWebRtcName[] = "Nearby Sharing WebRTC";
4772const char kNearbySharingWebRtcDescription[] =
4773 "Enables use of WebRTC in Nearby Share.";
4774
Daniel Andersson9bfdde42021-07-15 20:59:144775const char kPerformantSplitViewResizing[] = "Performant Split View Resizing";
4776const char kPerformantSplitViewResizingDescription[] =
4777 "If enabled, windows may be moved instead of scaled when resizing split "
4778 "view in tablet mode.";
4779
Jason Sun1d947912021-06-21 16:54:234780const char kPhoneHubCameraRollName[] = "Camera Roll in Phone Hub";
4781const char kPhoneHubCameraRollDescription[] =
4782 "Enables the Camera Roll feature in Phone Hub, which allows users to "
4783 "access recent photos and videos taken on a connected Android device.";
4784
paulzhchenaae52d702021-07-12 23:47:074785const char kPhoneHubRecentAppsName[] = "Recent Apps in Phone Hub";
4786const char kPhoneHubRecentAppsDescription[] =
4787 "Enables the Recent Apps feature in Phone Hub, which allows users to "
4788 "relaunch a recently streamed app.";
4789
Bailey Berro2c1797702019-09-30 18:49:424790const char kReduceDisplayNotificationsName[] = "Reduce display notifications";
4791const char kReduceDisplayNotificationsDescription[] =
4792 "If enabled, notifications for display rotation, display removed, display "
4793 "mirroring, and display extending will be suppressed.";
4794
Rachel Carpenter57c8523c2020-09-23 01:11:224795const char kReleaseNotesNotificationAllChannelsName[] =
4796 "Release Notes Notification All Channels";
4797const char kReleaseNotesNotificationAllChannelsDescription[] =
4798 "Enables the release notes notification for all Chrome OS channels";
4799
Shengsong Tan22e55432021-03-25 05:03:124800const char kArcGhostWindowName[] = "Enable ARC ghost window";
4801const char kArcGhostWindowDescription[] =
4802 "Enables the pre-load app window for "
4803 "ARC++ app during ARCVM booting stage on full restore process";
4804
Kazuki Takisea674f582021-03-05 06:44:064805const char kArcResizeLockName[] = "Resize Lock for Android apps";
4806const char kArcResizeLockDescription[] =
4807 "Enable compatibility mode for Android apps that are not optimized for "
4808 "large screens, and impose restrictions on resizing the apps";
4809
Gavin Williamsd6404b02021-03-09 21:49:484810const char kScanAppMediaLinkName[] = "Show Media app link in Scan app";
4811const char kScanAppMediaLinkDescription[] =
4812 "Enables showing a link in the Scan app to open scanned images in the Media"
4813 " app.";
4814
Gavin Williams39e3ae6e2021-06-18 06:49:284815const char kScanAppMultiPageScanName[] =
4816 "Enable multi-page scanning in Scan app";
4817const char kScanAppMultiPageScanDescription[] =
4818 "Enables creating a single PDF file from multiple flatbed scans";
4819
Kyra Moed00bdf232021-05-06 19:59:364820extern const char kScanAppSearchablePdfName[] =
4821 "Enable saving scans as a searchable PDF.";
4822extern const char kScanAppSearchablePdfDescription[] =
4823 "Allow selecting Searchable PDF file type in Scan app"
4824 " with incorporation of OCR service.";
4825
Gavin Williamsc9c6a222021-04-06 23:30:354826const char kScanAppStickySettingsName[] = "Enable sticky settings in Scan app";
4827const char kScanAppStickySettingsDescription[] =
4828 "Enables sticky settings in Scan app for automatically saving scan"
4829 " settings in Chrome OS.";
4830
Joon Ahn74cda732021-04-08 19:58:104831const char kShimlessRMAFlowName[] = "Enable shimless RMA flow";
4832const char kShimlessRMAFlowDescription[] = "Enable shimless RMA flow";
4833
Andrew Moylan97585272019-02-19 19:01:224834const char kSchedulerConfigurationName[] = "Scheduler Configuration";
4835const char kSchedulerConfigurationDescription[] =
4836 "Instructs the OS to use a specific scheduler configuration setting.";
Greg Kerr33cd4662019-06-17 07:03:014837const char kSchedulerConfigurationConservative[] =
4838 "Disables Hyper-Threading on relevant CPUs.";
4839const char kSchedulerConfigurationPerformance[] =
4840 "Enables Hyper-Threading on relevant CPUs.";
Andrew Moylan97585272019-02-19 19:01:224841
Joel Rileyffbaf662020-10-27 23:07:374842const char kSelectToSpeakNavigationControlName[] =
4843 "Select-to-speak navigation control";
4844const char kSelectToSpeakNavigationControlDescription[] =
4845 "Enables enhanced Select-to-speak navigation features.";
4846
Angela Gyic7efb502020-12-10 23:01:004847const char kSharesheetContentPreviewsName[] = "Sharesheet Content Previews";
4848const char kSharesheetContentPreviewsDescription[] =
4849 "Chrome OS content previews for sharesheet.";
4850
Melissa Zhangba6240b2020-06-24 02:44:234851const char kSharesheetName[] = "Sharesheet";
4852const char kSharesheetDescription[] = "Chrome OS sharesheet.";
4853
Ramya Nagarajan1fbdf5732021-02-12 23:31:584854const char kChromeOSSharingHubName[] = "Chrome OS Sharing Hub";
4855const char kChromeOSSharingHubDescription[] =
4856 "Enables the Sharing Hub (share sheet) on ChromeOS via the Omnibox.";
4857
Kyle Horimoto63a6bd42019-09-16 23:47:524858const char kShowBluetoothDebugLogToggleName[] =
4859 "Show Bluetooth debug log toggle";
4860const char kShowBluetoothDebugLogToggleDescription[] =
4861 "Enables a toggle which can enable debug (i.e., verbose) logs for "
4862 "Bluetooth";
4863
Yu Liu9d01d342021-03-12 20:05:164864const char kBluetoothSessionizedMetricsName[] =
4865 "Enable Bluetooth sessionized metrics";
4866const char kBluetoothSessionizedMetricsDescription[] =
4867 "Enables collecting and processing Bluetooth sessionized metrics.";
4868
Andre Le85312482021-02-26 04:19:234869const char kShowDateInTrayName[] = "Enable Show Date In Tray";
4870const char kShowDateInTrayDescription[] =
4871 "Showing date in status area when the screen is sufficiently large.";
4872
James Cook0ba192bf2017-12-01 20:53:114873const char kShowTapsName[] = "Show taps";
4874const char kShowTapsDescription[] =
4875 "Draws a circle at each touch point, which makes touch points more obvious "
4876 "when projecting or mirroring the display. Similar to the Android OS "
4877 "developer option.";
4878
4879const char kShowTouchHudName[] = "Show HUD for touch points";
4880const char kShowTouchHudDescription[] =
4881 "Shows a trail of colored dots for the last few touch points. Pressing "
4882 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
4883 "debug hardware issues that generate spurious touch events.";
4884
Curt Clemens37a5c99c2021-06-19 00:30:064885const char kSmartLockUIRevampName[] = "Enable Smart Lock UI Revamp";
4886const char kSmartLockUIRevampDescription[] =
4887 "Replaces the existing Smart Lock UI on the lock screen with a new design "
4888 "and adds Smart Lock to the 'Lock screen and sign-in' section of settings.";
4889
Ricky Liang3bd2754b52020-10-07 02:50:324890const char kSpectreVariant2MitigationName[] = "Spectre variant 2 mitigation";
4891const char kSpectreVariant2MitigationDescription[] =
4892 "Controls whether Spectre variant 2 mitigation is enabled when "
4893 "bootstrapping the Seccomp BPF sandbox. Can be overridden by "
4894 "#force-spectre-variant2-mitigation.";
4895
James Cook9348f362019-11-15 01:15:584896const char kSplitSettingsSyncName[] = "Split OS and browser sync";
4897const char kSplitSettingsSyncDescription[] =
4898 "Allows OS sync to be configured separately from browser sync. Changes the "
4899 "OS settings UI to provide controls for OS data types. Requires "
4900 "#split-settings to be enabled.";
4901
Darren Shenddfbd2e2020-09-16 23:07:024902const char kSystemLatinPhysicalTypingName[] =
4903 "Use system IME for latin-script typing";
4904const char kSystemLatinPhysicalTypingDescription[] =
4905 "Use the system input engine instead of the Chrome extension for physical "
4906 "typing in languages based on latin script.";
4907
Joel Hockey77a79962021-02-09 01:30:474908const char kPluginVmFullscreenName[] = "Plugin VM Fullscreen";
4909const char kPluginVmFullscreenDescription[] =
4910 "Hides shelf in immersive mode and allows esc hold to exit.";
4911
Brett Wilson7b44537e2017-08-18 01:38:284912const char kTetherName[] = "Instant Tethering";
4913const char kTetherDescription[] =
4914 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
4915 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:374916
Brett Wilson7b44537e2017-08-18 01:38:284917const char kTouchscreenCalibrationName[] =
4918 "Enable/disable touchscreen calibration option in material design settings";
4919const char kTouchscreenCalibrationDescription[] =
4920 "If enabled, the user can calibrate the touch screen displays in "
4921 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:094922
Miguel Casas-Sanchezdcd69152019-09-04 21:22:364923const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device";
4924const char kUseFakeDeviceForMediaStreamDescription[] =
4925 "Forces Chrome to use a fake video capture device (a rolling pacman with a "
4926 "timestamp) instead of the system audio/video devices, for debugging "
4927 "purposes.";
4928
Qiang Xu045aff222018-05-21 23:21:014929const char kUiDevToolsName[] = "Enable native UI inspection";
4930const char kUiDevToolsDescription[] =
4931 "Enables inspection of native UI elements. For local inspection use "
4932 "chrome://inspect#other";
4933
Andrew Moylan97585272019-02-19 19:01:224934const char kUiSlowAnimationsName[] = "Slow UI animations";
4935const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
Mattias Nissler6bb633f2019-02-13 23:41:464936
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:234937const char kVaapiJpegImageDecodeAccelerationName[] =
4938 "VA-API JPEG decode acceleration for images";
4939const char kVaapiJpegImageDecodeAccelerationDescription[] =
4940 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
4941 " captures) using the VA-API.";
4942
Gil Dekel8f4b5642019-07-27 05:27:404943const char kVaapiWebPImageDecodeAccelerationName[] =
4944 "VA-API WebP decode acceleration for images";
4945const char kVaapiWebPImageDecodeAccelerationDescription[] =
4946 "Enable or disable decode acceleration of WebP images using the VA-API.";
4947
Jing Wang1293e3a2021-02-17 00:56:444948const char kVirtualKeyboardName[] = "Virtual Keyboard";
4949const char kVirtualKeyboardDescription[] =
4950 "Always show virtual keyboard regardless of having a physical keyboard "
4951 "present";
4952
Keith Leead929a62021-07-30 06:57:434953const char kVirtualKeyboardApiName[] = "Virtual Keyboard API";
4954const char kVirtualKeyboardApiDescription[] =
4955 "Enable the JS Virtual keyboard API, allowing manual control of the VK.";
4956
My Nguyen614dbcc2019-10-29 03:52:324957const char kVirtualKeyboardBorderedKeyName[] = "Virtual Keyboard Bordered Key";
4958const char kVirtualKeyboardBorderedKeyDescription[] =
4959 "Show virtual keyboard with bordered key";
4960
My Nguyen0bc9add2020-12-03 21:21:254961const char kVirtualKeyboardDisabledName[] = "Disable Virtual Keyboard";
4962const char kVirtualKeyboardDisabledDescription[] =
4963 "Always disable virtual keyboard regardless of device mode. Workaround for "
4964 "virtual keyboard showing with some external keyboards.";
4965
Jing Wang1293e3a2021-02-17 00:56:444966const char kVirtualKeyboardMultipasteName[] = "Virtual Keyboard MultiPaste";
4967const char kVirtualKeyboardMultipasteDescription[] =
4968 "Show virtual keyboard with multipaste UI";
Brett Wilson7b44537e2017-08-18 01:38:284969
Jing Wang90afcbd2021-07-19 06:54:444970const char kVirtualKeyboardMultipasteSuggestionName[] =
4971 "Virtual Keyboard MultiPaste Suggestion";
4972const char kVirtualKeyboardMultipasteSuggestionDescription[] =
4973 "Show multipaste items in virtual keyboard suggestion bar if they are "
4974 "copied recently";
4975
Jason Lin55903062021-04-12 05:09:194976const char kVmStatusPageName[] = "VM status page";
4977const char kVmStatusPageDescription[] = "Enable VM status page";
4978
Yen-lin Laif458f8012021-03-29 10:18:204979const char kWakeOnWifiAllowedName[] = "Allow enabling wake on WiFi features";
4980const char kWakeOnWifiAllowedDescription[] =
4981 "Allows wake on WiFi features in shill to be enabled.";
4982
Maggie Cai6dd6b552021-04-27 08:40:324983const char kWebAppsCrosapiName[] = "Web Apps Crosapi";
4984const char kWebAppsCrosapiDescription[] =
4985 "Support web apps publishing from Lacros browser.";
4986
Kyle Horimotoc0108e112020-10-20 21:41:044987const char kWebuiDarkModeName[] = "WebUI dark mode";
4988const char kWebuiDarkModeDescription[] =
4989 "Allows dark mode usage in WebUI. Note that this does not necessary enable "
4990 "dark mode, which is enabled via the #enable-force-dark flag.";
4991
Jon Mannbaa9c882021-04-14 02:41:064992const char kWifiSyncAllowDeletesName[] =
4993 "Sync removal of Wi-Fi network configurations";
4994const char kWifiSyncAllowDeletesDescription[] =
4995 "Enables the option to sync deletions of Wi-Fi networks to other Chrome OS "
4996 "devices when Wi-Fi Sync is enabled.";
4997
Claude van der Merwe6a7f4e42020-08-19 23:26:504998const char kWifiSyncAndroidName[] =
4999 "Sync Wi-Fi network configurations with Android";
5000const char kWifiSyncAndroidDescription[] =
5001 "Enables the option to sync Wi-Fi network configurations between Chrome OS "
5002 "devices and a connected Android phone";
5003
Markus Handellabf6c7812020-12-15 18:14:355004// Prefer keeping this section sorted to adding new definitions down here.
5005
5006#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5007
David Roger42777702021-07-29 15:09:125008#if BUILDFLAG(IS_CHROMEOS_LACROS)
5009extern const char kMultiProfileAccountConsistencyName[] =
5010 "Account consistency for multi-profile.";
5011extern const char kMultiProfileAccountConsistencyDescription[] =
5012 "Enables integration of secondary profiles with the ChromeOS Account "
5013 "Manager.";
5014#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
5015
Alan Cutterae499a6e2021-04-30 08:07:575016#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS)
Alan Cutter03b39ef32021-05-10 09:23:125017const char kAllowDefaultWebAppMigrationForChromeOsManagedUsersName[] =
5018 "Allow default web app migration for Chrome OS managed users";
5019const char kAllowDefaultWebAppMigrationForChromeOsManagedUsersDescription[] =
5020 "The web app migration flags "
5021 "(chrome://flags/#enable-migrate-default-chrome-app-to-web-apps-gsuite and "
5022 "chrome://flags/#enable-migrate-default-chrome-app-to-web-apps-non-gsuite) "
5023 "are ignored for managed Chrome OS users unless this feature is enabled.";
5024
Alan Cutterae499a6e2021-04-30 08:07:575025const char kDefaultChatWebAppName[] = "Default Chat web app";
5026const char kDefaultChatWebAppDescription[] =
5027 "Enables the Chat web app to be installed by default.";
5028
5029const char kDefaultMeetWebAppName[] = "Default Meet web app";
5030const char kDefaultMeetWebAppDescription[] =
5031 "Enables the Meet web app to be installed by default.";
5032#endif // BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS)
5033
Pilar Molina Lopez40a3e2d2021-03-04 21:01:085034#if defined(OS_CHROMEOS)
5035const char kDeprecateLowUsageCodecsName[] = "Deprecates low usage media codecs";
5036const char kDeprecateLowUsageCodecsDescription[] =
5037 "Deprecates low usage codecs. Disable this feature to allow playback of "
5038 "AMR and GSM.";
Pilar Molina Lopez34dd68b2021-03-16 02:46:365039
5040const char kVaapiAV1DecoderName[] = "VA-API decode acceleration for AV1";
5041const char kVaapiAV1DecoderDescription[] =
5042 "Enable or disable decode acceleration of AV1 videos using the VA-API.";
Pilar Molina Lopez40a3e2d2021-03-04 21:01:085043#endif // defined(OS_CHROMEOS)
5044
Miguel Casasb93a0e352021-07-16 04:07:215045#if defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS_ASH)
5046const char kVaapiVP9kSVCEncoderName[] =
5047 "VA-API encode acceleration for k-SVC VP9";
5048const char kVaapiVP9kSVCEncoderDescription[] =
5049 "Enable or disable k-SVC VP9 encode acceleration using VA-API.";
5050#endif // defined(ARCH_CPU_X86_FAMILY) && BUILDFLAG(IS_CHROMEOS_ASH)
5051
Pilar Molina Lopezfb5103b72021-02-26 23:35:525052#if defined(OS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
5053const char kChromeOSDirectVideoDecoderName[] = "ChromeOS Direct Video Decoder";
5054const char kChromeOSDirectVideoDecoderDescription[] =
5055 "Enables the hardware-accelerated ChromeOS direct media::VideoDecoder "
5056 "implementation. Note that this might be entirely disallowed by the "
5057 "--platform-disallows-chromeos-direct-video-decoder command line switch "
5058 "which is added for platforms where said direct VideoDecoder does not work "
5059 "or is not well tested (see the disable_cros_video_decoder USE flag in "
5060 "Chrome OS)";
5061#endif // defined(OS_CHROMEOS) && BUILDFLAG(USE_CHROMEOS_MEDIA_ACCELERATION)
5062
Isuru Pathirana9762a942021-02-03 17:38:035063#if BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC) || defined(OS_WIN)
Hirokazu Honda8ef07cd2020-04-17 03:36:385064const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture";
5065const char kZeroCopyVideoCaptureDescription[] =
5066 "Camera produces a gpu friendly buffer on capture and, if there is, "
5067 "hardware accelerated video encoder consumes the buffer";
Isuru Pathirana9762a942021-02-03 17:38:035068#endif // BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC) || defined(OS_WIN)
yhanadac5bff5b2017-05-18 06:37:095069
Collin Baker75a29462019-03-13 19:57:315070// All views-based platforms --------------------------------------------------
5071
5072#if defined(TOOLKIT_VIEWS)
5073
Robert Liaod79a0742021-05-18 18:49:155074const char kDownloadShelfWebUI[] = "Download Shelf WebUI";
5075const char kDownloadShelfWebUIDescription[] =
5076 "Replaces the Views download shelf with a WebUI download shelf.";
5077
Collin Baker75a29462019-03-13 19:57:315078#endif // defined(TOOLKIT_VIEWS)
5079
Brett Wilson7b44537e2017-08-18 01:38:285080// Random platform combinations -----------------------------------------------
5081
Avi Drissman2e458df2020-07-29 16:24:315082#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) || \
Benjamin Lermanb5d88899d2021-07-29 08:00:315083 defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
Richard Knollc279d3232019-11-11 16:37:075084
Alan Screen652ddbb2020-09-16 07:14:535085const char kEnableOopPrintDriversName[] =
5086 "Enables Out-of-Process Printer Drivers";
5087const char kEnableOopPrintDriversDescription[] =
5088 "Enables printing interactions with the operating system to be performed "
5089 "out-of-process.";
5090
dpapadef1e5f872021-07-15 17:40:125091const char kWebUIBrandingUpdateName[] = "WebUI Branding Update";
5092const char kWebUIBrandingUpdateDescription[] =
5093 "Changes various UI components in WebUI pages to have a more modern look.";
5094
dpapadf779e192021-04-15 20:06:585095const char kWebuiFeedbackName[] = "WebUI Feedback";
5096const char kWebuiFeedbackDescription[] =
5097 "If enabled, Chrome will show the Feedback WebUI, as opposed to Chrome "
5098 "App Feedback UI, when clicking on \"Report an issue...\"";
5099
dpapad8f3597792021-05-11 08:57:595100const char kSettingsLandingPageRedesignName[] =
5101 "Settings Landing Page Redesign";
5102const char kSettingsLandingPageRedesignDescription[] =
5103 "Changes the layout of the chrome://settings page to only show one section "
5104 "at a time.";
5105
Sean McAllister0d73ca3d2020-08-19 17:54:375106#endif // defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX) ||
Benjamin Lermanb5d88899d2021-07-29 08:00:315107 // defined(OS_CHROMEOS) || defined(OS_FUCHSIA)
lanwei83f54452018-06-21 23:51:045108
Josh Santana0863d7042021-02-04 20:56:455109#if defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX)
5110
Leonard Grey4f7614a72021-02-19 21:30:185111const char kCommanderName[] = "Commander";
5112const char kCommanderDescription[] =
Leonard Grey4d558b02021-03-02 00:59:265113 "Enable a text interface to browser features. Invoke with Ctrl-Space.";
Leonard Grey4f7614a72021-02-19 21:30:185114
Josh Santana0863d7042021-02-04 20:56:455115const char kDesktopRestructuredLanguageSettingsName[] =
5116 "Restructured Language Settings (Desktop)";
5117const char kDesktopRestructuredLanguageSettingsDescription[] =
5118 "Enable the new restructured language settings page";
5119
Josh Santana63007462021-02-10 17:19:015120const char kDesktopDetailedLanguageSettingsName[] =
5121 "Detailed Language Settings (Desktop)";
5122const char kDesktopDetailedLanguageSettingsDescription[] =
5123 "Enable the new detailed language settings page";
5124
Josh Santana0863d7042021-02-04 20:56:455125#endif // defined(OS_WIN) || defined(OS_MAC) || defined(OS_LINUX)
5126
Lei Zhangc05af2a2020-05-15 20:54:055127#if defined(OS_CHROMEOS) || defined(OS_LINUX)
5128#if BUILDFLAG(USE_TCMALLOC)
5129const char kDynamicTcmallocName[] = "Dynamic Tcmalloc Tuning";
5130const char kDynamicTcmallocDescription[] =
5131 "Allows tcmalloc to dynamically adjust tunables based on system resource "
5132 "utilization.";
5133#endif // BUILDFLAG(USE_TCMALLOC)
5134#endif // #if defined(OS_CHROMEOS) || defined(OS_LINUX)
5135
Yuta Hijikata235fc62b2020-12-08 03:48:325136#if !defined(OS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
Lei Zhangc05af2a2020-05-15 20:54:055137const char kUserDataSnapshotName[] = "Enable user data snapshots";
5138const char kUserDataSnapshotDescription[] =
5139 "Enables taking snapshots of the user data directory after a Chrome "
5140 "update and restoring them after a version rollback.";
Yuta Hijikata235fc62b2020-12-08 03:48:325141#endif // !defined(OS_ANDROID) && !BUILDFLAG(IS_CHROMEOS_ASH)
Lei Zhangc05af2a2020-05-15 20:54:055142
Hassan Talat6443f0fa2021-01-06 20:58:495143#if defined(OS_WIN) || BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:275144const char kWebShareName[] = "Web Share";
5145const char kWebShareDescription[] =
5146 "Enables the Web Share (navigator.share) APIs on experimentally supported "
5147 "platforms.";
Hassan Talat6443f0fa2021-01-06 20:58:495148#endif // defined(OS_WIN) || BUILDFLAG(IS_CHROMEOS_ASH) || defined(OS_MAC)
Hoch Hochkeppel6695ffa2020-08-17 18:10:275149
Maksim Sisov622db612021-03-22 08:59:425150#if defined(OS_LINUX) && defined(USE_OZONE)
5151const char kUseOzonePlatformName[] = "Use ozone.";
5152const char kUseOzonePlatformDescription[] =
5153 "Use the Ozone/X11 platform implementation on X11.";
5154#endif // defined(OS_LINUX) && defined(USE_OZONE)
5155
Brett Wilson7b44537e2017-08-18 01:38:285156// Feature flags --------------------------------------------------------------
5157
Lei Zhang0a318af2018-11-14 02:19:465158#if defined(DCHECK_IS_CONFIGURABLE)
5159const char kDcheckIsFatalName[] = "DCHECKs are fatal";
5160const char kDcheckIsFatalDescription[] =
5161 "By default Chrome will evaluate in this build, but only log failures, "
5162 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
5163#endif // defined(DCHECK_IS_CONFIGURABLE)
5164
Moritz Firsching043d32542021-04-07 14:20:595165#if BUILDFLAG(ENABLE_JXL_DECODER)
5166const char kEnableJXLName[] = "Enable JXL image format";
5167const char kEnableJXLDescription[] =
5168 "Adds image decoding support for the JPEG XL image format.";
5169#endif // BUILDFLAG(ENABLE_JXL_DECODER)
5170
Derek Schuff71d9a922019-04-24 21:36:005171#if BUILDFLAG(ENABLE_NACL)
5172const char kNaclName[] = "Native Client";
5173const char kNaclDescription[] =
5174 "Support Native Client for all web applications, even those that were not "
5175 "installed from the Chrome Web Store.";
5176#endif // ENABLE_NACL
5177
ckitagawa8dad53d2020-01-07 16:03:355178#if BUILDFLAG(ENABLE_PAINT_PREVIEW) && defined(OS_ANDROID)
Mehran Mahmoudib8d0b7c2020-03-14 18:10:565179const char kPaintPreviewDemoName[] = "Paint Preview Demo";
5180const char kPaintPreviewDemoDescription[] =
5181 "If enabled a menu item is added to the Android main menu to demo paint "
ckitagawa8dad53d2020-01-07 16:03:355182 "previews.";
Mehran Mahmoudib0410d62020-06-15 20:07:285183const char kPaintPreviewStartupName[] = "Paint Preview Startup";
5184const char kPaintPreviewStartupDescription[] =
5185 "If enabled, paint previews for each tab are captured when a tab is hidden "
5186 "and are deleted when a tab is closed. If a paint preview was captured for "
5187 "the tab to be restored on startup, the paint preview will be shown "
5188 "instead.";
ckitagawa8dad53d2020-01-07 16:03:355189#endif // ENABLE_PAINT_PREVIEW && defined(OS_ANDROID)
5190
Lei Zhangc05af2a2020-05-15 20:54:055191#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
5192const char kWebUITabStripName[] = "WebUI tab strip";
5193const char kWebUITabStripDescription[] =
5194 "When enabled makes use of a WebUI-based tab strip.";
Lei Zhangc05af2a2020-05-15 20:54:055195#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)
5196
Yuta Hijikata235fc62b2020-12-08 03:48:325197#if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:485198const char kWebUITabStripTabDragIntegrationName[] =
5199 "ChromeOS drag-drop extensions for WebUI tab strip";
5200const char kWebUITabStripTabDragIntegrationDescription[] =
5201 "Enables special handling in ash for WebUI tab strip tab drags. Allows "
5202 "dragging tabs out to new windows.";
Yuta Hijikata235fc62b2020-12-08 03:48:325203#endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) && BUILDFLAG(IS_CHROMEOS_ASH)
Collin Baker0b940c8e2020-08-07 18:53:485204
Brett Wilson7b44537e2017-08-18 01:38:285205#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
5206
5207const char kAutofillCreditCardUploadName[] =
5208 "Enable offering upload of Autofilled credit cards";
5209const char kAutofillCreditCardUploadDescription[] =
5210 "Enables a new option to upload credit cards to Google Payments for sync "
5211 "to all Chrome devices.";
5212
5213#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
5214
Ian Barkley-Yeungcf2a9342020-10-13 17:04:475215#if !defined(OS_WIN) && !defined(OS_FUCHSIA)
5216const char kSendWebUIJavaScriptErrorReportsName[] =
5217 "Send WebUI JavaScript Error Reports";
5218const char kSendWebUIJavaScriptErrorReportsDescription[] =
5219 "If enabled, and if the user has consented to sending metrics to Google, "
5220 "then when the JavaScript has an error on a WebUI page, an error report "
5221 "will be sent to Google.";
5222#endif
5223
Robert Flackd69659f2021-06-02 22:32:335224#if defined(OS_WIN) || defined(OS_ANDROID)
5225const char kElasticOverscrollName[] = "Elastic Overscroll";
5226const char kElasticOverscrollDescription[] =
5227 "Enables Elastic Overscrolling on touchscreens and precision touchpads.";
5228#endif // defined(OS_WIN) || defined(OS_ANDROID)
5229
Wei Li51e9c162021-02-01 19:53:355230#if defined(OS_WIN) || (defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)) || \
5231 defined(OS_MAC)
5232const char kUIDebugToolsName[] = "Debugging tools for UI";
5233const char kUIDebugToolsDescription[] =
5234 "Enables additional keyboard shortcuts to help debugging.";
5235#endif
5236
Jordan Bayles7da20a22021-05-19 17:51:555237#if BUILDFLAG(IS_CHROMEOS_ASH)
5238const char kAuraWindowSubtreeCaptureName[] = "ChromeOS Window Subtree Capture";
5239const char kAuraWindowSubtreeCaptureDescription[] =
5240 "Enables capture of ChromeOS Aura windows using subtree capture. When "
5241 "disabled, the legacy slow capturer will be used.";
5242#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5243
Tomas Popela253a5832019-01-14 17:22:105244#if defined(WEBRTC_USE_PIPEWIRE)
Lei Zhang507fffd2020-01-29 23:47:545245const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support";
5246const char kWebrtcPipeWireCapturerDescription[] =
Tomas Popela253a5832019-01-14 17:22:105247 "When enabled the WebRTC will use the PipeWire multimedia server for "
5248 "capturing the desktop content on the Wayland display server.";
Tomas Popela253a5832019-01-14 17:22:105249#endif // #if defined(WEBRTC_USE_PIPEWIRE)
5250
ananubisff476b02021-07-27 07:09:585251#if BUILDFLAG(IS_CHROMEOS_ASH)
5252const char kWebKioskEnableLacrosName[] =
5253 "Enables Lacros in the web (PWA) Kiosk";
5254const char kWebKioskEnableLacrosDescription[] =
5255 "Uses Lacros-chrome as the web browser in the web (PWA) Kiosk session on "
5256 "Chrome OS. When disabled, the Ash-chrome will be used";
5257#endif // BUILDFLAG(IS_CHROMEOS_ASH)
5258
Brett Wilson7b44537e2017-08-18 01:38:285259// ============================================================================
5260// Don't just add flags to the end, put them in the right section in
5261// alphabetical order just like the header file.
5262// ============================================================================
5263
vabr0215a8e2017-03-28 12:47:345264} // namespace flag_descriptions