blob: 4201f91c282dd744c33e5a49e6a3bb1011fecd90 [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
33const char kAllowNaclSocketApiName[] = "NaCl Socket API.";
34const char kAllowNaclSocketApiDescription[] =
35 "Allows applications to use NaCl Socket API. Use only to test NaCl "
36 "plugins.";
37
Kunihiko Sakamoto4d407982018-07-10 04:56:2938const char kAllowSignedHTTPExchangeCertsWithoutExtensionName[] =
39 "Allow Signed HTTP Exchange certificates without extension";
40const char kAllowSignedHTTPExchangeCertsWithoutExtensionDescription[] =
41 "Accepts Origin-Signed HTTP Exchanges to be signed with certificates "
42 "that do not have CanSignHttpExchangesDraft extension. Requires "
43 "#enable-signed-http-exchange. Warning: Enabling this may pose a security "
44 "risk.";
45
Henrique Nakashima52d76952018-11-30 19:35:5846const char kAllowStartingServiceManagerOnlyName[] =
47 "Allow starting service manager only";
48const char kAllowStartingServiceManagerOnlyDescription[] =
49 "Allows running a lightweight service-manager-only mode, in which services "
50 "can run without the browser process.";
51
Jeremy Klein586b4ccc2018-06-09 21:05:4852const char kAndroidMessagesIntegrationName[] = "Android Messages integration";
53const char kAndroidMessagesIntegrationDescription[] =
54 "Enables Chrome OS integration with Android messages.";
55
Jeremy Klein8d8f9b2e2018-09-13 21:48:5756const char kAndroidMessagesProdEndpointName[] =
57 "Use Android Messages prod endpoint";
58const char kAndroidMessagesProdEndpointDescription[] =
59 "For Android Messages integration, point to the prod endpoint instead of "
60 "sandbox.";
61
Kamila472a5942018-11-26 09:48:2762const char kAndroidSiteSettingsUIRefreshName[] =
63 "Android Site Settings UI changes.";
64const char kAndroidSiteSettingsUIRefreshDescription[] =
Kamila02f7e072018-10-08 09:50:2865 "Enable the new UI "
66 "changes in Site Settings in Android.";
67
Brett Wilsonf27ff602017-07-07 22:28:4768const char kAppBannersName[] = "App Banners";
69const char kAppBannersDescription[] =
70 "Enable the display of Progressive Web App banners, which prompt a user to "
71 "add a web app to their shelf, or other platform-specific equivalent.";
72
Ioana Pandelef9689a062018-06-22 15:35:5173const char kAutomaticPasswordGenerationName[] = "Automatic password generation";
74const char kAutomaticPasswordGenerationDescription[] =
75 "Allow Chrome to offer to generate passwords when it detects account "
76 "creation pages.";
77
Michael Lippautz6081dfa2018-10-18 13:10:1478const char kEnableBlinkHeapUnifiedGarbageCollectionName[] =
79 "Blink Heap Unified Garbage Collection";
80const char kEnableBlinkHeapUnifiedGarbageCollectionDescription[] =
81 "Enable unified garbage collection in Blink";
82
Ulan Degenbaevb5466a92018-07-19 12:35:3483const char kEnableBloatedRendererDetectionName[] = "Bloated renderer detection";
84const char kEnableBloatedRendererDetectionDescription[] =
85 "Enable bloated renderer detection";
86
Khushalba202212017-07-12 19:53:4987const char kAsyncImageDecodingName[] = "AsyncImageDecoding";
88const char kAsyncImageDecodingDescription[] =
89 "Enables asynchronous decoding of images from raster for web content";
90
Roger McFarlane2eceba982018-05-18 01:37:1191const char kAutofillCacheQueryResponsesName[] =
92 "Cache Autofill Query Responses";
93const char kAutofillCacheQueryResponsesDescription[] =
94 "When enabled, autofill will cache the responses it receives from the "
95 "crowd-sourced field type prediction server.";
96
Jeffrey Cohen05cdafa392018-08-15 20:49:1797const char kAutofillEnableCompanyNameName[] =
98 "Enable Autofill Company Name field";
99const char kAutofillEnableCompanyNameDescription[] =
100 "When enabled, Company Name fields will be auto filled";
101
sebsge35b762c2018-03-29 20:33:27102const char kAutofillDynamicFormsName[] = "Autofill Dynamic Forms";
103const char kAutofillDynamicFormsDescription[] =
104 "Allows autofill to fill dynamically changing forms";
105
Anne Lime625362e2018-08-29 03:13:25106const char kAutofillNoLocalSaveOnUploadSuccessName[] =
107 "Disable locally saving card when credit card upload succeeds";
108const char kAutofillNoLocalSaveOnUploadSuccessDescription[] =
109 "When enabled, no local copy of server card will be saved when credit card "
110 "upload succeeds.";
111
Parastoo Geranmayeh2dcd14f92018-06-01 17:08:39112const char kAutofillPrefilledFieldsName[] = "Autofill Prefilled Fields";
113const char kAutofillPrefilledFieldsDescription[] =
114 "Allows autofill to fill fields previously filled by the website";
115
Lei Zhang0ca70ea2018-09-07 17:51:01116const char kAutofillPreviewStyleExperimentName[] =
Fabio Tirelo9b423c7b2018-08-15 14:32:18117 "Autofill Preview Style Experiment";
Lei Zhang0ca70ea2018-09-07 17:51:01118const char kAutofillPreviewStyleExperimentDescription[] =
Fabio Tirelo9b423c7b2018-08-15 14:32:18119 "Allows experimentation with the Autofill field preview's style.";
120
Parastoo Geranmayeh071d725c2018-06-26 17:35:22121const char kAutofillRationalizeRepeatedServerPredictionsName[] =
122 "Autofill Rationalization of Repeated Server Field Type Predictions";
123const char kAutofillRationalizeRepeatedServerPredictionsDescription[] =
124 "Allows autofill to rationalize repeated server field type predictions.";
125
Roger McFarlane1a37d7b2018-04-20 22:45:19126const char kAutofillEnforceMinRequiredFieldsForHeuristicsName[] =
127 "Autofill Enforce Min Required Fields For Heuristics";
128const char kAutofillEnforceMinRequiredFieldsForHeuristicsDescription[] =
129 "When enabled, autofill will generally require a form to have at least 3 "
130 "fields before allowing heuristic field-type prediction to occur.";
131
132const char kAutofillEnforceMinRequiredFieldsForQueryName[] =
133 "Autofill Enforce Min Required Fields For Query";
134const char kAutofillEnforceMinRequiredFieldsForQueryDescription[] =
135 "When enabled, autofill will generally require a form to have at least 3 "
136 "fields before querying the autofill server for field-type predictions.";
137
138const char kAutofillEnforceMinRequiredFieldsForUploadName[] =
139 "Autofill Enforce Min Required Fields For Upload";
140const char kAutofillEnforceMinRequiredFieldsForUploadDescription[] =
141 "When enabled, autofill will generally require a form to have at least 3 "
142 "fillable fields before uploading field-type votes for that form.";
143
Moe Ahmadid3ddfcb2018-04-20 19:51:08144const char kAutofillRestrictUnownedFieldsToFormlessCheckoutName[] =
145 "Restrict formless form extraction";
146const char kAutofillRestrictUnownedFieldsToFormlessCheckoutDescription[] =
147 "Restrict extraction of formless forms to checkout flows";
148
Roger McFarlanee193ab122018-11-22 20:55:07149const char kAutofillRichMetadataQueriesName[] =
150 "Autofill - Rich metadata queries (Canary/Dev only)";
151const char kAutofillRichMetadataQueriesDescription[] =
152 "Transmit rich form/field metadata when querying the autofill server. "
153 "This feature only works on the Canary and Dev channels.";
154
Brett Wilsonf27ff602017-07-07 22:28:47155const char kAutoplayPolicyName[] = "Autoplay policy";
156const char kAutoplayPolicyDescription[] =
157 "Policy used when deciding if audio or video is allowed to autoplay.";
158
159const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
160 "User gesture is required for cross-origin iframes.";
161const char kAutoplayPolicyNoUserGestureRequired[] =
162 "No user gesture is required.";
163const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
164const char kAutoplayPolicyDocumentUserActivation[] =
165 "Document user activation is required.";
166
Maya Lekova4bbfdb7f2018-10-16 08:15:03167const char kAwaitOptimizationName[] = "Await optimization";
168const char kAwaitOptimizationDescription[] =
169 "Enables await taking 1 tick on the microtask queue.";
170
Brett Wilsonf27ff602017-07-07 22:28:47171const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
172const char kBleAdvertisingInExtensionsDescription[] =
173 "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere "
174 "with regular use of Bluetooth Low Energy features.";
175
Charles Harrisond629cc62017-10-05 01:39:54176const char kBlockTabUndersName[] = "Block tab-unders";
177const char kBlockTabUndersDescription[] =
178 "Blocks tab-unders in Chrome with some native UI to allow the user to "
179 "proceed.";
180
Brett Wilsonf27ff602017-07-07 22:28:47181const char kBrowserTaskSchedulerName[] = "Task Scheduler";
182const char kBrowserTaskSchedulerDescription[] =
183 "Enables redirection of some task posting APIs to the task scheduler.";
184
Carlos IL766fbc882018-02-16 02:34:52185const char kBundledConnectionHelpName[] = "Bundled Connection Help";
186const char kBundledConnectionHelpDescription[] =
Carlos ILaafcd73a2018-07-10 20:08:37187 "Enables or disables redirection to local help content for users who get "
188 "an interstitial after clicking the 'Learn More' link on a previous "
189 "interstitial.";
Carlos IL766fbc882018-02-16 02:34:52190
Brett Wilsonf27ff602017-07-07 22:28:47191const char kBypassAppBannerEngagementChecksName[] =
192 "Bypass user engagement checks";
193const char kBypassAppBannerEngagementChecksDescription[] =
194 "Bypasses user engagement checks for displaying app banners, such as "
195 "requiring that users have visited the site before and that the banner "
196 "hasn't been shown recently. This allows developers to test that other "
197 "eligibility requirements for showing app banners, such as having a "
198 "manifest, are met.";
199
Miguel Casas454d9cf2018-06-28 16:25:00200const char kCanvas2DImageChromiumName[] = "Canvas 2D Image Chromium";
201const char kCanvas2DImageChromiumDescription[] =
202 "Allows for using CHROMIUM_image GLES2 extension for HTML Canvas Contexts";
203
Brett Wilsonf27ff602017-07-07 22:28:47204const char kCastStreamingHwEncodingName[] =
205 "Cast Streaming hardware video encoding";
206const char kCastStreamingHwEncodingDescription[] =
207 "This option enables support in Cast Streaming for encoding video streams "
208 "using platform hardware.";
209
Amber Won478561d2017-08-19 01:02:59210const char kClickToOpenPDFName[] = "Click to open embedded PDFs";
211const char kClickToOpenPDFDescription[] =
212 "When the PDF plugin is unavailable, show a click-to-open placeholder for "
213 "embedded PDFs.";
214
Gary Kacmarcikfb69b212017-11-14 03:41:08215const char kClipboardContentSettingName[] = "Clipboard content setting";
216const char kClipboardContentSettingDescription[] =
217 "Enables a site-wide permission in the UI which controls access to the "
218 "asynchronous clipboard web API";
219
Brett Wilsonf27ff602017-07-07 22:28:47220const char kCloudImportName[] = "Cloud Import";
221const char kCloudImportDescription[] = "Allows the cloud-import feature.";
222
rbpotter9990eb42018-07-12 05:34:59223const char kCloudPrinterHandlerName[] = "Enable Cloud Printer Handler";
224const char kCloudPrinterHandlerDescription[] =
225 "Use the new cloud printer handler for communicating with the cloud "
226 "print server, instead of the cloud print interface in the Print "
227 "Preview WebUI.";
228
Tanja Gornakb0985dd2018-10-11 17:24:40229const char kFCMInvalidationsName[] =
230 "Enable invalidations delivery via new FCM based protocol";
231const char kFCMInvalidationsDescription[] =
232 "Use the new FCM-based protocol for deliveling invalidations";
233
Christopher Cameronceb8727d2017-09-07 23:53:16234const char kForceColorProfileSRGB[] = "sRGB";
235const char kForceColorProfileP3[] = "Display P3 D65";
236const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
237const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)";
238
239const char kForceColorProfileName[] = "Force color profile";
240const char kForceColorProfileDescription[] =
241 "Forces Chrome to use a specific color profile instead of the color "
242 "of the window's current monitor, as specified by the operating system.";
243
Brett Wilsonf27ff602017-07-07 22:28:47244const char kCompositedLayerBordersName[] = "Composited render layer borders";
245const char kCompositedLayerBordersDescription[] =
246 "Renders a border around composited Render Layers to help debug and study "
247 "layer compositing.";
248
Theresac34db2d2018-06-28 00:03:11249const char kContextualSuggestionsButtonName[] = "Contextual Suggestions Button";
250const char kContextualSuggestionsButtonDescription[] =
251 "If enabled, shows a button to trigger contextual suggestions.";
252
Theresae308b9e2018-10-10 15:57:40253const char kContextualSuggestionsIPHReverseScrollName[] =
254 "Contextual Suggestions IPH Reverse Scroll";
255const char kContextualSuggestionsIPHReverseScrollDescription[] =
256 "Require a reverse scroll before showing in-product help for contextual "
257 "suggestions.";
258
Theresa0f2947b92018-07-02 21:27:58259const char kContextualSuggestionsOptOutName[] =
260 "Contextual Suggestions Opt-out";
261const char kContextualSuggestionsOptOutDescription[] =
262 "If enabled, allows the user to opt out of contextual suggestions.";
263
Brett Wilsonf27ff602017-07-07 22:28:47264const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
265const char kCreditCardAssistDescription[] =
266 "Enable assisted credit card filling on certain sites.";
267
Thanh Le659cb102017-12-20 22:00:19268const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews";
269const char kDataSaverServerPreviewsDescription[] =
270 "Allow the Data Reduction Proxy to serve previews.";
Brett Wilsonf27ff602017-07-07 22:28:47271
272const char kDatasaverPromptName[] = "Cellular Data Saver Prompt";
273const char kDatasaverPromptDescription[] =
274 "Enables a prompt, which appears when a cellular network connection is "
275 "detected, to take the user to the Data Saver extension page on Chrome Web "
276 "Store.";
277const char kDatasaverPromptDemoMode[] = "Demo mode";
278
279const char kDebugPackedAppName[] = "Debugging for packed apps";
280const char kDebugPackedAppDescription[] =
281 "Enables debugging context menu options such as Inspect Element for packed "
282 "applications.";
283
Brett Wilsonf27ff602017-07-07 22:28:47284const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
285const char kDebugShortcutsDescription[] =
286 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
287
288const char kDeviceDiscoveryNotificationsName[] =
289 "Device Discovery Notifications";
290const char kDeviceDiscoveryNotificationsDescription[] =
291 "Device discovery notifications on local network.";
292
293const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
294const char kDevtoolsExperimentsDescription[] =
295 "Enables Developer Tools experiments. Use Settings panel in Developer "
296 "Tools to toggle individual experiments.";
297
298const char kDisableAudioForDesktopShareName[] =
299 "Disable Audio For Desktop Share";
300const char kDisableAudioForDesktopShareDescription[] =
301 "With this flag on, desktop share picker window will not let the user "
302 "choose whether to share audio.";
303
Arthur Sonzogni721f48e2018-10-31 17:10:02304const char kDisableIpcFloodingProtectionName[] =
305 "Disable IPC flooding protection";
306const char kDisableIpcFloodingProtectionDescription[] =
307 "Some javascript code can flood the inter process communication system. "
308 "This protection limits the rate (calls/seconds) at which theses function "
arthursonzogni443bd0ef2018-11-27 16:12:53309 "can be used. This flag disables the protection. This flag is deprecated "
310 "and will be removed in Chrome 76. Use the switch "
311 "--disable-ipc-flooding-protection instead.";
Arthur Sonzogni721f48e2018-10-31 17:10:02312
Chris Palmer917bc052018-03-14 19:28:31313const char kDisablePushStateThrottleName[] = "Disable pushState throttling";
314const char kDisablePushStateThrottleDescription[] =
315 "Disables throttling of history.pushState and history.replaceState method "
arthursonzogni443bd0ef2018-11-27 16:12:53316 "calls. This flag is deprecated and will be removed in Chrome 76. Use the "
317 "switch --disable-ipc-flooding-protection instead.";
Chris Palmer917bc052018-03-14 19:28:31318
Brett Wilsonf27ff602017-07-07 22:28:47319const char kDisableTabForDesktopShareName[] =
320 "Disable Desktop Share with tab source";
321const char kDisableTabForDesktopShareDescription[] =
322 "This flag controls whether users can choose a tab for desktop share.";
323
324const char kDisallowDocWrittenScriptsUiName[] =
325 "Block scripts loaded via document.write";
326const char kDisallowDocWrittenScriptsUiDescription[] =
327 "Disallows fetches for third-party parser-blocking scripts inserted into "
328 "the main frame via document.write.";
329
Christopher Thompson2ffffa2c2018-05-18 23:06:37330const char kDisallowUnsafeHttpDownloadsName[] =
331 "Block unsafe downloads over insecure connections";
332const char kDisallowUnsafeHttpDownloadsNameDescription[] =
333 "Disallows downloads of unsafe files (files that can potentially execute "
334 "code), where the final download origin or any origin in the redirect "
335 "chain is insecure.";
336
Brett Wilsonf27ff602017-07-07 22:28:47337const char kDriveSearchInChromeLauncherName[] =
338 "Drive Search in Chrome App Launcher";
339const char kDriveSearchInChromeLauncherDescription[] =
340 "Files from Drive will show up when searching the Chrome App Launcher.";
341
Brett Wilsonf27ff602017-07-07 22:28:47342const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
343const char kEmbeddedExtensionOptionsDescription[] =
344 "Display extension options as an embedded element in chrome://extensions "
345 "rather than opening a new tab.";
346
Dominic Mazzoni8ac98962018-05-25 05:44:55347const char kEnableAccessibilityObjectModelName[] = "Accessibility Object Model";
348const char kEnableAccessibilityObjectModelDescription[] =
349 "Enables experimental support for Accessibility Object Model APIs "
350 "that are in development.";
351
Anthony Vallee-Dubois968ae4d2018-03-15 16:56:36352const char kEnableWebPaymentsSingleAppUiSkipName[] =
353 "Enable Web Payments single app UI skip";
354const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
355 "Enable Web Payments to skip showing its UI if the developer specifies a "
356 "single app.";
357
Florian Uunk8c428ea2018-07-18 11:12:52358const char kEnableAutofillAccountWalletStorageName[] =
359 "Enable the account data storage for autofill";
360const char kEnableAutofillAccountWalletStorageDescription[] =
361 "Enable the ephemeral storage for account data for autofill.";
362
Shanfeng Zhang19c16562017-10-17 02:30:40363const char kEnableAutofillCreditCardAblationExperimentDisplayName[] =
364 "Credit card autofill ablation experiment.";
365const char kEnableAutofillCreditCardAblationExperimentDescription[] =
366 "If enabled, credit card autofill suggestions will not display.";
367
Brett Wilsonf27ff602017-07-07 22:28:47368const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
369 "Display the last used date of a credit card in autofill.";
370const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
371 "If enabled, display the last used date of a credit card in autofill.";
372
Sujie Zhu2cf0e5c2018-07-17 18:00:27373const char kEnableAutofillCreditCardLocalCardMigrationName[] =
374 "Enable migrating local cards to Google Pay";
375const char kEnableAutofillCreditCardLocalCardMigrationDescription[] =
376 "If enabled, prompt migration of locally-saved credit cards to Google Pay.";
377
Jared Saulbc672a072018-06-16 05:22:12378const char kEnableAutofillCreditCardUploadEditableCardholderNameName[] =
379 "Make cardholder name editable in dialog during credit card upload";
380const char kEnableAutofillCreditCardUploadEditableCardholderNameDescription[] =
381 "If enabled, in certain situations when offering credit card upload to "
382 "Google Payments, the cardholder name can be edited within the "
383 "offer-to-save dialog, which is prefilled with the name from the signed-in "
384 "Google Account.";
385
Hao Zhang1be9c262018-11-03 00:23:51386const char kEnableAutofillCreditCardUploadEditableExpirationDateName[] =
387 "Make expiration date editable in dialog during credit card upload";
388const char kEnableAutofillCreditCardUploadEditableExpirationDateDescription[] =
389 "If enabled, if a credit card's expiration date was not detected when "
390 "offering card upload to Google Payments, the offer-to-save dialog "
391 "displays an expiration date selector.";
392
Lakshmi Kumar Dabbiru51f1c202018-03-29 22:23:37393const char kEnableAutofillCreditCardUploadGooglePayOnAndroidBrandingName[] =
394 "Enable Google Pay branding when offering credit card upload on Android";
395const char
396 kEnableAutofillCreditCardUploadGooglePayOnAndroidBrandingDescription[] =
397 "If enabled, shows the Google Pay logo and a shorter header message "
398 "when credit card upload to Google Payments is offered on Android.";
399
siyua9a4a8872018-10-05 03:46:56400const char kEnableAutofillLocalCardMigrationShowFeedbackName[] =
401 "Show the upload results dialog after local card migration";
402const char kEnableAutofillLocalCardMigrationShowFeedbackDescription[] =
403 "If enabled, the local card migration offer dialog will remain pending "
404 "after the user clicks the save button. Once migration is finished, "
405 "the dialog will be updated with the results of each card.";
406
tmartinocd414732018-02-12 19:01:01407const char kEnableAutofillNativeDropdownViewsName[] =
408 "Display Autofill Dropdown Using Views";
409const char kEnableAutofillNativeDropdownViewsDescription[] =
410 "If enabled, the Autofill Dropdown will be built natively using Views, "
411 "rather than painted directly to a canvas.";
412
Fabio Tirelo87552e02018-07-06 15:43:21413const char kEnableAutofillSaveCardDialogUnlabeledExpirationDateName[] =
414 "Show unlabeled expiration dates on the save card dialog";
415const char kEnableAutofillSaveCardDialogUnlabeledExpirationDateDescription[] =
416 "If enabled, expiration dates on the save card dialog (both local and "
417 "upstream) are shown without an 'Exp:' label.";
418
siyua172973d2018-11-21 22:23:20419const char kEnableAutofillSaveCardImprovedUserConsentName[] =
420 "Use updated UI for credit card save bubbles";
421const char kEnableAutofillSaveCardImprovedUserConsentDescription[] =
422 "If enabled, adds a [No thanks] button to credit card save bubbles and "
423 "updates their title headers.";
424
Manas Verma99541e52018-08-03 20:37:23425const char kEnableAutofillSaveCardSignInAfterLocalSaveName[] =
426 "Show Sign-In/Sync promo after saving a card locally";
427const char kEnableAutofillSaveCardSignInAfterLocalSaveDescription[] =
428 "If enabled, shows a sign in prompt to the user after the user "
429 "saves a card locally. This also introduces a Manage Cards bubble "
430 "which you can access from the card icon after saving a card.";
431
Jared Saul8a0c1e92018-10-10 18:22:47432const char kEnableAutofillSaveCreditCardUsesStrikeSystemName[] =
433 "Enable limit on offering to save the same credit card repeatedly";
434const char kEnableAutofillSaveCreditCardUsesStrikeSystemDescription[] =
435 "If enabled, prevents popping up the credit card offer-to-save prompt if "
436 "it has repeatedly been ignored, declined, or failed.";
437
Lakshmi Kumar Dabbirua3d0805f2018-05-22 22:04:23438const char kEnableAutofillSendExperimentIdsInPaymentsRPCsName[] =
439 "Send experiment flag IDs in calls to Google Payments";
440const char kEnableAutofillSendExperimentIdsInPaymentsRPCsDescription[] =
441 "If enabled, adds the status of certain experiment variations when making "
442 "calls to Google Payments.";
443
Becca Hughes4d896c42018-05-29 16:58:51444const char kEnableAutoplayIgnoreWebAudioName[] =
445 "Autoplay ignores WebAudio playbacks";
446const char kEnableAutoplayIgnoreWebAudioDescription[] =
447 "If enabled, autoplay restrictions will be ignored for WebAudio.";
448
Becca Hughesc62f6a1d2018-08-16 15:59:47449const char kEnableAutoplayUnifiedSoundSettingsName[] =
450 "Autoplay unified sound settings UI";
451const char kEnableAutoplayUnifiedSoundSettingsDescription[] =
452 "If enabled, shows the new unified autoplay sound settings UI.";
453
Brett Wilsonf27ff602017-07-07 22:28:47454const char kEnableBrotliName[] = "Brotli Content-Encoding.";
455const char kEnableBrotliDescription[] =
456 "Enable Brotli Content-Encoding support.";
457
Qiang Xu0f602fe62017-12-22 01:31:20458const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization";
459const char kEnableCaptivePortalRandomUrlDescription[] =
460 "Enable Captive Portal URL randomization.";
461
Eriko Kurimoto36975992018-08-09 07:15:13462const char kEnableChromevoxDeveloperOptionName[] =
463 "Enable Chromevox developer option";
464const char kEnableChromevoxDeveloperOptionDescription[] =
465 "This option provides tools for developing in chromevox.";
466
sclittle50e4bb92017-07-08 02:23:03467const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
468
469const char kEnableClientLoFiDescription[] =
470 "Enable showing low fidelity images on some pages on slow networks.";
471
Patrick Noland8bc57472018-06-19 21:09:54472const char kEnableCSSFragmentIdentifiersName[] =
473 "Enable CSS Fragment Identifiers";
474const char kEnableCSSFragmentIdentifiersDescription[] =
475 "Enable support for specifying a target element using a css selector in "
476 "the fragment identifier.";
477
David Reveman87b4b692018-03-09 21:22:22478const char kEnableCursorMotionBlurName[] = "Enable Cursor Motion Blur";
479const char kEnableCursorMotionBlurDescription[] =
480 "Enable motion blur effect for the cursor.";
481
Doug Arnett08b4067b2017-10-12 20:14:44482const char kEnableNoScriptPreviewsName[] = "NoScript previews";
483
484const char kEnableNoScriptPreviewsDescription[] =
485 "Enable disabling JavaScript on some pages on slow networks.";
486
Thanh Le2c279fbc2017-11-21 01:25:40487const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1";
488const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2";
489const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3";
490const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4";
491const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5";
492const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6";
493const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7";
494const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8";
495const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9";
496const char kDataReductionProxyServerAlternative10[] =
497 "Use alt. server config 10";
rajendrantcfa60ba2018-10-30 09:16:54498const char kEnableDataReductionProxyNetworkServiceName[] =
499 "Data reduction proxy with network service";
500const char kEnableDataReductionProxyNetworkServiceDescription[] =
501 "Enable data reduction proxy when network service is enabled";
Brett Wilsonf27ff602017-07-07 22:28:47502const char kEnableDataReductionProxyServerExperimentName[] =
503 "Use an alternative Data Saver back end configuration.";
504const char kEnableDataReductionProxyServerExperimentDescription[] =
505 "Enable a different approach to saving data by configuring the back end "
506 "server";
507
508const char kEnableDataReductionProxySavingsPromoName[] =
509 "Data Saver 1 MB Savings Promo";
510const char kEnableDataReductionProxySavingsPromoDescription[] =
511 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
512 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
513 "enabled for the promo to be shown.";
514
Matt Giucad4870432017-11-24 01:04:38515const char kEnableDesktopPWAsName[] = "Desktop PWAs";
516const char kEnableDesktopPWAsDescription[] =
517 "Experimental windowing and install banner treatment for Progressive Web "
518 "Apps on desktop platforms. Implies #enable-experimental-app-banners.";
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17519
Giovanni Ortuño Urquidi40c8e792018-02-28 04:18:59520const char kEnableDesktopPWAsLinkCapturingName[] =
521 "Desktop PWAs Link Capturing";
522const char kEnableDesktopPWAsLinkCapturingDescription[] =
523 "Experimentally enable link capturing for Desktop PWAs. Navigations to "
524 "URLs that are in-scope of Desktop PWAs will open in a window. Requires "
525 "#enable-desktop-pwas.";
526
Jay Harris52511a02018-11-02 01:00:28527const char kDesktopPWAsCustomTabUIName[] = "Desktop PWAs Custom Tab UI";
528const char kDesktopPWAsCustomTabUIDescription[] =
529 "Browsing out-of-scope links in a desktop PWA will use the custom tab UI "
530 "for displaying the page title and origin instead of the location bar.";
531
Jay Harrisee7a7bc62018-10-09 01:47:49532const char kDesktopPWAsStayInWindowName[] =
533 "Desktop PWAs out-of-scope links open in the app window";
534const char kDesktopPWAsStayInWindowDescription[] =
Jay Harris52511a02018-11-02 01:00:28535 "Links to sites in a different scope will open inside the PWA window as "
536 "opposed to in the browser.";
Jay Harrisee7a7bc62018-10-09 01:47:49537
Christopher Lame66b7812018-09-26 01:49:24538const char kEnableSystemWebAppsName[] = "System Web Apps";
539const char kEnableSystemWebAppsDescription[] =
540 "Experimental system for using the Desktop PWA framework for running System"
541 "Apps (e.g Settings, Discover).";
542
Ahmed Fakhry0037de02018-01-29 19:58:31543const char kEnableDockedMagnifierName[] = "Docked Magnifier";
544const char kEnableDockedMagnifierDescription[] =
545 "Enables the Docked Magnifier (a.k.a. picture-in-picture magnifier).";
546
Ramya Nagarajan5b41d8d2018-04-02 19:53:02547const char kEnableEmojiContextMenuName[] = "Emoji Context Menu";
548const char kEnableEmojiContextMenuDescription[] =
Mathieu Perreault608546ee2018-05-09 00:35:09549 "Enables the Emoji picker item in context menus for editable text areas, if"
550 " supported by the operating system.";
Ramya Nagarajan5b41d8d2018-04-02 19:53:02551
David Benjamin570460e2018-10-16 06:01:29552const char kEnforceTLS13DowngradeName[] = "TLS 1.3 downgrade hardening";
553const char kEnforceTLS13DowngradeDescription[] =
554 "This option enables the TLS 1.3 downgrade hardening mechanism. This "
555 "hardens TLS 1.3 connections while remaining compatible with TLS 1.0 "
556 "through 1.2 connections. Firewalls and proxies that do not function when "
557 "this is enabled do not implement TLS 1.0 through 1.2 correctly or "
558 "securely. They must be fixed by vendors.";
559
Brett Wilsonf27ff602017-07-07 22:28:47560const char kEnableEnumeratingAudioDevicesName[] =
561 "Experimentally enable enumerating audio devices.";
562const char kEnableEnumeratingAudioDevicesDescription[] =
563 "Experimentally enable the use of enumerating audio devices.";
564
565const char kEnableGenericSensorName[] = "Generic Sensor";
566const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25567 "Enables motion sensor classes based on Generic Sensor API, i.e. "
568 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
569 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
570
571const char kEnableGenericSensorExtraClassesName[] =
572 "Generic Sensor Extra Classes";
573const char kEnableGenericSensorExtraClassesDescription[] =
574 "Enables an extra set of sensor classes based on Generic Sensor API, which "
575 "expose previously unavailable platform features, i.e. AmbientLightSensor "
576 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47577
Brett Wilsonf27ff602017-07-07 22:28:47578const char kEnableHDRName[] = "HDR mode";
579const char kEnableHDRDescription[] =
580 "Enables HDR support on compatible displays.";
581
Ryan Sturm6a850902018-06-09 02:27:34582const char kEnableHeavyPageCappingName[] = "Heavy Page Capping";
583const char kEnableHeavyPageCappingDescription[] =
Ryan Sturm1550abeb2018-06-18 20:05:09584 "Enable showing an InfoBar on data heavy pages that allows the user to "
Ryan Sturma2cd49f2018-06-20 17:09:25585 "pause sub-resource request loading on the page. Using the 'Low' option "
Ryan Sturm2a2f11e2018-07-17 23:01:01586 "will reduce the triggering threshold to 1MB. Data saver must be enabled "
587 "in order to see the InfoBar.";
Ryan Sturm6a850902018-06-09 02:27:34588
David Bokan911bded2018-11-27 23:23:32589const char kEnableImplicitRootScrollerName[] = "Implicit Root Scroller";
590const char kEnableImplicitRootScrollerDescription[] =
591 "Enables implicitly choosing which scroller on a page is the 'root "
592 "scroller'. i.e. The one that gets special features like URL bar movement, "
593 "overscroll glow, rotation anchoring, etc.";
594
Robert Ogden5a63b242018-09-17 21:38:57595const char kEnablePreviewsAndroidOmniboxUIName[] =
596 "Previews Android Omnibox UI";
597const char kEnablePreviewsAndroidOmniboxUIDescription[] =
598 "Enable showing the Previews UI in the Omnibox on Android instead of an "
599 "InfoBar. This has no effect on other platforms.";
600
Robert Ogdence8c9572018-10-08 23:08:48601const char kEnableLitePageServerPreviewsName[] = "Lite Page Server Previews";
602const char kEnableLitePageServerPreviewsDescription[] =
603 "Enable showing Lite Page Previews served from the Chrome Data Proxy "
604 "service. This feature will cause Chrome to redirect eligible navigations "
605 "to a Google-owned domain that serves a pre-rendered version of the "
606 "original page.";
607
Brett Wilsonf27ff602017-07-07 22:28:47608const char kEnableHttpFormWarningName[] =
609 "Show in-form warnings for sensitive fields when the top-level page is not "
Eric Lawrenceed8fccf2017-09-08 21:27:15610 "HTTPS";
Brett Wilsonf27ff602017-07-07 22:28:47611const char kEnableHttpFormWarningDescription[] =
612 "Attaches a warning UI to any password or credit card fields detected when "
613 "the top-level page is not HTTPS";
614
Hiroshige Hayashizaki99d5821e2018-05-02 04:25:41615const char kLayeredAPIName[] = "Experimental layered APIs";
616const char kLayeredAPIDescription[] =
617 "Enable layered API infrastructure, as well as several experimental "
618 "layered APIs. The syntax and the APIs exposed are experimental and will "
619 "change over time.";
620
Philip Rogers63481332018-12-01 22:16:51621const char kEnableBlinkGenPropertyTreesName[] = "Enable BlinkGenPropertyTrees";
622const char kEnableBlinkGenPropertyTreesDescription[] =
623 "Enable a new compositing mode where Blink generates the compositor "
624 "property trees.";
625
Ian Kilpatricke68ef11a2018-07-04 03:52:10626const char kEnableLayoutNGName[] = "Enable LayoutNG";
627const char kEnableLayoutNGDescription[] =
628 "Enable Blink's next generation layout engine.";
629
Scott Littled0fd2d002018-04-13 03:37:26630const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading";
631const char kEnableLazyFrameLoadingDescription[] =
632 "Defers the loading of certain cross-origin frames until the page is "
633 "scrolled down near them.";
634
rajendrant793ff512018-08-10 17:07:59635const char kEnableLazyImageLoadingName[] = "Enable lazy image loading";
636const char kEnableLazyImageLoadingDescription[] =
637 "Defers the loading of images until the page is scrolled down near them.";
638
Sidney San Martín9375b892017-09-09 00:29:54639const char kEnableMacMaterialDesignDownloadShelfName[] =
640 "Enable Material Design download shelf";
641
642const char kEnableMacMaterialDesignDownloadShelfDescription[] =
643 "If enabled, the download shelf uses Material Design.";
644
Anton Urusov47cd4932017-09-19 14:41:41645const char kEnablePolicyToolName[] = "Enable policy management page";
646const char kEnablePolicyToolDescription[] =
647 "If enabled, the chrome://policy-tool URL loads a page for managing "
648 "policies.";
649
Weidong Guof1e5a892018-01-06 02:26:39650const char kDisableMultiMirroringName[] =
Weidong Guo7dfd1482017-11-08 05:56:28651 "Display mirroring across multiple displays.";
Weidong Guof1e5a892018-01-06 02:26:39652const char kDisableMultiMirroringDescription[] =
653 "Disable Display mirroring across multiple displays.";
Weidong Guo7dfd1482017-11-08 05:56:28654
Brett Wilsonf27ff602017-07-07 22:28:47655const char kEnableNavigationTracingName[] = "Enable navigation tracing";
656const char kEnableNavigationTracingDescription[] =
657 "This is to be used in conjunction with the trace-upload-url flag. "
658 "WARNING: When enabled, Chrome will record performance data for every "
659 "navigation and upload it to the URL specified by the trace-upload-url "
660 "flag. The trace may include personally identifiable information (PII) "
661 "such as the titles and URLs of websites you visit.";
662
Bernhard Bauer5533f9912017-11-06 17:56:02663const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
664const char kEnableNetworkLoggingToFileDescription[] =
665 "Enables network logging to a file named netlog.json in the user data "
666 "directory. The file can be imported into chrome://net-internals.";
667
Brett Wilsonf27ff602017-07-07 22:28:47668const char kEnableNetworkServiceName[] = "Enable network service";
669const char kEnableNetworkServiceDescription[] =
670 "Enables the network service, which makes network requests through a "
John Abd-El-Malek225b04d2018-09-07 22:41:40671 "separate process.";
Brett Wilsonf27ff602017-07-07 22:28:47672
John Abd-El-Malek8067cc02017-12-04 23:23:20673const char kEnableNetworkServiceInProcessName[] =
674 "Runs network service in-process";
675const char kEnableNetworkServiceInProcessDescription[] =
676 "Runs the network service in the browser process.";
677
Ahmed Fakhry2fd8fc82017-07-28 16:31:12678const char kEnableNightLightName[] = "Enable Night Light";
679const char kEnableNightLightDescription[] =
680 "Enable the Night Light feature which controls the color temperature of "
681 "the screen.";
682
Tetsui Ohkuboc3eb87f72018-07-20 02:22:28683const char kEnableNotificationScrollBarName[] =
684 "Enable notification list scroll bar";
685const char kEnableNotificationScrollBarDescription[] =
686 "Enable the scroll bar of the notification list in Unified System Tray.";
687
Mitsuru Otsukae8304de2018-10-29 02:14:36688const char kEnableNotificationExpansionAnimationName[] =
689 "Enable notification expansion animations";
690const char kEnableNotificationExpansionAnimationDescription[] =
691 "Enable notification animations whenever the expansion state is toggled.";
692
xlou8b56f672018-02-09 23:34:30693const char kEnableNupPrintingName[] = "Enable N-up printing";
694const char kEnableNupPrintingDescription[] =
695 "Enable N-up printing in the print preview panel.";
696
Sophie Chang117a3b22017-10-24 22:25:36697const char kEnableOptimizationHintsName[] = "Optimization Hints";
698const char kEnableOptimizationHintsDescription[] =
Sophie Chang5454ce82018-07-16 17:44:50699 "Enable the Optimization Hints feature which incorporates server hints "
Sophie Chang117a3b22017-10-24 22:25:36700 "into decisions for what optimizations to perform on some pages on slow "
701 "networks.";
702
Takashi Toyoshima2e01e692018-11-16 03:23:27703const char kEnableOutOfBlinkCorsName[] = "Out of blink CORS";
704const char kEnableOutOfBlinkCorsDescription[] =
Yutaka Hirano98be3272017-08-07 17:55:39705 "CORS handling logic is moved out of blink.";
706
Chris Halle952239e2018-11-06 06:49:52707const char kExperimentalAccessibilityFeaturesName[] =
708 "Experimental accessibility features";
709const char kExperimentalAccessibilityFeaturesDescription[] =
710 "Enable additional accessibility features in the Settings page.";
711
Katie D652135c2018-11-27 18:30:13712const char kExperimentalAccessibilityAutoclickName[] =
713 "Experimental automatic click features";
714const char kExperimentalAccessibilityAutoclickDescription[] =
715 "Enable additional features for automatic clicks.";
716
Anastasia Helfinsteinafecc68c2018-11-26 19:20:17717const char kExperimentalAccessibilitySwitchAccessName[] =
718 "Experimental feature Switch Access";
719const char kExperimentalAccessibilitySwitchAccessDescription[] =
720 "Add a setting to enable the prototype of Switch Access";
721
kylechar7051c092018-02-05 20:31:39722const char kVizDisplayCompositorName[] = "Viz Display Compositor (OOP-D)";
723const char kVizDisplayCompositorDescription[] =
724 "If enabled, the display compositor runs as part of the viz service in the"
725 "GPU process.";
726
Ria Jiang6a129b982018-03-01 18:30:40727const char kVizHitTestDrawQuadName[] = "Viz Hit-test Draw-quad version";
728const char kVizHitTestDrawQuadDescription[] =
729 "If enabled, event targeting uses the new viz-assisted hit-testing logic, "
730 "with hit-test data computed from the CompositorFrame.";
731
Erik Chen49bbfa22017-08-18 08:49:56732const char kEnableOutOfProcessHeapProfilingName[] =
Albert J. Wong174174762018-01-18 23:50:23733 "Out of process heap profiling start mode.";
Erik Chen49bbfa22017-08-18 08:49:56734const char kEnableOutOfProcessHeapProfilingDescription[] =
735 "Creates a profiling service that records stacktraces for all live, "
erikchen94aca892018-01-18 00:21:19736 "malloced objects. Heap dumps can be obtained at chrome://tracing "
737 "[category:memory-infra] and chrome://memory-internals. This setting "
738 "controls which processes are profiled. As long as this setting is not "
739 "disabled, users can start profiling any given process in "
740 "chrome://memory-internals.";
741const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU";
742const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes";
743const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers";
744const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser";
745const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU.";
erikchen0a5dd692017-12-12 00:53:10746const char kEnableOutOfProcessHeapProfilingModeManual[] =
erikchen94aca892018-01-18 00:21:19747 "None by default. Visit chrome://memory-internals to choose which "
748 "processes to profile.";
Albert J. Wongbd5bd902017-11-09 19:56:15749const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] =
750 "Profile a random sampling of renderer processes, ensuring only one is "
751 "ever profiled at a time.";
erikchen94aca892018-01-18 00:21:19752
Erik Chen8bb76b52017-12-06 19:06:25753const char kOutOfProcessHeapProfilingKeepSmallAllocations[] =
erikchen94aca892018-01-18 00:21:19754 "Emit small allocations in memlog heap dumps.";
Erik Chen8bb76b52017-12-06 19:06:25755const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] =
756 "By default, small allocations are pruned from the heap dump. This reduces "
757 "the size of the compressed trace by 100x. If pruning is disabled, the "
758 "chrome://tracing UI may be unable to take or load the trace. Save the "
759 "trace directly using chrome://memory-internals, and use other mechanisms "
760 "[e.g. diff_heap_profiler.py] to examine the trace. Note that "
761 "automatically uploaded traces will always be pruned. This only affects "
762 "manually taken memory-infra traces.";
Erik Chen49bbfa22017-08-18 08:49:56763
erikchen8bc20d82018-02-14 03:21:51764const char kOutOfProcessHeapProfilingSampling[] = "Sample memlog allocations";
765const char kOutOfProcessHeapProfilingSamplingDescription[] =
766 "Use a poisson process to sample allocations. Defaults to a sample rate of "
erikchen99bfce02018-02-14 20:29:22767 "10000. This results in low noise for large and/or frequent allocations ["
768 "[size * frequency >> 10000]. This means that aggregate numbers [e.g. "
769 "total size of malloc-ed objects] and large and/or frequent allocations "
770 "can be trusted with high fidelity.";
erikchen8bc20d82018-02-14 03:21:51771
Erik Chen3303fd0232018-01-11 20:29:05772const char kOOPHPStackModeName[] =
773 "The type of stack to record for memlog heap dumps";
774const char kOOPHPStackModeDescription[] =
erikchen94aca892018-01-18 00:21:19775 "By default, memlog heap dumps record native stacks, which requires a "
776 "post-processing step to symbolize. Requires a custom build with frame "
erikchen011ad3f2018-01-26 17:54:55777 "pointers to work on Android. Native with thread names will add the thread "
778 "name as the first frame of each native stack. It's also possible to "
779 "record a pseudo stack using trace events as identifiers. It's also "
780 "possible to do a mix of both.";
erikchen94aca892018-01-18 00:21:19781const char kOOPHPStackModeMixed[] = "Mixed";
782const char kOOPHPStackModeNative[] = "Native";
erikchen011ad3f2018-01-26 17:54:55783const char kOOPHPStackModeNativeWithThreadNames[] = "Native with thread names";
erikchen94aca892018-01-18 00:21:19784const char kOOPHPStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:05785
François Beaufort2e75f492018-02-08 20:44:46786const char kEnablePictureInPictureName[] = "Enable Picture-in-Picture.";
Brett Wilsonf27ff602017-07-07 22:28:47787const char kEnablePictureInPictureDescription[] =
François Beaufort2e75f492018-02-08 20:44:46788 "Enable the Picture-in-Picture feature for videos.";
Brett Wilsonf27ff602017-07-07 22:28:47789
F#m59d036e2017-09-13 07:22:17790const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
791const char kEnablePixelCanvasRecordingDescription[] =
792 "Pixel canvas recording allows the compositor to raster contents aligned "
793 "with the pixel and improves text rendering. This should be enabled when a "
794 "device is using fractional scale factor.";
795
Ella Gebee81c92018-08-14 15:51:09796const char kEnableResamplingInputEventsName[] =
797 "Enable resampling input events";
798const char kEnableResamplingInputEventsDescription[] =
799 "Predicts mouse and touch inputs position at rAF time based on previous "
800 "input";
801const char kEnableResamplingScrollEventsName[] =
802 "Enable resampling scroll events";
803const char kEnableResamplingScrollEventsDescription[] =
804 "Predicts the scroll amount at vsync time based on previous input";
805
Doug Arnettaa0bf202018-08-27 19:42:11806const char kEnableResourceLoadingHintsName[] = "Enable resource loading hints";
807const char kEnableResourceLoadingHintsDescription[] =
808 "Enable using server-provided resource loading hints to provide a preview "
809 "over slow network connections.";
810
Mikel Astizb4786aa2018-11-09 22:12:09811const char kEnableSyncPseudoUSSAppListName[] =
812 "Enable pseudo-USS for APP_LIST sync.";
813const char kEnableSyncPseudoUSSAppListDescription[] =
814 "Enable new USS-based codepath for sync datatype APP_LIST.";
815
816const char kEnableSyncPseudoUSSAppsName[] = "Enable pseudo-USS for APPS sync.";
817const char kEnableSyncPseudoUSSAppsDescription[] =
818 "Enable new USS-based codepath for sync datatype APPS.";
819
820const char kEnableSyncPseudoUSSDictionaryName[] =
821 "Enable pseudo-USS for DICTIONARY sync.";
822const char kEnableSyncPseudoUSSDictionaryDescription[] =
823 "Enable new USS-based codepath for sync datatype DICTIONARY.";
824
825const char kEnableSyncPseudoUSSExtensionSettingsName[] =
826 "Enable pseudo-USS for EXTENSION_SETTINGS and APP_SETTINGS sync.";
827const char kEnableSyncPseudoUSSExtensionSettingsDescription[] =
828 "Enable new USS-based codepath for sync datatypes EXTENSION_SETTINGS and "
829 "APP_SETTINGS.";
830
831const char kEnableSyncPseudoUSSExtensionsName[] =
832 "Enable pseudo-USS for EXTENSIONS sync.";
833const char kEnableSyncPseudoUSSExtensionsDescription[] =
834 "Enable new USS-based codepath for sync datatype EXTENSIONS.";
835
836const char kEnableSyncPseudoUSSFaviconsName[] =
837 "Enable pseudo-USS for favicon sync.";
838const char kEnableSyncPseudoUSSFaviconsDescription[] =
839 "Enable new USS-based codepath for sync datatypes FAVICON_IMAGES and "
840 "FAVICON_TRACKING.";
841
842const char kEnableSyncPseudoUSSHistoryDeleteDirectivesName[] =
843 "Enable pseudo-USS for HISTORY_DELETE_DIRECTIVES sync.";
844const char kEnableSyncPseudoUSSHistoryDeleteDirectivesDescription[] =
845 "Enable new USS-based codepath for sync datatype "
846 "HISTORY_DELETE_DIRECTIVES.";
847
848const char kEnableSyncPseudoUSSPasswordsName[] =
849 "Enable pseudo-USS for PASSWORDS sync.";
850const char kEnableSyncPseudoUSSPasswordsDescription[] =
851 "Enable new USS-based codepath for sync datatype PASSWORDS (pseudo-USS).";
852
853const char kEnableSyncPseudoUSSPreferencesName[] =
854 "Enable pseudo-USS for PREFERENCES sync.";
855const char kEnableSyncPseudoUSSPreferencesDescription[] =
856 "Enable new USS-based codepath for sync datatype PREFERENCES.";
857
858const char kEnableSyncPseudoUSSPriorityPreferencesName[] =
859 "Enable pseudo-USS for PRIORITY_PREFERENCES sync.";
860const char kEnableSyncPseudoUSSPriorityPreferencesDescription[] =
861 "Enable new USS-based codepath for sync datatype PRIORITY_PREFERENCES.";
862
863const char kEnableSyncPseudoUSSSearchEnginesName[] =
864 "Enable pseudo-USS for SEARCH_ENGINES sync.";
865const char kEnableSyncPseudoUSSSearchEnginesDescription[] =
866 "Enable new USS-based codepath for sync datatype SEARCH_ENGINES.";
867
868const char kEnableSyncPseudoUSSSupervisedUsersName[] =
869 "Enable pseudo-USS for supervised users sync.";
870const char kEnableSyncPseudoUSSSupervisedUsersDescription[] =
871 "Enable new USS-based codepath for sync datatypes SUPERVISED_USER_SETTINGS "
872 "and SUPERVISED_USER_WHITELISTS.";
873
874const char kEnableSyncPseudoUSSThemesName[] =
875 "Enable pseudo-USS for THEMES sync.";
876const char kEnableSyncPseudoUSSThemesDescription[] =
877 "Enable new USS-based codepath for sync datatype THEMES.";
878
Mohamed Amir Yosef0178fa892018-07-23 17:43:52879const char kEnableSyncUSSBookmarksName[] = "Enable USS for bookmarks sync";
880const char kEnableSyncUSSBookmarksDescription[] =
881 "Enables the new, experimental implementation of bookmark sync";
882
Mikel Astiz38837f82018-04-24 22:23:23883const char kEnableSyncUSSSessionsName[] = "Enable USS for sessions sync";
884const char kEnableSyncUSSSessionsDescription[] =
885 "Enables the new, experimental implementation of session sync (aka tab "
886 "sync).";
887
Brett Wilsonf27ff602017-07-07 22:28:47888const char kEnableUseZoomForDsfName[] =
889 "Use Blink's zoom for device scale factor.";
890const char kEnableUseZoomForDsfDescription[] =
891 "If enabled, Blink uses its zooming mechanism to scale content for device "
892 "scale factor.";
893const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
894const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
895const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
896
Patrick Noland8ee016e2018-01-24 11:44:53897const char kEnableScrollAnchorSerializationName[] =
898 "Scroll Anchor Serialization";
899const char kEnableScrollAnchorSerializationDescription[] =
900 "Save the scroll anchor and use it to restore the scroll position when "
901 "navigating.";
902
Brad Nelson5cd500e2018-01-04 00:50:19903const char kEnableSharedArrayBufferName[] =
904 "Experimental enabled SharedArrayBuffer support in JavaScript.";
905const char kEnableSharedArrayBufferDescription[] =
906 "Enable SharedArrayBuffer support in JavaScript.";
907
Brett Wilsonf27ff602017-07-07 22:28:47908const char kEnableWasmName[] = "WebAssembly structured cloning support.";
909const char kEnableWasmDescription[] =
910 "Enable web pages to use WebAssembly structured cloning.";
911
Kim Paulhamusae635a32018-06-27 07:30:54912const char kEnableWebAuthenticationAPIName[] = "Web Authentication API";
913const char kEnableWebAuthenticationAPIDescription[] =
Kim Paulhamus92431372018-07-20 02:25:47914 "Enable Web Authentication API support.";
915
Lei Zhang0ca70ea2018-09-07 17:51:01916const char kEnableWebAuthenticationCableSupportName[] =
Kim Paulhamus92431372018-07-20 02:25:47917 "Web Authentication caBLE support";
Lei Zhang0ca70ea2018-09-07 17:51:01918const char kEnableWebAuthenticationCableSupportDescription[] =
Kim Paulhamus92431372018-07-20 02:25:47919 "Enable the cloud-assisted pairingless BLE protocol for use with "
920 "the Web Authentication API.";
Kim Paulhamusae635a32018-06-27 07:30:54921
Brett Wilsonf27ff602017-07-07 22:28:47922const char kEnableImageCaptureAPIName[] = "Image Capture API";
923const char kEnableImageCaptureAPIDescription[] =
924 "Enables the Web Platform Image Capture API: takePhoto(), "
925 "getPhotoCapabilities(), etc.";
926
Ramin Halavatic158b182018-10-18 14:04:54927const char kEnableIncognitoWindowCounterName[] = "Incognito Window Counter";
928const char kEnableIncognitoWindowCounterDescription[] =
929 "Shows the count of Incognito windows next to the Incognito icon on the "
930 "toolbar.";
931
Brett Wilsonf27ff602017-07-07 22:28:47932const char kEnableZeroSuggestRedirectToChromeName[] =
933 "Experimental contextual omnibox suggestion";
934const char kEnableZeroSuggestRedirectToChromeDescription[] =
935 "Change omnibox contextual suggestions to an experimental source. Note "
936 "that this is not an on/off switch for contextual omnibox and it only "
937 "applies to suggestions provided before the user starts typing a URL or a "
938 "search query (i.e. zero suggest).";
939
Clemens Hammacher0c8a15a2018-04-27 13:45:32940const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler";
941const char kEnableWasmBaselineDescription[] =
942 "Enables WebAssembly baseline compilation and tier up.";
943
Ben Smith24c1e5c2018-06-20 01:09:02944const char kEnableWasmThreadsName[] = "WebAssembly threads support.";
945const char kEnableWasmThreadsDescription[] =
946 "Enables support for the WebAssembly Threads proposal. Implies "
947 "#shared-array-buffer and #enable-webassembly.";
948
Brett Wilsonf27ff602017-07-07 22:28:47949const char kExpensiveBackgroundTimerThrottlingName[] =
950 "Throttle expensive background timers";
951const char kExpensiveBackgroundTimerThrottlingDescription[] =
952 "Enables intervention to limit CPU usage of background timers to 1%.";
953
954const char kExperimentalAppBannersName[] = "Experimental app banners";
955const char kExperimentalAppBannersDescription[] =
Matt Giucad4870432017-11-24 01:04:38956 "Enables a new experimental app banner flow and UI. Implies "
957 "#enable-app-banners.";
Brett Wilsonf27ff602017-07-07 22:28:47958
959const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
960const char kExperimentalCanvasFeaturesDescription[] =
961 "Enables the use of experimental canvas features which are still in "
962 "development.";
963
Nicholas Verneccd8259802018-02-22 01:22:04964const char kExperimentalCrostiniUIName[] = "Experimental Crostini";
965const char kExperimentalCrostiniUIDescription[] =
966 "Enables in-development Crostini features.";
967
Brett Wilsonf27ff602017-07-07 22:28:47968const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
969const char kExperimentalExtensionApisDescription[] =
970 "Enables experimental extension APIs. Note that the extension gallery "
971 "doesn't allow you to upload extensions that use experimental APIs.";
972
973const char kExperimentalFullscreenExitUIName[] =
974 "Experimental fullscreen exit UI";
975const char kExperimentalFullscreenExitUIDescription[] =
976 "Displays experimental UI to allow mouse and touch input methods to exit "
977 "fullscreen mode.";
978
Ian Clelland37a985d2018-05-04 02:43:13979const char kExperimentalProductivityFeaturesName[] =
980 "Experimental Productivity Features";
981const char kExperimentalProductivityFeaturesDescription[] =
982 "Enable support for experimental developer productivity features, such as "
983 "Layered APIs and policies for avoiding slow rendering.";
984
Brett Wilsonf27ff602017-07-07 22:28:47985const char kExperimentalSecurityFeaturesName[] =
986 "Potentially annoying security features";
987const char kExperimentalSecurityFeaturesDescription[] =
988 "Enables several security features that will likely break one or more "
989 "pages that you visit on a daily basis. Strict mixed content checking, for "
990 "example. And locking powerful features to secure contexts. This flag will "
991 "probably annoy you.";
992
993const char kExperimentalWebPlatformFeaturesName[] =
994 "Experimental Web Platform features";
995const char kExperimentalWebPlatformFeaturesDescription[] =
996 "Enables experimental Web Platform features that are in development.";
997
998const char kExtensionContentVerificationName[] =
999 "Extension Content Verification";
1000const char kExtensionContentVerificationDescription[] =
1001 "This flag can be used to turn on verification that the contents of the "
1002 "files on disk for extensions from the webstore match what they're "
1003 "expected to be. This can be used to turn on this feature if it would not "
1004 "otherwise have been turned on, but cannot be used to turn it off (because "
1005 "this setting can be tampered with by malware).";
1006const char kExtensionContentVerificationBootstrap[] =
1007 "Bootstrap (get expected hashes, but do not enforce them)";
1008const char kExtensionContentVerificationEnforce[] =
1009 "Enforce (try to get hashes, and enforce them if successful)";
1010const char kExtensionContentVerificationEnforceStrict[] =
1011 "Enforce strict (hard fail if we can't get hashes)";
1012
1013const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
1014const char kExtensionsOnChromeUrlsDescription[] =
1015 "Enables running extensions on chrome:// URLs, where extensions explicitly "
1016 "request this permission.";
galinapae72e152017-05-12 13:12:281017
Brett Wilsonecb80982017-07-12 20:34:511018const char kFastUnloadName[] = "Fast tab/window close";
1019const char kFastUnloadDescription[] =
1020 "Enables fast tab/window closing - runs a tab's onunload js handler "
1021 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:341022
Brett Wilsonecb80982017-07-12 20:34:511023const char kFeaturePolicyName[] = "Feature Policy";
1024const char kFeaturePolicyDescription[] =
1025 "Enables granting and removing access to features through the "
1026 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:341027
Brett Wilsonecb80982017-07-12 20:34:511028const char kFontCacheScalingName[] = "FontCache scaling";
1029const char kFontCacheScalingDescription[] =
1030 "Reuse a cached font in the renderer to serve different sizes of font for "
1031 "faster layout.";
1032
1033const char kForceEffectiveConnectionTypeName[] =
1034 "Override effective connection type";
1035const char kForceEffectiveConnectionTypeDescription[] =
1036 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:301037 "returned by the network quality estimator. Slow 2G on Cellular returns "
1038 "Slow 2G when connected to a cellular network, and the actual estimate "
1039 "effective connection type when not on a cellular network. Previews are "
1040 "usually served on 2G networks.";
Brett Wilsonecb80982017-07-12 20:34:511041const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
1042const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
1043const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:301044const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
1045 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:511046const char kEffectiveConnectionType2GDescription[] = "2G";
1047const char kEffectiveConnectionType3GDescription[] = "3G";
1048const char kEffectiveConnectionType4GDescription[] = "4G";
1049
1050const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1051const char kFillOnAccountSelectDescription[] =
1052 "Filling of passwords when an account is explicitly selected by the user "
1053 "rather than autofilling credentials on page load.";
1054
Brett Wilsonecb80982017-07-12 20:34:511055const char kForceTextDirectionName[] = "Force text direction";
1056const char kForceTextDirectionDescription[] =
1057 "Explicitly force the per-character directionality of UI text to "
1058 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
1059 "direction of the character language.";
1060const char kForceDirectionLtr[] = "Left-to-right";
1061const char kForceDirectionRtl[] = "Right-to-left";
1062
1063const char kForceUiDirectionName[] = "Force UI direction";
1064const char kForceUiDirectionDescription[] =
1065 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1066 "mode, overriding the default direction of the UI language.";
1067
1068const char kFramebustingName[] =
1069 "Framebusting requires same-origin or a user gesture";
1070const char kFramebustingDescription[] =
1071 "Don't permit an iframe to navigate the top level browsing context unless "
1072 "they are same-origin or the iframe is processing a user gesture.";
1073
1074const char kGamepadExtensionsName[] = "Gamepad Extensions";
1075const char kGamepadExtensionsDescription[] =
Anna Offenwanger06dc6062018-04-12 07:56:221076 "Enables experimental extensions to the Gamepad APIs.";
Matt Reynolds043469f2018-05-01 22:56:581077const char kGamepadVibrationName[] = "Gamepad Vibration";
1078const char kGamepadVibrationDescription[] =
1079 "Enables haptic vibration effects on supported gamepads.";
Brett Wilsonecb80982017-07-12 20:34:511080
Brett Wilsonecb80982017-07-12 20:34:511081const char kGpuRasterizationName[] = "GPU rasterization";
1082const char kGpuRasterizationDescription[] =
1083 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:281084const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:511085
Ioana Pandele1ed7ef72018-11-21 15:22:031086const char kGooglePasswordManagerName[] = "Google Password Manager UI";
1087const char kGooglePasswordManagerDescription[] =
1088 "Enables access to the Google Password Manager UI from Chrome.";
1089
Brett Wilsonecb80982017-07-12 20:34:511090const char kGoogleProfileInfoName[] = "Google profile name and icon";
1091const char kGoogleProfileInfoDescription[] =
1092 "Enables using Google information to populate the profile name and icon in "
1093 "the avatar menu.";
1094
Takumi Fujimotofb71e332018-03-31 14:04:081095const char kViewsCastDialogName[] = "Views Cast dialog";
1096const char kViewsCastDialogDescription[] =
Takumi Fujimoto541e5e22018-05-30 00:46:311097 "Replace the WebUI Cast dialog with a Views toolkit dialog. This requires "
Takumi Fujimoto28351acc2018-05-31 17:19:531098 "#views-browser-windows on Mac. This feature is activated if either this "
Robert Liao3ecf97c2018-06-05 01:24:541099 "flag or #upcoming-ui-features is enabled";
Takumi Fujimotofb71e332018-03-31 14:04:081100
Manu Cornet4a908de2018-04-09 04:32:271101const char kHideActiveAppsFromShelfName[] =
1102 "Hide running apps (that are not pinned) from the shelf";
1103const char kHideActiveAppsFromShelfDescription[] =
1104 "Save space in the shelf by hiding running apps (that are not pinned).";
Manu Cornete5f855b2018-03-13 03:35:251105
Brett Wilsonecb80982017-07-12 20:34:511106const char kHistoryRequiresUserGestureName[] =
1107 "New history entries require a user gesture.";
1108const char kHistoryRequiresUserGestureDescription[] =
1109 "Require a user gesture to add a history entry.";
1110const char kHyperlinkAuditingName[] = "Hyperlink auditing";
1111const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
1112
Ryan Landay4242dbc22018-04-04 01:47:331113const char kHorizontalTabSwitcherAndroidName[] =
1114 "Enable horizontal tab switcher";
1115const char kHorizontalTabSwitcherAndroidDescription[] =
1116 "Changes the layout of the Android tab switcher so tabs scroll "
1117 "horizontally instead of vertically.";
1118
Brett Wilsonecb80982017-07-12 20:34:511119const char kHostedAppQuitNotificationName[] =
1120 "Quit notification for hosted apps";
1121const char kHostedAppQuitNotificationDescription[] =
1122 "Display a notification when quitting Chrome if hosted apps are currently "
1123 "running.";
1124
1125const char kHostedAppShimCreationName[] =
1126 "Creation of app shims for hosted apps on Mac";
1127const char kHostedAppShimCreationDescription[] =
1128 "Create app shims on Mac when creating a hosted app.";
1129
Ana-Cosmina Popescuda3bcbe2017-09-22 18:24:481130const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector";
1131const char kHtmlBasedUsernameDetectorDescription[] =
1132 "Use HTML-based username detector for the password manager.";
1133
Brett Wilsonecb80982017-07-12 20:34:511134const char kIconNtpName[] = "Large icons on the New Tab page";
1135const char kIconNtpDescription[] =
1136 "Enable the experimental New Tab page using large icons.";
1137
1138const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
1139const char kIgnoreGpuBlacklistDescription[] =
1140 "Overrides the built-in software rendering list and enables "
1141 "GPU-acceleration on unsupported system configurations.";
1142
Ryan Sturm8c3dbc92018-06-26 19:22:371143const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blocklist";
Thanh Le5f090efa52017-12-27 22:39:441144const char kIgnorePreviewsBlacklistDescription[] =
Ryan Sturm8c3dbc92018-06-26 19:22:371145 "Ignore decisions made by the PreviewsBlockList";
Thanh Le5f090efa52017-12-27 22:39:441146
Claudio Magni61c210922017-12-28 00:29:511147const char kImprovedLanguageSettingsName[] = "Improved Language Settings";
1148const char kImprovedLanguageSettingsDescription[] =
1149 "Set of changes for Language Settings. These changes are intended to fix "
1150 "the major bugs related to Language Settings.";
1151
Brett Wilsonecb80982017-07-12 20:34:511152const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
1153const char kInProductHelpDemoModeChoiceDescription[] =
1154 "Selects the In-Product Help demo mode.";
1155
1156const char kJavascriptHarmonyName[] = "Experimental JavaScript";
1157const char kJavascriptHarmonyDescription[] =
1158 "Enable web pages to use experimental JavaScript features.";
1159
1160const char kJavascriptHarmonyShippingName[] =
1161 "Latest stable JavaScript features";
1162const char kJavascriptHarmonyShippingDescription[] =
1163 "Some web pages use legacy or non-standard JavaScript extensions that may "
1164 "conflict with the latest JavaScript features. This flag allows disabling "
1165 "support of those features for compatibility with such pages.";
1166
gogeraldfd7675d2018-06-19 22:57:351167const char kJustInTimeServiceWorkerPaymentAppName[] =
1168 "Just-in-time service worker payment app";
1169const char kJustInTimeServiceWorkerPaymentAppDescription[] =
1170 "Allow crawling just-in-time service worker payment app when there is no "
1171 "installed service worker payment app for a payment request.";
1172
Yutaka Hiranof7f2f632017-09-06 10:40:081173const char kKeepAliveRendererForKeepaliveRequestsName[] =
1174 "Keep a renderer alive for keepalive fetch requests";
1175const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
1176 "Keep a render process alive when the process has a pending fetch request "
1177 "with `keepalive' specified.";
1178
Joe Downing095fd6d2018-02-01 18:40:361179const char kKeyboardLockApiName[] = "Experimental keyboard lock API.";
1180const char kKeyboardLockApiDescription[] =
1181 "Enables websites to use the new keyboard{Lock|Unlock} API to intercept "
1182 "specific key events and have them routed directly to the webpage when in "
1183 "fullscreen mode. Implies #experimental-keyboard-lock-ui.";
1184
Brett Wilsonecb80982017-07-12 20:34:511185const char kLcdTextName[] = "LCD text antialiasing";
1186const char kLcdTextDescription[] =
1187 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
1188 "(subpixel) when doing accelerated compositing.";
1189
Matt Giucac399982f2017-10-06 07:51:291190const char kLeftToRightUrlsName[] =
1191 "Render bidirectional URLs from left to right";
1192const char kLeftToRightUrlsDescription[] =
1193 "An experimental Bidi URL rendering algorithm where the URL components are "
1194 "always shown in order from left to right, regardless of any RTL "
1195 "characters. (The contents of each component are still rendered with the "
1196 "normal Bidi algorithm.)";
1197
Brett Wilsonecb80982017-07-12 20:34:511198const char kLoadMediaRouterComponentExtensionName[] =
1199 "Load Media Router Component Extension";
1200const char kLoadMediaRouterComponentExtensionDescription[] =
1201 "Loads the Media Router component extension at startup.";
1202
Mustafa Emre Acer137dc8b2018-08-29 20:38:131203const char kLookalikeUrlNavigationSuggestionsName[] =
1204 "Navigation suggestions for lookalike URLs";
1205const char kLookalikeUrlNavigationSuggestionsDescription[] =
1206 "Enable navigation suggestions for URLs that are visually similar to "
1207 "popular domains or to domains with a site engagement score.";
1208
Brett Wilsonecb80982017-07-12 20:34:511209const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
1210const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
Brett Wilsonecb80982017-07-12 20:34:511211
Lei Zhang2eca9082017-10-17 20:42:501212const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP.";
1213const char kMaterialDesignIncognitoNTPDescription[] =
Brett Wilsonecb80982017-07-12 20:34:511214 "If enabled, the Incognito New Tab page uses the new material design with "
1215 "a better readable text.";
1216
spqchanb87755692018-04-05 00:46:091217const char kMediaRouterCastAllowAllIPsName[] =
1218 "Connect to Cast devices on all IP addresses";
1219const char kMediaRouterCastAllowAllIPsDescription[] =
1220 "Have the Media Router connect to Cast devices on all IP addresses, not "
Nick Harperd30507ca2018-08-16 20:24:311221 "just RFC1918/RFC4193 private addresses.";
spqchanb87755692018-04-05 00:46:091222
Brett Wilsonecb80982017-07-12 20:34:511223const char kMemoryCoordinatorName[] = "Memory coordinator";
1224const char kMemoryCoordinatorDescription[] =
1225 "Enable memory coordinator instead of memory pressure listeners.";
1226
1227const char kMessageCenterNewStyleNotificationName[] = "New style notification";
1228const char kMessageCenterNewStyleNotificationDescription[] =
1229 "Enables the experiment style of material-design notification";
1230
Brett Wilsonecb80982017-07-12 20:34:511231const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
1232const char kMhtmlGeneratorOptionDescription[] =
1233 "Provides experimental options for MHTML file generator.";
1234const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
1235const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
1236
Brett Wilsonecb80982017-07-12 20:34:511237const char kNewAudioRenderingMixingStrategyName[] =
1238 "New audio rendering mixing strategy";
1239const char kNewAudioRenderingMixingStrategyDescription[] =
1240 "Use the new audio rendering mixing strategy.";
1241
1242const char kNewBookmarkAppsName[] = "The new bookmark app system";
1243const char kNewBookmarkAppsDescription[] =
1244 "Enables the new system for creating bookmark apps.";
1245
Vadym Doroshenkocd4ff782018-07-24 13:41:021246const char kNewPasswordFormParsingName[] =
1247 "New password form parsing for filling passwords";
Vadym Doroshenkof81e8bb2018-04-18 14:35:241248const char kNewPasswordFormParsingDescription[] =
Vadym Doroshenkocd4ff782018-07-24 13:41:021249 "Replaces existing form parsing for filling in password manager with a new "
1250 "version, currently under development. WARNING: when enabled, Password "
1251 "Manager might stop working";
1252
1253const char kNewPasswordFormParsingForSavingName[] =
1254 "New password form parsing for saving passwords";
1255const char kNewPasswordFormParsingForSavingDescription[] =
1256 "Replaces existing form parsing for saving in password manager with a new "
1257 "version, currently under development. WARNING: when enabled, Password "
1258 "Manager might stop working";
Vadym Doroshenkof81e8bb2018-04-18 14:35:241259
Brett Wilsonecb80982017-07-12 20:34:511260const char kNewRemotePlaybackPipelineName[] =
1261 "Enable the new remote playback pipeline.";
1262const char kNewRemotePlaybackPipelineDescription[] =
1263 "Enable the new pipeline for playing media element remotely via "
1264 "RemotePlayback API or native controls.";
CJ DiMeglio7b4a199f2017-11-30 01:26:501265const char kUseSurfaceLayerForVideoName[] =
1266 "Enable the use of SurfaceLayer objects for videos.";
1267const char kUseSurfaceLayerForVideoDescription[] =
1268 "Enable compositing onto a Surface instead of a VideoLayer "
1269 "for videos.";
Brett Wilsonecb80982017-07-12 20:34:511270
1271const char kNewUsbBackendName[] = "Enable new USB backend";
1272const char kNewUsbBackendDescription[] =
1273 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:341274
Sonny Sasaka2d200432018-03-22 17:43:161275const char kNewblueName[] = "Newblue";
1276const char kNewblueDescription[] =
1277 "Enables the use of newblue Bluetooth daemon.";
1278
Peter Kasting63097912018-06-30 02:09:031279const char kNewTabButtonPosition[] = "New tab button position";
1280const char kNewTabButtonPositionDescription[] =
1281 "Controls placement of the new tab button within the tabstrip.";
1282const char kNewTabButtonPositionOppositeCaption[] = "Opposite caption buttons";
1283const char kNewTabButtonPositionLeading[] = "Leading";
1284const char kNewTabButtonPositionAfterTabs[] = "After tabs";
1285const char kNewTabButtonPositionTrailing[] = "Trailing";
1286
Egor Pasko6fed3822018-05-30 10:33:141287const char kNostatePrefetchName[] = "NoState Prefetch";
vabr0215a8e2017-03-28 12:47:341288const char kNostatePrefetchDescription[] =
Egor Pasko6fed3822018-05-30 10:33:141289 R"*(If enabled, pre-downloads resources to improve page load speed.)*";
vabr0215a8e2017-03-28 12:47:341290
Alex Newcomerd7b0cc42018-05-25 22:58:481291const char kNotificationIndicatorName[] = "Notification Indicators";
1292const char kNotificationIndicatorDescription[] =
1293 "Enable notification indicators, which appear on app icons when a "
1294 "notification is active. This will also enable notifications in context "
1295 "menus.";
1296
Brett Wilsonecb80982017-07-12 20:34:511297const char kNotificationsNativeFlagName[] = "Enable native notifications.";
1298const char kNotificationsNativeFlagDescription[] =
1299 "Enable support for using the native notification toasts and notification "
1300 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:341301
Valeriya Sinevich972ac122018-09-05 07:33:191302const char kUseMultiloginEndpointName[] = "Use Multilogin endpoint.";
1303const char kUseMultiloginEndpointDescription[] =
1304 "Use Gaia OAuth multilogin for identity consistency.";
1305
Zentaro Kavanaghbad511c2017-10-18 22:29:001306#if defined(OS_POSIX)
1307const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication";
1308const char kNtlmV2EnabledDescription[] =
1309 "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support.";
1310#endif
1311
Ramya Nagarajane9f16b82018-05-03 01:05:341312const char kNtpBackgroundsName[] = "New Tab Page Background Selection";
1313const char kNtpBackgroundsDescription[] =
kristipark037abce12018-07-13 19:49:301314 "Allow selection of a custom background image on the New Tab Page. "
1315 "Implicitly enables 'ntp-ui-md'.";
Ramya Nagarajane9f16b82018-05-03 01:05:341316
kristipark037abce12018-07-13 19:49:301317const char kNtpCustomLinksName[] = "New Tab Page Custom Links";
1318const char kNtpCustomLinksDescription[] =
1319 "Enable customization of shortcuts on the New Tab Page and replaces Most "
1320 "Visited. Implicitly enables 'ntp-ui-md' and 'ntp-icons'.";
1321
1322const char kNtpIconsName[] = "New Tab Page Material Design Icons";
Ramya Nagarajane9f16b82018-05-03 01:05:341323const char kNtpIconsDescription[] =
kristipark037abce12018-07-13 19:49:301324 "Show Material Design icons on the New Tab Page, instead of Most Visited "
1325 "tiles. Implicitly enables 'ntp-ui-md'.";
Ramya Nagarajane9f16b82018-05-03 01:05:341326
Kyle Milkad1420ce2018-10-05 18:33:411327const char kNtpUIMdName[] = "New Tab Page Material Design UI";
1328const char kNtpUIMdDescription[] =
1329 "Updates the New Tab Page with Material Design elements.";
1330
Brett Wilsonecb80982017-07-12 20:34:511331const char kNumRasterThreadsName[] = "Number of raster threads";
1332const char kNumRasterThreadsDescription[] =
1333 "Specify the number of raster threads.";
1334const char kNumRasterThreadsOne[] = "1";
1335const char kNumRasterThreadsTwo[] = "2";
1336const char kNumRasterThreadsThree[] = "3";
1337const char kNumRasterThreadsFour[] = "4";
1338
1339const char kOfferStoreUnmaskedWalletCardsName[] =
1340 "Google Payments card saving checkbox";
1341const char kOfferStoreUnmaskedWalletCardsDescription[] =
1342 "Show the checkbox to offer local saving of a credit card downloaded from "
1343 "the server.";
1344
1345const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
1346const char kOfflineAutoReloadDescription[] =
1347 "Pages that fail to load while the browser is offline will be "
1348 "auto-reloaded when the browser is online again.";
1349
1350const char kOfflineAutoReloadVisibleOnlyName[] =
1351 "Only Auto-Reload Visible Tabs";
1352const char kOfflineAutoReloadVisibleOnlyDescription[] =
1353 "Pages that fail to load while the browser is offline will only be "
1354 "auto-reloaded if their tab is visible.";
1355
Brett Wilsonecb80982017-07-12 20:34:511356const char kOmniboxDisplayTitleForCurrentUrlName[] =
1357 "Include title for the current URL in the omnibox";
1358const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
1359 "In the event that the omnibox provides suggestions on-focus, the URL of "
1360 "the current page is provided as the first suggestion without a title. "
1361 "Enabling this flag causes the title to be displayed.";
1362
Benoit Lizeab08362c2017-07-19 14:50:541363const char kOmniboxSpareRendererName[] =
1364 "Start spare renderer on omnibox focus";
1365const char kOmniboxSpareRendererDescription[] =
1366 "When the omnibox is focused, start an empty spare renderer. This can "
1367 "speed up the load of the navigation from the omnibox.";
1368
Tommy C. Lie4194b732018-09-28 22:21:511369const char kOmniboxUIHideSteadyStateUrlSchemeName[] =
1370 "Omnibox UI Hide Steady-State URL Scheme";
1371const char kOmniboxUIHideSteadyStateUrlSchemeDescription[] =
1372 "In the omnibox, hide the scheme from steady state displayed URLs. It is "
Tommy C. Libef94ee02018-10-17 19:56:361373 "restored during editing.";
Tommy C. Lie4194b732018-09-28 22:21:511374
Tommy C. Lib20aec72018-11-19 21:38:231375const char kOmniboxUIOneClickUnelideName[] = "Omnibox UI One Click Unelide";
1376const char kOmniboxUIOneClickUnelideDescription[] =
1377 "In the omnibox, undo all unelisions with a single click or focus action.";
1378
Tommy C. Lie4194b732018-09-28 22:21:511379const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsName[] =
1380 "Omnibox UI Hide Steady-State URL Trivial Subdomains";
1381const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsDescription[] =
1382 "In the omnibox, hide trivial subdomains from steady state displayed URLs. "
Tommy C. Libef94ee02018-10-17 19:56:361383 "Hidden portions are restored during editing.";
1384
1385const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefName[] =
1386 "Omnibox UI Hide Steady-State URL Path, Query, and Ref";
1387const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefDescription[] =
1388 "In the omnibox, hide the path, query and ref from steady state displayed "
1389 "URLs. Hidden portions are restored during editing.";
Tommy C. Lid79d4402017-12-22 22:49:121390
Brett Wilsonecb80982017-07-12 20:34:511391const char kOmniboxUIMaxAutocompleteMatchesName[] =
1392 "Omnibox UI Max Autocomplete Matches";
1393
1394const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1395 "Changes the maximum number of autocomplete matches displayed in the "
1396 "Omnibox UI.";
1397
Justin Donnelly65c9e8b2017-10-01 05:15:011398const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL";
1399const char kOmniboxUISwapTitleAndUrlDescription[] =
1400 "In the omnibox dropdown, shows titles before URLs when both are "
1401 "available.";
1402
Troy Hildebrandtb32637ca2018-02-21 23:25:091403const char kOmniboxVoiceSearchAlwaysVisibleName[] =
1404 "Omnibox Voice Search Always Visible";
1405const char kOmniboxVoiceSearchAlwaysVisibleDescription[] =
1406 "Always displays voice search icon in focused omnibox as long as voice "
1407 "search is possible";
1408
Vadym Doroshenko6b8f64d2018-11-26 15:35:391409const char kOnlyNewPasswordFormParsingName[] =
1410 "Use only new password form parsing";
1411const char kOnlyNewPasswordFormParsingDescription[] =
1412 "The old password form parsing is disabled";
1413
Adrienne Walkerc87477e2018-06-06 22:28:211414const char kOopRasterizationName[] = "Out of process rasterization";
1415const char kOopRasterizationDescription[] =
1416 "Perform Ganesh raster in the GPU Process instead of the renderer. "
1417 "Must also enable GPU rasterization";
1418
Brett Wilsonecb80982017-07-12 20:34:511419const char kOriginTrialsName[] = "Origin Trials";
1420const char kOriginTrialsDescription[] =
1421 "Enables origin trials for controlling access to feature/API experiments.";
1422
Becca Hughes930d8cd2017-10-02 11:09:121423const char kOverflowIconsForMediaControlsName[] =
1424 "Icons on Media Controls Overflow Menu";
1425const char kOverflowIconsForMediaControlsDescription[] =
1426 "Displays icons on the overflow menu of the native media controls";
1427
Brett Wilsonecb80982017-07-12 20:34:511428const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1429const char kOverlayScrollbarsDescription[] =
1430 "Enable the experimental overlay scrollbars implementation. You must also "
1431 "enable threaded compositing to have the scrollbars animate.";
1432
chaopenge8aa016b2017-08-24 15:20:191433const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
1434 "Flash Overlay Scrollbars After Any Scroll Update";
1435const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
1436 "Flash Overlay Scrollbars After any scroll update happends in page. You"
1437 " must also enable Overlay Scrollbars.";
1438
chaopeng343678022017-08-24 18:45:001439const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
1440 "Flash Overlay Scrollbars When Mouse Enter";
1441const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
1442 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
1443 " enable Overlay Scrollbars.";
1444
Daniele Castagna74ddb9c2018-06-21 22:59:021445const char kOverlayStrategiesName[] = "Select HW overlay strategies";
1446const char kOverlayStrategiesDescription[] =
1447 "Select strategies used to promote quads to HW overlays.";
1448const char kOverlayStrategiesDefault[] = "Default";
1449const char kOverlayStrategiesNone[] = "None";
1450const char kOverlayStrategiesUnoccludedFullscreen[] =
1451 "Unoccluded fullscreen buffers (single-fullscreen)";
1452const char kOverlayStrategiesUnoccluded[] =
1453 "Unoccluded buffers (single-fullscreen,single-on-top)";
1454const char kOverlayStrategiesOccludedAndUnoccluded[] =
1455 "Occluded and unoccluded buffers "
1456 "(single-fullscreen,single-on-top,underlay)";
1457
Claudio Magni81326f92017-09-01 05:21:181458const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
1459const char kUseNewAcceptLanguageHeaderDescription[] =
1460 "Adds the base language code after other corresponding language+region "
1461 "codes. This ensures that users receive content in their preferred "
1462 "language.";
1463
Brett Wilsonecb80982017-07-12 20:34:511464const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1465const char kOverscrollHistoryNavigationDescription[] =
Mohsen Izadi88b392a2018-02-15 06:57:481466 "History navigation in response to horizontal overscroll.";
Brett Wilsonecb80982017-07-12 20:34:511467
1468const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
1469const char kOverscrollStartThresholdDescription[] =
1470 "Changes overscroll start threshold relative to the default value.";
1471const char kOverscrollStartThreshold133Percent[] = "133%";
1472const char kOverscrollStartThreshold166Percent[] = "166%";
1473const char kOverscrollStartThreshold200Percent[] = "200%";
1474
chaopenge2b6e5f2018-05-08 16:40:451475const char kTouchpadOverscrollHistoryNavigationName[] =
1476 "Overscroll history navigation on Touchpad";
1477const char kTouchpadOverscrollHistoryNavigationDescription[] =
1478 "Allows swipe left/right from touchpad change browser navigation.";
1479
Xing Liu5400a002017-09-15 21:48:291480const char kParallelDownloadingName[] = "Parallel downloading";
1481const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061482 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291483
Brett Wilsonecb80982017-07-12 20:34:511484const char kPassiveEventListenerDefaultName[] =
1485 "Passive Event Listener Override";
1486const char kPassiveEventListenerDefaultDescription[] =
1487 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1488 "haven't requested otherwise) to be treated as passive. This will break "
1489 "touch/wheel behavior on some websites but is useful for demonstrating the "
1490 "potential performance benefits of adopting passive event listeners.";
1491const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1492const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1493
1494const char kPassiveEventListenersDueToFlingName[] =
1495 "Touch Event Listeners Passive Default During Fling";
1496const char kPassiveEventListenersDueToFlingDescription[] =
1497 "Forces touchstart, and first touchmove per scroll event listeners during "
1498 "fling to be treated as passive.";
1499
1500const char kPassiveDocumentEventListenersName[] =
1501 "Document Level Event Listeners Passive Default";
1502const char kPassiveDocumentEventListenersDescription[] =
1503 "Forces touchstart, and touchmove event listeners on document level "
1504 "targets (which haven't requested otherwise) to be treated as passive.";
1505
Sahel Sharify7400e882018-08-13 17:13:211506const char kPassiveDocumentWheelEventListenersName[] =
1507 "Document Level Wheel Event Listeners Passive Default";
1508const char kPassiveDocumentWheelEventListenersDescription[] =
1509 "Forces wheel, and mousewheel event listeners on document level targets "
1510 "(which haven't requested otherwise) to be treated as passive.";
1511
Vaclav Brozekd8a3f542017-11-16 14:21:131512const char kPasswordImportName[] = "Password import";
1513const char kPasswordImportDescription[] =
1514 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511515
Friedrich Horschig03c91982018-01-25 14:21:281516const char kPasswordSearchMobileName[] = "Password search";
1517const char kPasswordSearchMobileDescription[] =
1518 "Search functionality in password settings.";
1519
Friedrich Horschige6c27742018-04-23 17:13:411520const char kPasswordsKeyboardAccessoryName[] =
1521 "Add password-related functions to keyboard accessory";
1522const char kPasswordsKeyboardAccessoryDescription[] =
1523 "Adds password generation button and toggle for the passwords bottom sheet "
1524 "to the keyboard accessory. Replaces password generation popups.";
1525
Christos Froussios6e060c42018-07-31 16:17:191526const char kPasswordsMigrateLinuxToLoginDBName[] =
1527 "Migrate passwords to \"Login Data\"";
1528const char kPasswordsMigrateLinuxToLoginDBDescription[] =
Christos Froussiose34c38a2018-09-04 14:27:591529 "Performs a one-off irreversible migration of passwords from the "
Christos Froussios6e060c42018-07-31 16:17:191530 "gnome-keyring or kwallet into the profile directory.";
1531
Rouslan Solomakhinded840112018-11-02 13:27:101532const char kPerMethodCanMakePaymentQuotaName[] =
1533 "Per-method canMakePayment() quota.";
1534const char kPerMethodCanMakePaymentQuotaDescription[] =
1535 "Allow calling canMakePayment() for different payment methods, as long as "
1536 "method-specific parameters remain unchanged.";
1537
Brett Wilsonecb80982017-07-12 20:34:511538const char kPinchScaleName[] = "Pinch scale";
1539const char kPinchScaleDescription[] =
1540 "Enables experimental support for scale using pinch.";
1541
Doug Arnett620ff542018-02-06 17:54:221542const char kPreviewsAllowedName[] = "Previews Allowed";
1543const char kPreviewsAllowedDescription[] =
1544 "Allows previews to be shown subject to specific preview types being "
1545 "enabled and the client experiencing specific triggering conditions. "
1546 "May be used as a kill-switch to turn off all potential preview types.";
1547
Brett Wilsonecb80982017-07-12 20:34:511548const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1549const char kPrintPdfAsImageDescription[] =
1550 "If enabled, an option to print PDF files as images will be available in "
1551 "print preview.";
1552
1553const char kPrintPreviewRegisterPromosName[] =
1554 "Print Preview Registration Promos";
1555const char kPrintPreviewRegisterPromosDescription[] =
1556 "Enable registering unregistered cloud printers from print preview.";
1557
1558const char kProtectSyncCredentialName[] = "Autofill sync credential";
1559const char kProtectSyncCredentialDescription[] =
1560 "How the password manager handles autofill for the sync credential.";
1561
1562const char kProtectSyncCredentialOnReauthName[] =
1563 "Autofill sync credential only for transactional reauth pages";
1564const char kProtectSyncCredentialOnReauthDescription[] =
1565 "How the password manager handles autofill for the sync credential only "
1566 "for transactional reauth pages.";
1567
Mohsen Izadi93faac12017-07-29 04:45:151568const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1569const char kPullToRefreshDescription[] =
1570 "Pull-to-refresh gesture in response to vertical overscroll.";
Mohsen Izadi8c59ba52018-04-12 18:52:011571const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only";
Mohsen Izadi93faac12017-07-29 04:45:151572
Troy Hildebrandt7228ad12018-02-23 21:18:241573const char kQueryInOmniboxName[] = "Query in Omnibox";
1574const char kQueryInOmniboxDescription[] =
1575 "Only display query terms in the omnibox when viewing a search results "
1576 "page.";
1577
Brett Wilsonecb80982017-07-12 20:34:511578const char kQuicName[] = "Experimental QUIC protocol";
1579const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1580
Emily Starke8878d52018-05-11 21:27:261581const char kRecurrentInterstitialName[] =
1582 "Show a message when the same SSL error recurs";
1583const char kRecurrentInterstitialDescription[] =
1584 "Enable a special message on the SSL certificate error page when the same "
1585 "SSL error occurs repeatedly.";
1586
Brett Wilsonecb80982017-07-12 20:34:511587const char kReducedReferrerGranularityName[] =
1588 "Reduce default 'referer' header granularity.";
1589const char kReducedReferrerGranularityDescription[] =
1590 "If a page hasn't set an explicit referrer policy, setting this flag will "
1591 "reduce the amount of information in the 'referer' header for cross-origin "
1592 "requests.";
1593
Lei Zhang0ca70ea2018-09-07 17:51:011594const char kRegionalLocalesAsDisplayUIName[] =
Claudio Magnie0a80bb2018-01-31 02:52:581595 "Allow regional locales as display UI";
Lei Zhang0ca70ea2018-09-07 17:51:011596const char kRegionalLocalesAsDisplayUIDescription[] =
Claudio Magnie0a80bb2018-01-31 02:52:581597 "This flag allows regional locales to be selected as display UI by the "
1598 "user in Language Settings. The actual locale of the system is derived "
1599 "from the user selection based on some simple fallback logic.";
1600
Christian Dullweber3cc579a22018-09-11 10:54:441601const char kRewriteLevelDBOnDeletionName[] =
1602 "Rewrite LevelDB instances after full deletions";
1603const char kRewriteLevelDBOnDeletionDescription[] =
1604 "Rewrite LevelDB instances to remove traces of deleted data from disk.";
1605
Yutaka Hirano4c0f2f5d452017-11-17 04:24:351606const char kRendererSideResourceSchedulerName[] =
1607 "Renderer side ResourceScheduler";
1608const char kRendererSideResourceSchedulerDescription[] =
1609 "Migrate some ResourceScheduler functionalities to renderer";
1610
Brett Wilsonecb80982017-07-12 20:34:511611const char kRequestTabletSiteName[] =
1612 "Request tablet site option in the settings menu";
1613const char kRequestTabletSiteDescription[] =
1614 "Allows the user to request tablet site. Web content is often optimized "
1615 "for tablet devices. When this option is selected the user agent string is "
1616 "changed to indicate a tablet device. Web content optimized for tablets is "
1617 "received there after for the current tab.";
1618
1619const char kResetAppListInstallStateName[] =
1620 "Reset the App Launcher install state on every restart.";
1621const char kResetAppListInstallStateDescription[] =
1622 "Reset the App Launcher install state on every restart. While this flag is "
1623 "set, Chrome will forget the launcher has been installed each time it "
1624 "starts. This is used for testing the App Launcher install flow.";
1625
Kinuko Yasuda33955082018-06-19 10:14:591626const char kResourceLoadSchedulerName[] = "Enable resource load throttling";
Brett Wilsonecb80982017-07-12 20:34:511627const char kResourceLoadSchedulerDescription[] =
Kinuko Yasuda33955082018-06-19 10:14:591628 "Uses the resource load scheduler in blink to throttle resource load "
1629 "requests.";
Brett Wilsonecb80982017-07-12 20:34:511630
Brett Wilsonecb80982017-07-12 20:34:511631const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1632const char kSafeSearchUrlReportingDescription[] =
1633 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1634
Alexei Filippov98772752018-01-27 08:26:521635const char kSamplingHeapProfilerName[] = "Native memory sampling profiler.";
1636const char kSamplingHeapProfilerDescription[] =
1637 "Enables native memory sampling profiler with specified rate in KiB. "
1638 "If sampling rate is not provided the default value of 128 KiB is used.";
1639
Brett Wilsonecb80982017-07-12 20:34:511640const char kSaveasMenuLabelExperimentName[] =
1641 "Switch 'Save as' menu labels to 'Download'";
1642const char kSaveasMenuLabelExperimentDescription[] =
1643 "Enables an experiment to switch menu labels that use 'Save as...' to "
1644 "'Download'.";
1645
1646const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1647const char kSavePageAsMhtmlDescription[] =
1648 "Enables saving pages as MHTML: a single text file containing HTML and all "
1649 "sub-resources.";
1650
Nate Chapin9638e7102017-09-20 22:11:011651const char kSavePreviousDocumentResourcesName[] =
1652 "Save Previous Document Resources";
1653const char kSavePreviousDocumentResourcesDescription[] =
1654 "Saves an old document's cached resources until the specified point in the "
1655 "next document's lifecycle.";
1656const char kSavePreviousDocumentResourcesNever[] =
1657 "Don't explicitly save resources";
1658const char kSavePreviousDocumentResourcesUntilOnDOMContentLoaded[] =
1659 "Save resources until onDOMContentLoaded completes";
1660const char kSavePreviousDocumentResourcesUntilOnLoad[] =
1661 "Save resources until onload completes";
1662
Jeffrey Cohene49cc59c2018-10-23 16:27:281663const char kSendTabToSelfName[] = "Send tab to self";
1664const char kSendTabToSelfDescription[] =
1665 "Allows users to push tabs from Android devices to other synced "
1666 "devices, in order to easily transition those tabs to the new device ";
1667
gogeraldd5061b592017-09-06 23:39:551668const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1669const char kServiceWorkerPaymentAppsDescription[] =
1670 "Enable Service Worker applications to integrate as payment apps";
1671
momohattfc352292018-08-29 05:12:361672const char kServiceWorkerImportedScriptUpdateCheckName[] =
1673 "Enable update check for service worker importScripts() resources";
1674const char kServiceWorkerImportedScriptUpdateCheckDescription[] =
1675 "Extend byte-for-byte update check for scripts that are imported by the "
1676 "service worker script via importScripts().";
1677
Lei Zhang0ca70ea2018-09-07 17:51:011678const char kServiceWorkerServicificationName[] = "Servicified service workers";
1679const char kServiceWorkerServicificationDescription[] =
Makoto Shimazu22078cc2018-02-21 03:01:441680 "Enable the servicified service workers. A servicified service worker can "
1681 "have direct connection from its clients, so that fetch events can be "
1682 "dispatched through the connection without hopping to the browser process.";
Makoto Shimazud9f333c2017-08-08 07:23:171683
Azeem Arshad3b1ef73122018-08-30 02:04:151684const char kServiceWorkerLongRunningMessageName[] =
1685 "Service worker long running message dispatch.";
1686const char kServiceWorkerLongRunningMessageDescription[] =
1687 "Enables long running message dispatch method for service workers. "
1688 "Messages sent with this method do not timeout, allowing the service "
1689 "worker to run indefinitely.";
1690
Brett Wilsonecb80982017-07-12 20:34:511691const char kSettingsWindowName[] = "Show settings in a window";
1692const char kSettingsWindowDescription[] =
1693 "Settings will be shown in a dedicated window instead of as a browser tab.";
1694
Manu Cornetd7ef7c52018-05-01 22:08:231695const char kShelfHoverPreviewsName[] =
1696 "Show previews of running apps when hovering over the shelf.";
1697const char kShelfHoverPreviewsDescription[] =
1698 "Shows previews of the open windows for a given running app when hovering "
1699 "over the shelf.";
1700
Naoki Fukino008a0022018-05-23 18:33:001701const char kShowAndroidFilesInFilesAppName[] =
1702 "Show Android files in Files app";
1703const char kShowAndroidFilesInFilesAppDescription[] =
1704 "Show Android files in Files app if Android is enabled on the device.";
1705
Brett Wilsonecb80982017-07-12 20:34:511706const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1707const char kShowAutofillSignaturesDescription[] =
Maxim Kolosovskiye66f8cb2018-03-23 10:25:381708 "Annotates web forms with Autofill signatures as HTML attributes. Also "
1709 "marks password fields suitable for password generation.";
Brett Wilsonecb80982017-07-12 20:34:511710
1711const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1712const char kShowAutofillTypePredictionsDescription[] =
1713 "Annotates web forms with Autofill field type predictions as placeholder "
1714 "text.";
1715
1716const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1717const char kShowOverdrawFeedbackDescription[] =
1718 "Visualize overdraw by color-coding elements based on if they have other "
1719 "elements drawn underneath.";
1720
Carlos IL89128732018-04-03 17:00:251721const char kSupervisedUserCommittedInterstitialsName[] =
1722 "Enable Supervised User Committed Interstitials";
1723const char kSupervisedUserCommittedInterstitialsDescription[] =
1724 "Use committed error pages instead of transient navigation entries for "
1725 "supervised user interstitials";
1726
yiyixbdfa9a0b2017-10-23 22:21:471727const char kEnableDrawOcclusionName[] = "Enable draw occlusion";
1728const char kEnableDrawOcclusionDescription[] =
1729 "Enable the system to use draw occlusion to skip draw quads when they are "
1730 "not shown on the screen.";
1731
Brett Wilsonecb80982017-07-12 20:34:511732const char kShowSavedCopyName[] = "Show Saved Copy Button";
1733const char kShowSavedCopyDescription[] =
1734 "When a page fails to load, if a stale copy of the page exists in the "
1735 "browser cache, a button will be presented to allow the user to load that "
1736 "stale copy. The primary enabling choice puts the button in the most "
1737 "salient position on the error page; the secondary enabling choice puts it "
1738 "secondary to the reload button.";
1739const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1740const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1741const char kDisableShowSavedCopy[] = "Disable";
1742
Brett Wilsonecb80982017-07-12 20:34:511743const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1744const char kSilentDebuggerExtensionApiDescription[] =
1745 "Do not show the infobar when an extension attaches to a page via "
1746 "chrome.debugger API. This is required to debug extension background "
1747 "pages.";
1748
Tsuyoshi Horo53895ba92018-03-14 04:06:481749const char kSignedHTTPExchangeName[] = "Signed HTTP Exchange";
1750const char kSignedHTTPExchangeDescription[] =
1751 "Enables Origin-Signed HTTP Exchanges support which is still in "
1752 "development. Warning: Enabling this may pose a security risk.";
1753
Brett Wilsonecb80982017-07-12 20:34:511754const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1755const char kSimpleCacheBackendDescription[] =
1756 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1757 "disk space allocation.";
1758
Christopher Thompson75ff845d2018-02-01 20:12:461759const char kSimplifyHttpsIndicatorName[] = "Simplify HTTPS indicator UI";
1760const char kSimplifyHttpsIndicatorDescription[] =
1761 "Change the UI treatment for HTTPS pages.";
1762
Brett Wilsonecb80982017-07-12 20:34:511763const char kSingleClickAutofillName[] = "Single-click autofill";
1764const char kSingleClickAutofillDescription[] =
1765 "Make autofill suggestions on initial mouse click on a form element.";
1766
Bret Sepulveda4f891da2018-07-16 19:10:301767const char kSingleTabMode[] = "Single-tab mode";
1768const char kSingleTabModeDescription[] =
1769 "Windows with a single tab receive a special, minimal visual treatment.";
1770
Lukasz Anforowicz738a88d2018-11-05 19:19:341771const char kSiteIsolationOptOutName[] = "Disable site isolation";
1772const char kSiteIsolationOptOutDescription[] =
1773 "Disables site isolation "
Nick Carter855bc492018-03-10 00:44:571774 "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that "
1775 "may be due to out-of-process iframes. Opt-out has no effect if site "
Lukasz Anforowicz42840422018-11-05 21:49:221776 "isolation is force-enabled using a command line switch or using an "
1777 "enterprise policy. "
1778 "Caution: this disables important mitigations for the Spectre CPU "
Nick Carter855bc492018-03-10 00:44:571779 "vulnerability affecting most computers.";
Lukasz Anforowicz738a88d2018-11-05 19:19:341780const char kSiteIsolationOptOutChoiceDefault[] = "Default";
1781const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)";
Brett Wilsonecb80982017-07-12 20:34:511782
Pattideade7972018-04-27 02:59:401783const char kSiteSettings[] = "Site settings";
Brett Wilsonecb80982017-07-12 20:34:511784const char kSiteSettingsDescription[] =
Pattideade7972018-04-27 02:59:401785 "Add the All Sites list to Site Settings.";
Brett Wilsonecb80982017-07-12 20:34:511786
Brett Wilsonecb80982017-07-12 20:34:511787const char kSmoothScrollingName[] = "Smooth Scrolling";
1788const char kSmoothScrollingDescription[] =
1789 "Animate smoothly when scrolling page content.";
1790
1791const char kSoftwareRasterizerName[] = "3D software rasterizer";
1792const char kSoftwareRasterizerDescription[] =
1793 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1794
Wei-Yin Chen (陳威尹)deff0802018-01-19 06:29:201795const char kSoleIntegrationName[] = "Sole integration";
1796const char kSoleIntegrationDescription[] =
1797 "Enable Sole integration for browser customization. You must restart "
1798 "the browser twice for changes to take effect.";
1799
Tommy Steimel77704be2017-08-28 22:14:401800const char kSoundContentSettingName[] = "Sound content setting";
1801const char kSoundContentSettingDescription[] =
1802 "Enable site-wide muting in content settings and tab strip context menu.";
1803
Justin Donnelly4e448cb2017-07-07 21:32:131804const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1805 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131806const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1807 "If enabled, when the user enters text in the omnibox that looks like a "
1808 "a query, any service worker associated with the search engine the query "
1809 "will be sent to is started early.";
1810
Brett Wilsonecb80982017-07-12 20:34:511811const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1812const char kSpellingFeedbackFieldTrialDescription[] =
1813 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401814
Carlos ILe5fa0a12018-08-03 16:08:321815const char kSSLCommittedInterstitialsName[] = "Committed Interstitials";
1816const char kSSLCommittedInterstitialsDescription[] =
1817 "Use committed error pages instead of transient navigation entries "
1818 "for SSL interstitial error pages (i.e. certificate errors).";
1819
Shubhie Panickerfaf082ed2018-01-03 04:49:151820const char kStopInBackgroundName[] = "Stop in background";
1821const char kStopInBackgroundDescription[] =
1822 "Stop scheduler task queues, in the background, "
Shubhie Panicker56c99a22018-03-21 00:22:281823 " after a grace period.";
Shubhie Panickerfaf082ed2018-01-03 04:49:151824
Shubhie Panicker56c99a22018-03-21 00:22:281825const char kStopNonTimersInBackgroundName[] =
1826 "Stop non-timer task queues background";
1827const char kStopNonTimersInBackgroundDescription[] =
1828 "Stop non-timer task queues, in the background, "
1829 "after a grace period.";
1830
Brett Wilsonecb80982017-07-12 20:34:511831const char kSuggestionsWithSubStringMatchName[] =
1832 "Substring matching for Autofill suggestions";
1833const char kSuggestionsWithSubStringMatchDescription[] =
1834 "Match Autofill suggestions based on substrings (token prefixes) rather "
1835 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341836
Marc Treibf65fb002018-08-03 11:17:161837const char kSyncStandaloneTransportName[] = "Allow Sync standalone transport";
1838const char kSyncStandaloneTransportDescription[] =
1839 "If enabled, allows Chrome Sync to start in standalone transport mode. In "
1840 "this mode, the Sync machinery can start without user opt-in, but only a "
1841 "subset of data types are supported.";
1842
Marc Treib4bd95e72018-08-30 06:30:581843const char kSyncSupportSecondaryAccountName[] =
1844 "Support secondary accounts for Sync standalone transport";
1845const char kSyncSupportSecondaryAccountDescription[] =
1846 "If enabled, allows Chrome Sync to start in standalone transport mode for "
1847 "a signed-in account that has not been chosen as Chrome's primary account. "
1848 "This only has an effect if sync-standalone-transport is also enabled.";
1849
Jan Krcal2ff23f7c2018-09-04 16:16:131850const char kSyncUSSAutofillProfileName[] = "Enable USS for autofill profile";
1851const char kSyncUSSAutofillProfileDescription[] =
1852 "Enables the new implementation of autofill profile sync";
1853
Jan Krcale3641b92018-08-10 17:53:311854const char kSyncUSSAutofillWalletDataName[] =
1855 "Enable USS for autofill wallet data";
1856const char kSyncUSSAutofillWalletDataDescription[] =
1857 "Enables the new implementation of autofill walet data sync";
1858
Brett Wilsonecb80982017-07-12 20:34:511859const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1860const char kSyncSandboxDescription[] =
1861 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341862
Joe Downing8cbbc192018-05-14 17:37:071863const char kSystemKeyboardLockName[] = "Experimental system keyboard lock";
1864const char kSystemKeyboardLockDescription[] =
1865 "Enables websites to use the keyboard.lock() API to intercept system "
1866 "keyboard shortcuts and have the events routed directly to the website "
1867 "when in fullscreen mode.";
1868
Christian Dullweberd0d96f02017-09-13 09:22:511869const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1870const char kTabsInCbdDescription[] =
1871 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1872
Brett Wilsonecb80982017-07-12 20:34:511873const char kTcpFastOpenName[] = "TCP Fast Open";
1874const char kTcpFastOpenDescription[] =
1875 "Enable the option to send extra authentication information in the initial "
1876 "SYN packet for a previously connected client, allowing faster data send "
1877 "start.";
vabr0215a8e2017-03-28 12:47:341878
Daniele Castagna0fead93e2018-01-10 20:40:291879const char kTintGlCompositedContentName[] = "Tint GL-composited content";
1880const char kTintGlCompositedContentDescription[] =
1881 "Tint contents composited using GL with a shade of red to help debug and "
1882 "study overlay support.";
1883
Peter Kastingd77428352018-10-26 15:20:251884const char kTopChromeTouchUiName[] = "Touch UI Layout";
1885const char kTopChromeTouchUiDescription[] =
1886 "Enables touch UI layout in the browser's top chrome.";
vabr0215a8e2017-03-28 12:47:341887
Brett Wilsonecb80982017-07-12 20:34:511888const char kThreadedScrollingName[] = "Threaded scrolling";
1889const char kThreadedScrollingDescription[] =
1890 "Threaded handling of scroll-related input events. Disabling this will "
1891 "force all such scroll events to be handled on the main thread. Note that "
1892 "this can dramatically hurt scrolling performance of most websites and is "
1893 "intended for testing purposes only.";
1894
Steven Valdez4584b2482017-07-14 01:11:571895const char kTLS13VariantName[] = "TLS 1.3";
1896const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1897const char kTLS13VariantDisabled[] = "Disabled";
Steven Valdez57d88652017-10-05 21:05:111898const char kTLS13VariantDeprecated[] = "Disabled (Deprecated Setting)";
Steven Valdez781157b2018-01-11 13:32:041899const char kTLS13VariantDraft23[] = "Enabled (Draft 23)";
Steven Valdezf27cb7f2018-08-21 18:34:331900const char kTLS13VariantFinal[] = "Enabled (Final)";
Steven Valdez4584b2482017-07-14 01:11:571901
Dominick Ng8896b1cd2017-10-17 23:24:361902const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement";
1903const char kTopSitesFromSiteEngagementDescription[] =
1904 "Enable Top Sites on the New Tab Page to be sourced and sorted using site "
1905 "engagement.";
1906
Brett Wilsonecb80982017-07-12 20:34:511907const char kTouchAdjustmentName[] = "Touch adjustment";
1908const char kTouchAdjustmentDescription[] =
1909 "Refine the position of a touch gesture in order to compensate for touches "
1910 "having poor resolution compared to a mouse.";
1911
Alex Newcomerb3d3c972018-05-03 14:59:401912const char kTouchableAppContextMenuName[] = "Touchable App Context Menu";
1913const char kTouchableAppContextMenuDescription[] =
1914 "Enable the touchable app context menu, which enlarges app context menus "
1915 "in the Launcher and Shelf to make room for new features.";
1916
Brett Wilsonecb80982017-07-12 20:34:511917const char kTouchDragDropName[] = "Touch initiated drag and drop";
1918const char kTouchDragDropDescription[] =
1919 "Touch drag and drop can be initiated through long press on a draggable "
1920 "element.";
1921
1922const char kTouchEventsName[] = "Touch Events API";
1923const char kTouchEventsDescription[] =
1924 "Force Touch Events API feature detection to always be enabled or "
1925 "disabled, or to be enabled when a touchscreen is detected on startup "
Ella Gea6a203c92017-10-26 19:09:291926 "(Automatic).";
Brett Wilsonecb80982017-07-12 20:34:511927
1928const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1929const char kTouchSelectionStrategyDescription[] =
1930 "Controls how text selection granularity changes when touch text selection "
1931 "handles are dragged. Non-default behavior is experimental.";
1932const char kTouchSelectionStrategyCharacter[] = "Character";
1933const char kTouchSelectionStrategyDirection[] = "Direction";
1934
1935const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1936const char kTraceUploadUrlDescription[] =
1937 "This is to be used in conjunction with the enable-navigation-tracing "
1938 "flag. Please select the label that best describes the recorded traces. "
1939 "This will choose the destination the traces are uploaded to. If you are "
1940 "not sure, select other. If left empty, no traces will be uploaded.";
1941const char kTraceUploadUrlChoiceOther[] = "Other";
1942const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1943const char kTraceUploadUrlChoiceQa[] = "QA";
1944const char kTraceUploadUrlChoiceTesting[] = "Testing";
1945
Anthony Vallee-Duboisc0a027d72018-08-30 17:11:561946const char kTranslateExplicitLanguageAskName[] =
1947 "Explicitly ask for language preferences";
1948const char kTranslateExplicitLanguageAskDescription[] =
1949 "Explicitly ask the user which languages they can read on Chrome startup, "
1950 "on the first run that doesn't already have a promo.";
1951
Anthony Vallee-Dubois265c5692018-06-01 15:57:141952const char kTranslateForceTriggerOnEnglishName[] =
1953 "Select which language model to use to trigger translate on English "
1954 "content";
1955const char kTranslateForceTriggerOnEnglishDescription[] =
1956 "Force the Translate Triggering on English pages experiment to be enabled "
1957 "with the selected language model active.";
1958
Philippe Hamel7fdaa452017-09-29 17:22:491959const char kTranslateRankerEnforcementName[] =
1960 "Enforce TranslateRanker decisions";
1961const char kTranslateRankerEnforcementDescription[] =
1962 "Improved Translate UI triggering logic. TranslateRanker decides whether "
1963 "or not Translate UI should be triggered in a given context.";
1964
Nicolas Ouellet-payeur9e5ff3d2018-06-20 16:07:161965const char kTranslateUIName[] = "Enable Translate";
1966const char kTranslateUIDescription[] =
1967 "Enable the Translate popup when visiting webpages in other languages.";
1968
Mustafa Emre Acerb3aa36a82018-05-22 21:44:051969const char kTreatInsecureOriginAsSecureName[] =
1970 "Insecure origins treated as secure";
1971const char kTreatInsecureOriginAsSecureDescription[] =
1972 "Treat given (insecure) origins as secure origins. Multiple origins can be "
1973 "supplied as a comma-separated list. For the definition of secure "
1974 "contexts, "
1975 "see https://w3c.github.io/webappsec-secure-contexts/";
1976
Brett Wilsonecb80982017-07-12 20:34:511977const char kTrySupportedChannelLayoutsName[] =
1978 "Causes audio output streams to check if channel layouts other than the "
1979 "default hardware layout are available.";
1980const char kTrySupportedChannelLayoutsDescription[] =
1981 "Causes audio output streams to check if channel layouts other than the "
1982 "default hardware layout are available. Turning this on will allow the OS "
1983 "to do stereo to surround expansion if supported. May expose third party "
1984 "driver bugs, use with caution.";
1985
David Roger6762a092018-01-31 15:55:071986const char kUnifiedConsentName[] = "Unified Consent";
1987const char kUnifiedConsentDescription[] =
1988 "Enables a unified management of user consent for privacy-related "
1989 "features. This includes new confirmation screens and improved settings "
1990 "pages.";
1991
Brett Wilsonecb80982017-07-12 20:34:511992const char kUiPartialSwapName[] = "Partial swap";
1993const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1994
Chris Pickel3a227ae62017-08-24 10:47:261995const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1996const char kUseDdljsonApiDescription[] =
1997 "Enables the new ddljson API to fetch Doodles for the NTP.";
1998
Becca Hughes59c05b42017-11-03 13:11:581999const char kUseModernMediaControlsName[] = "New Media Controls";
2000const char kUseModernMediaControlsDescription[] =
2001 "Enables the new style native media controls.";
2002
Wei Li790e7a8572018-03-23 01:31:552003const char kUsePdfCompositorServiceName[] =
2004 "Use PDF compositor service for printing";
2005const char kUsePdfCompositorServiceDescription[] =
2006 "When enabled, use PDF compositor service to composite and generate PDF "
2007 "files for printing. When site isolation is enabled, disabling this will "
2008 "not stop using PDF compositor service since the service is required for "
2009 "printing out-of-process iframes correctly.";
2010
Mustaq Ahmedc646c0a2017-10-20 20:08:302011const char kUserActivationV2Name[] = "User Activation v2";
2012const char kUserActivationV2Description[] =
2013 "Enable simple user activation for APIs that are otherwise controlled by "
2014 "user gesture tokens.";
2015
Brett Wilsonecb80982017-07-12 20:34:512016const char kUserConsentForExtensionScriptsName[] =
2017 "User consent for extension scripts";
2018const char kUserConsentForExtensionScriptsDescription[] =
2019 "Require user consent for an extension running a script on the page, if "
2020 "the extension requested permission to run on all urls.";
2021
2022const char kUseSuggestionsEvenIfFewFeatureName[] =
2023 "Disable minimum for server-side tile suggestions on NTP.";
2024const char kUseSuggestionsEvenIfFewFeatureDescription[] =
2025 "Request server-side suggestions even if there are only very few of them "
2026 "and use them for tiles on the New Tab Page.";
2027
2028const char kV8CacheOptionsName[] = "V8 caching mode.";
2029const char kV8CacheOptionsDescription[] =
2030 "Caching mode for the V8 JavaScript engine.";
Brett Wilsonecb80982017-07-12 20:34:512031const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
2032
Hitoshi Yoshida3e5db562017-09-11 02:31:082033const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts.";
2034const char kV8ContextSnapshotDescription[] =
2035 "Sets to use a snapshot to create V8 contexts in frame creation.";
2036
Michael Hablich896d52662017-10-23 15:59:572037const char kV8VmFutureName[] = "Future V8 VM features";
2038const char kV8VmFutureDescription[] =
2039 "This enables upcoming and experimental V8 VM features. "
2040 "This flag does not enable experimental JavaScript features.";
2041
Hannes Payer1130d5672018-06-05 07:37:312042const char kV8OrinocoName[] = "V8 Orinoco garbage collection features";
2043const char kV8OrinocoDescription[] =
2044 "This enables the V8 Orinoco garbage collection features.";
2045
Brett Wilsonecb80982017-07-12 20:34:512046const char kVideoFullscreenOrientationLockName[] =
2047 "Lock screen orientation when playing a video fullscreen.";
2048const char kVideoFullscreenOrientationLockDescription[] =
2049 "Lock the screen orientation of the device to match video orientation when "
2050 "a video goes fullscreen. Only on phones.";
2051
2052const char kVideoRotateToFullscreenName[] =
2053 "Rotate-to-fullscreen gesture for videos.";
2054const char kVideoRotateToFullscreenDescription[] =
2055 "Enter/exit fullscreen when device is rotated to/from the orientation of "
2056 "the video. Only on phones.";
2057
2058const char kWalletServiceUseSandboxName[] =
2059 "Use Google Payments sandbox servers";
2060const char kWalletServiceUseSandboxDescription[] =
2061 "For developers: use the sandbox service for Google Payments API calls.";
2062
Brett Wilsonecb80982017-07-12 20:34:512063const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
2064const char kWebglDraftExtensionsDescription[] =
2065 "Enabling this option allows web applications to access the WebGL "
2066 "Extensions that are still in draft status.";
2067
2068const char kWebMidiName[] = "Web MIDI API";
2069const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
2070
2071const char kWebPaymentsName[] = "Web Payments";
2072const char kWebPaymentsDescription[] =
2073 "Enable Web Payments API integration, a JavaScript API for merchants.";
2074
Mathieu Perreault51339b82017-07-20 17:06:052075const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
2076const char kWebPaymentsModifiersDescription[] =
2077 "If the website provides modifiers in the payment request, show the custom "
2078 "total for each payment instrument, update the shopping cart when "
2079 "instruments are switched, and send modified payment method specific data "
2080 "to the payment app.";
2081
Brett Wilsonecb80982017-07-12 20:34:512082const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
2083const char kWebrtcEchoCanceller3Description[] =
2084 "Experimental WebRTC echo canceller (AEC3).";
2085
Lei Zhang0a318af2018-11-14 02:19:462086const char kWebrtcH264WithOpenh264FfmpegName[] =
2087 "WebRTC H.264 software video encoder/decoder";
2088const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2089 "When enabled, an H.264 software video encoder/decoder pair is included. "
2090 "If a hardware encoder/decoder is also available it may be used instead of "
2091 "this encoder/decoder.";
2092
Qingsi Wangec2dbf942018-11-03 05:33:042093const char kWebrtcHideLocalIpsWithMdnsName[] =
2094 "Anonymize local IPs exposed by WebRTC.";
2095const char kWebrtcHideLocalIpsWithMdnsDecription[] =
2096 "Conceal local IP addresses with mDNS hostnames.";
2097
Alex Loikob5fb1282018-08-14 10:04:402098const char kWebrtcHybridAgcName[] = "WebRTC hybrid Agc2/Agc1.";
2099const char kWebrtcHybridAgcDescription[] =
2100 "WebRTC Agc2 digital adaptation with Agc1 analog adaptation.";
2101
Brett Wilsonecb80982017-07-12 20:34:512102const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
2103const char kWebrtcHwDecodingDescription[] =
2104 "Support in WebRTC for decoding video streams using platform hardware.";
2105
2106const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
2107const char kWebrtcHwEncodingDescription[] =
2108 "Support in WebRTC for encoding video streams using platform hardware.";
2109
2110const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
2111const char kWebrtcHwH264EncodingDescription[] =
2112 "Support in WebRTC for encoding h264 video streams using platform "
2113 "hardware.";
2114
2115const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
2116const char kWebrtcHwVP8EncodingDescription[] =
2117 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
2118
Niels Möller090866a2018-02-13 10:55:032119const char kWebrtcNewEncodeCpuLoadEstimatorName[] =
2120 "WebRTC new encode cpu load estimator";
2121const char kWebrtcNewEncodeCpuLoadEstimatorDescription[] =
2122 "Enable new estimator for the encoder cpu load, for evaluation and "
2123 "testing. Intended to improve accuracy when screen casting.";
2124
Elad Alon85e0d0be2018-06-26 10:38:372125const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging";
2126const char kWebRtcRemoteEventLogDescription[] =
2127 "Allow collecting WebRTC event logs and uploading them to Crash. "
2128 "Please note that, even if enabled, this will still require "
2129 "a policy to be set, for it to have an effect.";
2130
Brett Wilsonecb80982017-07-12 20:34:512131const char kWebrtcSrtpAesGcmName[] =
2132 "Negotiation with GCM cipher suites for SRTP in WebRTC";
2133const char kWebrtcSrtpAesGcmDescription[] =
2134 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
2135
Joachim Bauch4a41d7512017-08-23 14:24:232136const char kWebrtcSrtpEncryptedHeadersName[] =
2137 "Negotiation with encrypted header extensions for SRTP in WebRTC";
2138const char kWebrtcSrtpEncryptedHeadersDescription[] =
2139 "When enabled, WebRTC will try to negotiate encrypted header extensions "
2140 "for SRTP.";
2141
Brett Wilsonecb80982017-07-12 20:34:512142const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
2143const char kWebrtcStunOriginDescription[] =
2144 "When enabled, Stun messages generated by WebRTC will contain the Origin "
2145 "header.";
2146
Lei Zhang0a318af2018-11-14 02:19:462147const char kWebrtcUnifiedPlanByDefaultName[] =
2148 "WebRTC: Use Unified Plan SDP Semantics by default";
2149const char kWebrtcUnifiedPlanByDefaultDescription[] =
2150 "RTCPeerConnections generate and expect the standards compliant SDP format "
2151 "called \"Unified Plan\", unless \"Plan B\" is explicitly specified by "
2152 "passing {sdpSemantics:'plan-b'} to the RTCPeerConnection constructor. "
2153 "RTCRtpTransceiver support is also enabled in Unified Plan.";
2154
Adam Riceed63fc02018-06-20 05:57:462155const char kWebSocketHandshakeReuseConnectionName[] =
2156 "Enable WebSocket connection reuse for authentication";
2157const char kWebSocketHandshakeReuseConnectionDescription[] =
2158 "Permits the WebSocket handshake to keep the connection open after an "
2159 "authentication failure. The connection may be used for further requests "
2160 "to send credentials. This is sometimes needed for Windows authentication.";
2161
Brett Wilsonecb80982017-07-12 20:34:512162const char kWebvrName[] = "WebVR";
2163const char kWebvrDescription[] =
Anna Offenwanger00e6dd052018-04-05 02:12:012164 "Enables access to experimental Virtual Reality functionality via the "
2165 "WebVR 1.1 API. This feature will eventually be replaced by the WebXR "
2166 "Device API. Warning: Enabling this will also allow WebVR content on "
2167 "insecure origins to access these powerful APIs, and may pose a security "
Anna Offenwanger06dc6062018-04-12 07:56:222168 "risk. Controllers are exposed as Gamepads.";
Brett Wilsonecb80982017-07-12 20:34:512169
Brandon Jonese9d9b2b2017-12-11 22:20:112170const char kWebXrName[] = "WebXR Device API";
2171const char kWebXrDescription[] =
Anna Offenwanger00e6dd052018-04-05 02:12:012172 "Enables access to experimental APIs to interact with Virtual Reality (VR) "
2173 "and Augmented Reality (AR) devices.";
2174
2175const char kWebXrGamepadSupportName[] = "WebXR Gamepad Support";
2176const char kWebXrGamepadSupportDescription[] =
2177 "Expose VR controllers as Gamepads for use with the WebXR Device API. Each "
Anna Offenwanger06dc6062018-04-12 07:56:222178 "XRInputSource will have a corresponding Gamepad instance. Requires that "
2179 "WebXR Device API is also enabled.";
Ian Vollick7aaccf92018-04-07 23:10:432180
2181const char kWebXrHitTestName[] = "WebXR Hit Test";
2182const char kWebXrHitTestDescription[] =
2183 "Enables access to raycasting against estimated XR scene geometry.";
Brandon Jonese9d9b2b2017-12-11 22:20:112184
Anna Maria57ecf7592018-01-12 03:10:402185const char kWebXrOrientationSensorDeviceName[] =
2186 "WebXR orientation sensor device";
2187const char kWebXrOrientationSensorDeviceDescription[] =
2188 "When no VR platform device is available, expose a non-presenting device "
2189 "based on the device's orientation sensors, if available.";
2190
Brett Wilsonecb80982017-07-12 20:34:512191const char kZeroCopyName[] = "Zero-copy rasterizer";
2192const char kZeroCopyDescription[] =
2193 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:342194
Brett Wilsonff596952017-07-14 01:06:552195// Android ---------------------------------------------------------------------
2196
2197#if defined(OS_ANDROID)
2198
2199const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
2200const char kAiaFetchingDescription[] =
2201 "Enable intermediate certificate fetching when a server does not provide "
2202 "sufficient certificates to build a chain to a trusted root.";
2203
2204const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
2205const char kAccessibilityTabSwitcherDescription[] =
2206 "Enable the accessibility tab switcher for Android.";
2207
Pavel Shmakov798f4742018-11-15 21:27:382208const char kAllowRemoteContextForNotificationsName[] =
2209 "Allow using remote app context for notifications";
2210const char kAllowRemoteContextForNotificationsDescription[] =
2211 "Allow using Context#createPackageContext to work around issues with status"
2212 "bar icons on certain Android M devices.";
2213
Brett Wilsonff596952017-07-14 01:06:552214const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
2215const char kAndroidAutofillAccessibilityDescription[] =
2216 "Enable accessibility for autofill popup.";
2217
Khushalbb1963a2018-10-02 21:02:352218const char kAndroidSurfaceControl[] = "Use Android SurfaceControl";
2219const char kAndroidSurfaceControlDescription[] =
2220 "Use the SurfaceControl API for supporting overlays on Android";
2221
Anita Woodruffbfcd1e52018-07-16 12:00:512222const char kAppNotificationStatusMessagingName[] =
2223 "App notification status messaging";
2224const char kAppNotificationStatusMessagingDescription[] =
2225 "Enables messaging in site permissions UI informing user when "
2226 "notifications are disabled for the entire app.";
2227
Brett Wilsonff596952017-07-14 01:06:552228const char kAndroidPaymentAppsName[] = "Android payment apps";
2229const char kAndroidPaymentAppsDescription[] =
2230 "Enable third party Android apps to integrate as payment apps";
2231
Miriam Gershenson8cf1397222018-01-23 22:48:292232const char kAsyncDnsName[] = "Async DNS resolver";
2233const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
2234
Dan Harrington01229f82018-09-12 21:01:212235const char kAutoFetchOnNetErrorPageName[] = "AutoFetchOnNetErrorPage";
2236const char kAutoFetchOnNetErrorPageDescription[] =
2237 "When enabled, and navigation fails with an offline error, schedule a "
2238 "fetch of the page when online again.";
2239
Brett Wilsonff596952017-07-14 01:06:552240const char kAutofillAccessoryViewName[] =
2241 "Autofill suggestions as keyboard accessory view";
2242const char kAutofillAccessoryViewDescription[] =
2243 "Shows Autofill suggestions on top of the keyboard rather than in a "
2244 "dropdown.";
2245
2246const char kBackgroundLoaderForDownloadsName[] =
2247 "Enables background downloading of pages.";
2248const char kBackgroundLoaderForDownloadsDescription[] =
2249 "Enables downloading pages in the background in case page is not yet "
2250 "loaded in current tab.";
2251
Tibor Goldschwendt11b3cf22018-07-04 15:32:442252const char kBackgroundTaskComponentUpdateName[] =
2253 "Background Task Component Updates";
2254const char kBackgroundTaskComponentUpdateDescription[] =
2255 "Schedule component updates with BackgroundTaskScheduler";
2256
Michael van Ouwerkerkbda4ad82018-06-19 14:08:002257const char kCCTModuleName[] = "Chrome Custom Tabs Module";
2258const char kCCTModuleDescription[] =
2259 "Enables a dynamically loaded module in Chrome Custom Tabs, on Android.";
2260
Michael van Ouwerkerk29a7a292018-10-09 09:20:142261const char kCCTModuleCacheName[] = "Chrome Custom Tabs Module Cache";
2262const char kCCTModuleCacheDescription[] =
Michael van Ouwerkerka5df1ec2018-10-11 11:57:402263 "Enables a cache for dynamically loaded modules in Chrome Custom Tabs. "
2264 "Under mild memory pressure the cache may be retained for some time";
Michael van Ouwerkerk29a7a292018-10-09 09:20:142265
John Lin170c00b2018-11-21 15:44:252266const char kCCTModuleCustomHeaderName[] =
2267 "Chrome Custom Tabs Module Custom Header";
2268const char kCCTModuleCustomHeaderDescription[] =
2269 "Enables header customization by dynamically loaded modules in "
2270 "Chrome Custom Tabs.";
2271
barkerd84051482018-11-13 14:46:562272const char kCCTModulePostMessageName[] =
2273 "Chrome Custom Tabs Module postMessage API";
2274const char kCCTModulePostMessageDescription[] =
2275 "Enables the postMessage API exposed to dynamically loaded modules in "
2276 "Chrome Custom Tabs.";
2277
Matthew Jones1abcb132018-07-09 17:59:462278const char kChromeDuetName[] = "Chrome Duet";
2279const char kChromeDuetDescription[] =
2280 "Enables Chrome Duet, split toolbar Chrome Home, on Android.";
Theresa Wellingtonb9243b22017-12-01 16:23:052281
Megan Jablonskic61eb1b82017-10-02 18:03:062282const char kChromeMemexName[] = "Chrome Memex";
2283const char kChromeMemexDescription[] =
2284 "Enables Chrome Memex homepage on Android. Restricted to opted-in "
2285 "Googlers.";
2286
Sarath Singapati83aef1c2017-11-16 15:54:522287const char kClearOldBrowsingDataName[] = "Clear older browsing data";
2288const char kClearOldBrowsingDataDescription[] =
2289 "Enables clearing of browsing data which is older than a given time "
2290 "period.";
2291
Brett Wilsonff596952017-07-14 01:06:552292const char kContentSuggestionsCategoryOrderName[] =
2293 "Default content suggestions category order (e.g. on NTP)";
2294const char kContentSuggestionsCategoryOrderDescription[] =
2295 "Set default order of content suggestion categories (e.g. on the NTP).";
2296
2297const char kContentSuggestionsCategoryRankerName[] =
2298 "Content suggestions category ranker (e.g. on NTP)";
2299const char kContentSuggestionsCategoryRankerDescription[] =
2300 "Set category ranker to order categories of content suggestions (e.g. on "
2301 "the NTP).";
2302
Vitalii Iarkof52ff802017-09-14 12:34:242303const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
2304const char kContentSuggestionsDebugLogDescription[] =
2305 "Enable content suggestions debug log accessible through "
2306 "snippets-internals.";
2307
Donn Denman8e58ead2017-11-04 01:44:012308const char kContextualSearchMlTapSuppressionName[] =
2309 "Contextual Search ML tap suppression";
2310const char kContextualSearchMlTapSuppressionDescription[] =
2311 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:022312 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
2313 "enabled!";
Brett Wilsonff596952017-07-14 01:06:552314
2315const char kContextualSearchName[] = "Contextual Search";
2316const char kContextualSearchDescription[] =
2317 "Whether or not Contextual Search is enabled.";
2318
Donn Denman59729812018-01-09 01:27:022319const char kContextualSearchRankerQueryName[] =
2320 "Contextual Search Ranker prediction";
2321const char kContextualSearchRankerQueryDescription[] =
2322 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
2323
2324const char kContextualSearchSecondTapName[] =
2325 "Contextual Search second tap triggering";
2326const char kContextualSearchSecondTapDescription[] =
2327 "Enables triggering on a second tap gesture even when Ranker would "
2328 "normally suppress that tap.";
2329
Donn Denmane9b5b7fb2018-07-24 22:19:492330const char kContextualSearchUnityIntegrationName[] =
2331 "Contextual Search integration with Unified Consent";
2332const char kContextualSearchUnityIntegrationDescription[] =
2333 "Enables integration of Tap to Search with Unified Consent.";
2334
Lei Zhang0a318af2018-11-14 02:19:462335const char kDisplayCutoutAPIName[] =
2336 "Enable support for the Display Cutout API";
2337const char kDisplayCutoutAPIDescription[] =
2338 "Enables developers to support devices that have a display cutout.";
Cathy Li2fb32bf82018-06-06 18:55:402339
Dmitry Skiba9c3efa72017-07-20 22:01:142340const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
2341const char kDontPrefetchLibrariesDescription[] =
2342 "Don't prefetch libraries after loading.";
2343
Joy Ming189b0cc2017-12-08 19:42:432344const char kDownloadsLocationChangeName[] = "Enable downloads location change";
2345const char kDownloadsLocationChangeDescription[] =
2346 "Enable changing default downloads storage location on Android.";
2347
Shakti Sahu32b2ee102018-05-17 00:04:462348const char kDownloadProgressInfoBarName[] = "Enable download progress infobar";
2349const char kDownloadProgressInfoBarDescription[] =
2350 "Enables an infobar notifying users about status of current downloads.";
2351
Shakti Sahu9ec8cfd2018-07-17 13:29:292352const char kDownloadHomeV2Name[] = "Enable download home v2";
2353const char kDownloadHomeV2Description[] =
2354 "Enables the new UI for download home";
2355
Brett Wilsonff596952017-07-14 01:06:552356const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
2357const char kEnableAndroidPayIntegrationV1Description[] =
2358 "Enable integration with Android Pay using the first version of the API";
2359
2360const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
2361const char kEnableAndroidPayIntegrationV2Description[] =
2362 "Enable integration with Android Pay using the second version of the API";
2363
Fabio Tirelo918089a2018-10-22 21:24:082364const char kAutofillManualFallbackAndroidName[] =
2365 "Enable Autofill manual fallback for Addresses and Payments (Android)";
2366const char kAutofillManualFallbackAndroidDescription[] =
2367 "If enabled, adds toggle for addresses and payments bottom sheet to the "
2368 "keyboard accessory.";
2369
Fabio Tirelo315e65922018-09-05 03:35:492370const char kEnableAutofillRefreshStyleName[] =
2371 "Enable Autofill refresh style (Android)";
2372const char kEnableAutofillRefreshStyleDescription[] =
2373 "Enable modernized style for Autofill on Android";
2374
Vitalii Iarkof4ed32d2017-09-26 13:15:532375const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
Brett Wilsonff596952017-07-14 01:06:552376const char kEnableAndroidSpellcheckerDescription[] =
2377 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:552378
Lei Tianbd5a3bf2018-02-28 19:01:162379const char kEnableCommandLineOnNonRootedName[] =
2380 "Enable command line on non-rooted devices";
2381const char kEnableCommandLineOnNoRootedDescription[] =
2382 "Enable reading command line file on non-rooted devices (DANGEROUS).";
2383
Vitalii Iarkof4ed32d2017-09-26 13:15:532384const char kEnableContentSuggestionsNewFaviconServerName[] =
2385 "Get favicons for content suggestions from a new server.";
2386const char kEnableContentSuggestionsNewFaviconServerDescription[] =
2387 "If enabled, the content suggestions (on the NTP) will get favicons from a "
2388 "new favicon server.";
Brett Wilsonff596952017-07-14 01:06:552389
Vitalii Iarkof4ed32d2017-09-26 13:15:532390const char kEnableContentSuggestionsThumbnailDominantColorName[] =
2391 "Use content suggestions thumbnail dominant color.";
2392const char kEnableContentSuggestionsThumbnailDominantColorDescription[] =
2393 "Use content suggestions thumbnail dominant color as a placeholder before "
2394 "the real thumbnail is fetched (requires Chrome Home).";
2395
Brett Wilsonff596952017-07-14 01:06:552396const char kEnableCustomContextMenuName[] = "Enable custom context menu";
2397const char kEnableCustomContextMenuDescription[] =
2398 "Enables a new context menu when a link, image, or video is pressed within "
2399 "Chrome.";
2400
2401const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
2402const char kEnableCustomFeedbackUiDescription[] =
2403 "Enables a custom feedback UI when submitting feedback through Google "
2404 "Feedback. Works with Google Play Services v10.2+";
2405
Becca Hughes6d73bac542018-06-18 20:38:502406const char kEnableMediaControlsExpandGestureName[] =
2407 "Enable Media Controls Expand Gesture";
2408const char kEnableMediaControlsExpandGestureDescription[] =
2409 "Enables a gesture to be used on the media controls to extend the video "
2410 "into the Display Cutout area.";
2411
Brett Wilsonff596952017-07-14 01:06:552412const char kEnableOmniboxClipboardProviderName[] =
2413 "Omnibox clipboard URL suggestions";
2414const char kEnableOmniboxClipboardProviderDescription[] =
2415 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
2416 "focus in the omnibox.";
2417
Brett Wilsonff596952017-07-14 01:06:552418const char kEnableNtpAssetDownloadSuggestionsName[] =
2419 "Show asset downloads on the New Tab page";
2420const char kEnableNtpAssetDownloadSuggestionsDescription[] =
2421 "If enabled, the list of content suggestions on the New Tab page will "
2422 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
2423 "later use.";
2424
2425const char kEnableNtpBookmarkSuggestionsName[] =
2426 "Show recently visited bookmarks on the New Tab page";
2427const char kEnableNtpBookmarkSuggestionsDescription[] =
2428 "If enabled, the list of content suggestions on the New Tab page will "
2429 "contain recently visited bookmarks.";
2430
Brett Wilsonff596952017-07-14 01:06:552431const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
2432 "Show offline page downloads on the New Tab page";
2433const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
2434 "If enabled, the list of content suggestions on the New Tab page will "
2435 "contain pages that the user downloaded for later use.";
2436
2437const char kEnableNtpRemoteSuggestionsName[] =
2438 "Show server-side suggestions on the New Tab page";
2439const char kEnableNtpRemoteSuggestionsDescription[] =
2440 "If enabled, the list of content suggestions on the New Tab page will "
2441 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
2442 "allows to override the source used to retrieve these server-side "
2443 "suggestions.";
2444
2445const char kEnableNtpSnippetsVisibilityName[] =
2446 "Make New Tab Page Snippets more visible.";
2447const char kEnableNtpSnippetsVisibilityDescription[] =
2448 "If enabled, the NTP snippets will become more discoverable with a larger "
2449 "portion of the first card above the fold.";
2450
2451const char kEnableNtpSuggestionsNotificationsName[] =
2452 "Notify about new content suggestions available at the New Tab page";
2453const char kEnableNtpSuggestionsNotificationsDescription[] =
2454 "If enabled, notifications will inform about new content suggestions on "
2455 "the New Tab page.";
2456
Brett Wilsonff596952017-07-14 01:06:552457const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
2458const char kEnableOfflinePreviewsDescription[] =
2459 "Enable showing offline page previews on slow networks.";
2460
2461const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
2462const char kEnableOskOverscrollDescription[] =
2463 "Enable OSK overscroll support. With this flag on, the OSK will only "
2464 "resize the visual viewport.";
2465
2466const char kEnableSpecialLocaleName[] =
2467 "Enable custom logic for special locales.";
2468const char kEnableSpecialLocaleDescription[] =
2469 "Enable custom logic for special locales. In this mode, Chrome might "
2470 "behave differently in some locales.";
2471
Brett Wilsonff596952017-07-14 01:06:552472const char kEnableWebNfcName[] = "WebNFC";
2473const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
2474
gogeraldf3cbb422017-07-26 14:37:122475const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
2476 "Enable Web Payments method section order V2.";
2477const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
2478 "Enable this option to display payment method section above address "
2479 "section instead of below it.";
2480
Donn Denmanffaeaa32018-10-12 17:37:532481const char kEphemeralTabName[] = "An Ephemeral Tab in an Overlay Panel";
2482const char kEphemeralTabDescription[] =
2483 "Enable a 'sneak peek' at a linked page in an overlay.";
2484
Lei Zhang0a318af2018-11-14 02:19:462485const char kExploreSitesName[] = "Explore websites";
2486const char kExploreSitesDescription[] =
2487 "Enables portal from new tab page to explore websites.";
2488
Jinsuk Kim459ee142018-11-28 06:27:312489const char kGestureNavigationName[] = "History navigation with gesture";
2490const char kGestureNavigationDescription[] =
2491 "Enable history navigation with horizontal gesture.";
2492
Raymes Khoury582b43132017-12-12 23:54:302493const char kGrantNotificationsToDSEName[] =
2494 "Grant notifications to the Default Search Engine";
2495const char kGrantNotificationsToDSENameDescription[] =
2496 "Automatically grant the notifications permission to the Default Search "
2497 "Engine";
2498
Daniel Parke74fcf862018-03-27 18:05:452499const char kHomePageButtonName[] = "Force Enable Home Page Button";
Daniel Park990d0992018-05-18 22:12:512500const char kHomePageButtonDescription[] = "Displays a home button if enabled.";
Daniel Parke74fcf862018-03-27 18:05:452501
Yafei Duanbb7663f32018-07-17 01:33:152502const char kHomepageTileName[] =
2503 "Enable Homepage tile shown in Suggested Tiles";
2504const char kHomepageTileDescription[] =
2505 "When NTPButton is enabled, the first tile of the Suggested Tiles will be "
2506 "used for homepage. It will not have an effect when NTPButton is disabled.";
2507
Jian Li4b252642018-07-23 19:49:072508const char kIncognitoStringsName[] = "Alternate incognito strings";
2509const char kIncognitoStringsDescription[] =
2510 "Show alternate incognito strings if enabled.";
2511
Theresa920e0ed2018-03-07 18:12:442512const char kInterestFeedContentSuggestionsDescription[] =
Yafei Duanbb7663f32018-07-17 01:33:152513 "Use the interest feed to render content suggestions. Currently "
2514 "content "
Theresa920e0ed2018-03-07 18:12:442515 "suggestions are shown on the New Tab Page.";
2516const char kInterestFeedContentSuggestionsName[] =
2517 "Interest Feed Content Suggestions";
2518
Brett Wilsonff596952017-07-14 01:06:552519const char kKeepPrefetchedContentSuggestionsName[] =
2520 "Keep prefetched content suggestions";
2521const char kKeepPrefetchedContentSuggestionsDescription[] =
2522 "If enabled, some of prefetched content suggestions are not replaced by "
2523 "the new fetched suggestions.";
2524
Leo Zhang051b75482017-12-20 03:28:302525const char kLanguagesPreferenceName[] = "Language Settings";
2526const char kLanguagesPreferenceDescription[] =
2527 "Enable this option for Language Settings feature on Android.";
2528
Brett Wilsonff596952017-07-14 01:06:552529const char kLsdPermissionPromptName[] =
2530 "Location Settings Dialog Permission Prompt";
2531const char kLsdPermissionPromptDescription[] =
2532 "Whether to use the Google Play Services Location Settings Dialog "
2533 "permission dialog.";
2534
Amirhossein Simjour97b4154f2018-02-20 03:49:592535const char kModalPermissionDialogViewName[] = "Modal Permission Dialog";
2536const char kModalPermissionDialogViewDescription[] =
2537 "Enable this option to use ModalDialogManager for permission Dialogs.";
2538
Brett Wilsonff596952017-07-14 01:06:552539const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
2540const char kMediaScreenCaptureDescription[] =
2541 "Enable this option for experimental ScreenCapture feature on Android.";
2542
2543const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
2544const char kModalPermissionPromptsDescription[] =
2545 "Whether to use permission dialogs in place of permission infobars.";
2546
Finnur Thorarinssonc1488fc62018-07-09 19:21:572547const char kNewContactsPickerName[] = "Enable new contacts picker";
2548const char kNewContactsPickerDescription[] =
2549 "Activates the new picker for selecting contacts.";
2550
Dan Harrington541db9e2018-07-30 18:36:302551const char kNewNetErrorPageUIName[] = "Enable new UI for net-error page";
2552const char kNewNetErrorPageUIDescription[] =
2553 "Selects which new UI experience to show on the net-error (Dino) page";
2554
Brett Wilsonff596952017-07-14 01:06:552555const char kNewPhotoPickerName[] = "Enable new Photopicker";
2556const char kNewPhotoPickerDescription[] =
2557 "Activates the new picker for selecting photos.";
2558
2559const char kNoCreditCardAbort[] = "No Credit Card Abort";
2560const char kNoCreditCardAbortDescription[] =
2561 "Whether or not the No Credit Card Abort is enabled.";
2562
Daniel Park990d0992018-05-18 22:12:512563const char kNtpButtonName[] = "Enable NTP Button";
2564const char kNtpButtonDescription[] =
2565 "Displays a New Tab Page button in the toolbar if enabled.";
2566
Brett Wilsonff596952017-07-14 01:06:552567const char kOfflineBookmarksName[] = "Enable offline bookmarks";
2568const char kOfflineBookmarksDescription[] =
2569 "Enable saving bookmarked pages for offline viewing.";
2570
Jian Liade82832018-09-06 22:31:412571const char kOfflineIndicatorAlwaysHttpProbeName[] = "Always http probe";
2572const char kOfflineIndicatorAlwaysHttpProbeDescription[] =
2573 "Always do http probe to detect network connectivity for offline indicator "
2574 "as opposed to just taking the connection state from the system."
2575 "Used for testing.";
2576
2577const char kOfflineIndicatorChoiceName[] = "Offline indicator choices";
2578const char kOfflineIndicatorChoiceDescription[] =
2579 "Show an offline indicator while offline.";
Jian Li1413ebf2018-06-14 20:46:322580
Brett Wilsonff596952017-07-14 01:06:552581const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2582const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2583
2584const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
2585const char kOfflinePagesCtV2Description[] =
2586 "V2 features include attributing pages to the app that initiated the "
2587 "custom tabs, and being able to query for pages by page attribution.";
2588
Cathy Li7311d792018-04-05 00:34:162589const char kOfflinePagesCTSuppressNotificationsName[] =
2590 "Disable download complete notification for whitelisted CCT apps.";
2591const char kOfflinePagesCTSuppressNotificationsDescription[] =
2592 "Disable download complete notification for page downloads originating "
2593 "from a CCT app whitelisted to show their own download complete "
2594 "notification.";
2595
Candice Sy74fa7a352018-03-30 23:46:492596const char kOfflinePagesDescriptiveFailStatusName[] =
2597 "Enables descriptive failed download status text.";
2598const char kOfflinePagesDescriptiveFailStatusDescription[] =
2599 "Enables failed download status text in notifications and Downloads Home "
2600 "to state the reason the request failed if the failure is actionable.";
2601
2602const char kOfflinePagesDescriptivePendingStatusName[] =
2603 "Enables descriptive pending download status text.";
2604const char kOfflinePagesDescriptivePendingStatusDescription[] =
2605 "Enables pending download status text in notifications and Downloads Home "
2606 "to state the reason the request is pending.";
2607
2608const char kOfflinePagesInDownloadHomeOpenInCctName[] =
2609 "Enables offline pages in the downloads home to be opened in CCT.";
2610const char kOfflinePagesInDownloadHomeOpenInCctDescription[] =
2611 "When enabled offline pages launched from the Downloads Home will be "
2612 "opened in Chrome Custom Tabs (CCT) instead of regular tabs.";
2613
Carlos Knippschild09272ecd2017-12-09 03:29:362614const char kOfflinePagesLimitlessPrefetchingName[] =
2615 "Removes resource usage limits for the prefetching of offline pages.";
2616const char kOfflinePagesLimitlessPrefetchingDescription[] =
2617 "Allows the prefetching of suggested offline pages to ignore resource "
2618 "usage limits. This allows it to completely ignore data usage limitations "
2619 "and allows downloads to happen with any kind of connection.";
2620
Brett Wilsonff596952017-07-14 01:06:552621const char kOfflinePagesLoadSignalCollectingName[] =
2622 "Enables collecting load timing data for offline page snapshots.";
2623const char kOfflinePagesLoadSignalCollectingDescription[] =
2624 "Enables loading completeness data collection while writing an offline "
2625 "page. This data is collected in the snapshotted offline page to allow "
2626 "data analysis to improve deciding when to make the offline snapshot.";
2627
2628const char kOfflinePagesPrefetchingName[] =
2629 "Enables suggested offline pages to be prefetched.";
2630const char kOfflinePagesPrefetchingDescription[] =
2631 "Enables suggested offline pages to be prefetched, so useful content is "
2632 "available while offline.";
2633
Pete Williamson7845dff2017-09-20 11:06:192634const char kOfflinePagesResourceBasedSnapshotName[] =
2635 "Enables offline page snapshots to be based on percentage of page loaded.";
2636const char kOfflinePagesResourceBasedSnapshotDescription[] =
2637 "Enables offline page snapshots to use a resource percentage based "
2638 "approach for determining when the page is loaded as opposed to a time "
2639 "based approach";
2640
Collin Baker17f92a52017-07-19 21:41:252641const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
2642const char kOfflinePagesRenovationsDescription[] =
2643 "Enables offline page renovations which correct issues with dynamic "
2644 "content that occur when offlining pages that use JavaScript.";
2645
Brett Wilsonff596952017-07-14 01:06:552646const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2647const char kOfflinePagesSharingDescription[] =
2648 "Enables the saved offline pages to be shared via other applications.";
2649
Yafei Duan36b4b5b2018-08-07 00:40:032650const char kOfflinePagesLivePageSharingName[] =
2651 "Enables live page sharing of offline pages";
2652const char kOfflinePagesLivePageSharingDescription[] =
2653 "Enables to share current loaded page as offline page by saving as MHTML "
2654 "first.";
2655
Cathy Lie0d88762018-04-12 08:03:012656const char kOfflinePagesShowAlternateDinoPageName[] =
2657 "Enable alternate dino page with more user capabilities.";
2658const char kOfflinePagesShowAlternateDinoPageDescription[] =
2659 "Enables the dino page to show more buttons and offer existing offline "
2660 "content.";
2661
Brett Wilsonff596952017-07-14 01:06:552662const char kOfflinePagesSvelteConcurrentLoadingName[] =
2663 "Enables concurrent background loading on svelte.";
2664const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2665 "Enables concurrent background loading (or downloading) of pages on "
2666 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2667 "happen when the svelte device is idle.";
2668
2669const char kOffliningRecentPagesName[] =
2670 "Enable offlining of recently visited pages";
2671const char kOffliningRecentPagesDescription[] =
2672 "Enable storing recently visited pages locally for offline use. Requires "
2673 "Offline Pages to be enabled.";
2674
Lei Zhang2eca9082017-10-17 20:42:502675const char kPayWithGoogleV1Name[] = "Pay with Google v1";
2676const char kPayWithGoogleV1Description[] =
Brett Wilsonff596952017-07-14 01:06:552677 "Enable Pay with Google integration into Web Payments with API version "
2678 "'1'.";
2679
Matthew Jonesa88b95852017-11-08 23:13:502680const char kProgressBarThrottleName[] = "Android progress update throttling.";
2681const char kProgressBarThrottleDescription[] =
2682 "Limit the maximum progress update to make progress appear smoother.";
2683
Brett Wilsonff596952017-07-14 01:06:552684const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
2685const char kPullToRefreshEffectDescription[] =
2686 "Page reloads triggered by vertically overscrolling content.";
2687
Piotr Swigon7c296ef2017-08-29 04:32:002688const char kPwaImprovedSplashScreenName[] =
2689 "Improved Splash Screen for standalone PWAs";
2690const char kPwaImprovedSplashScreenDescription[] =
2691 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
2692 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:492693const char kPwaPersistentNotificationName[] =
2694 "Persistent notification in standalone PWA";
2695const char kPwaPersistentNotificationDescription[] =
2696 "Enables a persistent Android notification for standalone PWAs";
2697
Brett Wilsonff596952017-07-14 01:06:552698const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
2699const char kReaderModeHeuristicsDescription[] =
2700 "Determines what pages the Reader Mode infobar is shown on.";
2701const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
2702const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
2703const char kReaderModeHeuristicsAllArticles[] = "All articles";
2704const char kReaderModeHeuristicsAlwaysOff[] = "Never";
2705const char kReaderModeHeuristicsAlwaysOn[] = "Always";
2706
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:182707const char kReaderModeInCCTName[] = "Reader Mode in CCT";
2708const char kReaderModeInCCTDescription[] =
2709 "Open Reader Mode in Chrome Custom Tabs.";
2710
Varun Khaneja80712a82018-10-12 23:34:592711const char kSafeBrowsingUseLocalBlacklistsV2Name[] =
2712 "Use local Safe Browsing blacklists";
2713const char kSafeBrowsingUseLocalBlacklistsV2Description[] =
2714 "If enabled, maintain a copy of Safe Browsing blacklists in the browser "
2715 "process to check the Safe Browsing reputation of URLs without calling "
2716 "into GmsCore for every URL.";
2717
Brett Wilsonff596952017-07-14 01:06:552718const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2719const char kSetMarketUrlForTestingDescription[] =
2720 "When enabled, sets the market URL for use in testing the update menu "
2721 "item.";
2722
2723const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
2724const char kSpannableInlineAutocompleteDescription[] =
2725 "A new type of inline autocomplete for the omnibox that works with "
2726 "keyboards that compose text.";
2727
Theresaeea05a12018-05-09 21:01:592728const char kSiteExplorationUiName[] = "Site Exploration UI";
2729const char kSiteExplorationUiDescription[] =
2730 "Show site suggestions in the Exploration UI";
2731
Lei Zhang0a318af2018-11-14 02:19:462732const char kStrictSiteIsolationName[] = "Strict site isolation";
2733const char kStrictSiteIsolationDescription[] =
2734 "Security mode that enables site isolation for all sites (SitePerProcess). "
2735 "In this mode, each renderer process will contain pages from at most one "
2736 "site, using out-of-process iframes when needed. "
2737 "Check chrome://process-internals to see the current isolation mode. "
2738 "Setting this flag to 'Enabled' turns on site isolation regardless of the "
2739 "default. Here, 'Disabled' is a legacy value that actually means "
2740 "'Default,' in which case site isolation may be already enabled based on "
2741 "platform, enterprise policy, or field trial. See also "
2742 "#site-isolation-trial-opt-out for how to disable site isolation for "
2743 "testing.";
2744
Anthony Vallee-Dubois4623e1b2018-10-11 22:09:182745const char kTranslateAndroidManualTriggerName[] =
2746 "Enable manual translate trigger";
2747const char kTranslateAndroidManualTriggerDescription[] =
2748 "Show a menu item in the main menu that triggers page translation.";
2749
Brett Wilsonff596952017-07-14 01:06:552750const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2751const char kUpdateMenuBadgeDescription[] =
Tommy Nyquist3c02e592018-10-18 23:36:442752 "When enabled, a badge will be shown on the app menu button if the update "
2753 "type is Update Available or Unsupported OS Version.";
Brett Wilsonff596952017-07-14 01:06:552754
2755const char kUpdateMenuItemCustomSummaryDescription[] =
2756 "When this flag and the force show update menu item flag are enabled, a "
2757 "custom summary string will be displayed below the update menu item.";
2758const char kUpdateMenuItemCustomSummaryName[] =
2759 "Update menu item custom summary";
2760
Tommy Nyquist3c02e592018-10-18 23:36:442761const char kUpdateMenuTypeName[] =
2762 "Forces the update menu type to a specific type";
2763const char kUpdateMenuTypeDescription[] =
2764 "When set, forces the update type to be a specific one, which impacts "
2765 "the app menu badge and menu item for updates.";
2766const char kUpdateMenuTypeNone[] = "None";
2767const char kUpdateMenuTypeUpdateAvailable[] = "Update Available";
2768const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version";
Brett Wilsonff596952017-07-14 01:06:552769
Marc Treib93af46a2017-08-23 13:30:002770const char kThirdPartyDoodlesName[] =
2771 "Enable Doodles for third-party search engines";
2772const char kThirdPartyDoodlesDescription[] =
2773 "Enables fetching and displaying Doodles on the NTP for third-party search "
2774 "engines.";
2775
Klaus Weidneraaf697f2018-01-18 20:07:362776const char kWebXrRenderPathName[] = "WebXR presentation render path";
2777const char kWebXrRenderPathDescription[] =
2778 "Render path to use for WebXR presentation (including WebVR)";
2779const char kWebXrRenderPathChoiceClientWaitDescription[] =
2780 "ClientWait (Baseline)";
2781const char kWebXrRenderPathChoiceGpuFenceDescription[] =
2782 "GpuFence (Android N+)";
Klaus Weidnerd25dff42018-04-12 06:56:072783const char kWebXrRenderPathChoiceSharedBufferDescription[] =
2784 "SharedBuffer (Android O+)";
Klaus Weidneraaf697f2018-01-18 20:07:362785
Brett Wilson7b44537e2017-08-18 01:38:282786// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552787
Brett Wilson7b44537e2017-08-18 01:38:282788#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482789
Brett Wilson7b44537e2017-08-18 01:38:282790const char kAccountConsistencyName[] =
2791 "Identity consistency between browser and cookie jar";
2792const char kAccountConsistencyDescription[] =
2793 "When enabled, the browser manages signing in and out of Google accounts.";
2794const char kAccountConsistencyChoiceMirror[] = "Mirror";
2795const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342796
Tommy Martino3fa3df52018-08-20 21:45:442797const char kAutofillDropdownLayoutName[] =
2798 "Autofill Dropdown Layout Experiment";
2799const char kAutofillDropdownLayoutDescription[] =
2800 "Alternate visual designs for the Autofill dropdown.";
2801
Fabio Tirelo3773dea2018-09-11 15:21:522802const char kAutofillPrimaryInfoStyleExperimentName[] =
2803 "Autofill experiment with primary info style";
2804const char kAutofillPrimaryInfoStyleExperimentDescription[] =
2805 "Allow experimentation with different typefaces for primary info on the "
2806 "Autofill dropdown (addresses and payment methods)";
2807
Chris Pickel3a227ae62017-08-24 10:47:262808const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2809const char kDoodlesOnLocalNtpDescription[] =
2810 "Show doodles on the local New Tab page if Google is the default search "
2811 "engine.";
2812
Kyle Milkaedb39f52018-11-21 19:53:072813const char kSearchSuggestionsOnLocalNtpName[] =
2814 "Enable search suggestions on the local NTP";
2815const char kSearchSuggestionsOnLocalNtpDescription[] =
2816 "Show search suggestions on the local New Tab page if Google is the "
2817 "default search engine.";
2818
2819const char kPromosOnLocalNtpName[] = "Enable promos on the local NTP";
2820const char kPromosOnLocalNtpDescription[] =
2821 "Show promos on the local New Tab page if Google is the "
2822 "default search engine.";
2823
mlamouriff56c092017-05-11 15:31:392824const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392825const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342826 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392827const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392828const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392829const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342830 "Enabled (Flash lowers volume when interrupted by other sound, "
2831 "experimental)";
Becca Hughes87b17ae2018-10-04 00:35:422832const char kEnableAudioFocusEnabledNoEnforce[] =
2833 "Enabled (without enforcement of a single active media session)";
vabr0215a8e2017-03-28 12:47:342834
Lei Zhang0a318af2018-11-14 02:19:462835const char kEnableWebAuthenticationBleSupportName[] =
2836 "Web Authentication API BLE support";
2837const char kEnableWebAuthenticationBleSupportDescription[] =
2838 "Enable support for using Web Authentication API via Bluetooth security "
2839 "keys";
Sebastien Marchandd33f7dc2018-06-22 22:07:062840
Sebastien Marchandd33f7dc2018-06-22 22:07:062841const char kEnableWebAuthenticationCtap2SupportName[] =
2842 "Enable Web Authentication API support for CTAP2 security keys";
2843const char kEnableWebAuthenticationCtap2SupportDescription[] =
Kim Paulhamus92431372018-07-20 02:25:472844 "Enable CTAP2 security keys for the Web Authentication API.";
Sebastien Marchandd33f7dc2018-06-22 22:07:062845
2846const char kEnableWebAuthenticationTestingAPIName[] =
2847 "Web Authentication Testing API";
2848const char kEnableWebAuthenticationTestingAPIDescription[] =
2849 "Enable Web Authentication Testing API support, which disconnects the API "
2850 "implementation from the real world, and allows configuring virtual "
2851 "authenticator devices for testing";
2852
Jeffrey Cohenf04130a42018-08-29 00:22:272853const char kHappinessTrackingSurveysForDesktopName[] =
2854 "Happiness Tracking Surveys";
2855const char kHappinessTrackingSurveysForDesktopDescription[] =
2856 "Enable showing Happiness Tracking Surveys to users on Desktop";
2857
Lei Zhang0a318af2018-11-14 02:19:462858const char kInfiniteSessionRestoreName[] = "Infinite Session Restore";
2859const char kInfiniteSessionRestoreDescription[] =
2860 "Reduces the number of tabs being loaded simultaneously during session "
2861 "restore, to improve responsiveness of the foreground tab. This requires "
2862 "#enable-page-almost-idle.";
Dave Schuyler598a4a42018-01-04 02:15:102863
Travis Skarebcdb5ed32018-08-17 01:49:402864const char kOmniboxDriveSuggestionsName[] =
2865 "Omnibox Google Drive Document suggestions";
2866const char kOmniboxDriveSuggestionsDescriptions[] =
2867 "Display suggestions for Google Drive documents in the omnibox when Google "
2868 "is the default search engine.";
2869
Dave Schuyler616273d2018-04-19 03:12:522870const char kOmniboxNewAnswerLayoutName[] = "Omnibox new answer layout";
2871const char kOmniboxNewAnswerLayoutDescription[] =
Justin Donnellye7926092018-06-18 14:57:212872 "Display answers using an enhanced layout with larger images. Has no "
2873 "effect unless either the #upcoming-ui-features flag is Enabled or the "
2874 "#top-chrome-md flag is set to Refresh or Touchable Refresh.";
Dave Schuyler616273d2018-04-19 03:12:522875
Lei Zhang0a318af2018-11-14 02:19:462876const char kOmniboxPedalSuggestionsName[] = "Omnibox Pedal suggestions";
2877const char kOmniboxPedalSuggestionsDescription[] =
2878 "Enable omnibox Pedal suggestions using either a side button in suggestion "
2879 "or a dedicated suggestion item beneath the triggering line item. Omnibox "
2880 "Pedals accelerate actions within Chrome by detecting user intent and "
2881 "offering direct access to the end goal.";
2882
Orin Jaworski04c08b42018-07-11 02:39:562883const char kOmniboxReverseAnswersName[] = "Omnibox reverse answers";
2884const char kOmniboxReverseAnswersDescription[] =
2885 "Display answers with rows reversed (swapped); except definitions. Has no "
2886 "effect unless either the #upcoming-ui-features flag is Enabled or the "
2887 "#top-chrome-md flag is set to Refresh or Touchable Refresh.";
2888
Lei Zhang0a318af2018-11-14 02:19:462889const char kOmniboxRichEntitySuggestionsName[] =
2890 "Omnibox rich entity suggestions";
2891const char kOmniboxRichEntitySuggestionsDescription[] =
2892 "Display entity suggestions using images and an enhanced layout; showing "
2893 "more context and descriptive text about the entity. Has no effect unless "
2894 "either the #upcoming-ui-features flag is Enabled or the #top-chrome-md "
2895 "flag is set to Refresh or Touchable Refresh.";
2896
Kevin Bailey898669972017-11-06 15:34:492897const char kOmniboxTabSwitchSuggestionsName[] =
2898 "Omnibox tab switch suggestions";
2899const char kOmniboxTabSwitchSuggestionsDescription[] =
Justin Donnellye7926092018-06-18 14:57:212900 "Enable suggestions for switching to open tabs within the Omnibox. "
2901 "Has no effect unless either the #upcoming-ui-features flag is Enabled or "
2902 "the #top-chrome-md flag is set to Refresh or Touchable Refresh.";
Kevin Bailey898669972017-11-06 15:34:492903
krbcc621412017-06-01 19:40:282904const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2905const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192906 "Enable receiving tail suggestions, a type of search suggestion based on "
2907 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342908
Sebastien Marchandd33f7dc2018-06-22 22:07:062909const char kPageAlmostIdleName[] = "Page Almost Idle";
2910const char kPageAlmostIdleDescription[] =
2911 "Make session restore use a definition of loading that waits for CPU and "
2912 "network quiescence.";
2913
2914const char kProactiveTabFreezeAndDiscardName[] =
2915 "Proactive Tab Freeze and Discard";
2916const char kProactiveTabFreezeAndDiscardDescription[] =
2917 "Enables proactive tab freezing and discarding. This requires "
2918 "#enable-page-almost-idle.";
2919
Nicolas Ouellet-payeur82eb65b2018-11-05 16:49:272920const char kShowManagedUiName[] = "Show managed UI for managed users";
2921const char kShowManagedUiDescription[] =
2922 "Enabled/disable showing enterprise users a 'Managed by your organization' "
2923 "message in the app menu and on some chrome:// pages.";
2924
Sebastien Marchandd33f7dc2018-06-22 22:07:062925const char kSiteCharacteristicsDatabaseName[] = "Site Characteristics database";
2926const char kSiteCharacteristicsDatabaseDescription[] =
2927 "Records usage of some features in a database while a tab is in background "
2928 "(title/favicon update, audio playback or usage of non-persistent "
2929 "notifications).";
2930
Brett Wilson7b44537e2017-08-18 01:38:282931const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2932const char kUseGoogleLocalNtpDescription[] =
2933 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322934
Brett Wilson7b44537e2017-08-18 01:38:282935#if defined(GOOGLE_CHROME_BUILD)
2936
2937const char kGoogleBrandedContextMenuName[] =
2938 "Google branding in the context menu";
2939const char kGoogleBrandedContextMenuDescription[] =
2940 "Shows a Google icon next to context menu items powered by Google "
2941 "services.";
2942
2943#endif // !defined(GOOGLE_CHROME_BUILD)
2944
2945#endif // !defined(OS_ANDROID)
2946
2947// Windows ---------------------------------------------------------------------
2948
2949#if defined(OS_WIN)
2950
David Bienvenud0ddda32018-11-01 16:59:162951const char kCalculateNativeWinOcclusionName[] =
2952 "Calculate window occlusion on Windows";
2953const char kCalculateNativeWinOcclusionDescription[] =
2954 "Calculate window occlusion on Windows will be used in the future "
2955 "to throttle and potentially unload foreground tabs in occluded windows";
2956
Brett Wilson7b44537e2017-08-18 01:38:282957const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2958const char kCloudPrintXpsDescription[] =
2959 "XPS enables advanced options for classic printers connected to the Cloud "
2960 "Print with Chrome. Printers must be re-connected after changing this "
2961 "flag.";
2962
2963const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2964const char kDisablePostscriptPrintingDescription[] =
2965 "Disables PostScript generation when printing to PostScript capable "
2966 "printers, and uses EMF generation in its place.";
2967
2968const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2969const char kEnableAppcontainerDescription[] =
2970 "Enables the use of an AppContainer on sandboxed processes to improve "
2971 "security.";
2972
James Forshawfd0ce342018-02-14 09:55:392973const char kEnableGpuAppcontainerName[] = "Enable GPU AppContainer Lockdown.";
2974const char kEnableGpuAppcontainerDescription[] =
2975 "Enables the use of an AppContainer for the GPU sandboxed processes to "
2976 "improve security.";
2977
Brett Wilson7b44537e2017-08-18 01:38:282978const char kGdiTextPrinting[] = "GDI Text Printing";
2979const char kGdiTextPrintingDescription[] =
2980 "Use GDI to print text as simply text";
2981
Henrik Grunell67e56ef2018-04-10 14:04:092982const char kIncreaseInputAudioBufferSize[] = "Increase input audio buffer size";
2983const char kIncreaseInputAudioBufferSizeDescription[] =
2984 "Increases the input audio endpoint buffer to 100 ms.";
2985
Brett Wilson7b44537e2017-08-18 01:38:282986const char kTraceExportEventsToEtwName[] =
2987 "Enable exporting of tracing events to ETW.";
2988const char kTraceExportEventsToEtwDesription[] =
2989 "If enabled, trace events will be exported to the Event Tracing for "
2990 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2991 "Xperf.";
2992
Olli Etuaho122321192018-09-07 10:15:292993const char kUseAngleName[] = "Choose ANGLE graphics backend";
2994const char kUseAngleDescription[] =
2995 "Choose the graphics backend for ANGLE. D3D11 is used on most Windows "
2996 "computers by default. Using the OpenGL driver as the graphics backend may "
2997 "result in higher performance in some graphics-heavy applications, "
2998 "particularly on NVIDIA GPUs. It can increase battery and memory usage of "
2999 "video playback.";
3000
3001const char kUseAngleDefault[] = "Default";
3002const char kUseAngleGL[] = "OpenGL";
3003const char kUseAngleD3D11[] = "D3D11";
3004const char kUseAngleD3D9[] = "D3D9";
3005
Brett Wilson7b44537e2017-08-18 01:38:283006const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
3007const char kUseWinrtMidiApiDescription[] =
3008 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
3009 "later).";
3010
3011const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
3012const char kWindows10CustomTitlebarDescription[] =
3013 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
3014 "deferring to Windows.";
3015
3016#endif // defined(OS_WIN)
3017
3018// Mac -------------------------------------------------------------------------
3019
3020#if defined(OS_MACOSX)
3021
Brett Wilson7b44537e2017-08-18 01:38:283022const char kFullscreenToolbarRevealName[] =
3023 "Enables the toolbar in fullscreen to reveal itself.";
3024const char kFullscreenToolbarRevealDescription[] =
3025 "Reveal the toolbar in fullscreen for a short period when the tab strip "
3026 "has changed.";
3027
3028const char kContentFullscreenName[] = "Improved Content Fullscreen";
3029const char kContentFullscreenDescription[] =
3030 "Fullscreen content window detaches from main browser window and goes to "
3031 "a new space without moving or changing the original browser window.";
3032
Martin Kreichgauer1ca416d2018-07-11 00:43:193033const char kEnableWebAuthenticationTouchIdName[] =
3034 "Web Authentication API Touch ID support";
3035const char kEnableWebAuthenticationTouchIdDescription[] =
3036 "Enables a built-in Touch ID authenticator for the Web Authentication API.";
3037
Brett Wilson7b44537e2017-08-18 01:38:283038const char kHostedAppsInWindowsName[] =
3039 "Allow hosted apps to be opened in windows";
3040const char kHostedAppsInWindowsDescription[] =
3041 "Allows hosted apps to be opened in windows instead of being limited to "
3042 "tabs.";
3043
Christopher Cameron57dee5a42018-09-25 01:20:083044const char kCreateAppWindowsInAppShimProcessName[] =
3045 "Create native windows in the app process";
3046const char kCreateAppWindowsInAppShimProcessDescription[] =
3047 "Create native windows the app shim process, instead of of the browser "
3048 "process.";
3049
Lei Zhang2eca9082017-10-17 20:42:503050const char kMacRTLName[] = "Enable RTL";
3051const char kMacRTLDescription[] = "Mirrors the UI for RTL language users";
Brett Wilson7b44537e2017-08-18 01:38:283052
Lei Zhang2eca9082017-10-17 20:42:503053const char kMacTouchBarName[] = "Hardware Touch Bar";
3054const char kMacTouchBarDescription[] = "Control the use of the Touch Bar.";
Brett Wilson7b44537e2017-08-18 01:38:283055
Greg Kerraea59272018-10-12 16:44:313056const char kMacV2SandboxName[] = "Mac V2 Sandbox";
3057const char kMacV2SandboxDescription[] =
3058 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
3059 "entire life cycle.";
3060
Brett Wilson7b44537e2017-08-18 01:38:283061const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
3062const char kMacViewsNativeAppWindowsDescription[] =
3063 "Controls whether to use Toolkit-Views based Chrome App windows.";
3064
3065const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
3066const char kMacViewsTaskManagerDescription[] =
3067 "Controls whether to use the Toolkit-Views based Task Manager.";
3068
3069const char kTabDetachingInFullscreenName[] =
3070 "Allow tab detaching in fullscreen";
3071const char kTabDetachingInFullscreenDescription[] =
3072 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
3073
3074const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
3075const char kTabStripKeyboardFocusDescription[] =
3076 "Enable keyboard focus for the tabs in the tab strip.";
3077
Tessa Nijssen4db9799e2018-08-06 21:04:383078const char kTextSuggestionsTouchBarName[] = "Text Suggestions Touch Bar";
3079const char kTextSuggestionsTouchBarDescription[] =
3080 "Enable text suggestions touch bar for textfields.";
3081
Brett Wilson7b44537e2017-08-18 01:38:283082#endif
3083
3084// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:343085
3086#if defined(OS_CHROMEOS)
3087
Brett Wilson7b44537e2017-08-18 01:38:283088const char kAcceleratedMjpegDecodeName[] =
3089 "Hardware-accelerated mjpeg decode for captured frame";
3090const char kAcceleratedMjpegDecodeDescription[] =
3091 "Enable hardware-accelerated mjpeg decode for captured frame where "
3092 "available.";
vabr0215a8e2017-03-28 12:47:343093
Brett Wilson7b44537e2017-08-18 01:38:283094const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
3095const char kAllowTouchpadThreeFingerClickDescription[] =
3096 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:343097
Bruno Kim Medeiros Cesarb98fe1d82018-06-06 18:11:523098const char kArcAvailableForChildName[] = "Allow ARC for child accounts";
3099const char kArcAvailableForChildDescription[] =
3100 "Allow child accounts to start Android apps.";
3101
Brett Wilson7b44537e2017-08-18 01:38:283102const char kArcBootCompleted[] = "Load Android apps automatically";
3103const char kArcBootCompletedDescription[] =
3104 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:343105
Luum Habtemariamdaa8fd22018-06-25 22:39:433106const char kArcCupsApiName[] = "ARC CUPS API";
3107const char kArcCupsApiDescription[] =
3108 "Enables support of libcups APIs from ARC";
3109
Satoshi Niwa8b1d5282018-10-24 04:53:033110const char kArcFilePickerExperimentName[] =
3111 "Enable file picker experiment for ARC";
3112const char kArcFilePickerExperimentDescription[] =
3113 "Enables using Chrome OS file picker in ARC.";
3114
Yuichiro Hanada0b63f062018-07-12 02:18:333115const char kArcInputMethodName[] = "Enable ARC input methods.";
3116const char kArcInputMethodDescription[] = "Enable ARC input methods.";
3117
Lev Rumyantsev7a8544312017-08-18 19:26:513118const char kArcNativeBridgeExperimentName[] =
3119 "Enable native bridge experiment for ARC";
3120const char kArcNativeBridgeExperimentDescription[] =
3121 "Enables experimental native bridge feature.";
3122
lgchengecd1c1a62018-01-09 02:59:463123const char kArcUsbHostName[] = "Enable ARC USB host integration";
3124const char kArcUsbHostDescription[] =
3125 "Allow Android apps to use USB host feature on ChromeOS devices.";
3126
Kevin Cernekeeb7f96a52017-10-25 17:40:183127const char kArcVpnName[] = "Enable ARC VPN integration";
3128const char kArcVpnDescription[] =
3129 "Allow Android VPN clients to tunnel Chrome traffic.";
3130
Qiang Xu045aff222018-05-21 23:21:013131const char kAshDisableLoginDimAndBlurName[] =
3132 "Disable dimming and blur on login screen.";
3133const char kAshDisableLoginDimAndBlurDescription[] =
3134 "Disable dimming and blur on login screen.";
3135
3136const char kAshDisableSmoothScreenRotationName[] =
3137 "Disable smooth rotation animations.";
3138const char kAshDisableSmoothScreenRotationDescription[] =
3139 "Disable smooth rotation animations.";
3140
3141const char kAshEnableDisplayMoveWindowAccelsName[] =
3142 "Enable shortcuts for moving window between displays.";
3143const char kAshEnableDisplayMoveWindowAccelsDescription[] =
3144 "Enable shortcuts for moving window between displays.";
3145
3146const char kAshEnableKeyboardShortcutViewerName[] =
3147 "Enable keyboard shortcut viewer.";
3148const char kAshEnableKeyboardShortcutViewerDescription[] =
3149 "Enable keyboard shortcut viewer.";
3150
3151const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
3152const char kAshEnableMirroredScreenDescription[] =
3153 "Enable the mirrored screen mode. This mode flips the screen image "
3154 "horizontally.";
3155
Qiang Xu045aff222018-05-21 23:21:013156const char kAshEnablePersistentWindowBoundsName[] =
3157 "Enable persistent window bounds in multi-displays scenario.";
3158const char kAshEnablePersistentWindowBoundsDescription[] =
3159 "Enable persistent window bounds in multi-displays scenario.";
3160
Eliot Courtneye87a9c32018-11-20 03:33:023161const char kAshEnablePipRoundedCornersName[] =
3162 "Enable Picture-in-Picture rounded corners.";
3163const char kAshEnablePipRoundedCornersDescription[] =
3164 "Enable rounded corners on the Picture-in-Picture window.";
3165
Qiang Xu045aff222018-05-21 23:21:013166const char kAshEnableTrilinearFilteringName[] = "Enable trilinear filtering.";
3167const char kAshEnableTrilinearFilteringDescription[] =
3168 "Enable trilinear filtering.";
3169
Brett Wilson7b44537e2017-08-18 01:38:283170const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
3171const char kAshEnableUnifiedDesktopDescription[] =
3172 "Enable unified desktop mode which allows a window to span multiple "
3173 "displays.";
vabr0215a8e2017-03-28 12:47:343174
Mike Wassermanfcc47e42018-06-14 21:24:423175const char kAshKeyboardShortcutViewerAppName[] =
3176 "Keyboard Shortcut Viewer mojo app";
3177const char kAshKeyboardShortcutViewerAppDescription[] =
3178 "Use an out-of-process mojo app to show the Keyboard Shortcut Viewer.";
3179
Qiang Xu045aff222018-05-21 23:21:013180const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
3181const char kAshShelfColorDescription[] =
3182 "Enables/disables the shelf color to be a derived from the wallpaper. The "
3183 "--ash-shelf-color-scheme flag defines how that color is derived.";
3184
3185const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
3186const char kAshShelfColorSchemeDescription[] =
3187 "Specify how the color is derived from the wallpaper. This flag is only "
3188 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
3189const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
3190const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
3191const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
3192const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
3193const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
3194const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
3195
Sean Kau5e956192017-10-06 22:25:173196const char kBulkPrintersName[] = "Bulk Printers Policy";
3197const char kBulkPrintersDescription[] = "Enables the new bulk printers policy";
3198
Brett Wilson7b44537e2017-08-18 01:38:283199const char kCaptivePortalBypassProxyName[] =
3200 "Bypass proxy for Captive Portal Authorization";
3201const char kCaptivePortalBypassProxyDescription[] =
3202 "If proxy is configured, it usually prevents from authorization on "
3203 "different captive portals. This enables opening captive portal "
3204 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:343205
Yuki Awanob51d3252018-07-11 23:45:553206const char kChromeVoxArcSupportName[] = "ChromeVox ARC support";
3207const char kChromeVoxArcSupportDescription[] =
3208 "Use ChromeVox screen reader features in ARC";
3209
Brett Wilson7b44537e2017-08-18 01:38:283210const char kCrOSComponentName[] = "Chrome OS Component";
3211const char kCrOSComponentDescription[] =
Xiaochu Liu4c1b75d2017-12-18 23:52:083212 "Disable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:343213
Xiaochu Liu51d03fd2017-09-08 23:51:023214const char kCrOSContainerName[] = "Chrome OS Container";
3215const char kCrOSContainerDescription[] =
3216 "Enable the use of Chrome OS Container utility.";
3217
Brett Wilson7b44537e2017-08-18 01:38:283218const char kCrosRegionsModeName[] = "Cros-regions load mode";
3219const char kCrosRegionsModeDescription[] =
3220 "This flag controls cros-regions load mode";
3221const char kCrosRegionsModeDefault[] = "Default";
3222const char kCrosRegionsModeOverride[] = "Override VPD values.";
3223const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:343224
Joel Hockeyad5b9762018-09-01 12:06:083225const char kCrostiniFilesName[] = "Crostini Files";
3226const char kCrostiniFilesDescription[] =
3227 "Enable Crostini file sharing in Files app.";
3228
Josh Pratt57cea392018-10-30 02:59:063229const char kCrostiniUsbSupportName[] = "Crostini Usb Support";
3230const char kCrostiniUsbSupportDescription[] =
3231 "Enable mounting Usb devices in Crostini.";
3232
Daniele Castagnac4aeb572018-10-23 16:23:573233const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences";
3234const char kDisableExplicitDmaFencesDescription[] =
3235 "Always rely on implicit syncrhonization between GPU and display "
3236 "controller instead of using dma-fences explcitily when available.";
3237
Jacob Dufault2becbc482017-08-25 00:36:353238const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
3239const char kDisableLockScreenAppsDescription[] =
3240 "Disable new-note action handler apps on the lock screen. The user will "
3241 "not be able to launch the preferred note-taking action from the lock "
3242 "screen, provided that the app supports lock screen note taking.";
3243
Qiang Xu045aff222018-05-21 23:21:013244const char kDisableSystemTimezoneAutomaticDetectionName[] =
3245 "SystemTimezoneAutomaticDetection policy support";
3246const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
3247 "Disable system timezone automatic detection device policy.";
3248
Sammie Quonef6b4882017-09-14 16:50:053249const char kDisableTabletAutohideTitlebarsName[] =
3250 "Disable autohide titlebars in tablet mode";
3251const char kDisableTabletAutohideTitlebarsDescription[] =
3252 "Disable tablet mode autohide titlebars functionality. The user will be "
3253 "able to see the titlebar in tablet mode.";
3254
Xiaoqian Dai24b33eb2018-04-10 21:01:573255const char kDisableTabletSplitViewName[] = "Disable split view in Tablet mode";
3256const char kDisableTabletSplitViewDescription[] =
3257 "Disable split view for Chrome OS tablet mode.";
3258
Ahmed Fakhry4f567e692018-10-16 15:51:083259const char kDoubleTapToZoomInTabletModeName[] =
3260 "Double-tap to zoom in tablet mode";
3261const char kDoubleTapToZoomInTabletModeDescription[] =
3262 "If Enabled, double tapping in webpages while in tablet mode will zoom the "
3263 "page.";
3264
Daniel Zhang01399072018-08-16 22:28:203265const char kEnableAppListSearchAutocompleteName[] =
3266 "App List Search Autocomplete";
3267const char kEnableAppListSearchAutocompleteDescription[] =
3268 "Allow App List search box to autocomplete queries for Google searches and "
3269 "apps.";
3270
Qiang Xu53d1a5832018-05-24 18:44:193271const char kEnableAppShortcutSearchName[] =
3272 "Enable app shortcut search in launcher";
3273const char kEnableAppShortcutSearchDescription[] =
3274 "Enables app shortcut search in launcher";
3275
Vladislav Kaznacheevaa213a02018-10-29 17:54:283276const char kEnableAppDataSearchName[] = "Enable app data search in launcher";
3277const char kEnableAppDataSearchDescription[] =
3278 "Allow launcher search to access data available through Firebase App "
3279 "Indexing";
3280
Weidong Guo00d0b2b2018-06-07 00:39:303281const char kEnableAppsGridGapFeatureName[] =
3282 "Enable apps grid gap feature in launcher.";
3283const char kEnableAppsGridGapFeatureDescription[] =
3284 "Enables gaps at the end of each page and enables dragging an item to an "
3285 "empty page in launcher.";
3286
Lei Zhang0a318af2018-11-14 02:19:463287const char kEnableArcUnifiedAudioFocusName[] =
Becca Hughes34415e82018-10-05 18:47:373288 "Enable unified audio focus on ARC";
Lei Zhang0a318af2018-11-14 02:19:463289const char kEnableArcUnifiedAudioFocusDescription[] =
Becca Hughes34415e82018-10-05 18:47:373290 "If audio focus is enabled in Chrome then this will delegate audio focus "
3291 "control in Android apps to Chrome.";
3292
Yue Li958f9dd2018-11-15 00:56:593293const char kEnableAssistantVoiceMatchName[] = "Enable Assistant Voice Match";
3294const char kEnableAssistantVoiceMatchDescription[] =
3295 "Enable the Assistant Voice Match feature";
3296
Lei Zhang2eca9082017-10-17 20:42:503297const char kEnableBackgroundBlurName[] = "Enable background blur.";
3298const char kEnableBackgroundBlurDescription[] =
Wenzhao Zang50fb0b22017-11-07 01:38:423299 "Enables background blur for the Peeking Launcher and Tab Switcher.";
Alex Newcomer43cb7f12017-07-28 17:37:393300
Lei Zhang0ca70ea2018-09-07 17:51:013301const char kEnableChromeOsAccountManagerName[] = "Enable Account Manager";
3302const char kEnableChromeOsAccountManagerDescription[] =
Kushagra Sinha8a181fc2018-08-20 17:15:493303 "Enables the Chrome OS Account Manager";
3304
Lei Zhang0ca70ea2018-09-07 17:51:013305const char kEnableContinueReadingName[] = "Enable continue reading";
3306const char kEnableContinueReadingDescription[] =
Sammie Quon248ccef2018-08-28 23:00:013307 "Enable continue reading feature in Launcher, which allows users to "
3308 "seamlessly continue reading a web page when they switch devices from "
3309 "phones or tablets to Chromebooks.";
3310
Alexander Alekseev38e1e0a2018-11-08 22:48:483311const char kEnableDiscoverAppName[] = "Enable Discover App";
3312const char kEnableDiscoverAppDescription[] =
3313 "Enable Discover App icon in launcher.";
3314
Min Chenc2ec7282018-06-29 21:38:463315const char kEnableDragAppsInTabletModeName[] =
3316 "Enable dragging apps in tablet mode";
3317const char kEnableDragAppsInTabletModeDescription[] =
3318 "If enabled, swiping down from the top of the screen when an app is opened "
3319 "in tablet mode can drag the app.";
3320
Xiaoqian Dai82d99192018-05-25 18:51:353321const char kEnableDragTabsInTabletModeName[] =
3322 "Enable dragging tabs in tablet mode";
3323const char kEnableDragTabsInTabletModeDescription[] =
3324 "Allows the user to drag the tabs out of a browser window in tablet mode.";
3325
Sam McNally201fbf94e2018-07-04 03:15:203326const char kEnableDriveFsName[] = "Enable DriveFS";
3327const char kEnableDriveFsDescription[] =
3328 "Enables use of the new DriveFS-based Drive sync client.";
3329
Luciano Pacheco20c48bd42018-11-07 00:57:083330const char kEnableMyFilesVolumeName[] = "Enable MyFiles as Volume";
3331const char kEnableMyFilesVolumeDescription[] =
Luciano Pacheco7fe772fe2018-11-07 02:31:453332 "Enables use of MyFiles as a read/write volume. This should be only "
3333 "used for testing or for trying to restore the previous Downloads content.";
Luciano Pacheco20c48bd42018-11-07 00:57:083334
Brett Wilson7b44537e2017-08-18 01:38:283335const char kEnableEhvInputName[] =
3336 "Emoji, handwriting and voice input on opt-in IME menu";
3337const char kEnableEhvInputDescription[] =
3338 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:343339
Brett Wilson7b44537e2017-08-18 01:38:283340const char kEnableEncryptionMigrationName[] =
3341 "Enable encryption migration of user data";
3342const char kEnableEncryptionMigrationDescription[] =
3343 "If enabled and the device supports ARC, the user will be asked to update "
3344 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:343345
Qiang Xu045aff222018-05-21 23:21:013346const char kEnableFullscreenHandwritingVirtualKeyboardName[] =
3347 "Enable full screen handwriting virtual keyboard";
3348const char kEnableFullscreenHandwritingVirtualKeyboardDescription[] =
3349 "If enabled, the handwriting virtual keyboard will allow user to write "
3350 "anywhere on the screen";
3351
Xiaohui Chenfb0943e2018-10-16 22:44:373352const char kEnableGoogleAssistantName[] = "Enable Google Assistant";
3353const char kEnableGoogleAssistantDescription[] =
3354 "Enable an experimental Assistant implementation that will work on all "
3355 "Chromebooks.";
3356
Xiaohui Chenf4283f32018-11-26 20:02:503357const char kEnableGoogleAssistantDspName[] =
3358 "Enable Google Assistant with hardware-based hotword";
3359const char kEnableGoogleAssistantDspDescription[] =
3360 "Enable an experimental feature that uses hardware-based hotword detection "
3361 "for Assistant. Only a limited number of devices have this type of "
3362 "hardware support.";
3363
Xiaohui Chenc3baca42018-11-30 19:29:373364const char kEnableGoogleAssistantStereoInputName[] =
3365 "Enable Google Assistant with stereo audio input";
3366const char kEnableGoogleAssistantStereoInputDescription[] =
3367 "Enable an experimental feature that uses stereo audio input for hotword "
3368 "and voice to text detection in Google Assistant.";
3369
Qiang Xu045aff222018-05-21 23:21:013370const char kEnableHomeLauncherName[] = "Enable home launcher";
3371const char kEnableHomeLauncherDescription[] =
3372 "Enable home launcher in tablet mode.";
3373
Lei Zhang0ca70ea2018-09-07 17:51:013374const char kEnableHomeLauncherGesturesName[] = "Enable home launcher gestures";
3375const char kEnableHomeLauncherGesturesDescription[] =
Sammie Quon248ccef2018-08-28 23:00:013376 "Enables using gestures to hide or show the home launcher.";
3377
Brett Wilson7b44537e2017-08-18 01:38:283378const char kEnableImeMenuName[] = "Enable opt-in IME menu";
3379const char kEnableImeMenuDescription[] =
3380 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:343381
Becca Hughes3d63a91d2018-10-17 19:30:393382const char kEnableMediaSessionAshMediaKeysName[] =
3383 "Enable media session media key handling";
3384const char kEnableMediaSessionAshMediaKeysDescription[] =
3385 "Enable the media session service to handle media keys. This requires "
3386 "the audio focus flag to be enabled too.";
3387
Weidong Guo45836d1b2018-06-27 23:51:163388const char kEnableNewStyleLauncherName[] = "Enable new style launcher.";
3389const char kEnableNewStyleLauncherDescription[] =
3390 "Enables new style UI such as suggestion chips, resizable apps grid, etc. "
3391 "in app launcher.";
3392
Sammie Quon248ccef2018-08-28 23:00:013393const char kEnableOobeRecommendAppsScreenName[] =
3394 "Enable OOBE Recommend Apps Screen";
3395const char kEnableOobeRecommendAppsScreenDescription[] =
3396 "Enable the Recommend Apps Screen in OOBE which allows user to install apps"
3397 "from other devices";
3398
Qiang Xu045aff222018-05-21 23:21:013399const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
3400const char kEnablePerUserTimezoneDescription[] =
3401 "Chrome OS system timezone preference is stored and handled for each user "
3402 "individually.";
3403
Vladislav Kaznacheevaa213a02018-10-29 17:54:283404const char kEnablePlayStoreSearchName[] = "Enable Play Store search";
3405const char kEnablePlayStoreSearchDescription[] =
3406 "Enable Play Store search in launcher.";
3407
Qiang Xu045aff222018-05-21 23:21:013408const char kEnableSettingsShortcutSearchName[] =
3409 "Enable Settings shortcut search";
3410const char kEnableSettingsShortcutSearchDescription[] =
3411 "Enable Settings shortcut search in launcher.";
3412
Darren Shen3e49c63d2018-03-28 04:45:503413const char kEnableStylusVirtualKeyboardName[] =
3414 "Enable stylus virtual keyboard";
3415const char kEnableStylusVirtualKeyboardDescription[] =
3416 "If enabled, tapping with a stylus will show the handwriting virtual "
3417 "keyboard.";
3418
Jordy Greenblatt2f23df22018-02-22 19:49:193419const char kEnableUnifiedMultiDeviceSettingsName[] =
3420 "Enable unified MultiDevice settings";
3421const char kEnableUnifiedMultiDeviceSettingsDescription[] =
3422 "If enabled, the Chrome OS Settings UI will include a menu for the unified "
3423 "MultiDevice settings.";
3424
3425const char kEnableUnifiedMultiDeviceSetupName[] =
3426 "Enable unified MultiDevice setup";
3427const char kEnableUnifiedMultiDeviceSetupDescription[] =
3428 "Enable the device to setup all MultiDevice services in a single workflow.";
3429
Darren Shen0b4e5802018-07-10 03:12:263430const char kEnableVirtualKeyboardUkmName[] = "Enable UKM for virtual keyboard";
3431const char kEnableVirtualKeyboardUkmDescription[] =
3432 "Enables UKM for virtual keyboard";
3433
Lei Zhang0ca70ea2018-09-07 17:51:013434const char kEnableZeroStateSuggestionsName[] = "Enable Zero State Suggetions";
3435const char kEnableZeroStateSuggestionsDescription[] =
Sammie Quon248ccef2018-08-28 23:00:013436 "Enable Zero State Suggestions feature in Launcher, which will show "
Vladislav Kaznacheevaa213a02018-10-29 17:54:283437 "suggestions when launcher search box is active with an empty query";
Sammie Quon248ccef2018-08-28 23:00:013438
Brett Wilson7b44537e2017-08-18 01:38:283439const char kEolNotificationName[] = "Disable Device End of Life notification.";
3440const char kEolNotificationDescription[] =
3441 "Disable Notifcation when Device is End of Life.";
3442
Brett Wilson7b44537e2017-08-18 01:38:283443const char kFileManagerTouchModeName[] = "Files App. touch mode";
3444const char kFileManagerTouchModeDescription[] =
3445 "Touchscreen-specific interactions of the Files app.";
3446
3447const char kFirstRunUiTransitionsName[] =
3448 "Animated transitions in the first-run tutorial";
3449const char kFirstRunUiTransitionsDescription[] =
3450 "Transitions during first-run tutorial are animated.";
3451
Brett Wilson7b44537e2017-08-18 01:38:283452const char kForceEnableStylusToolsName[] = "Force enable stylus features";
3453const char kForceEnableStylusToolsDescription[] =
3454 "Forces display of the stylus tools menu in the shelf and the stylus "
3455 "section in settings, even if there is no attached stylus device.";
3456
3457const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
3458const char kGestureEditingDescription[] =
3459 "Enable/Disable gesture editing option in the settings page for the "
3460 "virtual keyboard.";
3461
3462const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
3463const char kGestureTypingDescription[] =
3464 "Enable/Disable gesture typing option in the settings page for the virtual "
3465 "keyboard.";
3466
3467const char kInputViewName[] = "Input views";
3468const char kInputViewDescription[] =
3469 "Enable IME extensions to supply custom views for user input such as "
3470 "virtual keyboards.";
3471
Leo Zhang3cc77542018-11-07 00:58:083472const char kImeServiceName[] = "Enable IME service";
3473const char kImeServiceDescription[] =
3474 "Enable IME service to provide the IME functionality instead of NaCl";
3475
Megumi Hattori5a0d4182018-03-06 11:09:503476const char kLockScreenNotificationName[] = "Lock screen notification";
3477const char kLockScreenNotificationDescription[] =
3478 "Enable notifications on the lock screen.";
3479
Mohsen Izadi06a16f72018-11-29 02:29:223480const char kMashOopVizName[] = "Out-of-process viz for mash";
3481const char kMashOopVizDescription[] =
3482 "Runs viz in a separate process when mash is enabled (otherwise viz would "
3483 "run in ash process)";
3484
Qiang Xu045aff222018-05-21 23:21:013485const char kMaterialDesignInkDropAnimationSpeedName[] =
3486 "Material design ink drop animation speed";
3487const char kMaterialDesignInkDropAnimationSpeedDescription[] =
3488 "Sets the speed of the experimental visual feedback animations for "
3489 "material design.";
3490const char kMaterialDesignInkDropAnimationFast[] = "Fast";
3491const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
3492
Brett Wilson7b44537e2017-08-18 01:38:283493const char kMemoryPressureThresholdName[] =
3494 "Memory discard strategy for advanced pressure handling";
3495const char kMemoryPressureThresholdDescription[] =
3496 "Memory discarding strategy to use";
3497const char kConservativeThresholds[] =
3498 "Conservative memory pressure release strategy";
3499const char kAggressiveCacheDiscardThresholds[] =
3500 "Aggressive cache release strategy";
3501const char kAggressiveTabDiscardThresholds[] =
3502 "Aggressive tab release strategy";
3503const char kAggressiveThresholds[] =
3504 "Aggressive tab and cache release strategy";
3505
3506const char kMtpWriteSupportName[] = "MTP write support";
3507const char kMtpWriteSupportDescription[] =
3508 "MTP write support in File System API (and file manager). In-place editing "
3509 "operations are not supported.";
3510
Kyle Horimoto027590fb2018-02-13 22:19:483511const char kMultiDeviceApiName[] = "Enables the MultiDevice API";
3512const char kMultiDeviceApiDescription[] =
3513 "Enable Mojo-based API which provides synced device metadata and the "
3514 "ability to connect to other devices associated the logged-in Google "
3515 "account.";
3516
vabr0215a8e2017-03-28 12:47:343517const char kNetworkPortalNotificationName[] =
3518 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:343519const char kNetworkPortalNotificationDescription[] =
3520 "If enabled, notification is displayed when device is connected to a "
3521 "network behind captive portal.";
3522
Brett Wilson7b44537e2017-08-18 01:38:283523const char kNewKoreanImeName[] = "New Korean IME";
3524const char kNewKoreanImeDescription[] =
3525 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:343526
Anand K. Mistrydb5e0102018-10-04 04:24:003527const char kNewZipUnpackerName[] = "ZIP Archiver (unpacking)";
Brett Wilson7b44537e2017-08-18 01:38:283528const char kNewZipUnpackerDescription[] =
Anand K. Mistrydb5e0102018-10-04 04:24:003529 "Use the ZIP Archiver for mounting/unpacking ZIP files";
vabr0215a8e2017-03-28 12:47:343530
Qiang Xu045aff222018-05-21 23:21:013531const char kOfficeEditingComponentAppName[] =
3532 "Office Editing for Docs, Sheets & Slides";
3533const char kOfficeEditingComponentAppDescription[] =
3534 "Office Editing for Docs, Sheets & Slides for testing purposes.";
3535
Brett Wilson7b44537e2017-08-18 01:38:283536const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
3537const char kPhysicalKeyboardAutocorrectDescription[] =
3538 "Enable physical keyboard autocorrect for US keyboard, which can provide "
3539 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:343540
3541const char kPrinterProviderSearchAppName[] =
3542 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:343543const char kPrinterProviderSearchAppDescription[] =
3544 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:193545 "searches Chrome Web Store for extensions that support printing to a USB "
3546 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:343547
Brett Wilson7b44537e2017-08-18 01:38:283548const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
3549const char kQuickUnlockPinDescription[] =
3550 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
3551 "device on the lock screen after you have signed into your device.";
3552const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
3553const char kQuickUnlockPinSigninDescription[] =
3554 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
3555 "device. After changing this flag PIN needs to be set up again.";
3556const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
3557const char kQuickUnlockFingerprintDescription[] =
3558 "Enabling fingerprint quick unlock allows you to setup and use a "
3559 "fingerprint to unlock your Chromebook on the lock screen after you have "
3560 "signed into your device.";
vabr0215a8e2017-03-28 12:47:343561
James Cook0ba192bf2017-12-01 20:53:113562const char kShowTapsName[] = "Show taps";
3563const char kShowTapsDescription[] =
3564 "Draws a circle at each touch point, which makes touch points more obvious "
3565 "when projecting or mirroring the display. Similar to the Android OS "
3566 "developer option.";
3567
3568const char kShowTouchHudName[] = "Show HUD for touch points";
3569const char kShowTouchHudDescription[] =
3570 "Shows a trail of colored dots for the last few touch points. Pressing "
3571 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
3572 "debug hardware issues that generate spurious touch events.";
3573
James Cook28d7c482018-09-07 21:00:543574const char kSingleProcessMashName[] =
3575 "In-process window service (SingleProcessMash)";
3576const char kSingleProcessMashDescription[] =
3577 "Runs the system UI (ash) as a mojo service, but inside the browser "
3578 "process. The browser uses the mojo window service (ws) APIs.";
3579
Ahmed Fakhry58e6ef542018-09-04 18:05:383580const char kSlideTopChromeWithPageScrollsName[] =
3581 "Slide top-chrome with page scrolls";
3582const char kSlideTopChromeWithPageScrollsDescription[] =
3583 "If enabled, page scrolls in tablet mode will also scroll the top-chrome"
3584 " UI.";
3585
Jorge Gil5a8ccde2018-07-10 01:46:213586const char kSmartTextSelectionName[] = "Smart Text Selection";
3587const char kSmartTextSelectionDescription[] =
3588 "Shows quick actions for text "
3589 "selections in the context menu.";
3590
Chung-Sheng Wu468b0b32017-09-01 14:41:573591const char kSysInternalsName[] = "Enable Sys-Internals";
3592const char kSysInternalsDescription[] =
3593 "If enabled, user can monitor system information at "
3594 "chrome://sys-internals.";
3595
Brett Wilson7b44537e2017-08-18 01:38:283596const char kTetherName[] = "Instant Tethering";
3597const char kTetherDescription[] =
3598 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
3599 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:373600
Brett Wilson7b44537e2017-08-18 01:38:283601const char kTouchscreenCalibrationName[] =
3602 "Enable/disable touchscreen calibration option in material design settings";
3603const char kTouchscreenCalibrationDescription[] =
3604 "If enabled, the user can calibrate the touch screen displays in "
3605 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:093606
Qiang Xu045aff222018-05-21 23:21:013607const char kUiDevToolsName[] = "Enable native UI inspection";
3608const char kUiDevToolsDescription[] =
3609 "Enables inspection of native UI elements. For local inspection use "
3610 "chrome://inspect#other";
3611
3612const char kUiShowCompositedLayerBordersName[] =
3613 "Show UI composited layer borders";
3614const char kUiShowCompositedLayerBordersDescription[] =
3615 "Show border around composited layers created by UI.";
3616const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
3617const char kUiShowCompositedLayerBordersSurface[] = "Surface";
3618const char kUiShowCompositedLayerBordersLayer[] = "Layer";
3619const char kUiShowCompositedLayerBordersAll[] = "All";
3620
3621const char kUiSlowAnimationsName[] = "Slow UI animations";
3622const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
3623
Mitsuru Oshima63d3f2a2017-08-23 00:12:113624// Force UI Mode
3625const char kUiModeName[] = "Force Ui Mode";
3626const char kUiModeDescription[] =
3627 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
3628 R"*(despite its current orientation. "Tablet" means that the )*"
3629 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
3630 R"*(means that the chromebook will act as if it were in clamshell )*"
3631 R"*(mode . "Auto" means that the chromebook will alternate between )*"
3632 R"*(the two, based on its orientation.)*";
Min Chenfd25cd22018-11-06 01:50:513633const char kUiModeTablet[] = "Tablet";
Mitsuru Oshima63d3f2a2017-08-23 00:12:113634const char kUiModeClamshell[] = "Clamshell";
3635const char kUiModeAuto[] = "Auto (default)";
3636
Sonny Sasaka7fecfeda2018-07-11 23:47:553637const char kUnfilteredBluetoothDevicesName[] = "Unfiltered Bluetooth devices";
3638const char kUnfilteredBluetoothDevicesDescription[] =
3639 "Shows all Bluetooth devices in UI (System Tray/Settings Page.)";
3640
Allen Webbcdc8e69d2018-09-12 20:36:003641const char kUsbguardName[] = "Block new USB devices at the lock screen.";
3642const char kUsbguardDescription[] =
3643 "Prevents newly connected USB devices from operating at the lock screen"
3644 " until Chrome OS is unlocked to protect against malicious USB devices."
3645 " Already connected USB devices will continue to function.";
3646
Micah Morton79a7b522018-09-27 15:15:303647const char kShillSandboxingName[] =
3648 "Run shill, the ChromeOS network manager, in a sandbox.";
3649const char kShillSandboxingDescription[] =
3650 "Causes shill to be run as user/group 'shill', instead of 'root'.";
3651
Micah Morton02d3aba2018-11-20 01:51:453652const char kFsNosymfollowName[] =
3653 "Prevent symlink traversal on user-supplied filesystems.";
3654const char kFsNosymfollowDescription[] =
3655 "Causes user-supplied filesystems to be mounted with the 'nosymfollow'"
3656 " option, so the chromuimos LSM denies symlink traversal on the"
3657 " filesystem.";
3658
James Cooka1bcfa9a2018-01-30 00:18:403659const char kUseMashName[] = "Out-of-process system UI (mash)";
3660const char kUseMashDescription[] =
3661 "Runs the mojo UI service (mus) and the ash window manager and system UI "
3662 "in a separate process.";
Brett Wilson7b44537e2017-08-18 01:38:283663
Miguel Casas-Sanchez8ba32f92017-11-07 05:03:343664// TODO(mcasas): remove after https://crbug.com/771345.
3665const char kUseMonitorColorSpaceName[] = "Use monitor color space";
3666const char kUseMonitorColorSpaceDescription[] =
3667 "Enables Chrome to use the color space information provided by the monitor"
3668 " instead of the default sRGB color space.";
3669
Andres Calderon Jaramillo43c0e8a2018-08-21 02:46:233670const char kVaapiJpegImageDecodeAccelerationName[] =
3671 "VA-API JPEG decode acceleration for images";
3672const char kVaapiJpegImageDecodeAccelerationDescription[] =
3673 "Enable or disable decode acceleration of JPEG images (as opposed to camera"
3674 " captures) using the VA-API.";
3675
Brett Wilson7b44537e2017-08-18 01:38:283676const char kVideoPlayerChromecastSupportName[] =
3677 "Experimental Chromecast support for Video Player";
3678const char kVideoPlayerChromecastSupportDescription[] =
3679 "This option enables experimental Chromecast support for Video Player app "
3680 "on ChromeOS.";
3681
3682const char kVirtualKeyboardName[] = "Virtual Keyboard";
3683const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
3684
3685const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
3686const char kVirtualKeyboardOverscrollDescription[] =
3687 "Enables virtual keyboard overscroll support.";
3688
3689const char kVoiceInputName[] = "Voice input on virtual keyboard";
3690const char kVoiceInputDescription[] =
3691 "Enables voice input on virtual keyboard.";
3692
3693const char kWakeOnPacketsName[] = "Wake On Packets";
3694const char kWakeOnPacketsDescription[] =
3695 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:203696
yhanadac5bff5b2017-05-18 06:37:093697#endif // defined(OS_CHROMEOS)
3698
Brett Wilson7b44537e2017-08-18 01:38:283699// Random platform combinations -----------------------------------------------
3700
3701#if defined(OS_WIN) || defined(OS_LINUX)
3702
3703const char kEnableInputImeApiName[] = "Enable Input IME API";
3704const char kEnableInputImeApiDescription[] =
3705 "Enable the use of chrome.input.ime API.";
3706
3707#endif // defined(OS_WIN) || defined(OS_LINUX)
3708
3709#if defined(OS_WIN) || defined(OS_MACOSX)
3710
3711const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
3712const char kAutomaticTabDiscardingDescription[] =
3713 "If enabled, tabs get automatically discarded from memory when the system "
3714 "memory is low. Discarded tabs are still visible on the tab strip and get "
3715 "reloaded when clicked on. Info about discarded tabs can be found at "
3716 "chrome://discards.";
3717
3718#endif // defined(OS_WIN) || defined(OS_MACOSX)
3719
lanwei83f54452018-06-21 23:51:043720#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
3721
3722const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
3723const char kDirectManipulationStylusDescription[] =
3724 "If enabled, Chrome will scroll web pages on stylus drag.";
3725
3726#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
3727
Justin Donnelly110e40c2018-06-01 21:48:433728const char kExperimentalUiName[] = "Use all upcoming UI features";
3729const char kExperimentalUiDescription[] = "Use all upcoming UI features.";
Elly Fong-Jonesdfaf8532018-05-29 18:20:483730
Brett Wilson7b44537e2017-08-18 01:38:283731// Feature flags --------------------------------------------------------------
3732
Lei Zhang0a318af2018-11-14 02:19:463733#if defined(DCHECK_IS_CONFIGURABLE)
3734const char kDcheckIsFatalName[] = "DCHECKs are fatal";
3735const char kDcheckIsFatalDescription[] =
3736 "By default Chrome will evaluate in this build, but only log failures, "
3737 "rather than crashing. If enabled, DCHECKs will crash the calling process.";
3738#endif // defined(DCHECK_IS_CONFIGURABLE)
3739
Brett Wilson7b44537e2017-08-18 01:38:283740#if BUILDFLAG(ENABLE_VR)
3741
David Dorwin5a496c32017-11-17 01:45:053742const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing";
3743const char kWebVrVsyncAlignDescription[] =
3744 "Align WebVR application rendering with VSync for smoother animations.";
3745
Bill Orr103ed272018-02-14 21:23:053746#if BUILDFLAG(ENABLE_OCULUS_VR)
3747const char kOculusVRName[] = "Oculus hardware support";
3748const char kOculusVRDescription[] =
3749 "If enabled, Chrome will use Oculus devices for VR (supported only on "
3750 "Windows 10 or later).";
3751#endif // ENABLE_OCULUS_VR
3752
Bill Orr49527562017-11-22 16:58:483753#if BUILDFLAG(ENABLE_OPENVR)
3754const char kOpenVRName[] = "OpenVR hardware support";
3755const char kOpenVRDescription[] =
Bill Orr5056e692018-01-17 02:08:073756 "If enabled, Chrome will use OpenVR devices for VR (supported only on "
3757 "Windows 10 or later).";
Bill Orr49527562017-11-22 16:58:483758#endif // ENABLE_OPENVR
3759
Bill Orrecfb9fe2018-10-02 00:11:103760#if BUILDFLAG(ENABLE_ISOLATED_XR_SERVICE)
3761const char kXRSandboxName[] = "XR device sandboxing";
3762const char kXRSandboxDescription[] =
3763 "If enabled, Chrome will host VR APIs in a restricted process on desktop.";
3764#endif // ENABLE_ISOLATED_XR_SERVICE
3765
Brett Wilson7b44537e2017-08-18 01:38:283766#endif // ENABLE_VR
3767
Nico Weberaf3b00b2017-09-11 17:58:173768#if BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:283769
3770const char kNaclDebugMaskName[] =
3771 "Restrict Native Client GDB-based debugging by pattern";
3772const char kNaclDebugMaskDescription[] =
3773 "Restricts Native Client application GDB-based debugging by URL of "
3774 "manifest file. Native Client GDB-based debugging must be enabled for this "
3775 "option to work.";
3776const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
3777const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
3778 "Debug everything except secure shell and the PNaCl translator.";
3779const char kNaclDebugMaskChoiceIncludeDebug[] =
3780 "Debug only if manifest URL ends with debug.nmf.";
3781
3782const char kNaclDebugName[] = "Native Client GDB-based debugging";
3783const char kNaclDebugDescription[] =
3784 "Enable GDB debug stub. This will stop a Native Client application on "
3785 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
3786
3787const char kNaclName[] = "Native Client";
3788const char kNaclDescription[] =
3789 "Support Native Client for all web applications, even those that were not "
3790 "installed from the Chrome Web Store.";
3791
3792const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
3793const char kPnaclSubzeroDescription[] =
3794 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
3795
Nico Weberaf3b00b2017-09-11 17:58:173796#endif // BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:283797
Lei Zhang802201c2018-11-14 18:16:283798#if BUILDFLAG(ENABLE_PLUGINS)
3799
3800const char kPdfFormSaveName[] = "Save PDF Forms";
3801const char kPdfFormSaveDescription[] =
3802 "Enable saving PDFs with filled form data.";
3803
3804const char kPdfIsolationName[] = "PDF Isolation";
3805const char kPdfIsolationDescription[] =
3806 "Render PDF files from different origins in different plugin processes.";
3807
3808#endif // BUILDFLAG(ENABLE_PLUGINS)
3809
Brett Wilson7b44537e2017-08-18 01:38:283810#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3811
3812const char kAutofillCreditCardUploadName[] =
3813 "Enable offering upload of Autofilled credit cards";
3814const char kAutofillCreditCardUploadDescription[] =
3815 "Enables a new option to upload credit cards to Google Payments for sync "
3816 "to all Chrome devices.";
3817
3818#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3819
3820// ============================================================================
3821// Don't just add flags to the end, put them in the right section in
3822// alphabetical order just like the header file.
3823// ============================================================================
3824
vabr0215a8e2017-03-28 12:47:343825} // namespace flag_descriptions