blob: b0df81cabb85f0c872309e5954a8eb220725772d [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
Brett Wilson7b44537e2017-08-18 01:38:287// Keep in identical order as the header file, see the comment at the top
8// for formatting rules.
9
vabr0215a8e2017-03-28 12:47:3410namespace flag_descriptions {
11
Brett Wilsonf27ff602017-07-07 22:28:4712const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
13const char kAccelerated2dCanvasDescription[] =
14 "Enables the use of the GPU to perform 2d canvas rendering instead of "
15 "using software rendering.";
horodb71a5a2017-06-09 16:08:2416
Brett Wilsonf27ff602017-07-07 22:28:4717const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
18const char kAcceleratedVideoDecodeDescription[] =
19 "Hardware-accelerated video decode where available.";
20
21const char kAffiliationBasedMatchingName[] =
22 "Affiliation based matching in password manager";
23const char kAffiliationBasedMatchingDescription[] =
24 "Allow credentials stored for Android applications to be filled into "
25 "corresponding websites.";
26
27const char kAllowInsecureLocalhostName[] =
28 "Allow invalid certificates for resources loaded from localhost.";
29const char kAllowInsecureLocalhostDescription[] =
30 "Allows requests to localhost over HTTPS even when an invalid certificate "
31 "is presented.";
32
Kunihiko Sakamoto4d407982018-07-10 04:56:2933const char kAllowSignedHTTPExchangeCertsWithoutExtensionName[] =
34 "Allow Signed HTTP Exchange certificates without extension";
35const char kAllowSignedHTTPExchangeCertsWithoutExtensionDescription[] =
36 "Accepts Origin-Signed HTTP Exchanges to be signed with certificates "
37 "that do not have CanSignHttpExchangesDraft extension. Requires "
38 "#enable-signed-http-exchange. Warning: Enabling this may pose a security "
39 "risk.";
40
Henrique Nakashima52d76952018-11-30 19:35:5841const char kAllowStartingServiceManagerOnlyName[] =
42 "Allow starting service manager only";
43const char kAllowStartingServiceManagerOnlyDescription[] =
44 "Allows running a lightweight service-manager-only mode, in which services "
45 "can run without the browser process.";
46
Jeremy Klein586b4ccc2018-06-09 21:05:4847const char kAndroidMessagesIntegrationName[] = "Android Messages integration";
48const char kAndroidMessagesIntegrationDescription[] =
49 "Enables Chrome OS integration with Android messages.";
50
Kyle Horimoto2d838ec2018-12-26 19:41:1651const char kUseMessagesGoogleComDomainName[] = "Use messages.google.com domain";
52const char kUseMessagesGoogleComDomainDescription[] =
53 "Use the messages.google.com domain as part of the \"Messages\" "
54 "feature under \"Connected Devices\" settings.";
55
Kyle Horimoto874554a2019-01-31 00:52:0956const char kUseMessagesStagingUrlName[] = "Use Messages staging URL";
57const char kUseMessagesStagingUrlDescription[] =
58 "Use the staging server as part of the \"Messages\" feature under "
59 "\"Connected Devices\" settings.";
60
Azeem Arshad373e1ea72019-01-23 02:16:0061const char kEnableMessagesWebPushName[] =
62 "Web push in Android Messages integration";
63const char kEnableMessagesWebPushDescription[] =
64 "Use web push for background notificatons in Chrome OS integration "
65 "with Android Messages for Web";
66
Kamila472a5942018-11-26 09:48:2767const char kAndroidSiteSettingsUIRefreshName[] =
68 "Android Site Settings UI changes.";
69const char kAndroidSiteSettingsUIRefreshDescription[] =
Kamila02f7e072018-10-08 09:50:2870 "Enable the new UI "
71 "changes in Site Settings in Android.";
72
Brett Wilsonf27ff602017-07-07 22:28:4773const char kAppBannersName[] = "App Banners";
74const char kAppBannersDescription[] =
75 "Enable the display of Progressive Web App banners, which prompt a user to "
76 "add a web app to their shelf, or other platform-specific equivalent.";
77
Ioana Pandelef9689a062018-06-22 15:35:5178const char kAutomaticPasswordGenerationName[] = "Automatic password generation";
79const char kAutomaticPasswordGenerationDescription[] =
80 "Allow Chrome to offer to generate passwords when it detects account "
81 "creation pages.";
82
Michael Lippautz6081dfa2018-10-18 13:10:1483const char kEnableBlinkHeapUnifiedGarbageCollectionName[] =
84 "Blink Heap Unified Garbage Collection";
85const char kEnableBlinkHeapUnifiedGarbageCollectionDescription[] =
86 "Enable unified garbage collection in Blink";
87
Ulan Degenbaevb5466a92018-07-19 12:35:3488const char kEnableBloatedRendererDetectionName[] = "Bloated renderer detection";
89const char kEnableBloatedRendererDetectionDescription[] =
90 "Enable bloated renderer detection";
91
Khushalba202212017-07-12 19:53:4992const char kAsyncImageDecodingName[] = "AsyncImageDecoding";
93const char kAsyncImageDecodingDescription[] =
94 "Enables asynchronous decoding of images from raster for web content";
95
sebsgca14b092018-12-07 16:56:1596extern const char kAutofillAlwaysShowServerCardsInSyncTransportName[] =
97 "AlwaysShowServerCardsInSyncTransport";
98extern const char kAutofillAlwaysShowServerCardsInSyncTransportDescription[] =
99 "Always show server cards when in sync transport mode for wallet data";
100
Hui(Andy) Wufbebf91d22019-02-01 01:23:54101extern const char kAutofillAssistantChromeEntryName[] =
102 "AutofillAssistantChromeEntry";
103extern const char kAutofillAssistantChromeEntryDescription[] =
104 "Initiate autofill assistant from within Chrome.";
105
Roger McFarlane2eceba982018-05-18 01:37:11106const char kAutofillCacheQueryResponsesName[] =
107 "Cache Autofill Query Responses";
108const char kAutofillCacheQueryResponsesDescription[] =
109 "When enabled, autofill will cache the responses it receives from the "
110 "crowd-sourced field type prediction server.";
111
Jeffrey Cohen05cdafa392018-08-15 20:49:17112const char kAutofillEnableCompanyNameName[] =
113 "Enable Autofill Company Name field";
114const char kAutofillEnableCompanyNameDescription[] =
115 "When enabled, Company Name fields will be auto filled";
116
sebsge35b762c2018-03-29 20:33:27117const char kAutofillDynamicFormsName[] = "Autofill Dynamic Forms";
118const char kAutofillDynamicFormsDescription[] =
119 "Allows autofill to fill dynamically changing forms";
120
Anne Lime625362e2018-08-29 03:13:25121const char kAutofillNoLocalSaveOnUploadSuccessName[] =
122 "Disable locally saving card when credit card upload succeeds";
123const char kAutofillNoLocalSaveOnUploadSuccessDescription[] =
124 "When enabled, no local copy of server card will be saved when credit card "
125 "upload succeeds.";
126
Parastoo Geranmayeh2dcd14f92018-06-01 17:08:39127const char kAutofillPrefilledFieldsName[] = "Autofill Prefilled Fields";
128const char kAutofillPrefilledFieldsDescription[] =
129 "Allows autofill to fill fields previously filled by the website";
130
Parastoo Geranmayeh0f5ebbc2019-01-21 21:01:09131const char kAutofillProfileClientValidationName[] =
132 "Autofill Validates Profiles By Client";
133const char kAutofillProfileClientValidationDescription[] =
134 "Allows autofill to validate profiles on the client side";
135
Parastoo Geranmayeh25fccec22019-01-29 18:38:13136const char kAutofillProfileServerValidationName[] =
137 "Autofill Uses Server Validation";
138const char kAutofillProfileServerValidationDescription[] =
139 "Allows autofill to use server side validation";
140
Lei Zhang0ca70ea2018-09-07 17:51:01141const char kAutofillPreviewStyleExperimentName[] =
Fabio Tirelo9b423c7b2018-08-15 14:32:18142 "Autofill Preview Style Experiment";
Lei Zhang0ca70ea2018-09-07 17:51:01143const char kAutofillPreviewStyleExperimentDescription[] =
Fabio Tirelo9b423c7b2018-08-15 14:32:18144 "Allows experimentation with the Autofill field preview's style.";
145
Roger McFarlane1a37d7b2018-04-20 22:45:19146const char kAutofillEnforceMinRequiredFieldsForHeuristicsName[] =
147 "Autofill Enforce Min Required Fields For Heuristics";
148const char kAutofillEnforceMinRequiredFieldsForHeuristicsDescription[] =
149 "When enabled, autofill will generally require a form to have at least 3 "
150 "fields before allowing heuristic field-type prediction to occur.";
151
152const char kAutofillEnforceMinRequiredFieldsForQueryName[] =
153 "Autofill Enforce Min Required Fields For Query";
154const char kAutofillEnforceMinRequiredFieldsForQueryDescription[] =
155 "When enabled, autofill will generally require a form to have at least 3 "
156 "fields before querying the autofill server for field-type predictions.";
157
158const char kAutofillEnforceMinRequiredFieldsForUploadName[] =
159 "Autofill Enforce Min Required Fields For Upload";
160const char kAutofillEnforceMinRequiredFieldsForUploadDescription[] =
161 "When enabled, autofill will generally require a form to have at least 3 "
162 "fillable fields before uploading field-type votes for that form.";
163
Moe Ahmadid3ddfcb2018-04-20 19:51:08164const char kAutofillRestrictUnownedFieldsToFormlessCheckoutName[] =
165 "Restrict formless form extraction";
166const char kAutofillRestrictUnownedFieldsToFormlessCheckoutDescription[] =
167 "Restrict extraction of formless forms to checkout flows";
168
Roger McFarlanee193ab122018-11-22 20:55:07169const char kAutofillRichMetadataQueriesName[] =
170 "Autofill - Rich metadata queries (Canary/Dev only)";
171const char kAutofillRichMetadataQueriesDescription[] =
172 "Transmit rich form/field metadata when querying the autofill server. "
173 "This feature only works on the Canary and Dev channels.";
174
sebsg48d53acd92019-01-17 18:11:16175const char kAutofillSettingsSplitByCardTypeName[] =
176 "Autofill settings split by card type";
177const char kAutofillSettingsSplitByCardTypeDescription[] =
178 "When enabled, the cards in the payments settings will be split into two "
179 "lists based on where they are stored.";
180
Brett Wilsonf27ff602017-07-07 22:28:47181const char kAutoplayPolicyName[] = "Autoplay policy";
182const char kAutoplayPolicyDescription[] =
183 "Policy used when deciding if audio or video is allowed to autoplay.";
184
185const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
186 "User gesture is required for cross-origin iframes.";
187const char kAutoplayPolicyNoUserGestureRequired[] =
188 "No user gesture is required.";
189const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
190const char kAutoplayPolicyDocumentUserActivation[] =
191 "Document user activation is required.";
192
Maya Lekova4bbfdb7f2018-10-16 08:15:03193const char kAwaitOptimizationName[] = "Await optimization";
194const char kAwaitOptimizationDescription[] =
195 "Enables await taking 1 tick on the microtask queue.";
196
Brett Wilsonf27ff602017-07-07 22:28:47197const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
198const char kBleAdvertisingInExtensionsDescription[] =
199 "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere "
200 "with regular use of Bluetooth Low Energy features.";
201
Charles Harrisond629cc62017-10-05 01:39:54202const char kBlockTabUndersName[] = "Block tab-unders";
203const char kBlockTabUndersDescription[] =
204 "Blocks tab-unders in Chrome with some native UI to allow the user to "
205 "proceed.";
206
Brett Wilsonf27ff602017-07-07 22:28:47207const char kBrowserTaskSchedulerName[] = "Task Scheduler";
208const char kBrowserTaskSchedulerDescription[] =
209 "Enables redirection of some task posting APIs to the task scheduler.";
210
Carlos IL766fbc882018-02-16 02:34:52211const char kBundledConnectionHelpName[] = "Bundled Connection Help";
212const char kBundledConnectionHelpDescription[] =
Carlos ILaafcd73a2018-07-10 20:08:37213 "Enables or disables redirection to local help content for users who get "
214 "an interstitial after clicking the 'Learn More' link on a previous "
215 "interstitial.";
Carlos IL766fbc882018-02-16 02:34:52216
Brett Wilsonf27ff602017-07-07 22:28:47217const char kBypassAppBannerEngagementChecksName[] =
218 "Bypass user engagement checks";
219const char kBypassAppBannerEngagementChecksDescription[] =
220 "Bypasses user engagement checks for displaying app banners, such as "
221 "requiring that users have visited the site before and that the banner "
222 "hasn't been shown recently. This allows developers to test that other "
223 "eligibility requirements for showing app banners, such as having a "
224 "manifest, are met.";
225
Miguel Casas454d9cf2018-06-28 16:25:00226const char kCanvas2DImageChromiumName[] = "Canvas 2D Image Chromium";
227const char kCanvas2DImageChromiumDescription[] =
228 "Allows for using CHROMIUM_image GLES2 extension for HTML Canvas Contexts";
229
Amber Won478561d2017-08-19 01:02:59230const char kClickToOpenPDFName[] = "Click to open embedded PDFs";
231const char kClickToOpenPDFDescription[] =
232 "When the PDF plugin is unavailable, show a click-to-open placeholder for "
233 "embedded PDFs.";
234
Gary Kacmarcikfb69b212017-11-14 03:41:08235const char kClipboardContentSettingName[] = "Clipboard content setting";
236const char kClipboardContentSettingDescription[] =
237 "Enables a site-wide permission in the UI which controls access to the "
238 "asynchronous clipboard web API";
239
Brett Wilsonf27ff602017-07-07 22:28:47240const char kCloudImportName[] = "Cloud Import";
241const char kCloudImportDescription[] = "Allows the cloud-import feature.";
242
rbpotter9990eb42018-07-12 05:34:59243const char kCloudPrinterHandlerName[] = "Enable Cloud Printer Handler";
244const char kCloudPrinterHandlerDescription[] =
245 "Use the new cloud printer handler for communicating with the cloud "
246 "print server, instead of the cloud print interface in the Print "
247 "Preview WebUI.";
248
Tanja Gornakb0985dd2018-10-11 17:24:40249const char kFCMInvalidationsName[] =
250 "Enable invalidations delivery via new FCM based protocol";
251const char kFCMInvalidationsDescription[] =
252 "Use the new FCM-based protocol for deliveling invalidations";
253
Christopher Cameronceb8727d2017-09-07 23:53:16254const char kForceColorProfileSRGB[] = "sRGB";
255const char kForceColorProfileP3[] = "Display P3 D65";
256const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
257const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)";
258
259const char kForceColorProfileName[] = "Force color profile";
260const char kForceColorProfileDescription[] =
261 "Forces Chrome to use a specific color profile instead of the color "
262 "of the window's current monitor, as specified by the operating system.";
263
Brett Wilsonf27ff602017-07-07 22:28:47264const char kCompositedLayerBordersName[] = "Composited render layer borders";
265const char kCompositedLayerBordersDescription[] =
266 "Renders a border around composited Render Layers to help debug and study "
267 "layer compositing.";
268
Theresac34db2d2018-06-28 00:03:11269const char kContextualSuggestionsButtonName[] = "Contextual Suggestions Button";
270const char kContextualSuggestionsButtonDescription[] =
271 "If enabled, shows a button to trigger contextual suggestions.";
272
Theresae308b9e2018-10-10 15:57:40273const char kContextualSuggestionsIPHReverseScrollName[] =
274 "Contextual Suggestions IPH Reverse Scroll";
275const char kContextualSuggestionsIPHReverseScrollDescription[] =
276 "Require a reverse scroll before showing in-product help for contextual "
277 "suggestions.";
278
Theresa0f2947b92018-07-02 21:27:58279const char kContextualSuggestionsOptOutName[] =
280 "Contextual Suggestions Opt-out";
281const char kContextualSuggestionsOptOutDescription[] =
282 "If enabled, allows the user to opt out of contextual suggestions.";
283
Brett Wilsonf27ff602017-07-07 22:28:47284const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
285const char kCreditCardAssistDescription[] =
286 "Enable assisted credit card filling on certain sites.";
287
Thanh Le659cb102017-12-20 22:00:19288const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews";
289const char kDataSaverServerPreviewsDescription[] =
290 "Allow the Data Reduction Proxy to serve previews.";
Brett Wilsonf27ff602017-07-07 22:28:47291
Brett Wilsonf27ff602017-07-07 22:28:47292const char kDebugPackedAppName[] = "Debugging for packed apps";
293const char kDebugPackedAppDescription[] =
294 "Enables debugging context menu options such as Inspect Element for packed "
295 "applications.";
296
Brett Wilsonf27ff602017-07-07 22:28:47297const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
298const char kDebugShortcutsDescription[] =
299 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
300
301const char kDeviceDiscoveryNotificationsName[] =
302 "Device Discovery Notifications";
303const char kDeviceDiscoveryNotificationsDescription[] =
304 "Device discovery notifications on local network.";
305
306const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
307const char kDevtoolsExperimentsDescription[] =
308 "Enables Developer Tools experiments. Use Settings panel in Developer "
309 "Tools to toggle individual experiments.";
310
311const char kDisableAudioForDesktopShareName[] =
312 "Disable Audio For Desktop Share";
313const char kDisableAudioForDesktopShareDescription[] =
314 "With this flag on, desktop share picker window will not let the user "
315 "choose whether to share audio.";
316
Yue Ru Suna50a80f2019-02-08 05:02:58317const char kDisableBestEffortTasksName[] = "Skip best effort tasks";
318const char kDisableBestEffortTasksDescription[] =
319 "With this flag on, tasks of the lowest priority will not be executed "
320 "until shutdown. The queue of low priority tasks can increase memory usage."
321 "Also, while it should be possible to use Chrome almost normally with this "
322 "flag, it is expected that some non-visible operations such as writing "
323 "user data to disk, cleaning caches, reporting metrics or updating "
324 "components won't be performed until shutdown.";
325
Arthur Sonzogni721f48e2018-10-31 17:10:02326const char kDisableIpcFloodingProtectionName[] =
327 "Disable IPC flooding protection";
328const char kDisableIpcFloodingProtectionDescription[] =
329 "Some javascript code can flood the inter process communication system. "
330 "This protection limits the rate (calls/seconds) at which theses function "
arthursonzogni443bd0ef2018-11-27 16:12:53331 "can be used. This flag disables the protection. This flag is deprecated "
332 "and will be removed in Chrome 76. Use the switch "
333 "--disable-ipc-flooding-protection instead.";
Arthur Sonzogni721f48e2018-10-31 17:10:02334
Chris Palmer917bc052018-03-14 19:28:31335const char kDisablePushStateThrottleName[] = "Disable pushState throttling";
336const char kDisablePushStateThrottleDescription[] =
337 "Disables throttling of history.pushState and history.replaceState method "
arthursonzogni443bd0ef2018-11-27 16:12:53338 "calls. This flag is deprecated and will be removed in Chrome 76. Use the "
339 "switch --disable-ipc-flooding-protection instead.";
Chris Palmer917bc052018-03-14 19:28:31340
Brett Wilsonf27ff602017-07-07 22:28:47341const char kDisableTabForDesktopShareName[] =
342 "Disable Desktop Share with tab source";
343const char kDisableTabForDesktopShareDescription[] =
344 "This flag controls whether users can choose a tab for desktop share.";
345
346const char kDisallowDocWrittenScriptsUiName[] =
347 "Block scripts loaded via document.write";
348const char kDisallowDocWrittenScriptsUiDescription[] =
349 "Disallows fetches for third-party parser-blocking scripts inserted into "
350 "the main frame via document.write.";
351
Christopher Thompson2ffffa2c2018-05-18 23:06:37352const char kDisallowUnsafeHttpDownloadsName[] =
353 "Block unsafe downloads over insecure connections";
354const char kDisallowUnsafeHttpDownloadsNameDescription[] =
355 "Disallows downloads of unsafe files (files that can potentially execute "
356 "code), where the final download origin or any origin in the redirect "
357 "chain is insecure.";
358
Brett Wilsonf27ff602017-07-07 22:28:47359const char kDriveSearchInChromeLauncherName[] =
360 "Drive Search in Chrome App Launcher";
361const char kDriveSearchInChromeLauncherDescription[] =
362 "Files from Drive will show up when searching the Chrome App Launcher.";
363
Brett Wilsonf27ff602017-07-07 22:28:47364const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
365const char kEmbeddedExtensionOptionsDescription[] =
366 "Display extension options as an embedded element in chrome://extensions "
367 "rather than opening a new tab.";
368
Dominic Mazzoni8ac98962018-05-25 05:44:55369const char kEnableAccessibilityObjectModelName[] = "Accessibility Object Model";
370const char kEnableAccessibilityObjectModelDescription[] =
371 "Enables experimental support for Accessibility Object Model APIs "
372 "that are in development.";
373
Becca Hughesac86cd442019-01-09 23:49:54374const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement";
375const char kEnableAudioFocusEnforcementDescription[] =
376 "Enables enforcement of a single media session having audio focus at "
377 "any one time. Requires #enable-media-session-service to be enabled too.";
378
Sebastien Lalancette5daaf4a2019-01-11 22:09:25379const char kEnableAutocompleteDataRetentionPolicyName[] =
380 "Enable automatic cleanup of expired Autocomplete entries.";
381const char kEnableAutocompleteDataRetentionPolicyDescription[] =
382 "If enabled, will clean-up Autocomplete entries whose last use date is "
383 "older than the current retention policy. These entries will be "
384 "permanently deleted from the client on startup, and will be unlinked "
385 "from sync.";
386
Florian Uunk8c428ea2018-07-18 11:12:52387const char kEnableAutofillAccountWalletStorageName[] =
388 "Enable the account data storage for autofill";
389const char kEnableAutofillAccountWalletStorageDescription[] =
390 "Enable the ephemeral storage for account data for autofill.";
391
Shanfeng Zhang19c16562017-10-17 02:30:40392const char kEnableAutofillCreditCardAblationExperimentDisplayName[] =
393 "Credit card autofill ablation experiment.";
394const char kEnableAutofillCreditCardAblationExperimentDescription[] =
395 "If enabled, credit card autofill suggestions will not display.";
396
Brett Wilsonf27ff602017-07-07 22:28:47397const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
398 "Display the last used date of a credit card in autofill.";
399const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
400 "If enabled, display the last used date of a credit card in autofill.";
401
Sujie Zhu2cf0e5c2018-07-17 18:00:27402const char kEnableAutofillCreditCardLocalCardMigrationName[] =
403 "Enable migrating local cards to Google Pay";
404const char kEnableAutofillCreditCardLocalCardMigrationDescription[] =
405 "If enabled, prompt migration of locally-saved credit cards to Google Pay.";
406
Jared Saulbc672a072018-06-16 05:22:12407const char kEnableAutofillCreditCardUploadEditableCardholderNameName[] =
408 "Make cardholder name editable in dialog during credit card upload";
409const char kEnableAutofillCreditCardUploadEditableCardholderNameDescription[] =
410 "If enabled, in certain situations when offering credit card upload to "
411 "Google Payments, the cardholder name can be edited within the "
412 "offer-to-save dialog, which is prefilled with the name from the signed-in "
413 "Google Account.";
414
Hao Zhang1be9c262018-11-03 00:23:51415const char kEnableAutofillCreditCardUploadEditableExpirationDateName[] =
416 "Make expiration date editable in dialog during credit card upload";
417const char kEnableAutofillCreditCardUploadEditableExpirationDateDescription[] =
418 "If enabled, if a credit card's expiration date was not detected when "
419 "offering card upload to Google Payments, the offer-to-save dialog "
420 "displays an expiration date selector.";
421
Hao Zhangd3017112019-02-01 20:13:30422const char kEnableAutofillImportNonFocusableCreditCardFormsName[] =
423 "Allow credit card import from forms that disappear after entry";
424const char kEnableAutofillImportNonFocusableCreditCardFormsDescription[] =
425 "If enabled, offers credit card save for forms that are hidden from the "
426 "page after information has been entered into them, including "
427 "accordion-style checkout flows.";
428
siyua9a4a8872018-10-05 03:46:56429const char kEnableAutofillLocalCardMigrationShowFeedbackName[] =
430 "Show the upload results dialog after local card migration";
431const char kEnableAutofillLocalCardMigrationShowFeedbackDescription[] =
432 "If enabled, the local card migration offer dialog will remain pending "
433 "after the user clicks the save button. Once migration is finished, "
434 "the dialog will be updated with the results of each card.";
435
tmartinocd414732018-02-12 19:01:01436const char kEnableAutofillNativeDropdownViewsName[] =
437 "Display Autofill Dropdown Using Views";
438const char kEnableAutofillNativeDropdownViewsDescription[] =
439 "If enabled, the Autofill Dropdown will be built natively using Views, "
440 "rather than painted directly to a canvas.";
441
Fabio Tirelo87552e02018-07-06 15:43:21442const char kEnableAutofillSaveCardDialogUnlabeledExpirationDateName[] =
443 "Show unlabeled expiration dates on the save card dialog";
444const char kEnableAutofillSaveCardDialogUnlabeledExpirationDateDescription[] =
445 "If enabled, expiration dates on the save card dialog (both local and "
446 "upstream) are shown without an 'Exp:' label.";
447
siyua172973d2018-11-21 22:23:20448const char kEnableAutofillSaveCardImprovedUserConsentName[] =
449 "Use updated UI for credit card save bubbles";
450const char kEnableAutofillSaveCardImprovedUserConsentDescription[] =
451 "If enabled, adds a [No thanks] button to credit card save bubbles and "
452 "updates their title headers.";
453
Manas Verma99541e52018-08-03 20:37:23454const char kEnableAutofillSaveCardSignInAfterLocalSaveName[] =
455 "Show Sign-In/Sync promo after saving a card locally";
456const char kEnableAutofillSaveCardSignInAfterLocalSaveDescription[] =
457 "If enabled, shows a sign in prompt to the user after the user "
458 "saves a card locally. This also introduces a Manage Cards bubble "
459 "which you can access from the card icon after saving a card.";
460
Jared Saul8a0c1e92018-10-10 18:22:47461const char kEnableAutofillSaveCreditCardUsesStrikeSystemName[] =
462 "Enable limit on offering to save the same credit card repeatedly";
463const char kEnableAutofillSaveCreditCardUsesStrikeSystemDescription[] =
464 "If enabled, prevents popping up the credit card offer-to-save prompt if "
465 "it has repeatedly been ignored, declined, or failed.";
466
Anne Lim9d8f66a2019-01-07 23:49:21467const char kEnableAutofillSaveCreditCardUsesStrikeSystemV2Name[] =
468 "Enable limit on offering to save the same credit card repeatedly using the"
469 "updated strike system implementation";
470const char kEnableAutofillSaveCreditCardUsesStrikeSystemV2Description[] =
471 "If enabled, uses the updated strike system implementation to prevent"
472 "popping up the credit card offer-to-save prompt if it has repeatedly been"
473 "ignored, declined, or failed.";
474
Lakshmi Kumar Dabbirua3d0805f2018-05-22 22:04:23475const char kEnableAutofillSendExperimentIdsInPaymentsRPCsName[] =
476 "Send experiment flag IDs in calls to Google Payments";
477const char kEnableAutofillSendExperimentIdsInPaymentsRPCsDescription[] =
478 "If enabled, adds the status of certain experiment variations when making "
479 "calls to Google Payments.";
480
Becca Hughes4d896c42018-05-29 16:58:51481const char kEnableAutoplayIgnoreWebAudioName[] =
482 "Autoplay ignores WebAudio playbacks";
483const char kEnableAutoplayIgnoreWebAudioDescription[] =
484 "If enabled, autoplay restrictions will be ignored for WebAudio.";
485
Becca Hughesc62f6a1d2018-08-16 15:59:47486const char kEnableAutoplayUnifiedSoundSettingsName[] =
487 "Autoplay unified sound settings UI";
488const char kEnableAutoplayUnifiedSoundSettingsDescription[] =
489 "If enabled, shows the new unified autoplay sound settings UI.";
490
Brett Wilsonf27ff602017-07-07 22:28:47491const char kEnableBrotliName[] = "Brotli Content-Encoding.";
492const char kEnableBrotliDescription[] =
493 "Enable Brotli Content-Encoding support.";
494
Qiang Xu0f602fe62017-12-22 01:31:20495const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization";
496const char kEnableCaptivePortalRandomUrlDescription[] =
497 "Enable Captive Portal URL randomization.";
498
Yuki Awano06c7ddf2019-01-23 04:17:59499const char kEnableChromevoxDeveloperOptionName[] =
500 "Enable Chromevox developer option";
501const char kEnableChromevoxDeveloperOptionDescription[] =
502 "This option provides tools for developing in chromevox.";
503
Robert Ogdenc3703942019-02-06 21:05:49504const char kEnableDataSaverLiteModeRebrandName[] =
505 "Data Saver Lite Mode Rebranding";
506const char kEnableDataSaverLiteModeRebrandDescription[] =
507 "Enable the Data Saver rebranding to Lite Mode.";
508
sclittle50e4bb92017-07-08 02:23:03509const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
510
511const char kEnableClientLoFiDescription[] =
512 "Enable showing low fidelity images on some pages on slow networks.";
513
Patrick Noland8bc57472018-06-19 21:09:54514const char kEnableCSSFragmentIdentifiersName[] =
515 "Enable CSS Fragment Identifiers";
516const char kEnableCSSFragmentIdentifiersDescription[] =
517 "Enable support for specifying a target element using a css selector in "
518 "the fragment identifier.";
519
Ramin Halavati7dbb0722019-02-15 05:33:49520const char kEnableFilesystemInIncognitoName[] = "Filesystem API in Incognito";
521const char kEnableFilesystemInIncognitoDescription[] =
522 "Enable Filesystem API in incognito mode.";
523
Doug Arnett08b4067b2017-10-12 20:14:44524const char kEnableNoScriptPreviewsName[] = "NoScript previews";
525
526const char kEnableNoScriptPreviewsDescription[] =
527 "Enable disabling JavaScript on some pages on slow networks.";
528
Thanh Le2c279fbc2017-11-21 01:25:40529const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1";
530const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2";
531const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3";
532const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4";
533const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5";
534const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6";
535const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7";
536const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8";
537const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9";
538const char kDataReductionProxyServerAlternative10[] =
539 "Use alt. server config 10";
rajendrantcfa60ba2018-10-30 09:16:54540const char kEnableDataReductionProxyNetworkServiceName[] =
541 "Data reduction proxy with network service";
542const char kEnableDataReductionProxyNetworkServiceDescription[] =
543 "Enable data reduction proxy when network service is enabled";
Brett Wilsonf27ff602017-07-07 22:28:47544const char kEnableDataReductionProxyServerExperimentName[] =
545 "Use an alternative Data Saver back end configuration.";
546const char kEnableDataReductionProxyServerExperimentDescription[] =
547 "Enable a different approach to saving data by configuring the back end "
548 "server";
549
550const char kEnableDataReductionProxySavingsPromoName[] =
551 "Data Saver 1 MB Savings Promo";
552const char kEnableDataReductionProxySavingsPromoDescription[] =
553 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
554 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
555 "enabled for the promo to be shown.";
556
Matt Giucad4870432017-11-24 01:04:38557const char kEnableDesktopPWAsName[] = "Desktop PWAs";
558const char kEnableDesktopPWAsDescription[] =
559 "Experimental windowing and install banner treatment for Progressive Web "
560 "Apps on desktop platforms. Implies #enable-experimental-app-banners.";
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17561
Giovanni Ortuño Urquidi40c8e792018-02-28 04:18:59562const char kEnableDesktopPWAsLinkCapturingName[] =
563 "Desktop PWAs Link Capturing";
564const char kEnableDesktopPWAsLinkCapturingDescription[] =
565 "Experimentally enable link capturing for Desktop PWAs. Navigations to "
566 "URLs that are in-scope of Desktop PWAs will open in a window. Requires "
567 "#enable-desktop-pwas.";
568
Jay Harris52511a02018-11-02 01:00:28569const char kDesktopPWAsCustomTabUIName[] = "Desktop PWAs Custom Tab UI";
570const char kDesktopPWAsCustomTabUIDescription[] =
571 "Browsing out-of-scope links in a desktop PWA will use the custom tab UI "
572 "for displaying the page title and origin instead of the location bar.";
573
Jay Harrisee7a7bc62018-10-09 01:47:49574const char kDesktopPWAsStayInWindowName[] =
575 "Desktop PWAs out-of-scope links open in the app window";
576const char kDesktopPWAsStayInWindowDescription[] =
Jay Harris52511a02018-11-02 01:00:28577 "Links to sites in a different scope will open inside the PWA window as "
578 "opposed to in the browser.";
Jay Harrisee7a7bc62018-10-09 01:47:49579
Alan Cutter1816c9d2019-02-11 02:20:07580const char kDesktopPWAsOmniboxInstallName[] =
581 "Desktop PWAs installable from the omnibox";
582const char kDesktopPWAsOmniboxInstallDescription[] =
583 "When on a site that passes PWA installation requirements show a button in "
584 "the omnibox for installing it.";
585
Christopher Lame66b7812018-09-26 01:49:24586const char kEnableSystemWebAppsName[] = "System Web Apps";
587const char kEnableSystemWebAppsDescription[] =
588 "Experimental system for using the Desktop PWA framework for running System"
589 "Apps (e.g Settings, Discover).";
590
David Benjamin570460e2018-10-16 06:01:29591const char kEnforceTLS13DowngradeName[] = "TLS 1.3 downgrade hardening";
592const char kEnforceTLS13DowngradeDescription[] =
593 "This option enables the TLS 1.3 downgrade hardening mechanism. This "
594 "hardens TLS 1.3 connections while remaining compatible with TLS 1.0 "
595 "through 1.2 connections. Firewalls and proxies that do not function when "
596 "this is enabled do not implement TLS 1.0 through 1.2 correctly or "
597 "securely. They must be fixed by vendors.";
598
Brett Wilsonf27ff602017-07-07 22:28:47599const char kEnableGenericSensorName[] = "Generic Sensor";
600const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25601 "Enables motion sensor classes based on Generic Sensor API, i.e. "
602 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
603 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
604
605const char kEnableGenericSensorExtraClassesName[] =
606 "Generic Sensor Extra Classes";
607const char kEnableGenericSensorExtraClassesDescription[] =
608 "Enables an extra set of sensor classes based on Generic Sensor API, which "
609 "expose previously unavailable platform features, i.e. AmbientLightSensor "
610 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47611
Vikas Soni78daa632019-01-12 01:32:52612const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging";
613const char kEnableGpuServiceLoggingDescription[] =
614 "Enable printing the actual GL driver calls.";
615
Brett Wilsonf27ff602017-07-07 22:28:47616const char kEnableHDRName[] = "HDR mode";
617const char kEnableHDRDescription[] =
618 "Enables HDR support on compatible displays.";
619
David Bokan911bded2018-11-27 23:23:32620const char kEnableImplicitRootScrollerName[] = "Implicit Root Scroller";
621const char kEnableImplicitRootScrollerDescription[] =
622 "Enables implicitly choosing which scroller on a page is the 'root "
623 "scroller'. i.e. The one that gets special features like URL bar movement, "
624 "overscroll glow, rotation anchoring, etc.";
625
Robert Ogden5a63b242018-09-17 21:38:57626const char kEnablePreviewsAndroidOmniboxUIName[] =
627 "Previews Android Omnibox UI";
628const char kEnablePreviewsAndroidOmniboxUIDescription[] =
629 "Enable showing the Previews UI in the Omnibox on Android instead of an "
630 "InfoBar. This has no effect on other platforms.";
631
Robert Ogdence8c9572018-10-08 23:08:48632const char kEnableLitePageServerPreviewsName[] = "Lite Page Server Previews";
633const char kEnableLitePageServerPreviewsDescription[] =
Doug Arnett9c1f87562018-12-14 00:56:39634 "Enable showing Lite Page Previews served from a Previews Server."
635 "This feature will cause Chrome to redirect eligible navigations "
Robert Ogdence8c9572018-10-08 23:08:48636 "to a Google-owned domain that serves a pre-rendered version of the "
Doug Arnett9c1f87562018-12-14 00:56:39637 "original page. Also known as Lite Page Redirect Previews.";
Robert Ogdence8c9572018-10-08 23:08:48638
Hiroshige Hayashizaki99d5821e2018-05-02 04:25:41639const char kLayeredAPIName[] = "Experimental layered APIs";
640const char kLayeredAPIDescription[] =
641 "Enable layered API infrastructure, as well as several experimental "
642 "layered APIs. The syntax and the APIs exposed are experimental and will "
643 "change over time.";
644
Philip Rogers63481332018-12-01 22:16:51645const char kEnableBlinkGenPropertyTreesName[] = "Enable BlinkGenPropertyTrees";
646const char kEnableBlinkGenPropertyTreesDescription[] =
647 "Enable a new compositing mode where Blink generates the compositor "
648 "property trees.";
649
Ian Kilpatricke68ef11a2018-07-04 03:52:10650const char kEnableLayoutNGName[] = "Enable LayoutNG";
651const char kEnableLayoutNGDescription[] =
652 "Enable Blink's next generation layout engine.";
653
Scott Littled0fd2d002018-04-13 03:37:26654const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading";
655const char kEnableLazyFrameLoadingDescription[] =
656 "Defers the loading of certain cross-origin frames until the page is "
657 "scrolled down near them.";
658
rajendrant793ff512018-08-10 17:07:59659const char kEnableLazyImageLoadingName[] = "Enable lazy image loading";
660const char kEnableLazyImageLoadingDescription[] =
661 "Defers the loading of images until the page is scrolled down near them.";
662
Sidney San Martín9375b892017-09-09 00:29:54663const char kEnableMacMaterialDesignDownloadShelfName[] =
664 "Enable Material Design download shelf";
665
666const char kEnableMacMaterialDesignDownloadShelfDescription[] =
667 "If enabled, the download shelf uses Material Design.";
668
Becca Hughesac86cd442019-01-09 23:49:54669const char kEnableMediaSessionServiceName[] = "Media Session Service";
670const char kEnableMediaSessionServiceDescription[] =
671 "Enables the media session mojo service and internal media session "
672 "support.";
673
Anton Urusov47cd4932017-09-19 14:41:41674const char kEnablePolicyToolName[] = "Enable policy management page";
675const char kEnablePolicyToolDescription[] =
676 "If enabled, the chrome://policy-tool URL loads a page for managing "
677 "policies.";
678
Brett Wilsonf27ff602017-07-07 22:28:47679const char kEnableNavigationTracingName[] = "Enable navigation tracing";
680const char kEnableNavigationTracingDescription[] =
681 "This is to be used in conjunction with the trace-upload-url flag. "
682 "WARNING: When enabled, Chrome will record performance data for every "
683 "navigation and upload it to the URL specified by the trace-upload-url "
684 "flag. The trace may include personally identifiable information (PII) "
685 "such as the titles and URLs of websites you visit.";
686
Bernhard Bauer5533f9912017-11-06 17:56:02687const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
688const char kEnableNetworkLoggingToFileDescription[] =
689 "Enables network logging to a file named netlog.json in the user data "
690 "directory. The file can be imported into chrome://net-internals.";
691
Brett Wilsonf27ff602017-07-07 22:28:47692const char kEnableNetworkServiceName[] = "Enable network service";
693const char kEnableNetworkServiceDescription[] =
694 "Enables the network service, which makes network requests through a "
John Abd-El-Malek225b04d2018-09-07 22:41:40695 "separate process.";
Brett Wilsonf27ff602017-07-07 22:28:47696
John Abd-El-Malek8067cc02017-12-04 23:23:20697const char kEnableNetworkServiceInProcessName[] =
698 "Runs network service in-process";
699const char kEnableNetworkServiceInProcessDescription[] =
700 "Runs the network service in the browser process.";
701
Tetsui Ohkuboc3eb87f72018-07-20 02:22:28702const char kEnableNotificationScrollBarName[] =
703 "Enable notification list scroll bar";
704const char kEnableNotificationScrollBarDescription[] =
705 "Enable the scroll bar of the notification list in Unified System Tray.";
706
Mitsuru Otsukae8304de2018-10-29 02:14:36707const char kEnableNotificationExpansionAnimationName[] =
708 "Enable notification expansion animations";
709const char kEnableNotificationExpansionAnimationDescription[] =
710 "Enable notification animations whenever the expansion state is toggled.";
711
xlou8b56f672018-02-09 23:34:30712const char kEnableNupPrintingName[] = "Enable N-up printing";
713const char kEnableNupPrintingDescription[] =
714 "Enable N-up printing in the print preview panel.";
715
Sophie Chang117a3b22017-10-24 22:25:36716const char kEnableOptimizationHintsName[] = "Optimization Hints";
717const char kEnableOptimizationHintsDescription[] =
Sophie Chang5454ce82018-07-16 17:44:50718 "Enable the Optimization Hints feature which incorporates server hints "
Sophie Chang117a3b22017-10-24 22:25:36719 "into decisions for what optimizations to perform on some pages on slow "
720 "networks.";
721
Takashi Toyoshima2e01e692018-11-16 03:23:27722const char kEnableOutOfBlinkCorsName[] = "Out of blink CORS";
723const char kEnableOutOfBlinkCorsDescription[] =
Yutaka Hirano98be3272017-08-07 17:55:39724 "CORS handling logic is moved out of blink.";
725
Chris Halle952239e2018-11-06 06:49:52726const char kExperimentalAccessibilityFeaturesName[] =
727 "Experimental accessibility features";
728const char kExperimentalAccessibilityFeaturesDescription[] =
729 "Enable additional accessibility features in the Settings page.";
730
Katie D652135c2018-11-27 18:30:13731const char kExperimentalAccessibilityAutoclickName[] =
732 "Experimental automatic click features";
733const char kExperimentalAccessibilityAutoclickDescription[] =
734 "Enable additional features for automatic clicks.";
735
Katie D0c31c5062019-01-02 18:12:35736const char kExperimentalAccessibilityLabelsName[] =
737 "Experimental accessibility image label features";
738const char kExperimentalAccessibilityLabelsDescription[] =
739 "Enable additional features for image labels for accessibility.";
740
Chris Hall4a4225f62019-01-18 03:07:16741const char kExperimentalAccessibilityLanguageDetectionName[] =
742 "Experimental accessibility language detection";
743const char kExperimentalAccessibilityLanguageDetectionDescription[] =
744 "Enable language detection for in-page content which is then exposed to "
745 "accessiblity technologies such as screen readers.";
746
Anastasia Helfinsteinafecc68c2018-11-26 19:20:17747const char kExperimentalAccessibilitySwitchAccessName[] =
748 "Experimental feature Switch Access";
749const char kExperimentalAccessibilitySwitchAccessDescription[] =
750 "Add a setting to enable the prototype of Switch Access";
751
kylechar7051c092018-02-05 20:31:39752const char kVizDisplayCompositorName[] = "Viz Display Compositor (OOP-D)";
753const char kVizDisplayCompositorDescription[] =
754 "If enabled, the display compositor runs as part of the viz service in the"
755 "GPU process.";
756
Ria Jiang6a129b982018-03-01 18:30:40757const char kVizHitTestDrawQuadName[] = "Viz Hit-test Draw-quad version";
758const char kVizHitTestDrawQuadDescription[] =
759 "If enabled, event targeting uses the new viz-assisted hit-testing logic, "
760 "with hit-test data computed from the CompositorFrame.";
761
Erik Chen49bbfa22017-08-18 08:49:56762const char kEnableOutOfProcessHeapProfilingName[] =
Albert J. Wong174174762018-01-18 23:50:23763 "Out of process heap profiling start mode.";
Erik Chen49bbfa22017-08-18 08:49:56764const char kEnableOutOfProcessHeapProfilingDescription[] =
765 "Creates a profiling service that records stacktraces for all live, "
erikchen94aca892018-01-18 00:21:19766 "malloced objects. Heap dumps can be obtained at chrome://tracing "
767 "[category:memory-infra] and chrome://memory-internals. This setting "
768 "controls which processes are profiled. As long as this setting is not "
769 "disabled, users can start profiling any given process in "
770 "chrome://memory-internals.";
771const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU";
772const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes";
773const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers";
774const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser";
775const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU.";
erikchen0a5dd692017-12-12 00:53:10776const char kEnableOutOfProcessHeapProfilingModeManual[] =
erikchen94aca892018-01-18 00:21:19777 "None by default. Visit chrome://memory-internals to choose which "
778 "processes to profile.";
Albert J. Wongbd5bd902017-11-09 19:56:15779const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] =
780 "Profile a random sampling of renderer processes, ensuring only one is "
781 "ever profiled at a time.";
erikchen94aca892018-01-18 00:21:19782
Erik Chen8bb76b52017-12-06 19:06:25783const char kOutOfProcessHeapProfilingKeepSmallAllocations[] =
erikchen94aca892018-01-18 00:21:19784 "Emit small allocations in memlog heap dumps.";
Erik Chen8bb76b52017-12-06 19:06:25785const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] =
786 "By default, small allocations are pruned from the heap dump. This reduces "
787 "the size of the compressed trace by 100x. If pruning is disabled, the "
788 "chrome://tracing UI may be unable to take or load the trace. Save the "
789 "trace directly using chrome://memory-internals, and use other mechanisms "
790 "[e.g. diff_heap_profiler.py] to examine the trace. Note that "
791 "automatically uploaded traces will always be pruned. This only affects "
792 "manually taken memory-infra traces.";
Erik Chen49bbfa22017-08-18 08:49:56793
erikchen8bc20d82018-02-14 03:21:51794const char kOutOfProcessHeapProfilingSampling[] = "Sample memlog allocations";
795const char kOutOfProcessHeapProfilingSamplingDescription[] =
796 "Use a poisson process to sample allocations. Defaults to a sample rate of "
erikchen99bfce02018-02-14 20:29:22797 "10000. This results in low noise for large and/or frequent allocations ["
798 "[size * frequency >> 10000]. This means that aggregate numbers [e.g. "
799 "total size of malloc-ed objects] and large and/or frequent allocations "
800 "can be trusted with high fidelity.";
erikchen8bc20d82018-02-14 03:21:51801
Erik Chen3303fd0232018-01-11 20:29:05802const char kOOPHPStackModeName[] =
803 "The type of stack to record for memlog heap dumps";
804const char kOOPHPStackModeDescription[] =
erikchen94aca892018-01-18 00:21:19805 "By default, memlog heap dumps record native stacks, which requires a "
806 "post-processing step to symbolize. Requires a custom build with frame "
erikchen011ad3f2018-01-26 17:54:55807 "pointers to work on Android. Native with thread names will add the thread "
808 "name as the first frame of each native stack. It's also possible to "
809 "record a pseudo stack using trace events as identifiers. It's also "
810 "possible to do a mix of both.";
erikchen94aca892018-01-18 00:21:19811const char kOOPHPStackModeMixed[] = "Mixed";
812const char kOOPHPStackModeNative[] = "Native";
erikchen011ad3f2018-01-26 17:54:55813const char kOOPHPStackModeNativeWithThreadNames[] = "Native with thread names";
erikchen94aca892018-01-18 00:21:19814const char kOOPHPStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:05815
François Beaufort2e75f492018-02-08 20:44:46816const char kEnablePictureInPictureName[] = "Enable Picture-in-Picture.";
Brett Wilsonf27ff602017-07-07 22:28:47817const char kEnablePictureInPictureDescription[] =
François Beaufort106802c2018-12-18 17:46:13818 "Show Picture-in-Picture in browser context menu and video native "
819 "controls. The #enable-surfaces-for-videos flag must be enabled as well "
820 "to use it.";
Brett Wilsonf27ff602017-07-07 22:28:47821
F#m59d036e2017-09-13 07:22:17822const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
823const char kEnablePixelCanvasRecordingDescription[] =
824 "Pixel canvas recording allows the compositor to raster contents aligned "
825 "with the pixel and improves text rendering. This should be enabled when a "
826 "device is using fractional scale factor.";
827
Ella Gebee81c92018-08-14 15:51:09828const char kEnableResamplingInputEventsName[] =
829 "Enable resampling input events";
830const char kEnableResamplingInputEventsDescription[] =
831 "Predicts mouse and touch inputs position at rAF time based on previous "
832 "input";
833const char kEnableResamplingScrollEventsName[] =
834 "Enable resampling scroll events";
835const char kEnableResamplingScrollEventsDescription[] =
836 "Predicts the scroll amount at vsync time based on previous input";
837
Doug Arnettaa0bf202018-08-27 19:42:11838const char kEnableResourceLoadingHintsName[] = "Enable resource loading hints";
839const char kEnableResourceLoadingHintsDescription[] =
840 "Enable using server-provided resource loading hints to provide a preview "
841 "over slow network connections.";
842
Mikel Astizb4786aa2018-11-09 22:12:09843const char kEnableSyncPseudoUSSAppListName[] =
844 "Enable pseudo-USS for APP_LIST sync.";
845const char kEnableSyncPseudoUSSAppListDescription[] =
846 "Enable new USS-based codepath for sync datatype APP_LIST.";
847
848const char kEnableSyncPseudoUSSAppsName[] = "Enable pseudo-USS for APPS sync.";
849const char kEnableSyncPseudoUSSAppsDescription[] =
850 "Enable new USS-based codepath for sync datatype APPS.";
851
852const char kEnableSyncPseudoUSSDictionaryName[] =
853 "Enable pseudo-USS for DICTIONARY sync.";
854const char kEnableSyncPseudoUSSDictionaryDescription[] =
855 "Enable new USS-based codepath for sync datatype DICTIONARY.";
856
857const char kEnableSyncPseudoUSSExtensionSettingsName[] =
858 "Enable pseudo-USS for EXTENSION_SETTINGS and APP_SETTINGS sync.";
859const char kEnableSyncPseudoUSSExtensionSettingsDescription[] =
860 "Enable new USS-based codepath for sync datatypes EXTENSION_SETTINGS and "
861 "APP_SETTINGS.";
862
863const char kEnableSyncPseudoUSSExtensionsName[] =
864 "Enable pseudo-USS for EXTENSIONS sync.";
865const char kEnableSyncPseudoUSSExtensionsDescription[] =
866 "Enable new USS-based codepath for sync datatype EXTENSIONS.";
867
868const char kEnableSyncPseudoUSSFaviconsName[] =
869 "Enable pseudo-USS for favicon sync.";
870const char kEnableSyncPseudoUSSFaviconsDescription[] =
871 "Enable new USS-based codepath for sync datatypes FAVICON_IMAGES and "
872 "FAVICON_TRACKING.";
873
874const char kEnableSyncPseudoUSSHistoryDeleteDirectivesName[] =
875 "Enable pseudo-USS for HISTORY_DELETE_DIRECTIVES sync.";
876const char kEnableSyncPseudoUSSHistoryDeleteDirectivesDescription[] =
877 "Enable new USS-based codepath for sync datatype "
878 "HISTORY_DELETE_DIRECTIVES.";
879
880const char kEnableSyncPseudoUSSPasswordsName[] =
881 "Enable pseudo-USS for PASSWORDS sync.";
882const char kEnableSyncPseudoUSSPasswordsDescription[] =
883 "Enable new USS-based codepath for sync datatype PASSWORDS (pseudo-USS).";
884
885const char kEnableSyncPseudoUSSPreferencesName[] =
886 "Enable pseudo-USS for PREFERENCES sync.";
887const char kEnableSyncPseudoUSSPreferencesDescription[] =
888 "Enable new USS-based codepath for sync datatype PREFERENCES.";
889
890const char kEnableSyncPseudoUSSPriorityPreferencesName[] =
891 "Enable pseudo-USS for PRIORITY_PREFERENCES sync.";
892const char kEnableSyncPseudoUSSPriorityPreferencesDescription[] =
893 "Enable new USS-based codepath for sync datatype PRIORITY_PREFERENCES.";
894
895const char kEnableSyncPseudoUSSSearchEnginesName[] =
896 "Enable pseudo-USS for SEARCH_ENGINES sync.";
897const char kEnableSyncPseudoUSSSearchEnginesDescription[] =
898 "Enable new USS-based codepath for sync datatype SEARCH_ENGINES.";
899
900const char kEnableSyncPseudoUSSSupervisedUsersName[] =
901 "Enable pseudo-USS for supervised users sync.";
902const char kEnableSyncPseudoUSSSupervisedUsersDescription[] =
903 "Enable new USS-based codepath for sync datatypes SUPERVISED_USER_SETTINGS "
904 "and SUPERVISED_USER_WHITELISTS.";
905
906const char kEnableSyncPseudoUSSThemesName[] =
907 "Enable pseudo-USS for THEMES sync.";
908const char kEnableSyncPseudoUSSThemesDescription[] =
909 "Enable new USS-based codepath for sync datatype THEMES.";
910
Mohamed Amir Yosef0178fa892018-07-23 17:43:52911const char kEnableSyncUSSBookmarksName[] = "Enable USS for bookmarks sync";
912const char kEnableSyncUSSBookmarksDescription[] =
913 "Enables the new, experimental implementation of bookmark sync";
914
Mohamed Amir Yosef3074dfc2019-02-06 18:34:43915const char kEnableSyncUSSPasswordsName[] = "Enable USS for passwords sync";
916const char kEnableSyncUSSPasswordsDescription[] =
917 "Enables the new, experimental implementation of passwords sync";
918
Mikel Astiz38837f82018-04-24 22:23:23919const char kEnableSyncUSSSessionsName[] = "Enable USS for sessions sync";
920const char kEnableSyncUSSSessionsDescription[] =
921 "Enables the new, experimental implementation of session sync (aka tab "
922 "sync).";
923
David Bokane9370c22019-02-14 15:19:58924const char kEnableTextFragmentAnchorName[] = "Enable Text Fragment Anchor.";
925const char kEnableTextFragmentAnchorDescription[] =
926 "Enables scrolling to text specified in URL's fragment.";
927
Brett Wilsonf27ff602017-07-07 22:28:47928const char kEnableUseZoomForDsfName[] =
929 "Use Blink's zoom for device scale factor.";
930const char kEnableUseZoomForDsfDescription[] =
931 "If enabled, Blink uses its zooming mechanism to scale content for device "
932 "scale factor.";
933const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
934const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
935const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
936
Patrick Noland8ee016e2018-01-24 11:44:53937const char kEnableScrollAnchorSerializationName[] =
938 "Scroll Anchor Serialization";
939const char kEnableScrollAnchorSerializationDescription[] =
940 "Save the scroll anchor and use it to restore the scroll position when "
941 "navigating.";
942
Brad Nelson5cd500e2018-01-04 00:50:19943const char kEnableSharedArrayBufferName[] =
944 "Experimental enabled SharedArrayBuffer support in JavaScript.";
945const char kEnableSharedArrayBufferDescription[] =
946 "Enable SharedArrayBuffer support in JavaScript.";
947
Brett Wilsonf27ff602017-07-07 22:28:47948const char kEnableWasmName[] = "WebAssembly structured cloning support.";
949const char kEnableWasmDescription[] =
950 "Enable web pages to use WebAssembly structured cloning.";
951
Lei Zhang0ca70ea2018-09-07 17:51:01952const char kEnableWebAuthenticationCableSupportName[] =
Kim Paulhamus92431372018-07-20 02:25:47953 "Web Authentication caBLE support";
Lei Zhang0ca70ea2018-09-07 17:51:01954const char kEnableWebAuthenticationCableSupportDescription[] =
Kim Paulhamus92431372018-07-20 02:25:47955 "Enable the cloud-assisted pairingless BLE protocol for use with "
956 "the Web Authentication API.";
Kim Paulhamusae635a32018-06-27 07:30:54957
Brett Wilsonf27ff602017-07-07 22:28:47958const char kEnableImageCaptureAPIName[] = "Image Capture API";
959const char kEnableImageCaptureAPIDescription[] =
960 "Enables the Web Platform Image Capture API: takePhoto(), "
961 "getPhotoCapabilities(), etc.";
962
Ramin Halavatic158b182018-10-18 14:04:54963const char kEnableIncognitoWindowCounterName[] = "Incognito Window Counter";
964const char kEnableIncognitoWindowCounterDescription[] =
965 "Shows the count of Incognito windows next to the Incognito icon on the "
966 "toolbar.";
967
Brett Wilsonf27ff602017-07-07 22:28:47968const char kEnableZeroSuggestRedirectToChromeName[] =
969 "Experimental contextual omnibox suggestion";
970const char kEnableZeroSuggestRedirectToChromeDescription[] =
971 "Change omnibox contextual suggestions to an experimental source. Note "
972 "that this is not an on/off switch for contextual omnibox and it only "
973 "applies to suggestions provided before the user starts typing a URL or a "
974 "search query (i.e. zero suggest).";
975
Clemens Hammacher0c8a15a2018-04-27 13:45:32976const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
977const char kEnableWasmBaselineDescription[] =
978 "Enables WebAssembly baseline compilation and tier up.";
979
Bill Budged0dace172019-02-10 00:46:21980const char kEnableWasmCodeCacheName[] = "WebAssembly compiled module cache";
981const char kEnableWasmCodeCacheDescription[] =
982 "Enables caching of compiled WebAssembly modules.";
983
Ben Smith24c1e5c2018-06-20 01:09:02984const char kEnableWasmThreadsName[] = "WebAssembly threads support.";
985const char kEnableWasmThreadsDescription[] =
986 "Enables support for the WebAssembly Threads proposal. Implies "
987 "#shared-array-buffer and #enable-webassembly.";
988
Brett Wilsonf27ff602017-07-07 22:28:47989const char kExpensiveBackgroundTimerThrottlingName[] =
990 "Throttle expensive background timers";
991const char kExpensiveBackgroundTimerThrottlingDescription[] =
992 "Enables intervention to limit CPU usage of background timers to 1%.";
993
994const char kExperimentalAppBannersName[] = "Experimental app banners";
995const char kExperimentalAppBannersDescription[] =
Matt Giucad4870432017-11-24 01:04:38996 "Enables a new experimental app banner flow and UI. Implies "
997 "#enable-app-banners.";
Brett Wilsonf27ff602017-07-07 22:28:47998
999const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
1000const char kExperimentalCanvasFeaturesDescription[] =
1001 "Enables the use of experimental canvas features which are still in "
1002 "development.";
1003
1004const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
1005const char kExperimentalExtensionApisDescription[] =
1006 "Enables experimental extension APIs. Note that the extension gallery "
1007 "doesn't allow you to upload extensions that use experimental APIs.";
1008
Ian Clelland37a985d2018-05-04 02:43:131009const char kExperimentalProductivityFeaturesName[] =
1010 "Experimental Productivity Features";
1011const char kExperimentalProductivityFeaturesDescription[] =
1012 "Enable support for experimental developer productivity features, such as "
1013 "Layered APIs and policies for avoiding slow rendering.";
1014
Brett Wilsonf27ff602017-07-07 22:28:471015const char kExperimentalSecurityFeaturesName[] =
1016 "Potentially annoying security features";
1017const char kExperimentalSecurityFeaturesDescription[] =
1018 "Enables several security features that will likely break one or more "
1019 "pages that you visit on a daily basis. Strict mixed content checking, for "
1020 "example. And locking powerful features to secure contexts. This flag will "
1021 "probably annoy you.";
1022
1023const char kExperimentalWebPlatformFeaturesName[] =
1024 "Experimental Web Platform features";
1025const char kExperimentalWebPlatformFeaturesDescription[] =
1026 "Enables experimental Web Platform features that are in development.";
1027
1028const char kExtensionContentVerificationName[] =
1029 "Extension Content Verification";
1030const char kExtensionContentVerificationDescription[] =
1031 "This flag can be used to turn on verification that the contents of the "
1032 "files on disk for extensions from the webstore match what they're "
1033 "expected to be. This can be used to turn on this feature if it would not "
1034 "otherwise have been turned on, but cannot be used to turn it off (because "
1035 "this setting can be tampered with by malware).";
1036const char kExtensionContentVerificationBootstrap[] =
1037 "Bootstrap (get expected hashes, but do not enforce them)";
1038const char kExtensionContentVerificationEnforce[] =
1039 "Enforce (try to get hashes, and enforce them if successful)";
1040const char kExtensionContentVerificationEnforceStrict[] =
1041 "Enforce strict (hard fail if we can't get hashes)";
1042
1043const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1044const char kExtensionsOnChromeUrlsDescription[] =
1045 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1046 "request this permission.";
galinapae72e152017-05-12 13:12:281047
Brett Wilsonecb80982017-07-12 20:34:511048const char kFeaturePolicyName[] = "Feature Policy";
1049const char kFeaturePolicyDescription[] =
1050 "Enables granting and removing access to features through the "
1051 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:341052
Brett Wilsonecb80982017-07-12 20:34:511053const char kFontCacheScalingName[] = "FontCache scaling";
1054const char kFontCacheScalingDescription[] =
1055 "Reuse a cached font in the renderer to serve different sizes of font for "
1056 "faster layout.";
1057
1058const char kForceEffectiveConnectionTypeName[] =
1059 "Override effective connection type";
1060const char kForceEffectiveConnectionTypeDescription[] =
1061 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:301062 "returned by the network quality estimator. Slow 2G on Cellular returns "
1063 "Slow 2G when connected to a cellular network, and the actual estimate "
1064 "effective connection type when not on a cellular network. Previews are "
1065 "usually served on 2G networks.";
Brett Wilsonecb80982017-07-12 20:34:511066const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
1067const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
1068const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:301069const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
1070 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:511071const char kEffectiveConnectionType2GDescription[] = "2G";
1072const char kEffectiveConnectionType3GDescription[] = "3G";
1073const char kEffectiveConnectionType4GDescription[] = "4G";
1074
1075const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1076const char kFillOnAccountSelectDescription[] =
1077 "Filling of passwords when an account is explicitly selected by the user "
1078 "rather than autofilling credentials on page load.";
1079
jdoerrie11c5f4f2019-02-04 18:29:181080const char kFillOnAccountSelectHttpName[] =
1081 "Fill passwords on account selection on HTTP origins";
1082const char kFillOnAccountSelectHttpDescription[] =
1083 "Filling of passwords when an account is explicitly selected by the user "
1084 "rather than autofilling credentials on page load on HTTP origins.";
1085
Brett Wilsonecb80982017-07-12 20:34:511086const char kForceTextDirectionName[] = "Force text direction";
1087const char kForceTextDirectionDescription[] =
1088 "Explicitly force the per-character directionality of UI text to "
1089 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1090 "direction of the character language.";
1091const char kForceDirectionLtr[] = "Left-to-right";
1092const char kForceDirectionRtl[] = "Right-to-left";
1093
1094const char kForceUiDirectionName[] = "Force UI direction";
1095const char kForceUiDirectionDescription[] =
1096 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1097 "mode, overriding the default direction of the UI language.";
1098
1099const char kFramebustingName[] =
1100 "Framebusting requires same-origin or a user gesture";
1101const char kFramebustingDescription[] =
1102 "Don't permit an iframe to navigate the top level browsing context unless "
1103 "they are same-origin or the iframe is processing a user gesture.";
1104
Matt Reynolds043469f2018-05-01 22:56:581105const char kGamepadVibrationName[] = "Gamepad Vibration";
1106const char kGamepadVibrationDescription[] =
1107 "Enables haptic vibration effects on supported gamepads.";
Brett Wilsonecb80982017-07-12 20:34:511108
Brett Wilsonecb80982017-07-12 20:34:511109const char kGpuRasterizationName[] = "GPU rasterization";
1110const char kGpuRasterizationDescription[] =
1111 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:281112const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:511113
Ioana Pandele1ed7ef72018-11-21 15:22:031114const char kGooglePasswordManagerName[] = "Google Password Manager UI";
1115const char kGooglePasswordManagerDescription[] =
1116 "Enables access to the Google Password Manager UI from Chrome.";
1117
Brett Wilsonecb80982017-07-12 20:34:511118const char kGoogleProfileInfoName[] = "Google profile name and icon";
1119const char kGoogleProfileInfoDescription[] =
1120 "Enables using Google information to populate the profile name and icon in "
1121 "the avatar menu.";
1122
Takumi Fujimotofb71e332018-03-31 14:04:081123const char kViewsCastDialogName[] = "Views Cast dialog";
1124const char kViewsCastDialogDescription[] =
Takumi Fujimoto541e5e22018-05-30 00:46:311125 "Replace the WebUI Cast dialog with a Views toolkit dialog. This requires "
Takumi Fujimoto28351acc2018-05-31 17:19:531126 "#views-browser-windows on Mac. This feature is activated if either this "
Robert Liao3ecf97c2018-06-05 01:24:541127 "flag or #upcoming-ui-features is enabled";
Takumi Fujimotofb71e332018-03-31 14:04:081128
Gabrielle Paladoaebf7ca2019-01-16 07:07:061129const char kHandwritingGestureName[] = "Handwriting Gestures";
1130const char kHandwritingGestureDescription[] =
1131 "Enables handwriting gestures within the virtual keyboard";
1132
Tommy Steimel1aadd7b2019-01-18 19:39:421133const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling";
1134const char kHardwareMediaKeyHandlingDescription[] =
1135 "Enables using media keys to control the active media session. This "
1136 "requires MediaSessionService to be enabled too";
1137
Manu Cornet4a908de2018-04-09 04:32:271138const char kHideActiveAppsFromShelfName[] =
1139 "Hide running apps (that are not pinned) from the shelf";
1140const char kHideActiveAppsFromShelfDescription[] =
1141 "Save space in the shelf by hiding running apps (that are not pinned).";
Manu Cornete5f855b2018-03-13 03:35:251142
Brett Wilsonecb80982017-07-12 20:34:511143const char kHistoryRequiresUserGestureName[] =
1144 "New history entries require a user gesture.";
1145const char kHistoryRequiresUserGestureDescription[] =
1146 "Require a user gesture to add a history entry.";
1147const char kHyperlinkAuditingName[] = "Hyperlink auditing";
1148const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
1149
Ryan Landay4242dbc22018-04-04 01:47:331150const char kHorizontalTabSwitcherAndroidName[] =
1151 "Enable horizontal tab switcher";
1152const char kHorizontalTabSwitcherAndroidDescription[] =
1153 "Changes the layout of the Android tab switcher so tabs scroll "
1154 "horizontally instead of vertically.";
1155
Matt Simmons2048b2a2018-12-20 20:12:561156const char kTabSwitcherOnReturnName[] = "Enable tab switcher on return";
1157const char kTabSwitcherOnReturnDescription[] =
1158 "Enable tab switcher on return after specified time has elapsed";
1159
Brett Wilsonecb80982017-07-12 20:34:511160const char kHostedAppQuitNotificationName[] =
1161 "Quit notification for hosted apps";
1162const char kHostedAppQuitNotificationDescription[] =
1163 "Display a notification when quitting Chrome if hosted apps are currently "
1164 "running.";
1165
1166const char kHostedAppShimCreationName[] =
1167 "Creation of app shims for hosted apps on Mac";
1168const char kHostedAppShimCreationDescription[] =
1169 "Create app shims on Mac when creating a hosted app.";
1170
Ana-Cosmina Popescuda3bcbe2017-09-22 18:24:481171const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector";
1172const char kHtmlBasedUsernameDetectorDescription[] =
1173 "Use HTML-based username detector for the password manager.";
1174
Brett Wilsonecb80982017-07-12 20:34:511175const char kIconNtpName[] = "Large icons on the New Tab page";
1176const char kIconNtpDescription[] =
1177 "Enable the experimental New Tab page using large icons.";
1178
1179const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
1180const char kIgnoreGpuBlacklistDescription[] =
1181 "Overrides the built-in software rendering list and enables "
1182 "GPU-acceleration on unsupported system configurations.";
1183
Ryan Sturm8c3dbc92018-06-26 19:22:371184const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blocklist";
Thanh Le5f090efa52017-12-27 22:39:441185const char kIgnorePreviewsBlacklistDescription[] =
Ryan Sturm8c3dbc92018-06-26 19:22:371186 "Ignore decisions made by the PreviewsBlockList";
Thanh Le5f090efa52017-12-27 22:39:441187
Alexandre Frechetted3e1b542018-12-13 14:40:501188const char kImprovedGeoLanguageDataName[] = "Improved Geo-language Data";
1189const char kImprovedGeoLanguageDataDescription[] =
1190 "Makes the GeoLanguageModel use higher quality, more refined ULP "
1191 "geo-language data.";
1192
Brett Wilsonecb80982017-07-12 20:34:511193const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1194const char kInProductHelpDemoModeChoiceDescription[] =
1195 "Selects the In-Product Help demo mode.";
1196
1197const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1198const char kJavascriptHarmonyDescription[] =
1199 "Enable web pages to use experimental JavaScript features.";
1200
1201const char kJavascriptHarmonyShippingName[] =
1202 "Latest stable JavaScript features";
1203const char kJavascriptHarmonyShippingDescription[] =
1204 "Some web pages use legacy or non-standard JavaScript extensions that may "
1205 "conflict with the latest JavaScript features. This flag allows disabling "
1206 "support of those features for compatibility with such pages.";
1207
Yutaka Hiranof7f2f632017-09-06 10:40:081208const char kKeepAliveRendererForKeepaliveRequestsName[] =
1209 "Keep a renderer alive for keepalive fetch requests";
1210const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
1211 "Keep a render process alive when the process has a pending fetch request "
1212 "with `keepalive' specified.";
1213
Joe Downing095fd6d2018-02-01 18:40:361214const char kKeyboardLockApiName[] = "Experimental keyboard lock API.";
1215const char kKeyboardLockApiDescription[] =
1216 "Enables websites to use the new keyboard{Lock|Unlock} API to intercept "
1217 "specific key events and have them routed directly to the webpage when in "
1218 "fullscreen mode. Implies #experimental-keyboard-lock-ui.";
1219
Brett Wilsonecb80982017-07-12 20:34:511220const char kLcdTextName[] = "LCD text antialiasing";
1221const char kLcdTextDescription[] =
1222 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
1223 "(subpixel) when doing accelerated compositing.";
1224
1225const char kLoadMediaRouterComponentExtensionName[] =
1226 "Load Media Router Component Extension";
1227const char kLoadMediaRouterComponentExtensionDescription[] =
1228 "Loads the Media Router component extension at startup.";
1229
Mustafa Emre Acer137dc8b2018-08-29 20:38:131230const char kLookalikeUrlNavigationSuggestionsName[] =
1231 "Navigation suggestions for lookalike URLs";
1232const char kLookalikeUrlNavigationSuggestionsDescription[] =
1233 "Enable navigation suggestions for URLs that are visually similar to "
1234 "popular domains or to domains with a site engagement score.";
1235
Brett Wilsonecb80982017-07-12 20:34:511236const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
1237const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
Brett Wilsonecb80982017-07-12 20:34:511238
Lei Zhang2eca9082017-10-17 20:42:501239const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP.";
1240const char kMaterialDesignIncognitoNTPDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511241 "If enabled, the Incognito New Tab page uses the new material design with "
1242 "a better readable text.";
1243
spqchanb87755692018-04-05 00:46:091244const char kMediaRouterCastAllowAllIPsName[] =
1245 "Connect to Cast devices on all IP addresses";
1246const char kMediaRouterCastAllowAllIPsDescription[] =
1247 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:311248 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:091249
Brett Wilsonecb80982017-07-12 20:34:511250const char kMessageCenterNewStyleNotificationName[] = "New style notification";
1251const char kMessageCenterNewStyleNotificationDescription[] =
1252 "Enables the experiment style of material-design notification";
1253
Brett Wilsonecb80982017-07-12 20:34:511254const char kNewAudioRenderingMixingStrategyName[] =
1255 "New audio rendering mixing strategy";
1256const char kNewAudioRenderingMixingStrategyDescription[] =
1257 "Use the new audio rendering mixing strategy.";
1258
1259const char kNewBookmarkAppsName[] = "The new bookmark app system";
1260const char kNewBookmarkAppsDescription[] =
1261 "Enables the new system for creating bookmark apps.";
1262
Vadym Doroshenkocd4ff782018-07-24 13:41:021263const char kNewPasswordFormParsingName[] =
1264 "New password form parsing for filling passwords";
Vadym Doroshenkof81e8bb2018-04-18 14:35:241265const char kNewPasswordFormParsingDescription[] =
Vadym Doroshenkocd4ff782018-07-24 13:41:021266 "Replaces existing form parsing for filling in password manager with a new "
1267 "version, currently under development. WARNING: when enabled, Password "
1268 "Manager might stop working";
1269
1270const char kNewPasswordFormParsingForSavingName[] =
1271 "New password form parsing for saving passwords";
1272const char kNewPasswordFormParsingForSavingDescription[] =
1273 "Replaces existing form parsing for saving in password manager with a new "
1274 "version, currently under development. WARNING: when enabled, Password "
1275 "Manager might stop working";
Vadym Doroshenkof81e8bb2018-04-18 14:35:241276
CJ DiMeglio7b4a199f2017-11-30 01:26:501277const char kUseSurfaceLayerForVideoName[] =
1278 "Enable the use of SurfaceLayer objects for videos.";
1279const char kUseSurfaceLayerForVideoDescription[] =
1280 "Enable compositing onto a Surface instead of a VideoLayer "
1281 "for videos.";
Brett Wilsonecb80982017-07-12 20:34:511282
1283const char kNewUsbBackendName[] = "Enable new USB backend";
1284const char kNewUsbBackendDescription[] =
1285 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:341286
Sonny Sasaka2d200432018-03-22 17:43:161287const char kNewblueName[] = "Newblue";
1288const char kNewblueDescription[] =
1289 "Enables the use of newblue Bluetooth daemon.";
1290
Peter Boström7df25c72018-12-12 06:40:191291const char kNewTabLoadingAnimation[] = "New tab-loading animation";
1292const char kNewTabLoadingAnimationDescription[] =
1293 "Enables a new look for the tab-loading animation.";
1294
Peter Kasting63097912018-06-30 02:09:031295const char kNewTabButtonPosition[] = "New tab button position";
1296const char kNewTabButtonPositionDescription[] =
1297 "Controls placement of the new tab button within the tabstrip.";
1298const char kNewTabButtonPositionOppositeCaption[] = "Opposite caption buttons";
1299const char kNewTabButtonPositionLeading[] = "Leading";
1300const char kNewTabButtonPositionAfterTabs[] = "After tabs";
1301const char kNewTabButtonPositionTrailing[] = "Trailing";
1302
Egor Pasko6fed3822018-05-30 10:33:141303const char kNostatePrefetchName[] = "NoState Prefetch";
vabr0215a8e2017-03-28 12:47:341304const char kNostatePrefetchDescription[] =
Elly Fong-Jonesf4c15772019-01-31 17:40:061305 "If enabled, pre-downloads resources to improve page load speed.";
vabr0215a8e2017-03-28 12:47:341306
Alex Newcomerd7b0cc42018-05-25 22:58:481307const char kNotificationIndicatorName[] = "Notification Indicators";
1308const char kNotificationIndicatorDescription[] =
1309 "Enable notification indicators, which appear on app icons when a "
1310 "notification is active. This will also enable notifications in context "
1311 "menus.";
1312
Brett Wilsonecb80982017-07-12 20:34:511313const char kNotificationsNativeFlagName[] = "Enable native notifications.";
1314const char kNotificationsNativeFlagDescription[] =
1315 "Enable support for using the native notification toasts and notification "
1316 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:341317
Valeriya Sinevich972ac122018-09-05 07:33:191318const char kUseMultiloginEndpointName[] = "Use Multilogin endpoint.";
1319const char kUseMultiloginEndpointDescription[] =
1320 "Use Gaia OAuth multilogin for identity consistency.";
1321
Zentaro Kavanaghbad511c2017-10-18 22:29:001322#if defined(OS_POSIX)
1323const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication";
1324const char kNtlmV2EnabledDescription[] =
1325 "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support.";
1326#endif
1327
Brett Wilsonecb80982017-07-12 20:34:511328const char kOfferStoreUnmaskedWalletCardsName[] =
1329 "Google Payments card saving checkbox";
1330const char kOfferStoreUnmaskedWalletCardsDescription[] =
1331 "Show the checkbox to offer local saving of a credit card downloaded from "
1332 "the server.";
1333
1334const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
1335const char kOfflineAutoReloadDescription[] =
1336 "Pages that fail to load while the browser is offline will be "
1337 "auto-reloaded when the browser is online again.";
1338
1339const char kOfflineAutoReloadVisibleOnlyName[] =
1340 "Only Auto-Reload Visible Tabs";
1341const char kOfflineAutoReloadVisibleOnlyDescription[] =
1342 "Pages that fail to load while the browser is offline will only be "
1343 "auto-reloaded if their tab is visible.";
1344
Brett Wilsonecb80982017-07-12 20:34:511345const char kOmniboxDisplayTitleForCurrentUrlName[] =
1346 "Include title for the current URL in the omnibox";
1347const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
1348 "In the event that the omnibox provides suggestions on-focus, the URL of "
1349 "the current page is provided as the first suggestion without a title. "
1350 "Enabling this flag causes the title to be displayed.";
1351
manuk2e55a7b2019-02-12 20:08:231352const char kOmniboxMaterialDesignWeatherIconsName[] =
1353 "Omnibox Material Design Weather Icons";
1354const char kOmniboxMaterialDesignWeatherIconsDescription[] =
1355 "Use material design weather icons in the omnibox when displaying weather "
1356 "answers.";
1357
Tomasz Wiszkowskic87dff12019-01-15 02:57:511358const char kOmniboxNewAnswerLayoutName[] = "Omnibox new answer layout";
1359const char kOmniboxNewAnswerLayoutDescription[] =
1360 "Modernize omnibox answers using an enhanced layout with larger icons.";
1361
Tomasz Wiszkowskic7fd5bed2019-02-11 17:33:231362const char kOmniboxRichEntitySuggestionsName[] =
1363 "Omnibox rich entity suggestions";
1364const char kOmniboxRichEntitySuggestionsDescription[] =
1365 "Display entity suggestions using images and an enhanced layout; showing "
1366 "more context and descriptive text about the entity. Has no effect unless "
1367 "either the #upcoming-ui-features flag is Enabled or the #top-chrome-md "
1368 "flag is set to Refresh or Touchable Refresh.";
1369
Benoit Lizeab08362c2017-07-19 14:50:541370const char kOmniboxSpareRendererName[] =
1371 "Start spare renderer on omnibox focus";
1372const char kOmniboxSpareRendererDescription[] =
1373 "When the omnibox is focused, start an empty spare renderer. This can "
1374 "speed up the load of the navigation from the omnibox.";
1375
Tommy C. Lie4194b732018-09-28 22:21:511376const char kOmniboxUIHideSteadyStateUrlSchemeName[] =
1377 "Omnibox UI Hide Steady-State URL Scheme";
1378const char kOmniboxUIHideSteadyStateUrlSchemeDescription[] =
1379 "In the omnibox, hide the scheme from steady state displayed URLs. It is "
Tommy C. Libef94ee02018-10-17 19:56:361380 "restored during editing.";
Tommy C. Lie4194b732018-09-28 22:21:511381
Tommy C. Lib20aec72018-11-19 21:38:231382const char kOmniboxUIOneClickUnelideName[] = "Omnibox UI One Click Unelide";
1383const char kOmniboxUIOneClickUnelideDescription[] =
1384 "In the omnibox, undo all unelisions with a single click or focus action.";
1385
Tommy C. Lie4194b732018-09-28 22:21:511386const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsName[] =
1387 "Omnibox UI Hide Steady-State URL Trivial Subdomains";
1388const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsDescription[] =
1389 "In the omnibox, hide trivial subdomains from steady state displayed URLs. "
Tommy C. Libef94ee02018-10-17 19:56:361390 "Hidden portions are restored during editing.";
1391
1392const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefName[] =
1393 "Omnibox UI Hide Steady-State URL Path, Query, and Ref";
1394const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefDescription[] =
1395 "In the omnibox, hide the path, query and ref from steady state displayed "
1396 "URLs. Hidden portions are restored during editing.";
Tommy C. Lid79d4402017-12-22 22:49:121397
Brett Wilsonecb80982017-07-12 20:34:511398const char kOmniboxUIMaxAutocompleteMatchesName[] =
1399 "Omnibox UI Max Autocomplete Matches";
1400
1401const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1402 "Changes the maximum number of autocomplete matches displayed in the "
1403 "Omnibox UI.";
1404
Tommy C. Liba4e66ef2019-02-12 21:33:281405const char kOmniboxUIShowSuggestionFaviconsName[] =
1406 "Omnibox UI Show Suggestion Favicons";
1407const char kOmniboxUIShowSuggestionFaviconsDescription[] =
1408 "Shows favicons instead of generic vector icons for URL suggestions in the "
1409 "Omnibox dropdown.";
1410
Justin Donnelly65c9e8b2017-10-01 05:15:011411const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL";
1412const char kOmniboxUISwapTitleAndUrlDescription[] =
1413 "In the omnibox dropdown, shows titles before URLs when both are "
1414 "available.";
1415
Tommy C. Lia737d3e82019-02-13 23:06:141416const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
1417const char kOmniboxUIVerticalMarginDescription[] =
1418 "Changes the vertical margin in the Omnibox UI.";
1419
Troy Hildebrandtb32637ca2018-02-21 23:25:091420const char kOmniboxVoiceSearchAlwaysVisibleName[] =
1421 "Omnibox Voice Search Always Visible";
1422const char kOmniboxVoiceSearchAlwaysVisibleDescription[] =
1423 "Always displays voice search icon in focused omnibox as long as voice "
1424 "search is possible";
1425
Vadym Doroshenko6b8f64d2018-11-26 15:35:391426const char kOnlyNewPasswordFormParsingName[] =
1427 "Use only new password form parsing";
1428const char kOnlyNewPasswordFormParsingDescription[] =
1429 "The old password form parsing is disabled";
1430
Mark Lieufaa1b762019-01-08 19:37:281431const char kOnTheFlyMhtmlHashComputationName[] =
1432 "On-The-Fly MHTML Hash Computation";
1433const char kOnTheFlyMhtmlHashComputationDescription[] =
1434 "Save MHTML files to the target location and calculate their content "
1435 "digests in one step.";
1436
Adrienne Walkerc87477e2018-06-06 22:28:211437const char kOopRasterizationName[] = "Out of process rasterization";
1438const char kOopRasterizationDescription[] =
1439 "Perform Ganesh raster in the GPU Process instead of the renderer. "
1440 "Must also enable GPU rasterization";
1441
Brett Wilsonecb80982017-07-12 20:34:511442const char kOriginTrialsName[] = "Origin Trials";
1443const char kOriginTrialsDescription[] =
1444 "Enables origin trials for controlling access to feature/API experiments.";
1445
Brett Wilsonecb80982017-07-12 20:34:511446const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1447const char kOverlayScrollbarsDescription[] =
1448 "Enable the experimental overlay scrollbars implementation. You must also "
1449 "enable threaded compositing to have the scrollbars animate.";
1450
chaopenge8aa016b2017-08-24 15:20:191451const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
1452 "Flash Overlay Scrollbars After Any Scroll Update";
1453const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
1454 "Flash Overlay Scrollbars After any scroll update happends in page. You"
1455 " must also enable Overlay Scrollbars.";
1456
chaopeng343678022017-08-24 18:45:001457const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
1458 "Flash Overlay Scrollbars When Mouse Enter";
1459const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
1460 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
1461 " enable Overlay Scrollbars.";
1462
Daniele Castagna74ddb9c2018-06-21 22:59:021463const char kOverlayStrategiesName[] = "Select HW overlay strategies";
1464const char kOverlayStrategiesDescription[] =
1465 "Select strategies used to promote quads to HW overlays.";
1466const char kOverlayStrategiesDefault[] = "Default";
1467const char kOverlayStrategiesNone[] = "None";
1468const char kOverlayStrategiesUnoccludedFullscreen[] =
1469 "Unoccluded fullscreen buffers (single-fullscreen)";
1470const char kOverlayStrategiesUnoccluded[] =
1471 "Unoccluded buffers (single-fullscreen,single-on-top)";
1472const char kOverlayStrategiesOccludedAndUnoccluded[] =
1473 "Occluded and unoccluded buffers "
1474 "(single-fullscreen,single-on-top,underlay)";
1475
Claudio Magni81326f92017-09-01 05:21:181476const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
1477const char kUseNewAcceptLanguageHeaderDescription[] =
1478 "Adds the base language code after other corresponding language+region "
1479 "codes. This ensures that users receive content in their preferred "
1480 "language.";
1481
Brett Wilsonecb80982017-07-12 20:34:511482const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1483const char kOverscrollHistoryNavigationDescription[] =
Mohsen Izadi88b392a2018-02-15 06:57:481484 "History navigation in response to horizontal overscroll.";
Brett Wilsonecb80982017-07-12 20:34:511485
1486const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
1487const char kOverscrollStartThresholdDescription[] =
1488 "Changes overscroll start threshold relative to the default value.";
1489const char kOverscrollStartThreshold133Percent[] = "133%";
1490const char kOverscrollStartThreshold166Percent[] = "166%";
1491const char kOverscrollStartThreshold200Percent[] = "200%";
1492
chaopenge2b6e5f2018-05-08 16:40:451493const char kTouchpadOverscrollHistoryNavigationName[] =
1494 "Overscroll history navigation on Touchpad";
1495const char kTouchpadOverscrollHistoryNavigationDescription[] =
1496 "Allows swipe left/right from touchpad change browser navigation.";
1497
Xing Liu5400a002017-09-15 21:48:291498const char kParallelDownloadingName[] = "Parallel downloading";
1499const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061500 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291501
Brett Wilsonecb80982017-07-12 20:34:511502const char kPassiveEventListenerDefaultName[] =
1503 "Passive Event Listener Override";
1504const char kPassiveEventListenerDefaultDescription[] =
1505 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1506 "haven't requested otherwise) to be treated as passive. This will break "
1507 "touch/wheel behavior on some websites but is useful for demonstrating the "
1508 "potential performance benefits of adopting passive event listeners.";
1509const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1510const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1511
1512const char kPassiveEventListenersDueToFlingName[] =
1513 "Touch Event Listeners Passive Default During Fling";
1514const char kPassiveEventListenersDueToFlingDescription[] =
1515 "Forces touchstart, and first touchmove per scroll event listeners during "
1516 "fling to be treated as passive.";
1517
1518const char kPassiveDocumentEventListenersName[] =
1519 "Document Level Event Listeners Passive Default";
1520const char kPassiveDocumentEventListenersDescription[] =
1521 "Forces touchstart, and touchmove event listeners on document level "
1522 "targets (which haven't requested otherwise) to be treated as passive.";
1523
Sahel Sharify7400e882018-08-13 17:13:211524const char kPassiveDocumentWheelEventListenersName[] =
1525 "Document Level Wheel Event Listeners Passive Default";
1526const char kPassiveDocumentWheelEventListenersDescription[] =
1527 "Forces wheel, and mousewheel event listeners on document level targets "
1528 "(which haven't requested otherwise) to be treated as passive.";
1529
Vaclav Brozekd8a3f542017-11-16 14:21:131530const char kPasswordImportName[] = "Password import";
1531const char kPasswordImportDescription[] =
1532 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511533
Friedrich Horschige6c27742018-04-23 17:13:411534const char kPasswordsKeyboardAccessoryName[] =
1535 "Add password-related functions to keyboard accessory";
1536const char kPasswordsKeyboardAccessoryDescription[] =
1537 "Adds password generation button and toggle for the passwords bottom sheet "
1538 "to the keyboard accessory. Replaces password generation popups.";
1539
Christos Froussios6e060c42018-07-31 16:17:191540const char kPasswordsMigrateLinuxToLoginDBName[] =
1541 "Migrate passwords to \"Login Data\"";
1542const char kPasswordsMigrateLinuxToLoginDBDescription[] =
Christos Froussiose34c38a2018-09-04 14:27:591543 "Performs a one-off irreversible migration of passwords from the "
Christos Froussios6e060c42018-07-31 16:17:191544 "gnome-keyring or kwallet into the profile directory.";
1545
Rouslan Solomakhinded840112018-11-02 13:27:101546const char kPerMethodCanMakePaymentQuotaName[] =
1547 "Per-method canMakePayment() quota.";
1548const char kPerMethodCanMakePaymentQuotaDescription[] =
1549 "Allow calling canMakePayment() for different payment methods, as long as "
1550 "method-specific parameters remain unchanged.";
1551
Brett Wilsonecb80982017-07-12 20:34:511552const char kPinchScaleName[] = "Pinch scale";
1553const char kPinchScaleDescription[] =
1554 "Enables experimental support for scale using pinch.";
1555
Doug Arnett620ff542018-02-06 17:54:221556const char kPreviewsAllowedName[] = "Previews Allowed";
1557const char kPreviewsAllowedDescription[] =
1558 "Allows previews to be shown subject to specific preview types being "
1559 "enabled and the client experiencing specific triggering conditions. "
1560 "May be used as a kill-switch to turn off all potential preview types.";
1561
Brett Wilsonecb80982017-07-12 20:34:511562const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1563const char kPrintPdfAsImageDescription[] =
1564 "If enabled, an option to print PDF files as images will be available in "
1565 "print preview.";
1566
1567const char kPrintPreviewRegisterPromosName[] =
1568 "Print Preview Registration Promos";
1569const char kPrintPreviewRegisterPromosDescription[] =
1570 "Enable registering unregistered cloud printers from print preview.";
1571
1572const char kProtectSyncCredentialName[] = "Autofill sync credential";
1573const char kProtectSyncCredentialDescription[] =
1574 "How the password manager handles autofill for the sync credential.";
1575
1576const char kProtectSyncCredentialOnReauthName[] =
1577 "Autofill sync credential only for transactional reauth pages";
1578const char kProtectSyncCredentialOnReauthDescription[] =
1579 "How the password manager handles autofill for the sync credential only "
1580 "for transactional reauth pages.";
1581
Mohsen Izadi93faac12017-07-29 04:45:151582const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1583const char kPullToRefreshDescription[] =
1584 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:011585const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:151586
Troy Hildebrandt7228ad12018-02-23 21:18:241587const char kQueryInOmniboxName[] = "Query in Omnibox";
1588const char kQueryInOmniboxDescription[] =
1589 "Only display query terms in the omnibox when viewing a search results "
1590 "page.";
1591
Brett Wilsonecb80982017-07-12 20:34:511592const char kQuicName[] = "Experimental QUIC protocol";
1593const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1594
Emily Starke8878d52018-05-11 21:27:261595const char kRecurrentInterstitialName[] =
1596 "Show a message when the same SSL error recurs";
1597const char kRecurrentInterstitialDescription[] =
1598 "Enable a special message on the SSL certificate error page when the same "
1599 "SSL error occurs repeatedly.";
1600
Brett Wilsonecb80982017-07-12 20:34:511601const char kReducedReferrerGranularityName[] =
1602 "Reduce default 'referer' header granularity.";
1603const char kReducedReferrerGranularityDescription[] =
1604 "If a page hasn't set an explicit referrer policy, setting this flag will "
1605 "reduce the amount of information in the 'referer' header for cross-origin "
1606 "requests.";
1607
Lei Zhang0ca70ea2018-09-07 17:51:011608const char kRegionalLocalesAsDisplayUIName[] =
Claudio Magnie0a80bb2018-01-31 02:52:581609 "Allow regional locales as display UI";
Lei Zhang0ca70ea2018-09-07 17:51:011610const char kRegionalLocalesAsDisplayUIDescription[] =
Claudio Magnie0a80bb2018-01-31 02:52:581611 "This flag allows regional locales to be selected as display UI by the "
1612 "user in Language Settings. The actual locale of the system is derived "
1613 "from the user selection based on some simple fallback logic.";
1614
Christian Dullweber3cc579a22018-09-11 10:54:441615const char kRewriteLevelDBOnDeletionName[] =
1616 "Rewrite LevelDB instances after full deletions";
1617const char kRewriteLevelDBOnDeletionDescription[] =
1618 "Rewrite LevelDB instances to remove traces of deleted data from disk.";
1619
Yutaka Hirano4c0f2f5d452017-11-17 04:24:351620const char kRendererSideResourceSchedulerName[] =
1621 "Renderer side ResourceScheduler";
1622const char kRendererSideResourceSchedulerDescription[] =
1623 "Migrate some ResourceScheduler functionalities to renderer";
1624
Brett Wilsonecb80982017-07-12 20:34:511625const char kRequestTabletSiteName[] =
1626 "Request tablet site option in the settings menu";
1627const char kRequestTabletSiteDescription[] =
1628 "Allows the user to request tablet site. Web content is often optimized "
1629 "for tablet devices. When this option is selected the user agent string is "
1630 "changed to indicate a tablet device. Web content optimized for tablets is "
1631 "received there after for the current tab.";
1632
1633const char kResetAppListInstallStateName[] =
1634 "Reset the App Launcher install state on every restart.";
1635const char kResetAppListInstallStateDescription[] =
1636 "Reset the App Launcher install state on every restart. While this flag is "
1637 "set, Chrome will forget the launcher has been installed each time it "
1638 "starts. This is used for testing the App Launcher install flow.";
1639
Kinuko Yasuda33955082018-06-19 10:14:591640const char kResourceLoadSchedulerName[] = "Enable resource load throttling";
Brett Wilsonecb80982017-07-12 20:34:511641const char kResourceLoadSchedulerDescription[] =
Kinuko Yasuda33955082018-06-19 10:14:591642 "Uses the resource load scheduler in blink to throttle resource load "
1643 "requests.";
Brett Wilsonecb80982017-07-12 20:34:511644
Daniel Rubery91874e32019-01-10 22:12:341645const char kSafeBrowsingUseAPDownloadVerdictsName[] =
1646 "Request Advanced Protection verdicts when inspecting downloads";
1647const char kSafeBrowsingUseAPDownloadVerdictsDescription[] =
1648 "If enabled, download protection will request Advanced Protection "
1649 "verdicts from Safe Browsing. These will provide stronger protections "
1650 "from files Safe Browsing is unsure about.";
1651
Brett Wilsonecb80982017-07-12 20:34:511652const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1653const char kSafeSearchUrlReportingDescription[] =
1654 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1655
Alexei Filippov98772752018-01-27 08:26:521656const char kSamplingHeapProfilerName[] = "Native memory sampling profiler.";
1657const char kSamplingHeapProfilerDescription[] =
1658 "Enables native memory sampling profiler with specified rate in KiB. "
1659 "If sampling rate is not provided the default value of 128 KiB is used.";
1660
Brett Wilsonecb80982017-07-12 20:34:511661const char kSaveasMenuLabelExperimentName[] =
1662 "Switch 'Save as' menu labels to 'Download'";
1663const char kSaveasMenuLabelExperimentDescription[] =
1664 "Enables an experiment to switch menu labels that use 'Save as...' to "
1665 "'Download'.";
1666
1667const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1668const char kSavePageAsMhtmlDescription[] =
1669 "Enables saving pages as MHTML: a single text file containing HTML and all "
1670 "sub-resources.";
1671
Jeffrey Cohene49cc59c2018-10-23 16:27:281672const char kSendTabToSelfName[] = "Send tab to self";
1673const char kSendTabToSelfDescription[] =
1674 "Allows users to push tabs from Android devices to other synced "
1675 "devices, in order to easily transition those tabs to the new device ";
1676
momohattfc352292018-08-29 05:12:361677const char kServiceWorkerImportedScriptUpdateCheckName[] =
1678 "Enable update check for service worker importScripts() resources";
1679const char kServiceWorkerImportedScriptUpdateCheckDescription[] =
1680 "Extend byte-for-byte update check for scripts that are imported by the "
1681 "service worker script via importScripts().";
1682
Lei Zhang0ca70ea2018-09-07 17:51:011683const char kServiceWorkerServicificationName[] = "Servicified service workers";
1684const char kServiceWorkerServicificationDescription[] =
Makoto Shimazu22078cc2018-02-21 03:01:441685 "Enable the servicified service workers. A servicified service worker can "
1686 "have direct connection from its clients, so that fetch events can be "
1687 "dispatched through the connection without hopping to the browser process.";
Makoto Shimazud9f333c2017-08-08 07:23:171688
Azeem Arshad3b1ef73122018-08-30 02:04:151689const char kServiceWorkerLongRunningMessageName[] =
1690 "Service worker long running message dispatch.";
1691const char kServiceWorkerLongRunningMessageDescription[] =
1692 "Enables long running message dispatch method for service workers. "
1693 "Messages sent with this method do not timeout, allowing the service "
1694 "worker to run indefinitely.";
1695
Chris Hamiltonb9612e262019-02-12 21:12:061696const char kSessionRestorePrioritizesBackgroundUseCasesName[] =
1697 "Session restore prioritizes background use cases.";
1698const char kSessionRestorePrioritizesBackgroundUseCasesDescription[] =
1699 "When enabled session restore logic will prioritize sites that make use of "
1700 "background communication mechanisms (favicon and tab title switches, "
1701 "notifications, etc) over sites that do not.";
1702
Brett Wilsonecb80982017-07-12 20:34:511703const char kSettingsWindowName[] = "Show settings in a window";
1704const char kSettingsWindowDescription[] =
1705 "Settings will be shown in a dedicated window instead of as a browser tab.";
1706
Manu Cornetd7ef7c52018-05-01 22:08:231707const char kShelfHoverPreviewsName[] =
1708 "Show previews of running apps when hovering over the shelf.";
1709const char kShelfHoverPreviewsDescription[] =
1710 "Shows previews of the open windows for a given running app when hovering "
1711 "over the shelf.";
1712
Naoki Fukino008a0022018-05-23 18:33:001713const char kShowAndroidFilesInFilesAppName[] =
1714 "Show Android files in Files app";
1715const char kShowAndroidFilesInFilesAppDescription[] =
1716 "Show Android files in Files app if Android is enabled on the device.";
1717
Brett Wilsonecb80982017-07-12 20:34:511718const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1719const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:381720 "Annotates web forms with Autofill signatures as HTML attributes. Also "
1721 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:511722
1723const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1724const char kShowAutofillTypePredictionsDescription[] =
1725 "Annotates web forms with Autofill field type predictions as placeholder "
1726 "text.";
1727
1728const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1729const char kShowOverdrawFeedbackDescription[] =
1730 "Visualize overdraw by color-coding elements based on if they have other "
1731 "elements drawn underneath.";
1732
Shivani Sharma2d5b4b6b2019-01-08 16:07:161733const char kHistoryManipulationIntervention[] =
1734 "History Manipulation Intervention";
1735const char kHistoryManipulationInterventionDescription[] =
1736 "If a page does a client side redirect or adds to the history without a "
1737 "user gesture, then skip it on back/forward UI.";
1738
Carlos IL89128732018-04-03 17:00:251739const char kSupervisedUserCommittedInterstitialsName[] =
1740 "Enable Supervised User Committed Interstitials";
1741const char kSupervisedUserCommittedInterstitialsDescription[] =
1742 "Use committed error pages instead of transient navigation entries for "
1743 "supervised user interstitials";
1744
Brett Wilsonecb80982017-07-12 20:34:511745const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1746const char kSilentDebuggerExtensionApiDescription[] =
1747 "Do not show the infobar when an extension attaches to a page via "
1748 "chrome.debugger API. This is required to debug extension background "
1749 "pages.";
1750
Tsuyoshi Horo53895ba92018-03-14 04:06:481751const char kSignedHTTPExchangeName[] = "Signed HTTP Exchange";
1752const char kSignedHTTPExchangeDescription[] =
1753 "Enables Origin-Signed HTTP Exchanges support which is still in "
1754 "development. Warning: Enabling this may pose a security risk.";
1755
Christopher Thompson75ff845d2018-02-01 20:12:461756const char kSimplifyHttpsIndicatorName[] = "Simplify HTTPS indicator UI";
1757const char kSimplifyHttpsIndicatorDescription[] =
1758 "Change the UI treatment for HTTPS pages.";
1759
Lukasz Anforowicz738a88d2018-11-05 19:19:341760const char kSiteIsolationOptOutName[] = "Disable site isolation";
1761const char kSiteIsolationOptOutDescription[] =
1762 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:571763 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
1764 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:221765 "isolation is force-enabled using a command line switch or using an "
1766 "enterprise policy. "
1767 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:571768 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:341769const char kSiteIsolationOptOutChoiceDefault[] = "Default";
1770const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:511771
Pattideade7972018-04-27 02:59:401772const char kSiteSettings[] = "Site settings";
Brett Wilsonecb80982017-07-12 20:34:511773const char kSiteSettingsDescription[] =
Pattideade7972018-04-27 02:59:401774 "Add the All Sites list to Site Settings.";
Brett Wilsonecb80982017-07-12 20:34:511775
Brett Wilsonecb80982017-07-12 20:34:511776const char kSmoothScrollingName[] = "Smooth Scrolling";
1777const char kSmoothScrollingDescription[] =
1778 "Animate smoothly when scrolling page content.";
1779
1780const char kSoftwareRasterizerName[] = "3D software rasterizer";
1781const char kSoftwareRasterizerDescription[] =
1782 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1783
Wei-Yin Chen (陳威尹)deff0802018-01-19 06:29:201784const char kSoleIntegrationName[] = "Sole integration";
1785const char kSoleIntegrationDescription[] =
1786 "Enable Sole integration for browser customization. You must restart "
1787 "the browser twice for changes to take effect.";
1788
Tommy Steimel77704be2017-08-28 22:14:401789const char kSoundContentSettingName[] = "Sound content setting";
1790const char kSoundContentSettingDescription[] =
1791 "Enable site-wide muting in content settings and tab strip context menu.";
1792
Justin Donnelly4e448cb2017-07-07 21:32:131793const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1794 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131795const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1796 "If enabled, when the user enters text in the omnibox that looks like a "
1797 "a query, any service worker associated with the search engine the query "
1798 "will be sent to is started early.";
1799
Brett Wilsonecb80982017-07-12 20:34:511800const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1801const char kSpellingFeedbackFieldTrialDescription[] =
1802 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401803
Carlos ILe5fa0a12018-08-03 16:08:321804const char kSSLCommittedInterstitialsName[] = "Committed Interstitials";
1805const char kSSLCommittedInterstitialsDescription[] =
1806 "Use committed error pages instead of transient navigation entries "
1807 "for SSL interstitial error pages (i.e. certificate errors).";
1808
Shubhie Panickerfaf082ed2018-01-03 04:49:151809const char kStopInBackgroundName[] = "Stop in background";
1810const char kStopInBackgroundDescription[] =
1811 "Stop scheduler task queues, in the background, "
Shubhie Panicker56c99a22018-03-21 00:22:281812 " after a grace period.";
Shubhie Panickerfaf082ed2018-01-03 04:49:151813
Shubhie Panicker56c99a22018-03-21 00:22:281814const char kStopNonTimersInBackgroundName[] =
1815 "Stop non-timer task queues background";
1816const char kStopNonTimersInBackgroundDescription[] =
1817 "Stop non-timer task queues, in the background, "
1818 "after a grace period.";
1819
Brett Wilsonecb80982017-07-12 20:34:511820const char kSuggestionsWithSubStringMatchName[] =
1821 "Substring matching for Autofill suggestions";
1822const char kSuggestionsWithSubStringMatchDescription[] =
1823 "Match Autofill suggestions based on substrings (token prefixes) rather "
1824 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341825
Marc Treibf65fb002018-08-03 11:17:161826const char kSyncStandaloneTransportName[] = "Allow Sync standalone transport";
1827const char kSyncStandaloneTransportDescription[] =
1828 "If enabled, allows Chrome Sync to start in standalone transport mode. In "
1829 "this mode, the Sync machinery can start without user opt-in, but only a "
1830 "subset of data types are supported.";
1831
Marc Treib4bd95e72018-08-30 06:30:581832const char kSyncSupportSecondaryAccountName[] =
1833 "Support secondary accounts for Sync standalone transport";
1834const char kSyncSupportSecondaryAccountDescription[] =
1835 "If enabled, allows Chrome Sync to start in standalone transport mode for "
1836 "a signed-in account that has not been chosen as Chrome's primary account. "
1837 "This only has an effect if sync-standalone-transport is also enabled.";
1838
Jan Krcal2ff23f7c2018-09-04 16:16:131839const char kSyncUSSAutofillProfileName[] = "Enable USS for autofill profile";
1840const char kSyncUSSAutofillProfileDescription[] =
1841 "Enables the new implementation of autofill profile sync";
1842
Jan Krcale3641b92018-08-10 17:53:311843const char kSyncUSSAutofillWalletDataName[] =
1844 "Enable USS for autofill wallet data";
1845const char kSyncUSSAutofillWalletDataDescription[] =
1846 "Enables the new implementation of autofill walet data sync";
1847
Brett Wilsonecb80982017-07-12 20:34:511848const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1849const char kSyncSandboxDescription[] =
1850 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341851
Joe Downing8cbbc192018-05-14 17:37:071852const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
1853const char kSystemKeyboardLockDescription[] =
1854 "Enables websites to use the keyboard.lock() API to intercept system "
1855 "keyboard shortcuts and have the events routed directly to the website "
1856 "when in fullscreen mode.";
1857
Yusuf Ozuysal67f05a02019-02-15 19:30:521858const char kTabGridLayoutAndroidName[] = "Tab Grid Layout";
1859const char kTabGridLayoutAndroidDescription[] =
1860 "Allows users to see their tabs in a grid layout in the tab switcher.";
1861
Taylor Bergquistbcc15462018-12-05 00:36:561862const char kTabGroupsName[] = "Tab Groups";
1863const char kTabGroupsDescription[] =
1864 "Allows users to organize tabs into visually distinct groups, e.g. to "
1865 "separate tabs associated with different tasks.";
1866
Caroline Risinge121c2b2018-12-03 20:19:291867const char kTabHoverCardsName[] = "Tab Hover Cards";
1868const char kTabHoverCardsDescription[] =
1869 "Enables a popup containing tab information to be visible when hovering "
1870 "over a tab. This will replace tooltips for tabs.";
1871
Dana Friedacaa8ef52019-02-08 02:20:351872const char kTabHoverCardImagesName[] = "Tab Hover Card Images";
1873const char kTabHoverCardImagesDescription[] =
1874 "Shows a preview image in tab hover cards, if tab hover cards are enabled.";
1875
Christian Dullweberd0d96f02017-09-13 09:22:511876const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1877const char kTabsInCbdDescription[] =
1878 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1879
Daniele Castagna0fead93e2018-01-10 20:40:291880const char kTintGlCompositedContentName[] = "Tint GL-composited content";
1881const char kTintGlCompositedContentDescription[] =
1882 "Tint contents composited using GL with a shade of red to help debug and "
1883 "study overlay support.";
1884
Peter Kastingd77428352018-10-26 15:20:251885const char kTopChromeTouchUiName[] = "Touch UI Layout";
1886const char kTopChromeTouchUiDescription[] =
1887 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:341888
Brett Wilsonecb80982017-07-12 20:34:511889const char kThreadedScrollingName[] = "Threaded scrolling";
1890const char kThreadedScrollingDescription[] =
1891 "Threaded handling of scroll-related input events. Disabling this will "
1892 "force all such scroll events to be handled on the main thread. Note that "
1893 "this can dramatically hurt scrolling performance of most websites and is "
1894 "intended for testing purposes only.";
1895
Dominick Ng8896b1cd2017-10-17 23:24:361896const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement";
1897const char kTopSitesFromSiteEngagementDescription[] =
1898 "Enable Top Sites on the New Tab Page to be sourced and sorted using site "
1899 "engagement.";
1900
Brett Wilsonecb80982017-07-12 20:34:511901const char kTouchAdjustmentName[] = "Touch adjustment";
1902const char kTouchAdjustmentDescription[] =
1903 "Refine the position of a touch gesture in order to compensate for touches "
1904 "having poor resolution compared to a mouse.";
1905
1906const char kTouchDragDropName[] = "Touch initiated drag and drop";
1907const char kTouchDragDropDescription[] =
1908 "Touch drag and drop can be initiated through long press on a draggable "
1909 "element.";
1910
1911const char kTouchEventsName[] = "Touch Events API";
1912const char kTouchEventsDescription[] =
1913 "Force Touch Events API feature detection to always be enabled or "
1914 "disabled, or to be enabled when a touchscreen is detected on startup "
Ella Gea6a203c92017-10-26 19:09:291915 "(Automatic).";
Brett Wilsonecb80982017-07-12 20:34:511916
1917const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1918const char kTouchSelectionStrategyDescription[] =
1919 "Controls how text selection granularity changes when touch text selection "
1920 "handles are dragged. Non-default behavior is experimental.";
1921const char kTouchSelectionStrategyCharacter[] = "Character";
1922const char kTouchSelectionStrategyDirection[] = "Direction";
1923
1924const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1925const char kTraceUploadUrlDescription[] =
1926 "This is to be used in conjunction with the enable-navigation-tracing "
1927 "flag. Please select the label that best describes the recorded traces. "
1928 "This will choose the destination the traces are uploaded to. If you are "
1929 "not sure, select other. If left empty, no traces will be uploaded.";
1930const char kTraceUploadUrlChoiceOther[] = "Other";
1931const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1932const char kTraceUploadUrlChoiceQa[] = "QA";
1933const char kTraceUploadUrlChoiceTesting[] = "Testing";
1934
Anthony Vallee-Dubois265c5692018-06-01 15:57:141935const char kTranslateForceTriggerOnEnglishName[] =
1936 "Select which language model to use to trigger translate on English "
1937 "content";
1938const char kTranslateForceTriggerOnEnglishDescription[] =
1939 "Force the Translate Triggering on English pages experiment to be enabled "
1940 "with the selected language model active.";
1941
Nicolas Ouellet-payeur9e5ff3d2018-06-20 16:07:161942
Mustafa Emre Acerb3aa36a82018-05-22 21:44:051943const char kTreatInsecureOriginAsSecureName[] =
1944 "Insecure origins treated as secure";
1945const char kTreatInsecureOriginAsSecureDescription[] =
1946 "Treat given (insecure) origins as secure origins. Multiple origins can be "
1947 "supplied as a comma-separated list. For the definition of secure "
1948 "contexts, "
1949 "see https://w3c.github.io/webappsec-secure-contexts/";
1950
Brett Wilsonecb80982017-07-12 20:34:511951const char kTrySupportedChannelLayoutsName[] =
1952 "Causes audio output streams to check if channel layouts other than the "
1953 "default hardware layout are available.";
1954const char kTrySupportedChannelLayoutsDescription[] =
1955 "Causes audio output streams to check if channel layouts other than the "
1956 "default hardware layout are available. Turning this on will allow the OS "
1957 "to do stereo to surround expansion if supported. May expose third party "
1958 "driver bugs, use with caution.";
1959
David Roger6762a092018-01-31 15:55:071960const char kUnifiedConsentName[] = "Unified Consent";
1961const char kUnifiedConsentDescription[] =
1962 "Enables a unified management of user consent for privacy-related "
1963 "features. This includes new confirmation screens and improved settings "
1964 "pages.";
1965
Brett Wilsonecb80982017-07-12 20:34:511966const char kUiPartialSwapName[] = "Partial swap";
1967const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1968
Chris Pickel3a227ae62017-08-24 10:47:261969const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1970const char kUseDdljsonApiDescription[] =
1971 "Enables the new ddljson API to fetch Doodles for the NTP.";
1972
Wei Li790e7a8572018-03-23 01:31:551973const char kUsePdfCompositorServiceName[] =
1974 "Use PDF compositor service for printing";
1975const char kUsePdfCompositorServiceDescription[] =
1976 "When enabled, use PDF compositor service to composite and generate PDF "
1977 "files for printing. When site isolation is enabled, disabling this will "
1978 "not stop using PDF compositor service since the service is required for "
1979 "printing out-of-process iframes correctly.";
1980
Mustaq Ahmedc646c0a2017-10-20 20:08:301981const char kUserActivationV2Name[] = "User Activation v2";
1982const char kUserActivationV2Description[] =
1983 "Enable simple user activation for APIs that are otherwise controlled by "
1984 "user gesture tokens.";
1985
Brett Wilsonecb80982017-07-12 20:34:511986const char kUserConsentForExtensionScriptsName[] =
1987 "User consent for extension scripts";
1988const char kUserConsentForExtensionScriptsDescription[] =
1989 "Require user consent for an extension running a script on the page, if "
1990 "the extension requested permission to run on all urls.";
1991
1992const char kUseSuggestionsEvenIfFewFeatureName[] =
1993 "Disable minimum for server-side tile suggestions on NTP.";
1994const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1995 "Request server-side suggestions even if there are only very few of them "
1996 "and use them for tiles on the New Tab Page.";
1997
1998const char kV8CacheOptionsName[] = "V8 caching mode.";
1999const char kV8CacheOptionsDescription[] =
2000 "Caching mode for the V8 JavaScript engine.";
Brett Wilsonecb80982017-07-12 20:34:512001const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
2002
Michael Hablich896d52662017-10-23 15:59:572003const char kV8VmFutureName[] = "Future V8 VM features";
2004const char kV8VmFutureDescription[] =
2005 "This enables upcoming and experimental V8 VM features. "
2006 "This flag does not enable experimental JavaScript features.";
2007
Hannes Payer1130d5672018-06-05 07:37:312008const char kV8OrinocoName[] = "V8 Orinoco garbage collection features";
2009const char kV8OrinocoDescription[] =
2010 "This enables the V8 Orinoco garbage collection features.";
2011
Brett Wilsonecb80982017-07-12 20:34:512012const char kVideoFullscreenOrientationLockName[] =
2013 "Lock screen orientation when playing a video fullscreen.";
2014const char kVideoFullscreenOrientationLockDescription[] =
2015 "Lock the screen orientation of the device to match video orientation when "
2016 "a video goes fullscreen. Only on phones.";
2017
2018const char kVideoRotateToFullscreenName[] =
2019 "Rotate-to-fullscreen gesture for videos.";
2020const char kVideoRotateToFullscreenDescription[] =
2021 "Enter/exit fullscreen when device is rotated to/from the orientation of "
2022 "the video. Only on phones.";
2023
2024const char kWalletServiceUseSandboxName[] =
2025 "Use Google Payments sandbox servers";
2026const char kWalletServiceUseSandboxDescription[] =
2027 "For developers: use the sandbox service for Google Payments API calls.";
2028
Brett Wilsonecb80982017-07-12 20:34:512029const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
2030const char kWebglDraftExtensionsDescription[] =
2031 "Enabling this option allows web applications to access the WebGL "
2032 "Extensions that are still in draft status.";
2033
2034const char kWebMidiName[] = "Web MIDI API";
2035const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
2036
Brett Wilsonecb80982017-07-12 20:34:512037const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
2038const char kWebrtcEchoCanceller3Description[] =
2039 "Experimental WebRTC echo canceller (AEC3).";
2040
Lei Zhang0a318af2018-11-14 02:19:462041const char kWebrtcH264WithOpenh264FfmpegName[] =
2042 "WebRTC H.264 software video encoder/decoder";
2043const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2044 "When enabled, an H.264 software video encoder/decoder pair is included. "
2045 "If a hardware encoder/decoder is also available it may be used instead of "
2046 "this encoder/decoder.";
2047
Qingsi Wangec2dbf942018-11-03 05:33:042048const char kWebrtcHideLocalIpsWithMdnsName[] =
2049 "Anonymize local IPs exposed by WebRTC.";
2050const char kWebrtcHideLocalIpsWithMdnsDecription[] =
2051 "Conceal local IP addresses with mDNS hostnames.";
2052
Alex Loikob5fb1282018-08-14 10:04:402053const char kWebrtcHybridAgcName[] = "WebRTC hybrid Agc2/Agc1.";
2054const char kWebrtcHybridAgcDescription[] =
2055 "WebRTC Agc2 digital adaptation with Agc1 analog adaptation.";
2056
Brett Wilsonecb80982017-07-12 20:34:512057const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
2058const char kWebrtcHwDecodingDescription[] =
2059 "Support in WebRTC for decoding video streams using platform hardware.";
2060
2061const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
2062const char kWebrtcHwEncodingDescription[] =
2063 "Support in WebRTC for encoding video streams using platform hardware.";
2064
2065const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
2066const char kWebrtcHwH264EncodingDescription[] =
2067 "Support in WebRTC for encoding h264 video streams using platform "
2068 "hardware.";
2069
2070const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
2071const char kWebrtcHwVP8EncodingDescription[] =
2072 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
2073
Sreerenj Balachandran2a5fd0972019-02-08 22:15:202074const char kWebrtcHwVP9EncodingName[] = "WebRTC hardware vp9 video encoding";
2075const char kWebrtcHwVP9EncodingDescription[] =
2076 "Support in WebRTC for encoding vp9 video streams using platform hardware.";
2077
Niels Möller090866a2018-02-13 10:55:032078const char kWebrtcNewEncodeCpuLoadEstimatorName[] =
2079 "WebRTC new encode cpu load estimator";
2080const char kWebrtcNewEncodeCpuLoadEstimatorDescription[] =
2081 "Enable new estimator for the encoder cpu load, for evaluation and "
2082 "testing. Intended to improve accuracy when screen casting.";
2083
Elad Alon85e0d0be2018-06-26 10:38:372084const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
2085const char kWebRtcRemoteEventLogDescription[] =
2086 "Allow collecting WebRTC event logs and uploading them to Crash. "
2087 "Please note that, even if enabled, this will still require "
2088 "a policy to be set, for it to have an effect.";
2089
Brett Wilsonecb80982017-07-12 20:34:512090const char kWebrtcSrtpAesGcmName[] =
2091 "Negotiation with GCM cipher suites for SRTP in WebRTC";
2092const char kWebrtcSrtpAesGcmDescription[] =
2093 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
2094
Joachim Bauch4a41d7512017-08-23 14:24:232095const char kWebrtcSrtpEncryptedHeadersName[] =
2096 "Negotiation with encrypted header extensions for SRTP in WebRTC";
2097const char kWebrtcSrtpEncryptedHeadersDescription[] =
2098 "When enabled, WebRTC will try to negotiate encrypted header extensions "
2099 "for SRTP.";
2100
Brett Wilsonecb80982017-07-12 20:34:512101const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
2102const char kWebrtcStunOriginDescription[] =
2103 "When enabled, Stun messages generated by WebRTC will contain the Origin "
2104 "header.";
2105
Lei Zhang0a318af2018-11-14 02:19:462106const char kWebrtcUnifiedPlanByDefaultName[] =
2107 "WebRTC: Use Unified Plan SDP Semantics by default";
2108const char kWebrtcUnifiedPlanByDefaultDescription[] =
2109 "RTCPeerConnections generate and expect the standards compliant SDP format "
2110 "called \"Unified Plan\", unless \"Plan B\" is explicitly specified by "
2111 "passing {sdpSemantics:'plan-b'} to the RTCPeerConnection constructor. "
2112 "RTCRtpTransceiver support is also enabled in Unified Plan.";
2113
Brett Wilsonecb80982017-07-12 20:34:512114const char kWebvrName[] = "WebVR";
2115const char kWebvrDescription[] =
Anna Offenwanger00e6dd052018-04-05 02:12:012116 "Enables access to experimental Virtual Reality functionality via the "
2117 "WebVR 1.1 API. This feature will eventually be replaced by the WebXR "
2118 "Device API. Warning: Enabling this will also allow WebVR content on "
2119 "insecure origins to access these powerful APIs, and may pose a security "
David Dorwin09448942019-01-11 23:37:302120 "risk. Controllers are exposed as Gamepads, and WebVR-specific attributes "
2121 "are exposed.";
Brett Wilsonecb80982017-07-12 20:34:512122
Brandon Jonese9d9b2b2017-12-11 22:20:112123const char kWebXrName[] = "WebXR Device API";
2124const char kWebXrDescription[] =
Anna Offenwanger00e6dd052018-04-05 02:12:012125 "Enables access to experimental APIs to interact with Virtual Reality (VR) "
2126 "and Augmented Reality (AR) devices.";
2127
2128const char kWebXrGamepadSupportName[] = "WebXR Gamepad Support";
2129const char kWebXrGamepadSupportDescription[] =
2130 "Expose VR controllers as Gamepads for use with the WebXR Device API. Each "
Anna Offenwanger06dc6062018-04-12 07:56:222131 "XRInputSource will have a corresponding Gamepad instance. Requires that "
2132 "WebXR Device API is also enabled.";
Ian Vollick7aaccf92018-04-07 23:10:432133
2134const char kWebXrHitTestName[] = "WebXR Hit Test";
2135const char kWebXrHitTestDescription[] =
2136 "Enables access to raycasting against estimated XR scene geometry.";
Brandon Jonese9d9b2b2017-12-11 22:20:112137
Anna Maria57ecf7592018-01-12 03:10:402138const char kWebXrOrientationSensorDeviceName[] =
2139 "WebXR orientation sensor device";
2140const char kWebXrOrientationSensorDeviceDescription[] =
2141 "When no VR platform device is available, expose a non-presenting device "
2142 "based on the device's orientation sensors, if available.";
2143
Brett Wilsonecb80982017-07-12 20:34:512144const char kZeroCopyName[] = "Zero-copy rasterizer";
2145const char kZeroCopyDescription[] =
2146 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:342147
Brett Wilsonff596952017-07-14 01:06:552148// Android ---------------------------------------------------------------------
2149
2150#if defined(OS_ANDROID)
2151
2152const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
2153const char kAiaFetchingDescription[] =
2154 "Enable intermediate certificate fetching when a server does not provide "
2155 "sufficient certificates to build a chain to a trusted root.";
2156
2157const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
2158const char kAccessibilityTabSwitcherDescription[] =
2159 "Enable the accessibility tab switcher for Android.";
2160
Pavel Shmakov798f4742018-11-15 21:27:382161const char kAllowRemoteContextForNotificationsName[] =
2162 "Allow using remote app context for notifications";
2163const char kAllowRemoteContextForNotificationsDescription[] =
2164 "Allow using Context#createPackageContext to work around issues with status"
2165 "bar icons on certain Android M devices.";
2166
Brett Wilsonff596952017-07-14 01:06:552167const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
2168const char kAndroidAutofillAccessibilityDescription[] =
2169 "Enable accessibility for autofill popup.";
2170
Khushalbb1963a2018-10-02 21:02:352171const char kAndroidSurfaceControl[] = "Use Android SurfaceControl";
2172const char kAndroidSurfaceControlDescription[] =
2173 "Use the SurfaceControl API for supporting overlays on Android";
2174
Anita Woodruffbfcd1e52018-07-16 12:00:512175const char kAppNotificationStatusMessagingName[] =
2176 "App notification status messaging";
2177const char kAppNotificationStatusMessagingDescription[] =
2178 "Enables messaging in site permissions UI informing user when "
2179 "notifications are disabled for the entire app.";
2180
Miriam Gershenson8cf1397222018-01-23 22:48:292181const char kAsyncDnsName[] = "Async DNS resolver";
2182const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
2183
Dan Harrington01229f82018-09-12 21:01:212184const char kAutoFetchOnNetErrorPageName[] = "AutoFetchOnNetErrorPage";
2185const char kAutoFetchOnNetErrorPageDescription[] =
2186 "When enabled, and navigation fails with an offline error, schedule a "
2187 "fetch of the page when online again.";
2188
Brett Wilsonff596952017-07-14 01:06:552189const char kAutofillAccessoryViewName[] =
2190 "Autofill suggestions as keyboard accessory view";
2191const char kAutofillAccessoryViewDescription[] =
2192 "Shows Autofill suggestions on top of the keyboard rather than in a "
2193 "dropdown.";
2194
2195const char kBackgroundLoaderForDownloadsName[] =
2196 "Enables background downloading of pages.";
2197const char kBackgroundLoaderForDownloadsDescription[] =
2198 "Enables downloading pages in the background in case page is not yet "
2199 "loaded in current tab.";
2200
Tibor Goldschwendt11b3cf22018-07-04 15:32:442201const char kBackgroundTaskComponentUpdateName[] =
2202 "Background Task Component Updates";
2203const char kBackgroundTaskComponentUpdateDescription[] =
2204 "Schedule component updates with BackgroundTaskScheduler";
2205
Michael van Ouwerkerkbda4ad82018-06-19 14:08:002206const char kCCTModuleName[] = "Chrome Custom Tabs Module";
2207const char kCCTModuleDescription[] =
2208 "Enables a dynamically loaded module in Chrome Custom Tabs, on Android.";
2209
Michael van Ouwerkerk29a7a292018-10-09 09:20:142210const char kCCTModuleCacheName[] = "Chrome Custom Tabs Module Cache";
2211const char kCCTModuleCacheDescription[] =
Michael van Ouwerkerka5df1ec2018-10-11 11:57:402212 "Enables a cache for dynamically loaded modules in Chrome Custom Tabs. "
2213 "Under mild memory pressure the cache may be retained for some time";
Michael van Ouwerkerk29a7a292018-10-09 09:20:142214
John Lin170c00b2018-11-21 15:44:252215const char kCCTModuleCustomHeaderName[] =
2216 "Chrome Custom Tabs Module Custom Header";
2217const char kCCTModuleCustomHeaderDescription[] =
2218 "Enables header customization by dynamically loaded modules in "
2219 "Chrome Custom Tabs.";
2220
Michael van Ouwerkerk0878427a2019-02-13 15:11:422221const char kCCTModuleCustomRequestHeaderName[] =
2222 "Chrome Custom Tabs Module Custom Request Header";
2223const char kCCTModuleCustomRequestHeaderDescription[] =
2224 "Enables a custom request header for URLs managed by dynamically loaded "
2225 "modules in Chrome Custom Tabs.";
2226
alihanlivdumlu12ac4772019-01-17 17:37:182227const char kCCTModuleDexLoadingName[] = "Chrome Custom Tabs Module Dex Loading";
2228const char kCCTModuleDexLoadingDescription[] =
2229 "Enables loading Chrome Custom Tabs module code from a dex file "
2230 "provided by the module.";
2231
barkerd84051482018-11-13 14:46:562232const char kCCTModulePostMessageName[] =
2233 "Chrome Custom Tabs Module postMessage API";
2234const char kCCTModulePostMessageDescription[] =
2235 "Enables the postMessage API exposed to dynamically loaded modules in "
2236 "Chrome Custom Tabs.";
2237
Anna Malova9bb4ead2019-01-18 18:01:262238const char kCCTModuleUseIntentExtrasName[] =
2239 "Chrome Custom Tabs Module Intent Extras Usage";
2240const char kCCTModuleUseIntentExtrasDescription[] =
2241 "Enables usage of Intent's extras in Chrome Custom Tabs Module";
2242
Matthew Jones1abcb132018-07-09 17:59:462243const char kChromeDuetName[] = "Chrome Duet";
2244const char kChromeDuetDescription[] =
2245 "Enables Chrome Duet, split toolbar Chrome Home, on Android.";
Theresa Wellingtonb9243b22017-12-01 16:23:052246
Sarath Singapati83aef1c2017-11-16 15:54:522247const char kClearOldBrowsingDataName[] = "Clear older browsing data";
2248const char kClearOldBrowsingDataDescription[] =
2249 "Enables clearing of browsing data which is older than a given time "
2250 "period.";
2251
Brett Wilsonff596952017-07-14 01:06:552252const char kContentSuggestionsCategoryOrderName[] =
2253 "Default content suggestions category order (e.g. on NTP)";
2254const char kContentSuggestionsCategoryOrderDescription[] =
2255 "Set default order of content suggestion categories (e.g. on the NTP).";
2256
2257const char kContentSuggestionsCategoryRankerName[] =
2258 "Content suggestions category ranker (e.g. on NTP)";
2259const char kContentSuggestionsCategoryRankerDescription[] =
2260 "Set category ranker to order categories of content suggestions (e.g. on "
2261 "the NTP).";
2262
Vitalii Iarkof52ff802017-09-14 12:34:242263const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
2264const char kContentSuggestionsDebugLogDescription[] =
2265 "Enable content suggestions debug log accessible through "
2266 "snippets-internals.";
2267
Donn Denman8e58ead2017-11-04 01:44:012268const char kContextualSearchMlTapSuppressionName[] =
2269 "Contextual Search ML tap suppression";
2270const char kContextualSearchMlTapSuppressionDescription[] =
2271 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:022272 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
2273 "enabled!";
Brett Wilsonff596952017-07-14 01:06:552274
Donn Denman59729812018-01-09 01:27:022275const char kContextualSearchRankerQueryName[] =
2276 "Contextual Search Ranker prediction";
2277const char kContextualSearchRankerQueryDescription[] =
2278 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
2279
2280const char kContextualSearchSecondTapName[] =
2281 "Contextual Search second tap triggering";
2282const char kContextualSearchSecondTapDescription[] =
2283 "Enables triggering on a second tap gesture even when Ranker would "
2284 "normally suppress that tap.";
2285
Donn Denmane9b5b7fb2018-07-24 22:19:492286const char kContextualSearchUnityIntegrationName[] =
2287 "Contextual Search integration with Unified Consent";
2288const char kContextualSearchUnityIntegrationDescription[] =
2289 "Enables integration of Tap to Search with Unified Consent.";
2290
Lei Zhang0a318af2018-11-14 02:19:462291const char kDisplayCutoutAPIName[] =
2292 "Enable support for the Display Cutout API";
2293const char kDisplayCutoutAPIDescription[] =
2294 "Enables developers to support devices that have a display cutout.";
Cathy Li2fb32bf82018-06-06 18:55:402295
Dmitry Skiba9c3efa72017-07-20 22:01:142296const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
2297const char kDontPrefetchLibrariesDescription[] =
2298 "Don't prefetch libraries after loading.";
2299
Joy Ming189b0cc2017-12-08 19:42:432300const char kDownloadsLocationChangeName[] = "Enable downloads location change";
2301const char kDownloadsLocationChangeDescription[] =
2302 "Enable changing default downloads storage location on Android.";
2303
Shakti Sahu32b2ee102018-05-17 00:04:462304const char kDownloadProgressInfoBarName[] = "Enable download progress infobar";
2305const char kDownloadProgressInfoBarDescription[] =
2306 "Enables an infobar notifying users about status of current downloads.";
2307
Shakti Sahu9ec8cfd2018-07-17 13:29:292308const char kDownloadHomeV2Name[] = "Enable download home v2";
2309const char kDownloadHomeV2Description[] =
2310 "Enables the new UI for download home";
2311
Fabio Tirelo918089a2018-10-22 21:24:082312const char kAutofillManualFallbackAndroidName[] =
2313 "Enable Autofill manual fallback for Addresses and Payments (Android)";
2314const char kAutofillManualFallbackAndroidDescription[] =
2315 "If enabled, adds toggle for addresses and payments bottom sheet to the "
2316 "keyboard accessory.";
2317
Fabio Tirelo315e65922018-09-05 03:35:492318const char kEnableAutofillRefreshStyleName[] =
2319 "Enable Autofill refresh style (Android)";
2320const char kEnableAutofillRefreshStyleDescription[] =
2321 "Enable modernized style for Autofill on Android";
2322
Vitalii Iarkof4ed32d2017-09-26 13:15:532323const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
Brett Wilsonff596952017-07-14 01:06:552324const char kEnableAndroidSpellcheckerDescription[] =
2325 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:552326
Lei Tianbd5a3bf2018-02-28 19:01:162327const char kEnableCommandLineOnNonRootedName[] =
2328 "Enable command line on non-rooted devices";
2329const char kEnableCommandLineOnNoRootedDescription[] =
2330 "Enable reading command line file on non-rooted devices (DANGEROUS).";
2331
Vitalii Iarkof4ed32d2017-09-26 13:15:532332const char kEnableContentSuggestionsNewFaviconServerName[] =
2333 "Get favicons for content suggestions from a new server.";
2334const char kEnableContentSuggestionsNewFaviconServerDescription[] =
2335 "If enabled, the content suggestions (on the NTP) will get favicons from a "
2336 "new favicon server.";
Brett Wilsonff596952017-07-14 01:06:552337
Vitalii Iarkof4ed32d2017-09-26 13:15:532338const char kEnableContentSuggestionsThumbnailDominantColorName[] =
2339 "Use content suggestions thumbnail dominant color.";
2340const char kEnableContentSuggestionsThumbnailDominantColorDescription[] =
2341 "Use content suggestions thumbnail dominant color as a placeholder before "
2342 "the real thumbnail is fetched (requires Chrome Home).";
2343
Brett Wilsonff596952017-07-14 01:06:552344const char kEnableCustomContextMenuName[] = "Enable custom context menu";
2345const char kEnableCustomContextMenuDescription[] =
2346 "Enables a new context menu when a link, image, or video is pressed within "
2347 "Chrome.";
2348
Brett Wilsonff596952017-07-14 01:06:552349const char kEnableOmniboxClipboardProviderName[] =
2350 "Omnibox clipboard URL suggestions";
2351const char kEnableOmniboxClipboardProviderDescription[] =
2352 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
2353 "focus in the omnibox.";
2354
Brett Wilsonff596952017-07-14 01:06:552355const char kEnableNtpAssetDownloadSuggestionsName[] =
2356 "Show asset downloads on the New Tab page";
2357const char kEnableNtpAssetDownloadSuggestionsDescription[] =
2358 "If enabled, the list of content suggestions on the New Tab page will "
2359 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
2360 "later use.";
2361
2362const char kEnableNtpBookmarkSuggestionsName[] =
2363 "Show recently visited bookmarks on the New Tab page";
2364const char kEnableNtpBookmarkSuggestionsDescription[] =
2365 "If enabled, the list of content suggestions on the New Tab page will "
2366 "contain recently visited bookmarks.";
2367
Brett Wilsonff596952017-07-14 01:06:552368const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
2369 "Show offline page downloads on the New Tab page";
2370const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
2371 "If enabled, the list of content suggestions on the New Tab page will "
2372 "contain pages that the user downloaded for later use.";
2373
2374const char kEnableNtpRemoteSuggestionsName[] =
2375 "Show server-side suggestions on the New Tab page";
2376const char kEnableNtpRemoteSuggestionsDescription[] =
2377 "If enabled, the list of content suggestions on the New Tab page will "
2378 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
2379 "allows to override the source used to retrieve these server-side "
2380 "suggestions.";
2381
2382const char kEnableNtpSnippetsVisibilityName[] =
2383 "Make New Tab Page Snippets more visible.";
2384const char kEnableNtpSnippetsVisibilityDescription[] =
2385 "If enabled, the NTP snippets will become more discoverable with a larger "
2386 "portion of the first card above the fold.";
2387
2388const char kEnableNtpSuggestionsNotificationsName[] =
2389 "Notify about new content suggestions available at the New Tab page";
2390const char kEnableNtpSuggestionsNotificationsDescription[] =
2391 "If enabled, notifications will inform about new content suggestions on "
2392 "the New Tab page.";
2393
Brett Wilsonff596952017-07-14 01:06:552394const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
2395const char kEnableOfflinePreviewsDescription[] =
2396 "Enable showing offline page previews on slow networks.";
2397
2398const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
2399const char kEnableOskOverscrollDescription[] =
2400 "Enable OSK overscroll support. With this flag on, the OSK will only "
2401 "resize the visual viewport.";
2402
Brett Wilsonff596952017-07-14 01:06:552403const char kEnableWebNfcName[] = "WebNFC";
2404const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
2405
Donn Denmanffaeaa32018-10-12 17:37:532406const char kEphemeralTabName[] = "An Ephemeral Tab in an Overlay Panel";
2407const char kEphemeralTabDescription[] =
Donn Denmanb45c26a2019-02-13 01:42:212408 "Enable a 'Preview page/image' at a linked page into an overlay.";
Donn Denmanffaeaa32018-10-12 17:37:532409
Lei Zhang0a318af2018-11-14 02:19:462410const char kExploreSitesName[] = "Explore websites";
2411const char kExploreSitesDescription[] =
2412 "Enables portal from new tab page to explore websites.";
2413
Xing Liu7d57dd32019-01-20 02:34:182414const char kForegroundNotificationManagerName[] =
2415 "Foreground notification manager";
2416const char kForegroundNotificationManagerDescription[] =
2417 "Enable foreground notification manager to handle foreground service and "
2418 "notification.";
2419
Raymes Khoury582b43132017-12-12 23:54:302420const char kGrantNotificationsToDSEName[] =
2421 "Grant notifications to the Default Search Engine";
2422const char kGrantNotificationsToDSENameDescription[] =
2423 "Automatically grant the notifications permission to the Default Search "
2424 "Engine";
2425
Daniel Parke74fcf862018-03-27 18:05:452426const char kHomePageButtonName[] = "Force Enable Home Page Button";
Daniel Park990d0992018-05-18 22:12:512427const char kHomePageButtonDescription[] = "Displays a home button if enabled.";
Daniel Parke74fcf862018-03-27 18:05:452428
Yafei Duanbb7663f32018-07-17 01:33:152429const char kHomepageTileName[] =
2430 "Enable Homepage tile shown in Suggested Tiles";
2431const char kHomepageTileDescription[] =
2432 "When NTPButton is enabled, the first tile of the Suggested Tiles will be "
2433 "used for homepage. It will not have an effect when NTPButton is disabled.";
2434
Jian Li4b252642018-07-23 19:49:072435const char kIncognitoStringsName[] = "Alternate incognito strings";
2436const char kIncognitoStringsDescription[] =
2437 "Show alternate incognito strings if enabled.";
2438
Theresa920e0ed2018-03-07 18:12:442439const char kInterestFeedContentSuggestionsDescription[] =
Yafei Duanbb7663f32018-07-17 01:33:152440 "Use the interest feed to render content suggestions. Currently "
2441 "content "
Theresa920e0ed2018-03-07 18:12:442442 "suggestions are shown on the New Tab Page.";
2443const char kInterestFeedContentSuggestionsName[] =
2444 "Interest Feed Content Suggestions";
2445
Brett Wilsonff596952017-07-14 01:06:552446const char kKeepPrefetchedContentSuggestionsName[] =
2447 "Keep prefetched content suggestions";
2448const char kKeepPrefetchedContentSuggestionsDescription[] =
2449 "If enabled, some of prefetched content suggestions are not replaced by "
2450 "the new fetched suggestions.";
2451
Leo Zhang051b75482017-12-20 03:28:302452const char kLanguagesPreferenceName[] = "Language Settings";
2453const char kLanguagesPreferenceDescription[] =
2454 "Enable this option for Language Settings feature on Android.";
2455
Brett Wilsonff596952017-07-14 01:06:552456const char kLsdPermissionPromptName[] =
2457 "Location Settings Dialog Permission Prompt";
2458const char kLsdPermissionPromptDescription[] =
2459 "Whether to use the Google Play Services Location Settings Dialog "
2460 "permission dialog.";
2461
Amirhossein Simjour97b4154f2018-02-20 03:49:592462const char kModalPermissionDialogViewName[] = "Modal Permission Dialog";
2463const char kModalPermissionDialogViewDescription[] =
2464 "Enable this option to use ModalDialogManager for permission Dialogs.";
2465
Brett Wilsonff596952017-07-14 01:06:552466const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
2467const char kMediaScreenCaptureDescription[] =
2468 "Enable this option for experimental ScreenCapture feature on Android.";
2469
2470const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
2471const char kModalPermissionPromptsDescription[] =
2472 "Whether to use permission dialogs in place of permission infobars.";
2473
Finnur Thorarinssonc1488fc62018-07-09 19:21:572474const char kNewContactsPickerName[] = "Enable new contacts picker";
2475const char kNewContactsPickerDescription[] =
2476 "Activates the new picker for selecting contacts.";
2477
Dan Harrington541db9e2018-07-30 18:36:302478const char kNewNetErrorPageUIName[] = "Enable new UI for net-error page";
2479const char kNewNetErrorPageUIDescription[] =
2480 "Selects which new UI experience to show on the net-error (Dino) page";
2481
Brett Wilsonff596952017-07-14 01:06:552482const char kNewPhotoPickerName[] = "Enable new Photopicker";
2483const char kNewPhotoPickerDescription[] =
2484 "Activates the new picker for selecting photos.";
2485
2486const char kNoCreditCardAbort[] = "No Credit Card Abort";
2487const char kNoCreditCardAbortDescription[] =
2488 "Whether or not the No Credit Card Abort is enabled.";
2489
Daniel Park990d0992018-05-18 22:12:512490const char kNtpButtonName[] = "Enable NTP Button";
2491const char kNtpButtonDescription[] =
2492 "Displays a New Tab Page button in the toolbar if enabled.";
2493
Jian Liade82832018-09-06 22:31:412494const char kOfflineIndicatorAlwaysHttpProbeName[] = "Always http probe";
2495const char kOfflineIndicatorAlwaysHttpProbeDescription[] =
2496 "Always do http probe to detect network connectivity for offline indicator "
2497 "as opposed to just taking the connection state from the system."
2498 "Used for testing.";
2499
2500const char kOfflineIndicatorChoiceName[] = "Offline indicator choices";
2501const char kOfflineIndicatorChoiceDescription[] =
2502 "Show an offline indicator while offline.";
Jian Li1413ebf2018-06-14 20:46:322503
Brett Wilsonff596952017-07-14 01:06:552504const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2505const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2506
2507const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
2508const char kOfflinePagesCtV2Description[] =
2509 "V2 features include attributing pages to the app that initiated the "
2510 "custom tabs, and being able to query for pages by page attribution.";
2511
Cathy Li7311d792018-04-05 00:34:162512const char kOfflinePagesCTSuppressNotificationsName[] =
2513 "Disable download complete notification for whitelisted CCT apps.";
2514const char kOfflinePagesCTSuppressNotificationsDescription[] =
2515 "Disable download complete notification for page downloads originating "
2516 "from a CCT app whitelisted to show their own download complete "
2517 "notification.";
2518
Candice Sy74fa7a352018-03-30 23:46:492519const char kOfflinePagesDescriptiveFailStatusName[] =
2520 "Enables descriptive failed download status text.";
2521const char kOfflinePagesDescriptiveFailStatusDescription[] =
2522 "Enables failed download status text in notifications and Downloads Home "
2523 "to state the reason the request failed if the failure is actionable.";
2524
2525const char kOfflinePagesDescriptivePendingStatusName[] =
2526 "Enables descriptive pending download status text.";
2527const char kOfflinePagesDescriptivePendingStatusDescription[] =
2528 "Enables pending download status text in notifications and Downloads Home "
2529 "to state the reason the request is pending.";
2530
2531const char kOfflinePagesInDownloadHomeOpenInCctName[] =
2532 "Enables offline pages in the downloads home to be opened in CCT.";
2533const char kOfflinePagesInDownloadHomeOpenInCctDescription[] =
2534 "When enabled offline pages launched from the Downloads Home will be "
2535 "opened in Chrome Custom Tabs (CCT) instead of regular tabs.";
2536
Carlos Knippschild09272ecd2017-12-09 03:29:362537const char kOfflinePagesLimitlessPrefetchingName[] =
2538 "Removes resource usage limits for the prefetching of offline pages.";
2539const char kOfflinePagesLimitlessPrefetchingDescription[] =
2540 "Allows the prefetching of suggested offline pages to ignore resource "
2541 "usage limits. This allows it to completely ignore data usage limitations "
2542 "and allows downloads to happen with any kind of connection.";
2543
Brett Wilsonff596952017-07-14 01:06:552544const char kOfflinePagesLoadSignalCollectingName[] =
2545 "Enables collecting load timing data for offline page snapshots.";
2546const char kOfflinePagesLoadSignalCollectingDescription[] =
2547 "Enables loading completeness data collection while writing an offline "
2548 "page. This data is collected in the snapshotted offline page to allow "
2549 "data analysis to improve deciding when to make the offline snapshot.";
2550
2551const char kOfflinePagesPrefetchingName[] =
2552 "Enables suggested offline pages to be prefetched.";
2553const char kOfflinePagesPrefetchingDescription[] =
2554 "Enables suggested offline pages to be prefetched, so useful content is "
2555 "available while offline.";
2556
Pete Williamson7845dff2017-09-20 11:06:192557const char kOfflinePagesResourceBasedSnapshotName[] =
2558 "Enables offline page snapshots to be based on percentage of page loaded.";
2559const char kOfflinePagesResourceBasedSnapshotDescription[] =
2560 "Enables offline page snapshots to use a resource percentage based "
2561 "approach for determining when the page is loaded as opposed to a time "
2562 "based approach";
2563
Collin Baker17f92a52017-07-19 21:41:252564const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
2565const char kOfflinePagesRenovationsDescription[] =
2566 "Enables offline page renovations which correct issues with dynamic "
2567 "content that occur when offlining pages that use JavaScript.";
2568
Yafei Duan36b4b5b2018-08-07 00:40:032569const char kOfflinePagesLivePageSharingName[] =
2570 "Enables live page sharing of offline pages";
2571const char kOfflinePagesLivePageSharingDescription[] =
2572 "Enables to share current loaded page as offline page by saving as MHTML "
2573 "first.";
2574
Cathy Lie0d88762018-04-12 08:03:012575const char kOfflinePagesShowAlternateDinoPageName[] =
2576 "Enable alternate dino page with more user capabilities.";
2577const char kOfflinePagesShowAlternateDinoPageDescription[] =
2578 "Enables the dino page to show more buttons and offer existing offline "
2579 "content.";
2580
Brett Wilsonff596952017-07-14 01:06:552581const char kOfflinePagesSvelteConcurrentLoadingName[] =
2582 "Enables concurrent background loading on svelte.";
2583const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2584 "Enables concurrent background loading (or downloading) of pages on "
2585 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2586 "happen when the svelte device is idle.";
2587
2588const char kOffliningRecentPagesName[] =
2589 "Enable offlining of recently visited pages";
2590const char kOffliningRecentPagesDescription[] =
2591 "Enable storing recently visited pages locally for offline use. Requires "
2592 "Offline Pages to be enabled.";
2593
Matthew Jonesa88b95852017-11-08 23:13:502594const char kProgressBarThrottleName[] = "Android progress update throttling.";
2595const char kProgressBarThrottleDescription[] =
2596 "Limit the maximum progress update to make progress appear smoother.";
2597
Brett Wilsonff596952017-07-14 01:06:552598const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
2599const char kPullToRefreshEffectDescription[] =
2600 "Page reloads triggered by vertically overscrolling content.";
2601
Piotr Swigon7c296ef2017-08-29 04:32:002602const char kPwaImprovedSplashScreenName[] =
2603 "Improved Splash Screen for standalone PWAs";
2604const char kPwaImprovedSplashScreenDescription[] =
2605 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
2606 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:492607const char kPwaPersistentNotificationName[] =
2608 "Persistent notification in standalone PWA";
2609const char kPwaPersistentNotificationDescription[] =
2610 "Enables a persistent Android notification for standalone PWAs";
2611
Brett Wilsonff596952017-07-14 01:06:552612const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
2613const char kReaderModeHeuristicsDescription[] =
2614 "Determines what pages the Reader Mode infobar is shown on.";
2615const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
2616const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
2617const char kReaderModeHeuristicsAllArticles[] = "All articles";
2618const char kReaderModeHeuristicsAlwaysOff[] = "Never";
2619const char kReaderModeHeuristicsAlwaysOn[] = "Always";
2620
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:182621const char kReaderModeInCCTName[] = "Reader Mode in CCT";
2622const char kReaderModeInCCTDescription[] =
2623 "Open Reader Mode in Chrome Custom Tabs.";
2624
Varun Khaneja2a8229f2019-01-12 00:57:262625const char kSafeBrowsingTelemetryForApkDownloadsName[] =
2626 "Send some telemetry for APK downloads for extended reporting users";
2627const char kSafeBrowsingTelemetryForApkDownloadsDescription[] =
2628 "If enabled, sends some information about the source and hash of the "
2629 "contents of any APK files downloaded by a user who has opted into Safe "
2630 "Browsing Extended Reporting already.";
2631
Varun Khaneja80712a82018-10-12 23:34:592632const char kSafeBrowsingUseLocalBlacklistsV2Name[] =
2633 "Use local Safe Browsing blacklists";
2634const char kSafeBrowsingUseLocalBlacklistsV2Description[] =
2635 "If enabled, maintain a copy of Safe Browsing blacklists in the browser "
2636 "process to check the Safe Browsing reputation of URLs without calling "
2637 "into GmsCore for every URL.";
2638
Matthew Jones53114262018-12-12 16:36:472639const char kSearchReadyOmniboxName[] = "Search Ready Omnibox";
2640const char kSearchReadyOmniboxDescription[] =
2641 "Clears the omnibox and adds a suggestion item to share, copy, or edit the "
2642 "URL.";
2643
Brett Wilsonff596952017-07-14 01:06:552644const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2645const char kSetMarketUrlForTestingDescription[] =
2646 "When enabled, sets the market URL for use in testing the update menu "
2647 "item.";
2648
2649const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
2650const char kSpannableInlineAutocompleteDescription[] =
2651 "A new type of inline autocomplete for the omnibox that works with "
2652 "keyboards that compose text.";
2653
Theresaeea05a12018-05-09 21:01:592654const char kSiteExplorationUiName[] = "Site Exploration UI";
2655const char kSiteExplorationUiDescription[] =
2656 "Show site suggestions in the Exploration UI";
2657
Lei Zhang0a318af2018-11-14 02:19:462658const char kStrictSiteIsolationName[] = "Strict site isolation";
2659const char kStrictSiteIsolationDescription[] =
2660 "Security mode that enables site isolation for all sites (SitePerProcess). "
2661 "In this mode, each renderer process will contain pages from at most one "
2662 "site, using out-of-process iframes when needed. "
2663 "Check chrome://process-internals to see the current isolation mode. "
2664 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
2665 "default. Here, 'Disabled' is a legacy value that actually means "
2666 "'Default,' in which case site isolation may be already enabled based on "
2667 "platform, enterprise policy, or field trial. See also "
2668 "#site-isolation-trial-opt-out for how to disable site isolation for "
2669 "testing.";
2670
Anthony Vallee-Dubois4623e1b2018-10-11 22:09:182671const char kTranslateAndroidManualTriggerName[] =
2672 "Enable manual translate trigger";
2673const char kTranslateAndroidManualTriggerDescription[] =
2674 "Show a menu item in the main menu that triggers page translation.";
2675
Brett Wilsonff596952017-07-14 01:06:552676const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2677const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:442678 "When enabled, a badge will be shown on the app menu button if the update "
2679 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:552680
2681const char kUpdateMenuItemCustomSummaryDescription[] =
2682 "When this flag and the force show update menu item flag are enabled, a "
2683 "custom summary string will be displayed below the update menu item.";
2684const char kUpdateMenuItemCustomSummaryName[] =
2685 "Update menu item custom summary";
2686
Tommy Nyquist3c02e592018-10-18 23:36:442687const char kUpdateMenuTypeName[] =
2688 "Forces the update menu type to a specific type";
2689const char kUpdateMenuTypeDescription[] =
2690 "When set, forces the update type to be a specific one, which impacts "
Tommy Nyquist023d505f2019-02-16 02:18:382691 "the app menu badge and menu item for updates. For Inline Update, the "
2692 "update available flag is implied. The 'Inline Update: Success' selection "
2693 "goes through the whole inline update flow to the end with a successful "
2694 "outcome. The other 'Inline Update' options go through the same flow, but "
2695 "stop at various stages, see their error type for details.";
Tommy Nyquist3c02e592018-10-18 23:36:442696const char kUpdateMenuTypeNone[] = "None";
2697const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
2698const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Tommy Nyquist023d505f2019-02-16 02:18:382699const char kUpdateMenuTypeInlineUpdateSuccess[] = "Inline Update: Success";
2700const char kUpdateMenuTypeInlineUpdateDialogCanceled[] =
2701 "Inline Update Error: Dialog Canceled";
2702const char kUpdateMenuTypeInlineUpdateDialogFailed[] =
2703 "Inline Update Error: Dialog Failed";
2704const char kUpdateMenuTypeInlineUpdateDownloadFailed[] =
2705 "Inline Update Error: Download Failed";
2706const char kUpdateMenuTypeInlineUpdateDownloadCanceled[] =
2707 "Inline Update Error: Download Canceled";
2708const char kUpdateMenuTypeInlineUpdateInstallFailed[] =
2709 "Inline Update Error: Install Failed";
Brett Wilsonff596952017-07-14 01:06:552710
Marc Treib93af46a2017-08-23 13:30:002711const char kThirdPartyDoodlesName[] =
2712 "Enable Doodles for third-party search engines";
2713const char kThirdPartyDoodlesDescription[] =
2714 "Enables fetching and displaying Doodles on the NTP for third-party search "
2715 "engines.";
2716
Klaus Weidneraaf697f2018-01-18 20:07:362717const char kWebXrRenderPathName[] = "WebXR presentation render path";
2718const char kWebXrRenderPathDescription[] =
2719 "Render path to use for WebXR presentation (including WebVR)";
2720const char kWebXrRenderPathChoiceClientWaitDescription[] =
2721 "ClientWait (Baseline)";
2722const char kWebXrRenderPathChoiceGpuFenceDescription[] =
2723 "GpuFence (Android N+)";
Klaus Weidnerd25dff42018-04-12 06:56:072724const char kWebXrRenderPathChoiceSharedBufferDescription[] =
2725 "SharedBuffer (Android O+)";
Klaus Weidneraaf697f2018-01-18 20:07:362726
Becky Zhou65584142019-01-10 18:22:292727#if BUILDFLAG(ENABLE_ANDROID_NIGHT_MODE)
2728
2729const char kAndroidNightModeName[] = "Enable night mode based on user settings";
2730const char kAndroidNightModeDescription[] =
2731 "If enabled, user can enable night mode through settings.";
2732
2733#endif // BUILDFLAG(ENABLE_ANDROID_NIGHT_MODE)
2734
Brett Wilson7b44537e2017-08-18 01:38:282735// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552736
Brett Wilson7b44537e2017-08-18 01:38:282737#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482738
Brett Wilson7b44537e2017-08-18 01:38:282739const char kAccountConsistencyName[] =
2740 "Identity consistency between browser and cookie jar";
2741const char kAccountConsistencyDescription[] =
2742 "When enabled, the browser manages signing in and out of Google accounts.";
2743const char kAccountConsistencyChoiceMirror[] = "Mirror";
2744const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342745
Reka Normana11e57fc2019-01-29 21:56:582746const char kAppManagementName[] = "Enable App Management page";
2747const char kAppManagementDescription[] =
2748 "Shows the new app management page at chrome://apps.";
2749
Tommy Martino3fa3df52018-08-20 21:45:442750const char kAutofillDropdownLayoutName[] =
2751 "Autofill Dropdown Layout Experiment";
2752const char kAutofillDropdownLayoutDescription[] =
2753 "Alternate visual designs for the Autofill dropdown.";
2754
Chris Pickel3a227ae62017-08-24 10:47:262755const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2756const char kDoodlesOnLocalNtpDescription[] =
2757 "Show doodles on the local New Tab page if Google is the default search "
2758 "engine.";
2759
Kyle Milkaedb39f52018-11-21 19:53:072760const char kSearchSuggestionsOnLocalNtpName[] =
2761 "Enable search suggestions on the local NTP";
2762const char kSearchSuggestionsOnLocalNtpDescription[] =
2763 "Show search suggestions on the local New Tab page if Google is the "
2764 "default search engine.";
2765
2766const char kPromosOnLocalNtpName[] = "Enable promos on the local NTP";
2767const char kPromosOnLocalNtpDescription[] =
2768 "Show promos on the local New Tab page if Google is the "
2769 "default search engine.";
2770
Kristi Parkc9b9d6592019-02-12 22:30:382771const char kRemoveNtpFakeboxName[] = "Remove fakebox from the NTP";
2772const char kRemoveNtpFakeboxDescription[] =
2773 "Do not show the fakebox on the New Tab page.";
2774
Lei Zhang0a318af2018-11-14 02:19:462775const char kEnableWebAuthenticationBleSupportName[] =
2776 "Web Authentication API BLE support";
2777const char kEnableWebAuthenticationBleSupportDescription[] =
2778 "Enable support for using Web Authentication API via Bluetooth security "
2779 "keys";
Sebastien Marchandd33f7dc2018-06-22 22:07:062780
Sebastien Marchandd33f7dc2018-06-22 22:07:062781const char kEnableWebAuthenticationTestingAPIName[] =
2782 "Web Authentication Testing API";
2783const char kEnableWebAuthenticationTestingAPIDescription[] =
2784 "Enable Web Authentication Testing API support, which disconnects the API "
2785 "implementation from the real world, and allows configuring virtual "
2786 "authenticator devices for testing";
2787
Jeffrey Cohenf04130a42018-08-29 00:22:272788const char kHappinessTrackingSurveysForDesktopName[] =
2789 "Happiness Tracking Surveys";
2790const char kHappinessTrackingSurveysForDesktopDescription[] =
2791 "Enable showing Happiness Tracking Surveys to users on Desktop";
2792
Travis Skarebcdb5ed32018-08-17 01:49:402793const char kOmniboxDriveSuggestionsName[] =
2794 "Omnibox Google Drive Document suggestions";
2795const char kOmniboxDriveSuggestionsDescriptions[] =
2796 "Display suggestions for Google Drive documents in the omnibox when Google "
2797 "is the default search engine.";
2798
Kevin Bailey9ec05532019-01-31 23:01:332799const char kOmniboxExperimentalKeywordModeName[] =
2800 "Omnibox Experimental Keyword Mode";
2801const char kOmniboxExperimentalKeywordModeDescription[] =
2802 "Enables various experimental features related to keyword mode, its "
2803 "suggestions and layout";
2804
Lei Zhang0a318af2018-11-14 02:19:462805const char kOmniboxPedalSuggestionsName[] = "Omnibox Pedal suggestions";
2806const char kOmniboxPedalSuggestionsDescription[] =
Orin Jaworski506db4d2019-02-14 20:17:142807 "Enable omnibox Pedal suggestions to accelerate actions within Chrome by "
2808 "detecting user intent and offering direct access to the end goal.";
Lei Zhang0a318af2018-11-14 02:19:462809
Orin Jaworski04c08b42018-07-11 02:39:562810const char kOmniboxReverseAnswersName[] = "Omnibox reverse answers";
2811const char kOmniboxReverseAnswersDescription[] =
2812 "Display answers with rows reversed (swapped); except definitions. Has no "
2813 "effect unless either the #upcoming-ui-features flag is Enabled or the "
2814 "#top-chrome-md flag is set to Refresh or Touchable Refresh.";
2815
Kevin Baileya5f17452019-02-13 01:52:032816const char kOmniboxReverseTabSwitchLogicName[] =
2817 "Omnibox reverse tab switch logic";
2818const char kOmniboxReverseTabSwitchLogicDescription[] =
2819 "Reverse the logic of suggestions that have a tab switch button: Have "
2820 "them switch by default, and have the button navigate.";
2821
Kevin Bailey898669972017-11-06 15:34:492822const char kOmniboxTabSwitchSuggestionsName[] =
2823 "Omnibox tab switch suggestions";
2824const char kOmniboxTabSwitchSuggestionsDescription[] =
Justin Donnellye7926092018-06-18 14:57:212825 "Enable suggestions for switching to open tabs within the Omnibox. "
2826 "Has no effect unless either the #upcoming-ui-features flag is Enabled or "
2827 "the #top-chrome-md flag is set to Refresh or Touchable Refresh.";
Kevin Bailey898669972017-11-06 15:34:492828
krbcc621412017-06-01 19:40:282829const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2830const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192831 "Enable receiving tail suggestions, a type of search suggestion based on "
2832 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342833
Sebastien Marchandd33f7dc2018-06-22 22:07:062834const char kPageAlmostIdleName[] = "Page Almost Idle";
2835const char kPageAlmostIdleDescription[] =
2836 "Make session restore use a definition of loading that waits for CPU and "
2837 "network quiescence.";
2838
2839const char kProactiveTabFreezeAndDiscardName[] =
2840 "Proactive Tab Freeze and Discard";
2841const char kProactiveTabFreezeAndDiscardDescription[] =
2842 "Enables proactive tab freezing and discarding. This requires "
2843 "#enable-page-almost-idle.";
2844
Nicolas Ouellet-payeur82eb65b2018-11-05 16:49:272845const char kShowManagedUiName[] = "Show managed UI for managed users";
2846const char kShowManagedUiDescription[] =
2847 "Enabled/disable showing enterprise users a 'Managed by your organization' "
2848 "message in the app menu and on some chrome:// pages.";
2849
Sebastien Marchandd33f7dc2018-06-22 22:07:062850const char kSiteCharacteristicsDatabaseName[] = "Site Characteristics database";
2851const char kSiteCharacteristicsDatabaseDescription[] =
2852 "Records usage of some features in a database while a tab is in background "
2853 "(title/favicon update, audio playback or usage of non-persistent "
2854 "notifications).";
2855
Brett Wilson7b44537e2017-08-18 01:38:282856const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2857const char kUseGoogleLocalNtpDescription[] =
2858 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322859
Brett Wilson7b44537e2017-08-18 01:38:282860#if defined(GOOGLE_CHROME_BUILD)
2861
2862const char kGoogleBrandedContextMenuName[] =
2863 "Google branding in the context menu";
2864const char kGoogleBrandedContextMenuDescription[] =
2865 "Shows a Google icon next to context menu items powered by Google "
2866 "services.";
2867
2868#endif // !defined(GOOGLE_CHROME_BUILD)
2869
2870#endif // !defined(OS_ANDROID)
2871
2872// Windows ---------------------------------------------------------------------
2873
2874#if defined(OS_WIN)
2875
David Bienvenud0ddda32018-11-01 16:59:162876const char kCalculateNativeWinOcclusionName[] =
2877 "Calculate window occlusion on Windows";
2878const char kCalculateNativeWinOcclusionDescription[] =
2879 "Calculate window occlusion on Windows will be used in the future "
2880 "to throttle and potentially unload foreground tabs in occluded windows";
2881
Brett Wilson7b44537e2017-08-18 01:38:282882const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2883const char kCloudPrintXpsDescription[] =
2884 "XPS enables advanced options for classic printers connected to the Cloud "
2885 "Print with Chrome. Printers must be re-connected after changing this "
2886 "flag.";
2887
Frank Liberato754d14f2019-01-30 23:31:172888const char kD3D11VideoDecoderName[] = "D3D11 Video Decoder";
2889const char kD3D11VideoDecoderDescription[] =
2890 "Enables D3D11VideoDecoder for hardware accelerated video decoding.";
2891
Brett Wilson7b44537e2017-08-18 01:38:282892const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2893const char kDisablePostscriptPrintingDescription[] =
2894 "Disables PostScript generation when printing to PostScript capable "
2895 "printers, and uses EMF generation in its place.";
2896
2897const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2898const char kEnableAppcontainerDescription[] =
2899 "Enables the use of an AppContainer on sandboxed processes to improve "
2900 "security.";
2901
James Forshawfd0ce342018-02-14 09:55:392902const char kEnableGpuAppcontainerName[] = "Enable GPU AppContainer Lockdown.";
2903const char kEnableGpuAppcontainerDescription[] =
2904 "Enables the use of an AppContainer for the GPU sandboxed processes to "
2905 "improve security.";
2906
Brett Wilson7b44537e2017-08-18 01:38:282907const char kGdiTextPrinting[] = "GDI Text Printing";
2908const char kGdiTextPrintingDescription[] =
2909 "Use GDI to print text as simply text";
2910
Olli Etuaho122321192018-09-07 10:15:292911const char kUseAngleName[] = "Choose ANGLE graphics backend";
2912const char kUseAngleDescription[] =
2913 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
2914 "computers by default. Using the OpenGL driver as the graphics backend may "
2915 "result in higher performance in some graphics-heavy applications, "
2916 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
2917 "video playback.";
2918
2919const char kUseAngleDefault[] = "Default";
2920const char kUseAngleGL[] = "OpenGL";
2921const char kUseAngleD3D11[] = "D3D11";
2922const char kUseAngleD3D9[] = "D3D9";
2923
Brett Wilson7b44537e2017-08-18 01:38:282924const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2925const char kUseWinrtMidiApiDescription[] =
2926 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2927 "later).";
2928
2929const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2930const char kWindows10CustomTitlebarDescription[] =
2931 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2932 "deferring to Windows.";
2933
2934#endif // defined(OS_WIN)
2935
2936// Mac -------------------------------------------------------------------------
2937
2938#if defined(OS_MACOSX)
2939
Brett Wilson7b44537e2017-08-18 01:38:282940const char kContentFullscreenName[] = "Improved Content Fullscreen";
2941const char kContentFullscreenDescription[] =
2942 "Fullscreen content window detaches from main browser window and goes to "
2943 "a new space without moving or changing the original browser window.";
2944
Brett Wilson7b44537e2017-08-18 01:38:282945const char kHostedAppsInWindowsName[] =
2946 "Allow hosted apps to be opened in windows";
2947const char kHostedAppsInWindowsDescription[] =
2948 "Allows hosted apps to be opened in windows instead of being limited to "
2949 "tabs.";
2950
Christopher Cameron57dee5a42018-09-25 01:20:082951const char kCreateAppWindowsInAppShimProcessName[] =
2952 "Create native windows in the app process";
2953const char kCreateAppWindowsInAppShimProcessDescription[] =
2954 "Create native windows the app shim process, instead of of the browser "
2955 "process.";
2956
Lei Zhange065b572018-12-11 08:00:412957const char kEnableCustomMacPaperSizesName[] = "Enable custom paper sizes";
2958const char kEnableCustomMacPaperSizesDescription[] =
2959 "Allow use of custom paper sizes in Print Preview.";
2960
Lei Zhang2eca9082017-10-17 20:42:502961const char kMacTouchBarName[] = "Hardware Touch Bar";
2962const char kMacTouchBarDescription[] = "Control the use of the Touch Bar.";
Brett Wilson7b44537e2017-08-18 01:38:282963
Greg Kerr32483d1c2018-12-18 02:29:142964const char kMacV2GPUSandboxName[] = "Mac V2 GPU Sandbox";
2965const char kMacV2GPUSandboxDescription[] =
2966 "Controls whether the GPU process on macOS uses the V1 or V2 sandbox.";
2967
Brett Wilson7b44537e2017-08-18 01:38:282968const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2969const char kMacViewsNativeAppWindowsDescription[] =
2970 "Controls whether to use Toolkit-Views based Chrome App windows.";
2971
2972const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2973const char kMacViewsTaskManagerDescription[] =
2974 "Controls whether to use the Toolkit-Views based Task Manager.";
2975
Brett Wilson7b44537e2017-08-18 01:38:282976#endif
2977
2978// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342979
2980#if defined(OS_CHROMEOS)
2981
Brett Wilson7b44537e2017-08-18 01:38:282982const char kAcceleratedMjpegDecodeName[] =
2983 "Hardware-accelerated mjpeg decode for captured frame";
2984const char kAcceleratedMjpegDecodeDescription[] =
2985 "Enable hardware-accelerated mjpeg decode for captured frame where "
2986 "available.";
vabr0215a8e2017-03-28 12:47:342987
Brett Wilson7b44537e2017-08-18 01:38:282988const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2989const char kAllowTouchpadThreeFingerClickDescription[] =
2990 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342991
Reka Normana11e57fc2019-01-29 21:56:582992const char kAppServiceAshName[] = "App Service Ash";
2993const char kAppServiceAshDescription[] =
2994 "Use the App Service to provide data to the Ash UI, such as the shelf and "
2995 "app list.";
2996
Bruno Kim Medeiros Cesarb98fe1d82018-06-06 18:11:522997const char kArcAvailableForChildName[] = "Allow ARC for child accounts";
2998const char kArcAvailableForChildDescription[] =
2999 "Allow child accounts to start Android apps.";
3000
Brett Wilson7b44537e2017-08-18 01:38:283001const char kArcBootCompleted[] = "Load Android apps automatically";
3002const char kArcBootCompletedDescription[] =
3003 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:343004
Luum Habtemariamdaa8fd22018-06-25 22:39:433005const char kArcCupsApiName[] = "ARC CUPS API";
3006const char kArcCupsApiDescription[] =
3007 "Enables support of libcups APIs from ARC";
3008
Naoki Fukino153de8a2019-01-22 08:37:543009const char kArcDocumentsProviderName[] = "ARC DocumentsProvider integration";
3010const char kArcDocumentsProviderDescription[] =
3011 "Enables DocumentsProvider integration in Chrome OS Files app.";
3012
Satoshi Niwa8b1d5282018-10-24 04:53:033013const char kArcFilePickerExperimentName[] =
3014 "Enable file picker experiment for ARC";
3015const char kArcFilePickerExperimentDescription[] =
3016 "Enables using Chrome OS file picker in ARC.";
3017
[email protected]939ceae2019-01-29 17:00:153018const char kArcGraphicBuffersVisualizationToolName[] =
3019 "Enable ARC graphic buffers visualization tool";
3020const char kArcGraphicBuffersVisualizationToolDescription[] =
3021 "Enable ARC graphic buffers visualization tool "
3022 "(chrome://arc-graphics-tracing).";
3023
Lev Rumyantsev7a8544312017-08-18 19:26:513024const char kArcNativeBridgeExperimentName[] =
3025 "Enable native bridge experiment for ARC";
3026const char kArcNativeBridgeExperimentDescription[] =
3027 "Enables experimental native bridge feature.";
3028
lgchengecd1c1a62018-01-09 02:59:463029const char kArcUsbHostName[] = "Enable ARC USB host integration";
3030const char kArcUsbHostDescription[] =
3031 "Allow Android apps to use USB host feature on ChromeOS devices.";
3032
Kevin Cernekeeb7f96a52017-10-25 17:40:183033const char kArcVpnName[] = "Enable ARC VPN integration";
3034const char kArcVpnDescription[] =
3035 "Allow Android VPN clients to tunnel Chrome traffic.";
3036
Qiang Xu045aff222018-05-21 23:21:013037const char kAshEnableDisplayMoveWindowAccelsName[] =
3038 "Enable shortcuts for moving window between displays.";
3039const char kAshEnableDisplayMoveWindowAccelsDescription[] =
3040 "Enable shortcuts for moving window between displays.";
3041
Sammie Quonfe640ca2019-01-30 17:54:183042const char kAshEnableOverviewRoundedCornersName[] =
3043 "Enable rounded corners in overview mode.";
3044const char kAshEnableOverviewRoundedCornersDescription[] =
3045 "Enables rounded corners on overview windows.";
3046
Qiang Xu045aff222018-05-21 23:21:013047const char kAshEnablePersistentWindowBoundsName[] =
3048 "Enable persistent window bounds in multi-displays scenario.";
3049const char kAshEnablePersistentWindowBoundsDescription[] =
3050 "Enable persistent window bounds in multi-displays scenario.";
3051
Eliot Courtneye87a9c32018-11-20 03:33:023052const char kAshEnablePipRoundedCornersName[] =
3053 "Enable Picture-in-Picture rounded corners.";
3054const char kAshEnablePipRoundedCornersDescription[] =
3055 "Enable rounded corners on the Picture-in-Picture window.";
3056
Brett Wilson7b44537e2017-08-18 01:38:283057const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
3058const char kAshEnableUnifiedDesktopDescription[] =
3059 "Enable unified desktop mode which allows a window to span multiple "
3060 "displays.";
vabr0215a8e2017-03-28 12:47:343061
Qiang Xu045aff222018-05-21 23:21:013062const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
3063const char kAshShelfColorDescription[] =
3064 "Enables/disables the shelf color to be a derived from the wallpaper. The "
3065 "--ash-shelf-color-scheme flag defines how that color is derived.";
3066
3067const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
3068const char kAshShelfColorSchemeDescription[] =
3069 "Specify how the color is derived from the wallpaper. This flag is only "
3070 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
3071const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
3072const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
3073const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
3074const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
3075const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
3076const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
3077
Sean Kau5e956192017-10-06 22:25:173078const char kBulkPrintersName[] = "Bulk Printers Policy";
3079const char kBulkPrintersDescription[] = "Enables the new bulk printers policy";
3080
Brett Wilson7b44537e2017-08-18 01:38:283081const char kCaptivePortalBypassProxyName[] =
3082 "Bypass proxy for Captive Portal Authorization";
3083const char kCaptivePortalBypassProxyDescription[] =
3084 "If proxy is configured, it usually prevents from authorization on "
3085 "different captive portals. This enables opening captive portal "
3086 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:343087
Xiaochu Liu51d03fd2017-09-08 23:51:023088const char kCrOSContainerName[] = "Chrome OS Container";
3089const char kCrOSContainerDescription[] =
3090 "Enable the use of Chrome OS Container utility.";
3091
Brett Wilson7b44537e2017-08-18 01:38:283092const char kCrosRegionsModeName[] = "Cros-regions load mode";
3093const char kCrosRegionsModeDescription[] =
3094 "This flag controls cros-regions load mode";
3095const char kCrosRegionsModeDefault[] = "Default";
3096const char kCrosRegionsModeOverride[] = "Override VPD values.";
3097const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:343098
Daniel Ng96ab0c82019-01-16 01:21:553099const char kCrostiniAppSearchName[] = "Crostini App Search";
3100const char kCrostiniAppSearchDescription[] =
3101 "Enable search and installation of Crostini apps in the launcher.";
3102
Joel Hockey42387102019-01-10 01:19:323103const char kCrostiniBackupName[] = "Crostini Backup";
3104const char kCrostiniBackupDescription[] = "Enable Crostini export and import.";
3105
Josh Pratt57cea392018-10-30 02:59:063106const char kCrostiniUsbSupportName[] = "Crostini Usb Support";
3107const char kCrostiniUsbSupportDescription[] =
3108 "Enable mounting Usb devices in Crostini.";
3109
Josh Nohle2f82dcc2018-12-17 23:11:233110const char kCryptAuthV2EnrollmentName[] = "CryptAuth v2 Enrollment";
3111const char kCryptAuthV2EnrollmentDescription[] =
3112 "Use the CryptAuth v2 Enrollment protocol.";
3113
Daniele Castagna787f4152019-02-12 17:05:053114const char kEnableExplicitDmaFencesName[] = "Enable explicit dma-fences";
3115const char kEnableExplicitDmaFencesDescription[] =
3116 "Use dma-fences explicitly for synchronization between GPU and display "
3117 "controller when available.";
Daniele Castagnac4aeb572018-10-23 16:23:573118
Qiang Xu045aff222018-05-21 23:21:013119const char kDisableSystemTimezoneAutomaticDetectionName[] =
3120 "SystemTimezoneAutomaticDetection policy support";
3121const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
3122 "Disable system timezone automatic detection device policy.";
3123
Sammie Quonef6b4882017-09-14 16:50:053124const char kDisableTabletAutohideTitlebarsName[] =
3125 "Disable autohide titlebars in tablet mode";
3126const char kDisableTabletAutohideTitlebarsDescription[] =
3127 "Disable tablet mode autohide titlebars functionality. The user will be "
3128 "able to see the titlebar in tablet mode.";
3129
Xiaoqian Dai24b33eb2018-04-10 21:01:573130const char kDisableTabletSplitViewName[] = "Disable split view in Tablet mode";
3131const char kDisableTabletSplitViewDescription[] =
3132 "Disable split view for Chrome OS tablet mode.";
3133
Ahmed Fakhry4f567e692018-10-16 15:51:083134const char kDoubleTapToZoomInTabletModeName[] =
3135 "Double-tap to zoom in tablet mode";
3136const char kDoubleTapToZoomInTabletModeDescription[] =
3137 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
3138 "page.";
3139
Daniel Zhang01399072018-08-16 22:28:203140const char kEnableAppListSearchAutocompleteName[] =
3141 "App List Search Autocomplete";
3142const char kEnableAppListSearchAutocompleteDescription[] =
3143 "Allow App List search box to autocomplete queries for Google searches and "
3144 "apps.";
3145
Qiang Xu53d1a5832018-05-24 18:44:193146const char kEnableAppShortcutSearchName[] =
3147 "Enable app shortcut search in launcher";
3148const char kEnableAppShortcutSearchDescription[] =
3149 "Enables app shortcut search in launcher";
3150
Vladislav Kaznacheevaa213a02018-10-29 17:54:283151const char kEnableAppDataSearchName[] = "Enable app data search in launcher";
3152const char kEnableAppDataSearchDescription[] =
3153 "Allow launcher search to access data available through Firebase App "
3154 "Indexing";
3155
Lei Zhang0a318af2018-11-14 02:19:463156const char kEnableArcUnifiedAudioFocusName[] =
Becca Hughes34415e82018-10-05 18:47:373157 "Enable unified audio focus on ARC";
Lei Zhang0a318af2018-11-14 02:19:463158const char kEnableArcUnifiedAudioFocusDescription[] =
Becca Hughes34415e82018-10-05 18:47:373159 "If audio focus is enabled in Chrome then this will delegate audio focus "
3160 "control in Android apps to Chrome.";
3161
Yue Li958f9dd2018-11-15 00:56:593162const char kEnableAssistantVoiceMatchName[] = "Enable Assistant Voice Match";
3163const char kEnableAssistantVoiceMatchDescription[] =
3164 "Enable the Assistant Voice Match feature";
3165
Yue Liebaa9952018-12-07 21:41:263166const char kEnableAssistantAppSupportName[] = "Enable Assistant App Support";
3167const char kEnableAssistantAppSupportDescription[] =
3168 "Enable the Assistant App Support feature";
3169
Lei Zhang2eca9082017-10-17 20:42:503170const char kEnableBackgroundBlurName[] = "Enable background blur.";
3171const char kEnableBackgroundBlurDescription[] =
Wenzhao Zang50fb0b22017-11-07 01:38:423172 "Enables background blur for the Peeking Launcher and Tab Switcher.";
Alex Newcomer43cb7f12017-07-28 17:37:393173
Lei Zhang0ca70ea2018-09-07 17:51:013174const char kEnableChromeOsAccountManagerName[] = "Enable Account Manager";
3175const char kEnableChromeOsAccountManagerDescription[] =
Kushagra Sinha8a181fc2018-08-20 17:15:493176 "Enables the Chrome OS Account Manager";
3177
Alexander Alekseev38e1e0a2018-11-08 22:48:483178const char kEnableDiscoverAppName[] = "Enable Discover App";
3179const char kEnableDiscoverAppDescription[] =
3180 "Enable Discover App icon in launcher.";
3181
Xiaoqian Dai82d99192018-05-25 18:51:353182const char kEnableDragTabsInTabletModeName[] =
3183 "Enable dragging tabs in tablet mode";
3184const char kEnableDragTabsInTabletModeDescription[] =
3185 "Allows the user to drag the tabs out of a browser window in tablet mode.";
3186
Sam McNally201fbf94e2018-07-04 03:15:203187const char kEnableDriveFsName[] = "Enable DriveFS";
3188const char kEnableDriveFsDescription[] =
3189 "Enables use of the new DriveFS-based Drive sync client.";
3190
Luciano Pacheco20c48bd42018-11-07 00:57:083191const char kEnableMyFilesVolumeName[] = "Enable MyFiles as Volume";
3192const char kEnableMyFilesVolumeDescription[] =
Luciano Pacheco7fe772fe2018-11-07 02:31:453193 "Enables use of MyFiles as a read/write volume. This should be only "
3194 "used for testing or for trying to restore the previous Downloads content.";
Luciano Pacheco20c48bd42018-11-07 00:57:083195
Brett Wilson7b44537e2017-08-18 01:38:283196const char kEnableEhvInputName[] =
3197 "Emoji, handwriting and voice input on opt-in IME menu";
3198const char kEnableEhvInputDescription[] =
3199 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:343200
Brett Wilson7b44537e2017-08-18 01:38:283201const char kEnableEncryptionMigrationName[] =
3202 "Enable encryption migration of user data";
3203const char kEnableEncryptionMigrationDescription[] =
3204 "If enabled and the device supports ARC, the user will be asked to update "
3205 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:343206
Qiang Xu045aff222018-05-21 23:21:013207const char kEnableFullscreenHandwritingVirtualKeyboardName[] =
3208 "Enable full screen handwriting virtual keyboard";
3209const char kEnableFullscreenHandwritingVirtualKeyboardDescription[] =
3210 "If enabled, the handwriting virtual keyboard will allow user to write "
3211 "anywhere on the screen";
3212
Xiaohui Chenfb0943e2018-10-16 22:44:373213const char kEnableGoogleAssistantName[] = "Enable Google Assistant";
3214const char kEnableGoogleAssistantDescription[] =
3215 "Enable an experimental Assistant implementation that will work on all "
3216 "Chromebooks.";
3217
Xiaohui Chenf4283f32018-11-26 20:02:503218const char kEnableGoogleAssistantDspName[] =
3219 "Enable Google Assistant with hardware-based hotword";
3220const char kEnableGoogleAssistantDspDescription[] =
3221 "Enable an experimental feature that uses hardware-based hotword detection "
3222 "for Assistant. Only a limited number of devices have this type of "
3223 "hardware support.";
3224
Xiaohui Chenc3baca42018-11-30 19:29:373225const char kEnableGoogleAssistantStereoInputName[] =
3226 "Enable Google Assistant with stereo audio input";
3227const char kEnableGoogleAssistantStereoInputDescription[] =
3228 "Enable an experimental feature that uses stereo audio input for hotword "
3229 "and voice to text detection in Google Assistant.";
3230
Qiang Xu045aff222018-05-21 23:21:013231const char kEnableHomeLauncherName[] = "Enable home launcher";
3232const char kEnableHomeLauncherDescription[] =
3233 "Enable home launcher in tablet mode.";
3234
Brett Wilson7b44537e2017-08-18 01:38:283235const char kEnableImeMenuName[] = "Enable opt-in IME menu";
3236const char kEnableImeMenuDescription[] =
3237 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:343238
Sammie Quon248ccef2018-08-28 23:00:013239const char kEnableOobeRecommendAppsScreenName[] =
3240 "Enable OOBE Recommend Apps Screen";
3241const char kEnableOobeRecommendAppsScreenDescription[] =
3242 "Enable the Recommend Apps Screen in OOBE which allows user to install apps"
3243 "from other devices";
3244
Qiang Xu045aff222018-05-21 23:21:013245const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
3246const char kEnablePerUserTimezoneDescription[] =
3247 "Chrome OS system timezone preference is stored and handled for each user "
3248 "individually.";
3249
Vladislav Kaznacheevaa213a02018-10-29 17:54:283250const char kEnablePlayStoreSearchName[] = "Enable Play Store search";
3251const char kEnablePlayStoreSearchDescription[] =
3252 "Enable Play Store search in launcher.";
3253
Darren Shen3e49c63d2018-03-28 04:45:503254const char kEnableStylusVirtualKeyboardName[] =
3255 "Enable stylus virtual keyboard";
3256const char kEnableStylusVirtualKeyboardDescription[] =
3257 "If enabled, tapping with a stylus will show the handwriting virtual "
3258 "keyboard.";
3259
Jazz Xu2e5886662018-12-14 00:38:483260const char kEnableVideoPlayerNativeControlsName[] =
3261 "Enable native controls in video player app";
3262const char kEnableVideoPlayerNativeControlsDescription[] =
3263 "Enable native controls in video player app";
3264
Darren Shen0b4e5802018-07-10 03:12:263265const char kEnableVirtualKeyboardUkmName[] = "Enable UKM for virtual keyboard";
3266const char kEnableVirtualKeyboardUkmDescription[] =
3267 "Enables UKM for virtual keyboard";
3268
Lei Zhang0ca70ea2018-09-07 17:51:013269const char kEnableZeroStateSuggestionsName[] = "Enable Zero State Suggetions";
3270const char kEnableZeroStateSuggestionsDescription[] =
Sammie Quon248ccef2018-08-28 23:00:013271 "Enable Zero State Suggestions feature in Launcher, which will show "
Vladislav Kaznacheevaa213a02018-10-29 17:54:283272 "suggestions when launcher search box is active with an empty query";
Sammie Quon248ccef2018-08-28 23:00:013273
Brett Wilson7b44537e2017-08-18 01:38:283274const char kEolNotificationName[] = "Disable Device End of Life notification.";
3275const char kEolNotificationDescription[] =
3276 "Disable Notifcation when Device is End of Life.";
3277
Akihiro Ota3ff6f8a2019-01-18 17:43:043278const char kExperimentalAccessibilityChromeVoxLanguageSwitchingName[] =
3279 "Enable experimental ChromeVox language switching.";
3280const char kExperimentalAccessibilityChromeVoxLanguageSwitchingDescription[] =
3281 "Enable ChromeVox language switching, which changes ChromeVox's "
3282 "output language upon detection of new language.";
3283
Brett Wilson7b44537e2017-08-18 01:38:283284const char kFileManagerTouchModeName[] = "Files App. touch mode";
3285const char kFileManagerTouchModeDescription[] =
3286 "Touchscreen-specific interactions of the Files app.";
3287
3288const char kFirstRunUiTransitionsName[] =
3289 "Animated transitions in the first-run tutorial";
3290const char kFirstRunUiTransitionsDescription[] =
3291 "Transitions during first-run tutorial are animated.";
3292
Brett Wilson7b44537e2017-08-18 01:38:283293const char kForceEnableStylusToolsName[] = "Force enable stylus features";
3294const char kForceEnableStylusToolsDescription[] =
3295 "Forces display of the stylus tools menu in the shelf and the stylus "
3296 "section in settings, even if there is no attached stylus device.";
3297
Brett Wilson7b44537e2017-08-18 01:38:283298const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
3299const char kGestureTypingDescription[] =
3300 "Enable/Disable gesture typing option in the settings page for the virtual "
3301 "keyboard.";
3302
3303const char kInputViewName[] = "Input views";
3304const char kInputViewDescription[] =
3305 "Enable IME extensions to supply custom views for user input such as "
3306 "virtual keyboards.";
3307
Leo Zhang3cc77542018-11-07 00:58:083308const char kImeServiceName[] = "Enable IME service";
3309const char kImeServiceDescription[] =
3310 "Enable IME service to provide the IME functionality instead of NaCl";
3311
Megumi Hattori5a0d4182018-03-06 11:09:503312const char kLockScreenNotificationName[] = "Lock screen notification";
3313const char kLockScreenNotificationDescription[] =
3314 "Enable notifications on the lock screen.";
3315
Mohsen Izadi06a16f72018-11-29 02:29:223316const char kMashOopVizName[] = "Out-of-process viz for mash";
3317const char kMashOopVizDescription[] =
3318 "Runs viz in a separate process when mash is enabled (otherwise viz would "
3319 "run in ash process)";
3320
Qiang Xu045aff222018-05-21 23:21:013321const char kMaterialDesignInkDropAnimationSpeedName[] =
3322 "Material design ink drop animation speed";
3323const char kMaterialDesignInkDropAnimationSpeedDescription[] =
3324 "Sets the speed of the experimental visual feedback animations for "
3325 "material design.";
3326const char kMaterialDesignInkDropAnimationFast[] = "Fast";
3327const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
3328
Brett Wilson7b44537e2017-08-18 01:38:283329const char kMemoryPressureThresholdName[] =
3330 "Memory discard strategy for advanced pressure handling";
3331const char kMemoryPressureThresholdDescription[] =
3332 "Memory discarding strategy to use";
3333const char kConservativeThresholds[] =
3334 "Conservative memory pressure release strategy";
3335const char kAggressiveCacheDiscardThresholds[] =
3336 "Aggressive cache release strategy";
3337const char kAggressiveTabDiscardThresholds[] =
3338 "Aggressive tab release strategy";
3339const char kAggressiveThresholds[] =
3340 "Aggressive tab and cache release strategy";
3341
3342const char kMtpWriteSupportName[] = "MTP write support";
3343const char kMtpWriteSupportDescription[] =
3344 "MTP write support in File System API (and file manager). In-place editing "
3345 "operations are not supported.";
3346
vabr0215a8e2017-03-28 12:47:343347const char kNetworkPortalNotificationName[] =
3348 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:343349const char kNetworkPortalNotificationDescription[] =
3350 "If enabled, notification is displayed when device is connected to a "
3351 "network behind captive portal.";
3352
Brett Wilson7b44537e2017-08-18 01:38:283353const char kNewKoreanImeName[] = "New Korean IME";
3354const char kNewKoreanImeDescription[] =
3355 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:343356
Anand K. Mistrydb5e0102018-10-04 04:24:003357const char kNewZipUnpackerName[] = "ZIP Archiver (unpacking)";
Brett Wilson7b44537e2017-08-18 01:38:283358const char kNewZipUnpackerDescription[] =
Anand K. Mistrydb5e0102018-10-04 04:24:003359 "Use the ZIP Archiver for mounting/unpacking ZIP files";
vabr0215a8e2017-03-28 12:47:343360
Qiang Xu045aff222018-05-21 23:21:013361const char kOfficeEditingComponentAppName[] =
3362 "Office Editing for Docs, Sheets & Slides";
3363const char kOfficeEditingComponentAppDescription[] =
3364 "Office Editing for Docs, Sheets & Slides for testing purposes.";
3365
Brett Wilson7b44537e2017-08-18 01:38:283366const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
3367const char kPhysicalKeyboardAutocorrectDescription[] =
3368 "Enable physical keyboard autocorrect for US keyboard, which can provide "
3369 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:343370
3371const char kPrinterProviderSearchAppName[] =
3372 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:343373const char kPrinterProviderSearchAppDescription[] =
3374 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:193375 "searches Chrome Web Store for extensions that support printing to a USB "
3376 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:343377
Brett Wilson7b44537e2017-08-18 01:38:283378const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
3379const char kQuickUnlockPinDescription[] =
3380 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
3381 "device on the lock screen after you have signed into your device.";
3382const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
3383const char kQuickUnlockPinSigninDescription[] =
3384 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
3385 "device. After changing this flag PIN needs to be set up again.";
3386const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
3387const char kQuickUnlockFingerprintDescription[] =
3388 "Enabling fingerprint quick unlock allows you to setup and use a "
3389 "fingerprint to unlock your Chromebook on the lock screen after you have "
3390 "signed into your device.";
vabr0215a8e2017-03-28 12:47:343391
James Cook0ba192bf2017-12-01 20:53:113392const char kShowTapsName[] = "Show taps";
3393const char kShowTapsDescription[] =
3394 "Draws a circle at each touch point, which makes touch points more obvious "
3395 "when projecting or mirroring the display. Similar to the Android OS "
3396 "developer option.";
3397
3398const char kShowTouchHudName[] = "Show HUD for touch points";
3399const char kShowTouchHudDescription[] =
3400 "Shows a trail of colored dots for the last few touch points. Pressing "
3401 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
3402 "debug hardware issues that generate spurious touch events.";
3403
James Cook28d7c482018-09-07 21:00:543404const char kSingleProcessMashName[] =
3405 "In-process window service (SingleProcessMash)";
3406const char kSingleProcessMashDescription[] =
3407 "Runs the system UI (ash) as a mojo service, but inside the browser "
3408 "process. The browser uses the mojo window service (ws) APIs.";
3409
Ahmed Fakhry58e6ef542018-09-04 18:05:383410const char kSlideTopChromeWithPageScrollsName[] =
3411 "Slide top-chrome with page scrolls";
3412const char kSlideTopChromeWithPageScrollsDescription[] =
3413 "If enabled, page scrolls in tablet mode will also scroll the top-chrome"
3414 " UI.";
3415
Jorge Gil5a8ccde2018-07-10 01:46:213416const char kSmartTextSelectionName[] = "Smart Text Selection";
3417const char kSmartTextSelectionDescription[] =
3418 "Shows quick actions for text "
3419 "selections in the context menu.";
3420
Brett Wilson7b44537e2017-08-18 01:38:283421const char kTetherName[] = "Instant Tethering";
3422const char kTetherDescription[] =
3423 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
3424 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:373425
Brett Wilson7b44537e2017-08-18 01:38:283426const char kTouchscreenCalibrationName[] =
3427 "Enable/disable touchscreen calibration option in material design settings";
3428const char kTouchscreenCalibrationDescription[] =
3429 "If enabled, the user can calibrate the touch screen displays in "
3430 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:093431
Qiang Xu045aff222018-05-21 23:21:013432const char kUiDevToolsName[] = "Enable native UI inspection";
3433const char kUiDevToolsDescription[] =
3434 "Enables inspection of native UI elements. For local inspection use "
3435 "chrome://inspect#other";
3436
3437const char kUiShowCompositedLayerBordersName[] =
3438 "Show UI composited layer borders";
3439const char kUiShowCompositedLayerBordersDescription[] =
3440 "Show border around composited layers created by UI.";
3441const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
3442const char kUiShowCompositedLayerBordersSurface[] = "Surface";
3443const char kUiShowCompositedLayerBordersLayer[] = "Layer";
3444const char kUiShowCompositedLayerBordersAll[] = "All";
3445
3446const char kUiSlowAnimationsName[] = "Slow UI animations";
3447const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
3448
Mitsuru Oshima63d3f2a2017-08-23 00:12:113449// Force UI Mode
3450const char kUiModeName[] = "Force Ui Mode";
3451const char kUiModeDescription[] =
Elly Fong-Jonesf4c15772019-01-31 17:40:063452 "This flag can be used to force a certain mode on to a chromebook, "
3453 "despite its current orientation. \"Tablet\" means that the "
3454 "chromebook will act as if it were in tablet mode. \"Clamshell\" "
3455 "means that the chromebook will act as if it were in clamshell "
3456 "mode. \"Auto\" means that the chromebook will alternate between "
3457 "the two, based on its orientation.";
Min Chenfd25cd22018-11-06 01:50:513458const char kUiModeTablet[] = "Tablet";
Mitsuru Oshima63d3f2a2017-08-23 00:12:113459const char kUiModeClamshell[] = "Clamshell";
3460const char kUiModeAuto[] = "Auto (default)";
3461
Mattias Nissler6bb633f2019-02-13 23:41:463462const char kSchedulerConfigurationName[] = "Scheduler Configuration";
3463const char kSchedulerConfigurationDescription[] =
3464 "Instructs the OS to use a specific scheduler configuration setting.";
3465const char kSchedulerConfigurationConservative[] = "Conservative";
3466const char kSchedulerConfigurationPerformance[] = "Performance";
3467
Sonny Sasaka7fecfeda2018-07-11 23:47:553468const char kUnfilteredBluetoothDevicesName[] = "Unfiltered Bluetooth devices";
3469const char kUnfilteredBluetoothDevicesDescription[] =
3470 "Shows all Bluetooth devices in UI (System Tray/Settings Page.)";
3471
Allen Webbcdc8e69d2018-09-12 20:36:003472const char kUsbguardName[] = "Block new USB devices at the lock screen.";
3473const char kUsbguardDescription[] =
3474 "Prevents newly connected USB devices from operating at the lock screen"
3475 " until Chrome OS is unlocked to protect against malicious USB devices."
3476 " Already connected USB devices will continue to function.";
3477
Micah Morton79a7b522018-09-27 15:15:303478const char kShillSandboxingName[] =
3479 "Run shill, the ChromeOS network manager, in a sandbox.";
3480const char kShillSandboxingDescription[] =
3481 "Causes shill to be run as user/group 'shill', instead of 'root'.";
3482
Micah Morton02d3aba2018-11-20 01:51:453483const char kFsNosymfollowName[] =
3484 "Prevent symlink traversal on user-supplied filesystems.";
3485const char kFsNosymfollowDescription[] =
3486 "Causes user-supplied filesystems to be mounted with the 'nosymfollow'"
3487 " option, so the chromuimos LSM denies symlink traversal on the"
3488 " filesystem.";
3489
James Cooka1bcfa9a2018-01-30 00:18:403490const char kUseMashName[] = "Out-of-process system UI (mash)";
3491const char kUseMashDescription[] =
3492 "Runs the mojo UI service (mus) and the ash window manager and system UI "
3493 "in a separate process.";
Brett Wilson7b44537e2017-08-18 01:38:283494
Miguel Casas-Sanchez8ba32f92017-11-07 05:03:343495// TODO(mcasas): remove after https://crbug.com/771345.
3496const char kUseMonitorColorSpaceName[] = "Use monitor color space";
3497const char kUseMonitorColorSpaceDescription[] =
3498 "Enables Chrome to use the color space information provided by the monitor"
3499 " instead of the default sRGB color space.";
3500
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:233501const char kVaapiJpegImageDecodeAccelerationName[] =
3502 "VA-API JPEG decode acceleration for images";
3503const char kVaapiJpegImageDecodeAccelerationDescription[] =
3504 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
3505 " captures) using the VA-API.";
3506
Brett Wilson7b44537e2017-08-18 01:38:283507const char kVideoPlayerChromecastSupportName[] =
3508 "Experimental Chromecast support for Video Player";
3509const char kVideoPlayerChromecastSupportDescription[] =
3510 "This option enables experimental Chromecast support for Video Player app "
3511 "on ChromeOS.";
3512
3513const char kVirtualKeyboardName[] = "Virtual Keyboard";
3514const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
3515
3516const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
3517const char kVirtualKeyboardOverscrollDescription[] =
3518 "Enables virtual keyboard overscroll support.";
3519
3520const char kVoiceInputName[] = "Voice input on virtual keyboard";
3521const char kVoiceInputDescription[] =
3522 "Enables voice input on virtual keyboard.";
3523
3524const char kWakeOnPacketsName[] = "Wake On Packets";
3525const char kWakeOnPacketsDescription[] =
3526 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:203527
yhanadac5bff5b2017-05-18 06:37:093528#endif // defined(OS_CHROMEOS)
3529
Brett Wilson7b44537e2017-08-18 01:38:283530// Random platform combinations -----------------------------------------------
3531
3532#if defined(OS_WIN) || defined(OS_LINUX)
3533
3534const char kEnableInputImeApiName[] = "Enable Input IME API";
3535const char kEnableInputImeApiDescription[] =
3536 "Enable the use of chrome.input.ime API.";
3537
3538#endif // defined(OS_WIN) || defined(OS_LINUX)
3539
Jiajia Qindb252e92019-01-28 11:47:483540#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_CHROMEOS)
3541
3542const char kWebGL2ComputeContextName[] = "WebGL 2.0 Compute";
3543const char kWebGL2ComputeContextDescription[] =
3544 "Enable the use of WebGL 2.0 Compute API.";
3545
3546#endif // defined(OS_WIN) || defined(OS_LINUX) || defined(OS_CHROMEOS)
3547
Brett Wilson7b44537e2017-08-18 01:38:283548#if defined(OS_WIN) || defined(OS_MACOSX)
3549
3550const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
3551const char kAutomaticTabDiscardingDescription[] =
3552 "If enabled, tabs get automatically discarded from memory when the system "
3553 "memory is low. Discarded tabs are still visible on the tab strip and get "
3554 "reloaded when clicked on. Info about discarded tabs can be found at "
3555 "chrome://discards.";
3556
3557#endif // defined(OS_WIN) || defined(OS_MACOSX)
3558
lanwei83f54452018-06-21 23:51:043559#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
3560
3561const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
3562const char kDirectManipulationStylusDescription[] =
3563 "If enabled, Chrome will scroll web pages on stylus drag.";
3564
3565#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
3566
Henrik Grunell63f2d772018-12-06 17:25:203567#if defined(OS_MACOSX) || defined(OS_CHROMEOS)
3568
3569const char kForceEnableSystemAecName[] = "Force enable system AEC";
3570const char kForceEnableSystemAecDescription[] =
3571 "Use system echo canceller instead of WebRTC echo canceller. If there is "
3572 "no system echo canceller available, getUserMedia with echo cancellation "
3573 "enabled will fail.";
3574
3575#endif // defined(OS_MACOSX) || defined(OS_CHROMEOS)
3576
David Bienvenuc713d502019-02-07 23:46:323577#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
3578
3579const char kWebContentsOcclusionName[] = "Enable occlusion of web contents";
3580const char kWebContentsOcclusionDescription[] =
3581 "If enabled, web contents will behave as hidden when it is occluded by "
3582 "other windows.";
3583
3584#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
3585
Justin Donnelly110e40c2018-06-01 21:48:433586const char kExperimentalUiName[] = "Use all upcoming UI features";
3587const char kExperimentalUiDescription[] = "Use all upcoming UI features.";
Elly Fong-Jonesdfaf8532018-05-29 18:20:483588
Brett Wilson7b44537e2017-08-18 01:38:283589// Feature flags --------------------------------------------------------------
3590
Lei Zhang0a318af2018-11-14 02:19:463591#if defined(DCHECK_IS_CONFIGURABLE)
3592const char kDcheckIsFatalName[] = "DCHECKs are fatal";
3593const char kDcheckIsFatalDescription[] =
3594 "By default Chrome will evaluate in this build, but only log failures, "
3595 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
3596#endif // defined(DCHECK_IS_CONFIGURABLE)
3597
Brett Wilson7b44537e2017-08-18 01:38:283598#if BUILDFLAG(ENABLE_VR)
3599
David Dorwin5a496c32017-11-17 01:45:053600const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing";
3601const char kWebVrVsyncAlignDescription[] =
3602 "Align WebVR application rendering with VSync for smoother animations.";
3603
Bill Orr103ed272018-02-14 21:23:053604#if BUILDFLAG(ENABLE_OCULUS_VR)
3605const char kOculusVRName[] = "Oculus hardware support";
3606const char kOculusVRDescription[] =
3607 "If enabled, Chrome will use Oculus devices for VR (supported only on "
3608 "Windows 10 or later).";
3609#endif // ENABLE_OCULUS_VR
3610
Bill Orr49527562017-11-22 16:58:483611#if BUILDFLAG(ENABLE_OPENVR)
3612const char kOpenVRName[] = "OpenVR hardware support";
3613const char kOpenVRDescription[] =
Bill Orr5056e692018-01-17 02:08:073614 "If enabled, Chrome will use OpenVR devices for VR (supported only on "
3615 "Windows 10 or later).";
Bill Orr49527562017-11-22 16:58:483616#endif // ENABLE_OPENVR
3617
Bill Orrd2af6bd52019-01-23 02:50:243618#if BUILDFLAG(ENABLE_WINDOWS_MR)
3619const char kWindowsMixedRealityName[] = "Windows Mixed Reality support";
3620const char kWindowsMixedRealityDescription[] =
3621 "If enabled, Chrome will use Windows Mixed Reality devices for VR"
3622 " (supported only on Windows 10 or later).";
3623#endif // ENABLE_WINDOWS_MR
3624
Bill Orrecfb9fe2018-10-02 00:11:103625#if BUILDFLAG(ENABLE_ISOLATED_XR_SERVICE)
3626const char kXRSandboxName[] = "XR device sandboxing";
3627const char kXRSandboxDescription[] =
3628 "If enabled, Chrome will host VR APIs in a restricted process on desktop.";
3629#endif // ENABLE_ISOLATED_XR_SERVICE
3630
Brett Wilson7b44537e2017-08-18 01:38:283631#endif // ENABLE_VR
3632
Lei Zhang802201c2018-11-14 18:16:283633#if BUILDFLAG(ENABLE_PLUGINS)
3634
dstockwellcc759202019-01-11 00:42:123635#if defined(OS_CHROMEOS)
3636const char kPdfAnnotations[] = "PDF Annotations";
Weidong Guo577fe9ac2019-01-28 19:58:103637const char kPdfAnnotationsDescription[] = "Enable annotating PDF documents.";
dstockwellcc759202019-01-11 00:42:123638#endif // defined(OS_CHROMEOS)
3639
Lei Zhang802201c2018-11-14 18:16:283640const char kPdfFormSaveName[] = "Save PDF Forms";
3641const char kPdfFormSaveDescription[] =
3642 "Enable saving PDFs with filled form data.";
3643
3644const char kPdfIsolationName[] = "PDF Isolation";
3645const char kPdfIsolationDescription[] =
3646 "Render PDF files from different origins in different plugin processes.";
3647
3648#endif // BUILDFLAG(ENABLE_PLUGINS)
3649
Brett Wilson7b44537e2017-08-18 01:38:283650#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3651
3652const char kAutofillCreditCardUploadName[] =
3653 "Enable offering upload of Autofilled credit cards";
3654const char kAutofillCreditCardUploadDescription[] =
3655 "Enables a new option to upload credit cards to Google Payments for sync "
3656 "to all Chrome devices.";
3657
3658#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3659
Collin Baker0a45d6a2018-12-20 19:21:503660#if BUILDFLAG(ENABLE_DESKTOP_IN_PRODUCT_HELP)
3661
3662const char kReopenTabInProductHelpName[] = "Reopen tab in-product help";
3663const char kReopenTabInProductHelpDescription[] =
3664 "Enable in-product help that guides a user to reopen a tab if it looks "
3665 "like they accidentally closed it.";
3666
3667#endif // BUILDFLAG(ENABLE_DESKTOP_IN_PRODUCT_HELP)
3668
Tomas Popela253a5832019-01-14 17:22:103669#if defined(WEBRTC_USE_PIPEWIRE)
3670
3671extern const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support";
3672extern const char kWebrtcPipeWireCapturerDescription[] =
3673 "When enabled the WebRTC will use the PipeWire multimedia server for "
3674 "capturing the desktop content on the Wayland display server.";
3675
3676#endif // #if defined(WEBRTC_USE_PIPEWIRE)
3677
Stephen Chenneyde6e5c82019-01-21 01:56:043678const char kAvoidFlashBetweenNavigationName[] =
3679 "Enable flash avoidance between same-origin navigations";
3680const char kAvoidFlahsBetweenNavigationDescription[] =
3681 "Enables experimental flash avoidance when navigating between pages "
3682 "in the same origin. This feature is in the implementation stages and "
3683 "currently has no effect.";
3684
Brett Wilson7b44537e2017-08-18 01:38:283685// ============================================================================
3686// Don't just add flags to the end, put them in the right section in
3687// alphabetical order just like the header file.
3688// ============================================================================
3689
vabr0215a8e2017-03-28 12:47:343690} // namespace flag_descriptions