blob: 1335355f54cbd8e3637ec8dacb2b1e79a77f7bab [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
38const char kAppBannersName[] = "App Banners";
39const char kAppBannersDescription[] =
40 "Enable the display of Progressive Web App banners, which prompt a user to "
41 "add a web app to their shelf, or other platform-specific equivalent.";
42
yoshiki iguchi4a10c5f2017-11-29 20:16:5443const char kAshSidebarName[] = "Sidebar";
44const char kAshSidebarDescription[] = "Enable the experimental sidebar.";
45
Tetsui Ohkubof860b8e2018-02-16 03:50:5546const char kAshNewSystemMenuName[] = "New system menu";
47const char kAshNewSystemMenuDescription[] =
48 "Enable the experimental system menu.";
49
Sathya Gunasekaranbc706d62018-02-09 21:44:2250const char kArrayPrototypeValuesName[] = "Array.prototype.values ES6 method";
51const char kArrayPrototypeValuesDescription[] =
52 "Enables Array.prototype.values method";
53
Khushalba202212017-07-12 19:53:4954const char kAsyncImageDecodingName[] = "AsyncImageDecoding";
55const char kAsyncImageDecodingDescription[] =
56 "Enables asynchronous decoding of images from raster for web content";
57
Brett Wilsonf27ff602017-07-07 22:28:4758const char kAutoplayPolicyName[] = "Autoplay policy";
59const char kAutoplayPolicyDescription[] =
60 "Policy used when deciding if audio or video is allowed to autoplay.";
61
62const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
63 "User gesture is required for cross-origin iframes.";
64const char kAutoplayPolicyNoUserGestureRequired[] =
65 "No user gesture is required.";
66const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
67const char kAutoplayPolicyDocumentUserActivation[] =
68 "Document user activation is required.";
69
Johanne0cc6902017-11-16 00:23:5070extern const char kAv1DecoderName[] = "Enable AV1 video decoding.";
71extern const char kAv1DecoderDescription[] =
72 "Allow decoding of files with the AV1 video codec.";
73
Brett Wilsonf27ff602017-07-07 22:28:4774const char kBackgroundVideoTrackOptimizationName[] =
75 "Optimize background video playback.";
76const char kBackgroundVideoTrackOptimizationDescription[] =
77 "Disable video tracks when the video is played in the background to "
78 "optimize performance.";
79
80const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
81const char kBleAdvertisingInExtensionsDescription[] =
82 "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere "
83 "with regular use of Bluetooth Low Energy features.";
84
Charles Harrisond629cc62017-10-05 01:39:5485const char kBlockTabUndersName[] = "Block tab-unders";
86const char kBlockTabUndersDescription[] =
87 "Blocks tab-unders in Chrome with some native UI to allow the user to "
88 "proceed.";
89
arthursonzognif2bc2d202017-11-08 11:01:0290const char kNavigationMojoResponseName[] = "Navigation response using Mojo";
91const char kNavigationMojoResponseDescription[] =
92 "Browser side navigation (aka PlzNavigate) is using blob URLs to deliver "
93 "the body of the main resource to the renderer process. This flag replaces "
94 "this mechanism by using a Mojo DataPipe.";
95
Brett Wilsonf27ff602017-07-07 22:28:4796const char kBrowserTaskSchedulerName[] = "Task Scheduler";
97const char kBrowserTaskSchedulerDescription[] =
98 "Enables redirection of some task posting APIs to the task scheduler.";
99
Carlos IL766fbc882018-02-16 02:34:52100const char kBundledConnectionHelpName[] = "Bundled Connection Help";
101const char kBundledConnectionHelpDescription[] =
102 "Enables or disables redirecting users who get an interstitial when "
103 "accessing https://support.google.com/chrome/answer/6098869 to local "
104 "connection help content.";
105
Brett Wilsonf27ff602017-07-07 22:28:47106const char kBypassAppBannerEngagementChecksName[] =
107 "Bypass user engagement checks";
108const char kBypassAppBannerEngagementChecksDescription[] =
109 "Bypasses user engagement checks for displaying app banners, such as "
110 "requiring that users have visited the site before and that the banner "
111 "hasn't been shown recently. This allows developers to test that other "
112 "eligibility requirements for showing app banners, such as having a "
113 "manifest, are met.";
114
Lucas Garronb9539b732017-10-31 00:22:09115const char kCommittedInterstitialsName[] = "Committed Interstitials";
116const char kCommittedInterstitialsDescription[] =
117 "Use committed error pages instead of transient navigation entries "
118 "for interstitial error pages (e.g. certificate errors).";
119
Marc Treib026acc532017-10-17 18:39:59120const char kCaptureThumbnailOnNavigatingAwayName[] =
121 "Capture page thumbnail on navigating away";
122const char kCaptureThumbnailOnNavigatingAwayDescription[] =
123 "Capture a page thumbnail (for use on the New Tab page) when navigating "
124 "away from the current page, in addition to other times a thumbnail may be "
125 "captured.";
126
Brett Wilsonf27ff602017-07-07 22:28:47127const char kCastStreamingHwEncodingName[] =
128 "Cast Streaming hardware video encoding";
129const char kCastStreamingHwEncodingDescription[] =
130 "This option enables support in Cast Streaming for encoding video streams "
131 "using platform hardware.";
132
Amber Won478561d2017-08-19 01:02:59133const char kClickToOpenPDFName[] = "Click to open embedded PDFs";
134const char kClickToOpenPDFDescription[] =
135 "When the PDF plugin is unavailable, show a click-to-open placeholder for "
136 "embedded PDFs.";
137
Gary Kacmarcikfb69b212017-11-14 03:41:08138const char kClipboardContentSettingName[] = "Clipboard content setting";
139const char kClipboardContentSettingDescription[] =
140 "Enables a site-wide permission in the UI which controls access to the "
141 "asynchronous clipboard web API";
142
Brett Wilsonf27ff602017-07-07 22:28:47143const char kCloudImportName[] = "Cloud Import";
144const char kCloudImportDescription[] = "Allows the cloud-import feature.";
145
Christopher Cameronceb8727d2017-09-07 23:53:16146const char kForceColorProfileSRGB[] = "sRGB";
147const char kForceColorProfileP3[] = "Display P3 D65";
148const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
149const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)";
150
151const char kForceColorProfileName[] = "Force color profile";
152const char kForceColorProfileDescription[] =
153 "Forces Chrome to use a specific color profile instead of the color "
154 "of the window's current monitor, as specified by the operating system.";
155
Brett Wilsonf27ff602017-07-07 22:28:47156const char kCompositedLayerBordersName[] = "Composited render layer borders";
157const char kCompositedLayerBordersDescription[] =
158 "Renders a border around composited Render Layers to help debug and study "
159 "layer compositing.";
160
Theresa Wellington39f634e12018-01-17 01:42:51161const char kContextualSuggestionsAboveArticlesName[] =
162 "Enable Contextual Suggestions Above Articles";
163const char kContextualSuggestionsAboveArticlesDescription[] =
164 "If enabled, shows contextual suggestions in a linear list above "
165 "article suggestions.";
166
Brett Wilsonf27ff602017-07-07 22:28:47167const char kContextualSuggestionsCarouselName[] =
Theresa Wellington39f634e12018-01-17 01:42:51168 "Enable Contextual Suggestions Carousel";
Brett Wilsonf27ff602017-07-07 22:28:47169const char kContextualSuggestionsCarouselDescription[] =
170 "If enabled, shows contextual suggestions in a horizontal carousel in "
171 "bottom sheet content.";
172
173const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
174const char kCreditCardAssistDescription[] =
175 "Enable assisted credit card filling on certain sites.";
176
177const char kCrossProcessGuestViewIsolationName[] =
178 "Cross process frames for guests";
179const char kCrossProcessGuestViewIsolationDescription[] =
180 "Highly experimental where guests such as <webview> are implemented on "
181 "the out-of-process iframe infrastructure.";
182
Thanh Le659cb102017-12-20 22:00:19183const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews";
184const char kDataSaverServerPreviewsDescription[] =
185 "Allow the Data Reduction Proxy to serve previews.";
Brett Wilsonf27ff602017-07-07 22:28:47186
187const char kDatasaverPromptName[] = "Cellular Data Saver Prompt";
188const char kDatasaverPromptDescription[] =
189 "Enables a prompt, which appears when a cellular network connection is "
190 "detected, to take the user to the Data Saver extension page on Chrome Web "
191 "Store.";
192const char kDatasaverPromptDemoMode[] = "Demo mode";
193
194const char kDebugPackedAppName[] = "Debugging for packed apps";
195const char kDebugPackedAppDescription[] =
196 "Enables debugging context menu options such as Inspect Element for packed "
197 "applications.";
198
199const char kDefaultTileHeightName[] = "Default tile height";
200const char kDefaultTileHeightDescription[] = "Specify the default tile height.";
201const char kDefaultTileHeightShort[] = "128";
202const char kDefaultTileHeightTall[] = "256";
203const char kDefaultTileHeightGrande[] = "512";
204const char kDefaultTileHeightVenti[] = "1024";
205
206const char kDefaultTileWidthName[] = "Default tile width";
207const char kDefaultTileWidthDescription[] = "Specify the default tile width.";
208const char kDefaultTileWidthShort[] = "128";
209const char kDefaultTileWidthTall[] = "256";
210const char kDefaultTileWidthGrande[] = "512";
211const char kDefaultTileWidthVenti[] = "1024";
212
213const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
214const char kDebugShortcutsDescription[] =
215 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
216
217const char kDeviceDiscoveryNotificationsName[] =
218 "Device Discovery Notifications";
219const char kDeviceDiscoveryNotificationsDescription[] =
220 "Device discovery notifications on local network.";
221
222const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
223const char kDevtoolsExperimentsDescription[] =
224 "Enables Developer Tools experiments. Use Settings panel in Developer "
225 "Tools to toggle individual experiments.";
226
227const char kDisableAudioForDesktopShareName[] =
228 "Disable Audio For Desktop Share";
229const char kDisableAudioForDesktopShareDescription[] =
230 "With this flag on, desktop share picker window will not let the user "
231 "choose whether to share audio.";
232
Brett Wilsonf27ff602017-07-07 22:28:47233const char kDisableTabForDesktopShareName[] =
234 "Disable Desktop Share with tab source";
235const char kDisableTabForDesktopShareDescription[] =
236 "This flag controls whether users can choose a tab for desktop share.";
237
238const char kDisallowDocWrittenScriptsUiName[] =
239 "Block scripts loaded via document.write";
240const char kDisallowDocWrittenScriptsUiDescription[] =
241 "Disallows fetches for third-party parser-blocking scripts inserted into "
242 "the main frame via document.write.";
243
Brett Wilsonf27ff602017-07-07 22:28:47244const char kDistanceFieldTextName[] = "Distance field text";
245const char kDistanceFieldTextDescription[] =
246 "Text is rendered with signed distance fields rather than bitmap alpha "
247 "masks.";
248
249const char kDriveSearchInChromeLauncherName[] =
250 "Drive Search in Chrome App Launcher";
251const char kDriveSearchInChromeLauncherDescription[] =
252 "Files from Drive will show up when searching the Chrome App Launcher.";
253
Brett Wilsonf27ff602017-07-07 22:28:47254const char kEasyUnlockBluetoothLowEnergyDiscoveryName[] =
255 "Smart Lock Bluetooth Low Energy Discovery";
256const char kEasyUnlockBluetoothLowEnergyDiscoveryDescription[] =
Tim Song52c142c62017-07-20 03:29:07257 "Disables a Smart Lock setting that allows Chromebook to discover phones "
Brett Wilsonf27ff602017-07-07 22:28:47258 "over Bluetooth Low Energy in order to unlock the Chromebook when the "
259 "phone is in its proximity.";
260
Gustavo Sacomotofb11164f2017-07-21 12:56:18261const char kEasyUnlockPromotionsName[] = "Smart Lock Promotions";
262const char kEasyUnlockPromotionsDescription[] =
263 "Enables Smart Lock promotions. Promotions will be periodically display "
264 "if the user is eligible.";
265
Brett Wilsonf27ff602017-07-07 22:28:47266const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
267const char kEmbeddedExtensionOptionsDescription[] =
268 "Display extension options as an embedded element in chrome://extensions "
269 "rather than opening a new tab.";
270
271const char kEnableAsmWasmName[] =
272 "Experimental Validate Asm.js and convert to WebAssembly when valid.";
273const char kEnableAsmWasmDescription[] =
274 R"*(Validate Asm.js when "use asm" is present and then convert to )*"
275 R"*(WebAssembly.)*";
276
Shanfeng Zhang19c16562017-10-17 02:30:40277const char kEnableAutofillCreditCardAblationExperimentDisplayName[] =
278 "Credit card autofill ablation experiment.";
279const char kEnableAutofillCreditCardAblationExperimentDescription[] =
280 "If enabled, credit card autofill suggestions will not display.";
281
Shanfeng Zhang18f58352018-01-05 19:22:49282const char kEnableAutofillCreditCardDropdownGooglePayBrandingName[] =
283 "Show the Google Pay logo in the Autofill credit card dropdown";
284const char kEnableAutofillCreditCardDropdownGooglePayBrandingDescription[] =
285 "If enabled, shows the Google Pay logo in the Autofill credit card "
286 "dropdown.";
287
Brett Wilsonf27ff602017-07-07 22:28:47288const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
289 "Display the last used date of a credit card in autofill.";
290const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
291 "If enabled, display the last used date of a credit card in autofill.";
292
293const char kEnableAutofillCreditCardUploadCvcPromptName[] =
294 "Enable requesting missing CVC during Autofill credit card upload";
295const char kEnableAutofillCreditCardUploadCvcPromptDescription[] =
296 "If enabled, requests missing CVC when offering to upload credit cards to "
297 "Google Payments.";
298
Jared Saula3d51862018-01-12 02:51:09299const char kEnableAutofillCreditCardUploadGooglePayBrandingName[] =
Jared Saul8d2fb4442018-01-22 21:20:16300 "Enable Google Pay branding when offering credit card upload";
Jared Saula3d51862018-01-12 02:51:09301const char kEnableAutofillCreditCardUploadGooglePayBrandingDescription[] =
Jared Saul8d2fb4442018-01-22 21:20:16302 "If enabled, shows the Google Pay logo, a shorter header message, and a "
303 "narrower dialog when credit card upload to Google Payments is offered.";
Jared Saula3d51862018-01-12 02:51:09304
Jared Saul1e4786a2017-12-14 01:43:09305const char kEnableAutofillCreditCardUploadSendDetectedValuesName[] =
306 "Always send metadata on detected form values for Autofill credit card "
307 "upload";
308const char kEnableAutofillCreditCardUploadSendDetectedValuesDescription[] =
309 "If enabled, always checks with Google Payments when deciding whether to "
310 "offer credit card upload, even if some data is missing.";
311
Jared Saul5c2a1482017-12-09 00:24:31312const char kEnableAutofillCreditCardUploadSendPanFirstSixName[] =
313 "Send first six digits of PAN when deciding whether to offer Autofill "
314 "credit card upload";
315const char kEnableAutofillCreditCardUploadSendPanFirstSixDescription[] =
316 "If enabled, when deciding whether to offer credit card upload to Google "
317 "Payments, sends the first six digits of the card number to avoid cases "
318 "where card upload is likely to fail.";
319
Jason Guo71f621e2017-10-13 04:18:53320const char kEnableAutofillSendBillingCustomerNumberName[] =
321 "Enable autofill sending billing customer number when calling Google "
322 "Payments";
323const char kEnableAutofillSendBillingCustomerNumberDescription[] =
324 "If enabled, autofill sends billing customer number when calling Google "
325 "Payments.";
326
Shanfeng Zhang18f58352018-01-05 19:22:49327const char kEnableAutofillUseNewSettingsNameInDropdownName[] =
328 "Show a new Autofill settings string in the Autofill dropdown";
329const char kEnableAutofillUseNewSettingsNameInDropdownDescription[] =
330 "If enabled, shows a new Autofill settings string in the Autofill "
331 "dropdown.";
332
tmartinocd414732018-02-12 19:01:01333const char kEnableAutofillNativeDropdownViewsName[] =
334 "Display Autofill Dropdown Using Views";
335const char kEnableAutofillNativeDropdownViewsDescription[] =
336 "If enabled, the Autofill Dropdown will be built natively using Views, "
337 "rather than painted directly to a canvas.";
338
Vitalii Iarko4f9834ce2017-08-04 07:05:19339const char kEnableBreakingNewsPushName[] = "Breaking News Push";
340const char kEnableBreakingNewsPushDescription[] =
341 "Listen for breaking news content suggestions (e.g. for New Tab Page) "
342 "through Google Cloud Messaging.";
343
Brett Wilsonf27ff602017-07-07 22:28:47344const char kEnableBrotliName[] = "Brotli Content-Encoding.";
345const char kEnableBrotliDescription[] =
346 "Enable Brotli Content-Encoding support.";
347
Qiang Xu0f602fe62017-12-22 01:31:20348const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization";
349const char kEnableCaptivePortalRandomUrlDescription[] =
350 "Enable Captive Portal URL randomization.";
351
sclittle50e4bb92017-07-08 02:23:03352const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
353
354const char kEnableClientLoFiDescription[] =
355 "Enable showing low fidelity images on some pages on slow networks.";
356
Doug Arnett08b4067b2017-10-12 20:14:44357const char kEnableNoScriptPreviewsName[] = "NoScript previews";
358
359const char kEnableNoScriptPreviewsDescription[] =
360 "Enable disabling JavaScript on some pages on slow networks.";
361
Thanh Le2c279fbc2017-11-21 01:25:40362const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1";
363const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2";
364const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3";
365const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4";
366const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5";
367const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6";
368const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7";
369const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8";
370const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9";
371const char kDataReductionProxyServerAlternative10[] =
372 "Use alt. server config 10";
Brett Wilsonf27ff602017-07-07 22:28:47373const char kEnableDataReductionProxyServerExperimentName[] =
374 "Use an alternative Data Saver back end configuration.";
375const char kEnableDataReductionProxyServerExperimentDescription[] =
376 "Enable a different approach to saving data by configuring the back end "
377 "server";
378
379const char kEnableDataReductionProxySavingsPromoName[] =
380 "Data Saver 1 MB Savings Promo";
381const char kEnableDataReductionProxySavingsPromoDescription[] =
382 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
383 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
384 "enabled for the promo to be shown.";
385
Matt Giucad4870432017-11-24 01:04:38386const char kEnableDesktopPWAsName[] = "Desktop PWAs";
387const char kEnableDesktopPWAsDescription[] =
388 "Experimental windowing and install banner treatment for Progressive Web "
389 "Apps on desktop platforms. Implies #enable-experimental-app-banners.";
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17390
Ahmed Fakhry0037de02018-01-29 19:58:31391const char kEnableDockedMagnifierName[] = "Docked Magnifier";
392const char kEnableDockedMagnifierDescription[] =
393 "Enables the Docked Magnifier (a.k.a. picture-in-picture magnifier).";
394
Brett Wilsonf27ff602017-07-07 22:28:47395const char kEnableEnumeratingAudioDevicesName[] =
396 "Experimentally enable enumerating audio devices.";
397const char kEnableEnumeratingAudioDevicesDescription[] =
398 "Experimentally enable the use of enumerating audio devices.";
399
400const char kEnableGenericSensorName[] = "Generic Sensor";
401const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25402 "Enables motion sensor classes based on Generic Sensor API, i.e. "
403 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
404 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
405
406const char kEnableGenericSensorExtraClassesName[] =
407 "Generic Sensor Extra Classes";
408const char kEnableGenericSensorExtraClassesDescription[] =
409 "Enables an extra set of sensor classes based on Generic Sensor API, which "
410 "expose previously unavailable platform features, i.e. AmbientLightSensor "
411 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47412
Brett Wilsonf27ff602017-07-07 22:28:47413const char kEnableHDRName[] = "HDR mode";
414const char kEnableHDRDescription[] =
415 "Enables HDR support on compatible displays.";
416
417const char kEnableHeapProfilingName[] = "Heap profiling";
418const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
419const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
420const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
421const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
422
423const char kEnableHttpFormWarningName[] =
424 "Show in-form warnings for sensitive fields when the top-level page is not "
Eric Lawrenceed8fccf2017-09-08 21:27:15425 "HTTPS";
Brett Wilsonf27ff602017-07-07 22:28:47426const char kEnableHttpFormWarningDescription[] =
427 "Attaches a warning UI to any password or credit card fields detected when "
428 "the top-level page is not HTTPS";
429
Sidney San Martín9375b892017-09-09 00:29:54430const char kEnableMacMaterialDesignDownloadShelfName[] =
431 "Enable Material Design download shelf";
432
433const char kEnableMacMaterialDesignDownloadShelfDescription[] =
434 "If enabled, the download shelf uses Material Design.";
435
Tatiana Gornakafb40452017-07-31 13:50:04436const char kEnableManualFallbacksFillingName[] =
437 "Manual fallbacks for password manager forms filling";
438const char kEnableManualFallbacksFillingDescription[] =
439 "If enabled, then if user clicks on the password field on a form, popup "
440 "might contain generation fallbacks or 'Show all saved passwords' "
441 "fallback.";
442
vabr0215a8e2017-03-28 12:47:34443const char kEnableMaterialDesignBookmarksName[] =
444 "Enable Material Design bookmarks";
vabr0215a8e2017-03-28 12:47:34445const char kEnableMaterialDesignBookmarksDescription[] =
446 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
447 "bookmarks page.";
448
vabr0215a8e2017-03-28 12:47:34449const char kEnableMaterialDesignExtensionsName[] =
450 "Enable Material Design extensions";
vabr0215a8e2017-03-28 12:47:34451const char kEnableMaterialDesignExtensionsDescription[] =
452 "If enabled, the chrome://extensions/ URL loads the Material Design "
453 "extensions page.";
454
Anton Urusov47cd4932017-09-19 14:41:41455const char kEnablePolicyToolName[] = "Enable policy management page";
456const char kEnablePolicyToolDescription[] =
457 "If enabled, the chrome://policy-tool URL loads a page for managing "
458 "policies.";
459
Tsuyoshi Horoea7edb72017-11-12 04:14:00460const char kEnablePWAFullCodeCacheName[] = "Enable PWA full code cache";
461const char kEnablePWAFullCodeCacheDescription[] =
462 "Generate V8 code cache in Cache Storage while installing Service Worker "
463 "for PWAs.";
464
Weidong Guof1e5a892018-01-06 02:26:39465const char kDisableMultiMirroringName[] =
Weidong Guo7dfd1482017-11-08 05:56:28466 "Display mirroring across multiple displays.";
Weidong Guof1e5a892018-01-06 02:26:39467const char kDisableMultiMirroringDescription[] =
468 "Disable Display mirroring across multiple displays.";
Weidong Guo7dfd1482017-11-08 05:56:28469
Brett Wilsonf27ff602017-07-07 22:28:47470const char kEnableNavigationTracingName[] = "Enable navigation tracing";
471const char kEnableNavigationTracingDescription[] =
472 "This is to be used in conjunction with the trace-upload-url flag. "
473 "WARNING: When enabled, Chrome will record performance data for every "
474 "navigation and upload it to the URL specified by the trace-upload-url "
475 "flag. The trace may include personally identifiable information (PII) "
476 "such as the titles and URLs of websites you visit.";
477
Bernhard Bauer5533f9912017-11-06 17:56:02478const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
479const char kEnableNetworkLoggingToFileDescription[] =
480 "Enables network logging to a file named netlog.json in the user data "
481 "directory. The file can be imported into chrome://net-internals.";
482
Brett Wilsonf27ff602017-07-07 22:28:47483const char kEnableNetworkServiceName[] = "Enable network service";
484const char kEnableNetworkServiceDescription[] =
485 "Enables the network service, which makes network requests through a "
486 "separate service. Note: most features don't work with this yet.";
487
John Abd-El-Malek8067cc02017-12-04 23:23:20488const char kEnableNetworkServiceInProcessName[] =
489 "Runs network service in-process";
490const char kEnableNetworkServiceInProcessDescription[] =
491 "Runs the network service in the browser process.";
492
dpapaded8349472017-10-25 03:21:27493const char kEnableNewPrintPreview[] = "Enable new Print Preview UI";
494const char kEnableNewPrintPreviewDescription[] =
495 "If enabled, Print Preview will display a newer UI";
496
Ahmed Fakhry2fd8fc82017-07-28 16:31:12497const char kEnableNightLightName[] = "Enable Night Light";
498const char kEnableNightLightDescription[] =
499 "Enable the Night Light feature which controls the color temperature of "
500 "the screen.";
501
xlou8b56f672018-02-09 23:34:30502const char kEnableNupPrintingName[] = "Enable N-up printing";
503const char kEnableNupPrintingDescription[] =
504 "Enable N-up printing in the print preview panel.";
505
Sophie Chang117a3b22017-10-24 22:25:36506const char kEnableOptimizationHintsName[] = "Optimization Hints";
507const char kEnableOptimizationHintsDescription[] =
508 "Enable the Optimization Hints feature which incorporates server hints"
509 "into decisions for what optimizations to perform on some pages on slow "
510 "networks.";
511
Yutaka Hirano98be3272017-08-07 17:55:39512const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS";
513const char kEnableOutOfBlinkCORSDescription[] =
514 "CORS handling logic is moved out of blink.";
515
kylechar7051c092018-02-05 20:31:39516const char kVizDisplayCompositorName[] = "Viz Display Compositor (OOP-D)";
517const char kVizDisplayCompositorDescription[] =
518 "If enabled, the display compositor runs as part of the viz service in the"
519 "GPU process.";
520
Erik Chen49bbfa22017-08-18 08:49:56521const char kEnableOutOfProcessHeapProfilingName[] =
Albert J. Wong174174762018-01-18 23:50:23522 "Out of process heap profiling start mode.";
Erik Chen49bbfa22017-08-18 08:49:56523const char kEnableOutOfProcessHeapProfilingDescription[] =
524 "Creates a profiling service that records stacktraces for all live, "
erikchen94aca892018-01-18 00:21:19525 "malloced objects. Heap dumps can be obtained at chrome://tracing "
526 "[category:memory-infra] and chrome://memory-internals. This setting "
527 "controls which processes are profiled. As long as this setting is not "
528 "disabled, users can start profiling any given process in "
529 "chrome://memory-internals.";
530const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU";
531const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes";
532const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers";
533const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser";
534const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU.";
erikchen0a5dd692017-12-12 00:53:10535const char kEnableOutOfProcessHeapProfilingModeManual[] =
erikchen94aca892018-01-18 00:21:19536 "None by default. Visit chrome://memory-internals to choose which "
537 "processes to profile.";
Albert J. Wongbd5bd902017-11-09 19:56:15538const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] =
539 "Profile a random sampling of renderer processes, ensuring only one is "
540 "ever profiled at a time.";
erikchen94aca892018-01-18 00:21:19541
Erik Chen8bb76b52017-12-06 19:06:25542const char kOutOfProcessHeapProfilingKeepSmallAllocations[] =
erikchen94aca892018-01-18 00:21:19543 "Emit small allocations in memlog heap dumps.";
Erik Chen8bb76b52017-12-06 19:06:25544const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] =
545 "By default, small allocations are pruned from the heap dump. This reduces "
546 "the size of the compressed trace by 100x. If pruning is disabled, the "
547 "chrome://tracing UI may be unable to take or load the trace. Save the "
548 "trace directly using chrome://memory-internals, and use other mechanisms "
549 "[e.g. diff_heap_profiler.py] to examine the trace. Note that "
550 "automatically uploaded traces will always be pruned. This only affects "
551 "manually taken memory-infra traces.";
Erik Chen49bbfa22017-08-18 08:49:56552
erikchen8bc20d82018-02-14 03:21:51553const char kOutOfProcessHeapProfilingSampling[] = "Sample memlog allocations";
554const char kOutOfProcessHeapProfilingSamplingDescription[] =
555 "Use a poisson process to sample allocations. Defaults to a sample rate of "
erikchen99bfce02018-02-14 20:29:22556 "10000. This results in low noise for large and/or frequent allocations ["
557 "[size * frequency >> 10000]. This means that aggregate numbers [e.g. "
558 "total size of malloc-ed objects] and large and/or frequent allocations "
559 "can be trusted with high fidelity.";
erikchen8bc20d82018-02-14 03:21:51560
Erik Chen3303fd0232018-01-11 20:29:05561const char kOOPHPStackModeName[] =
562 "The type of stack to record for memlog heap dumps";
563const char kOOPHPStackModeDescription[] =
erikchen94aca892018-01-18 00:21:19564 "By default, memlog heap dumps record native stacks, which requires a "
565 "post-processing step to symbolize. Requires a custom build with frame "
erikchen011ad3f2018-01-26 17:54:55566 "pointers to work on Android. Native with thread names will add the thread "
567 "name as the first frame of each native stack. It's also possible to "
568 "record a pseudo stack using trace events as identifiers. It's also "
569 "possible to do a mix of both.";
erikchen94aca892018-01-18 00:21:19570const char kOOPHPStackModeMixed[] = "Mixed";
571const char kOOPHPStackModeNative[] = "Native";
erikchen011ad3f2018-01-26 17:54:55572const char kOOPHPStackModeNativeWithThreadNames[] = "Native with thread names";
erikchen94aca892018-01-18 00:21:19573const char kOOPHPStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:05574
François Beaufort2e75f492018-02-08 20:44:46575const char kEnablePictureInPictureName[] = "Enable Picture-in-Picture.";
Brett Wilsonf27ff602017-07-07 22:28:47576const char kEnablePictureInPictureDescription[] =
François Beaufort2e75f492018-02-08 20:44:46577 "Enable the Picture-in-Picture feature for videos.";
Brett Wilsonf27ff602017-07-07 22:28:47578
F#m59d036e2017-09-13 07:22:17579const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
580const char kEnablePixelCanvasRecordingDescription[] =
581 "Pixel canvas recording allows the compositor to raster contents aligned "
582 "with the pixel and improves text rendering. This should be enabled when a "
583 "device is using fractional scale factor.";
584
Brett Wilsonf27ff602017-07-07 22:28:47585const char kEnableTokenBindingName[] = "Token Binding.";
586const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
587
Sahel Sharifyd732ab12017-11-29 23:03:16588extern const char kEnableTouchpadAndWheelScrollLatchingName[] =
589 "Wheel Scroll Latching.";
590extern const char kEnableTouchpadAndWheelScrollLatchingDescription[] =
591 "Wheel scroll latching enforces latching to a single element for the "
592 "duration of a scroll sequence.";
593
Brett Wilsonf27ff602017-07-07 22:28:47594const char kEnableUseZoomForDsfName[] =
595 "Use Blink's zoom for device scale factor.";
596const char kEnableUseZoomForDsfDescription[] =
597 "If enabled, Blink uses its zooming mechanism to scale content for device "
598 "scale factor.";
599const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
600const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
601const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
602
603const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
604const char kEnableScrollAnchoringDescription[] =
605 "Adjusts scroll position to prevent visible jumps when offscreen content "
606 "changes.";
607
Patrick Noland8ee016e2018-01-24 11:44:53608const char kEnableScrollAnchorSerializationName[] =
609 "Scroll Anchor Serialization";
610const char kEnableScrollAnchorSerializationDescription[] =
611 "Save the scroll anchor and use it to restore the scroll position when "
612 "navigating.";
613
Brad Nelson5cd500e2018-01-04 00:50:19614const char kEnableSharedArrayBufferName[] =
615 "Experimental enabled SharedArrayBuffer support in JavaScript.";
616const char kEnableSharedArrayBufferDescription[] =
617 "Enable SharedArrayBuffer support in JavaScript.";
618
Brett Wilsonf27ff602017-07-07 22:28:47619const char kEnableWasmName[] = "WebAssembly structured cloning support.";
620const char kEnableWasmDescription[] =
621 "Enable web pages to use WebAssembly structured cloning.";
622
Brett Wilsonf27ff602017-07-07 22:28:47623const char kEnableImageCaptureAPIName[] = "Image Capture API";
624const char kEnableImageCaptureAPIDescription[] =
625 "Enables the Web Platform Image Capture API: takePhoto(), "
626 "getPhotoCapabilities(), etc.";
627
628const char kEnableZeroSuggestRedirectToChromeName[] =
629 "Experimental contextual omnibox suggestion";
630const char kEnableZeroSuggestRedirectToChromeDescription[] =
631 "Change omnibox contextual suggestions to an experimental source. Note "
632 "that this is not an on/off switch for contextual omnibox and it only "
633 "applies to suggestions provided before the user starts typing a URL or a "
634 "search query (i.e. zero suggest).";
635
636const char kEnableWasmStreamingName[] =
637 "WebAssembly streaming compile/instantiate support.";
638const char kEnableWasmStreamingDescription[] =
639 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
640
Brett Wilsonf27ff602017-07-07 22:28:47641const char kExpensiveBackgroundTimerThrottlingName[] =
642 "Throttle expensive background timers";
643const char kExpensiveBackgroundTimerThrottlingDescription[] =
644 "Enables intervention to limit CPU usage of background timers to 1%.";
645
646const char kExperimentalAppBannersName[] = "Experimental app banners";
647const char kExperimentalAppBannersDescription[] =
Matt Giucad4870432017-11-24 01:04:38648 "Enables a new experimental app banner flow and UI. Implies "
649 "#enable-app-banners.";
Brett Wilsonf27ff602017-07-07 22:28:47650
651const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
652const char kExperimentalCanvasFeaturesDescription[] =
653 "Enables the use of experimental canvas features which are still in "
654 "development.";
655
656const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
657const char kExperimentalExtensionApisDescription[] =
658 "Enables experimental extension APIs. Note that the extension gallery "
659 "doesn't allow you to upload extensions that use experimental APIs.";
660
661const char kExperimentalFullscreenExitUIName[] =
662 "Experimental fullscreen exit UI";
663const char kExperimentalFullscreenExitUIDescription[] =
664 "Displays experimental UI to allow mouse and touch input methods to exit "
665 "fullscreen mode.";
666
Brett Wilsonf27ff602017-07-07 22:28:47667const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
668const char kExperimentalKeyboardLockUiDescription[] =
669 "An experimental full screen with keyboard lock mode requiring users to "
670 "hold Esc to exit.";
671
672const char kExperimentalSecurityFeaturesName[] =
673 "Potentially annoying security features";
674const char kExperimentalSecurityFeaturesDescription[] =
675 "Enables several security features that will likely break one or more "
676 "pages that you visit on a daily basis. Strict mixed content checking, for "
677 "example. And locking powerful features to secure contexts. This flag will "
678 "probably annoy you.";
679
680const char kExperimentalWebPlatformFeaturesName[] =
681 "Experimental Web Platform features";
682const char kExperimentalWebPlatformFeaturesDescription[] =
683 "Enables experimental Web Platform features that are in development.";
684
685const char kExtensionContentVerificationName[] =
686 "Extension Content Verification";
687const char kExtensionContentVerificationDescription[] =
688 "This flag can be used to turn on verification that the contents of the "
689 "files on disk for extensions from the webstore match what they're "
690 "expected to be. This can be used to turn on this feature if it would not "
691 "otherwise have been turned on, but cannot be used to turn it off (because "
692 "this setting can be tampered with by malware).";
693const char kExtensionContentVerificationBootstrap[] =
694 "Bootstrap (get expected hashes, but do not enforce them)";
695const char kExtensionContentVerificationEnforce[] =
696 "Enforce (try to get hashes, and enforce them if successful)";
697const char kExtensionContentVerificationEnforceStrict[] =
698 "Enforce strict (hard fail if we can't get hashes)";
699
700const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
701const char kExtensionsOnChromeUrlsDescription[] =
702 "Enables running extensions on chrome:// URLs, where extensions explicitly "
703 "request this permission.";
galinapae72e152017-05-12 13:12:28704
Brett Wilsonecb80982017-07-12 20:34:51705const char kFastUnloadName[] = "Fast tab/window close";
706const char kFastUnloadDescription[] =
707 "Enables fast tab/window closing - runs a tab's onunload js handler "
708 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:34709
Brett Wilsonecb80982017-07-12 20:34:51710const char kFeaturePolicyName[] = "Feature Policy";
711const char kFeaturePolicyDescription[] =
712 "Enables granting and removing access to features through the "
713 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:34714
Brett Wilsonecb80982017-07-12 20:34:51715const char kFontCacheScalingName[] = "FontCache scaling";
716const char kFontCacheScalingDescription[] =
717 "Reuse a cached font in the renderer to serve different sizes of font for "
718 "faster layout.";
719
720const char kForceEffectiveConnectionTypeName[] =
721 "Override effective connection type";
722const char kForceEffectiveConnectionTypeDescription[] =
723 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:30724 "returned by the network quality estimator. Slow 2G on Cellular returns "
725 "Slow 2G when connected to a cellular network, and the actual estimate "
726 "effective connection type when not on a cellular network. Previews are "
727 "usually served on 2G networks.";
Brett Wilsonecb80982017-07-12 20:34:51728const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
729const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
730const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:30731const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
732 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:51733const char kEffectiveConnectionType2GDescription[] = "2G";
734const char kEffectiveConnectionType3GDescription[] = "3G";
735const char kEffectiveConnectionType4GDescription[] = "4G";
736
737const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
738const char kFillOnAccountSelectDescription[] =
739 "Filling of passwords when an account is explicitly selected by the user "
740 "rather than autofilling credentials on page load.";
741
Brett Wilsonecb80982017-07-12 20:34:51742const char kForceTextDirectionName[] = "Force text direction";
743const char kForceTextDirectionDescription[] =
744 "Explicitly force the per-character directionality of UI text to "
745 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
746 "direction of the character language.";
747const char kForceDirectionLtr[] = "Left-to-right";
748const char kForceDirectionRtl[] = "Right-to-left";
749
750const char kForceUiDirectionName[] = "Force UI direction";
751const char kForceUiDirectionDescription[] =
752 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
753 "mode, overriding the default direction of the UI language.";
754
755const char kFramebustingName[] =
756 "Framebusting requires same-origin or a user gesture";
757const char kFramebustingDescription[] =
758 "Don't permit an iframe to navigate the top level browsing context unless "
759 "they are same-origin or the iframe is processing a user gesture.";
760
761const char kGamepadExtensionsName[] = "Gamepad Extensions";
762const char kGamepadExtensionsDescription[] =
763 "Enabling this option allows web applications to access experimental "
764 "extensions to the Gamepad APIs.";
765
Brett Wilsonecb80982017-07-12 20:34:51766const char kGpuRasterizationMsaaSampleCountName[] =
767 "GPU rasterization MSAA sample count.";
768const char kGpuRasterizationMsaaSampleCountDescription[] =
769 "Specify the number of MSAA samples for GPU rasterization.";
770const char kGpuRasterizationMsaaSampleCountZero[] = "0";
771const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
772const char kGpuRasterizationMsaaSampleCountFour[] = "4";
773const char kGpuRasterizationMsaaSampleCountEight[] = "8";
774const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
775
776const char kGpuRasterizationName[] = "GPU rasterization";
777const char kGpuRasterizationDescription[] =
778 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:28779const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:51780
781const char kGoogleProfileInfoName[] = "Google profile name and icon";
782const char kGoogleProfileInfoDescription[] =
783 "Enables using Google information to populate the profile name and icon in "
784 "the avatar menu.";
785
786const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
787const char kHarfbuzzRendertextDescription[] =
788 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect "
789 "web content.";
790
791const char kHistoryRequiresUserGestureName[] =
792 "New history entries require a user gesture.";
793const char kHistoryRequiresUserGestureDescription[] =
794 "Require a user gesture to add a history entry.";
795const char kHyperlinkAuditingName[] = "Hyperlink auditing";
796const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
797
798const char kHostedAppQuitNotificationName[] =
799 "Quit notification for hosted apps";
800const char kHostedAppQuitNotificationDescription[] =
801 "Display a notification when quitting Chrome if hosted apps are currently "
802 "running.";
803
804const char kHostedAppShimCreationName[] =
805 "Creation of app shims for hosted apps on Mac";
806const char kHostedAppShimCreationDescription[] =
807 "Create app shims on Mac when creating a hosted app.";
808
Ana-Cosmina Popescuda3bcbe2017-09-22 18:24:48809const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector";
810const char kHtmlBasedUsernameDetectorDescription[] =
811 "Use HTML-based username detector for the password manager.";
812
Brett Wilsonecb80982017-07-12 20:34:51813const char kIconNtpName[] = "Large icons on the New Tab page";
814const char kIconNtpDescription[] =
815 "Enable the experimental New Tab page using large icons.";
816
817const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
818const char kIgnoreGpuBlacklistDescription[] =
819 "Overrides the built-in software rendering list and enables "
820 "GPU-acceleration on unsupported system configurations.";
821
Thanh Le5f090efa52017-12-27 22:39:44822const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blacklist";
823const char kIgnorePreviewsBlacklistDescription[] =
824 "Ignore decisions made by the PreviewsBlackList";
825
Brett Wilsonecb80982017-07-12 20:34:51826const char kImportantSitesInCbdName[] =
827 "Important sites options in clear browsing data dialog";
828const char kImportantSitesInCbdDescription[] =
829 "Include the option to whitelist important sites in the clear browsing "
830 "data dialog.";
831
Claudio Magni61c210922017-12-28 00:29:51832const char kImprovedLanguageSettingsName[] = "Improved Language Settings";
833const char kImprovedLanguageSettingsDescription[] =
834 "Set of changes for Language Settings. These changes are intended to fix "
835 "the major bugs related to Language Settings.";
836
Brett Wilsonecb80982017-07-12 20:34:51837const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
838const char kInProductHelpDemoModeChoiceDescription[] =
839 "Selects the In-Product Help demo mode.";
840
841const char kJavascriptHarmonyName[] = "Experimental JavaScript";
842const char kJavascriptHarmonyDescription[] =
843 "Enable web pages to use experimental JavaScript features.";
844
845const char kJavascriptHarmonyShippingName[] =
846 "Latest stable JavaScript features";
847const char kJavascriptHarmonyShippingDescription[] =
848 "Some web pages use legacy or non-standard JavaScript extensions that may "
849 "conflict with the latest JavaScript features. This flag allows disabling "
850 "support of those features for compatibility with such pages.";
851
Yutaka Hiranof7f2f632017-09-06 10:40:08852const char kKeepAliveRendererForKeepaliveRequestsName[] =
853 "Keep a renderer alive for keepalive fetch requests";
854const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
855 "Keep a render process alive when the process has a pending fetch request "
856 "with `keepalive' specified.";
857
Joe Downing095fd6d2018-02-01 18:40:36858const char kKeyboardLockApiName[] = "Experimental keyboard lock API.";
859const char kKeyboardLockApiDescription[] =
860 "Enables websites to use the new keyboard{Lock|Unlock} API to intercept "
861 "specific key events and have them routed directly to the webpage when in "
862 "fullscreen mode. Implies #experimental-keyboard-lock-ui.";
863
Brett Wilsonecb80982017-07-12 20:34:51864const char kLcdTextName[] = "LCD text antialiasing";
865const char kLcdTextDescription[] =
866 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
867 "(subpixel) when doing accelerated compositing.";
868
Matt Giucac399982f2017-10-06 07:51:29869const char kLeftToRightUrlsName[] =
870 "Render bidirectional URLs from left to right";
871const char kLeftToRightUrlsDescription[] =
872 "An experimental Bidi URL rendering algorithm where the URL components are "
873 "always shown in order from left to right, regardless of any RTL "
874 "characters. (The contents of each component are still rendered with the "
875 "normal Bidi algorithm.)";
876
Brett Wilsonecb80982017-07-12 20:34:51877const char kLoadMediaRouterComponentExtensionName[] =
878 "Load Media Router Component Extension";
879const char kLoadMediaRouterComponentExtensionDescription[] =
880 "Loads the Media Router component extension at startup.";
881
882const char kManualPasswordGenerationName[] = "Manual password generation.";
883const char kManualPasswordGenerationDescription[] =
884 "Show a 'Generate Password' option on the context menu for all password "
885 "fields.";
886
Dominic Battref27e8762017-08-23 11:16:25887const char kManualPasswordSavingName[] = "Manual password saving.";
888const char kManualPasswordSavingDescription[] =
889 "Show the password manager icon when typing into a password filed. "
890 "Clicking it allows to save the password without submitting the form.";
891
Brett Wilsonecb80982017-07-12 20:34:51892const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
893const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
Brett Wilsonecb80982017-07-12 20:34:51894
Lei Zhang2eca9082017-10-17 20:42:50895const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP.";
896const char kMaterialDesignIncognitoNTPDescription[] =
Brett Wilsonecb80982017-07-12 20:34:51897 "If enabled, the Incognito New Tab page uses the new material design with "
898 "a better readable text.";
899
900const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
901const char kMediaRemotingDescription[] =
902 "When Casting a tab to a remote device, enabling this turns on an "
903 "optimization that forwards the content bitstream directly to the remote "
904 "device when a video is fullscreened.";
905
906const char kMemoryAblationName[] = "Memory ablation experiment";
907const char kMemoryAblationDescription[] =
908 "Allocates extra memory in the browser process.";
909
910const char kMemoryCoordinatorName[] = "Memory coordinator";
911const char kMemoryCoordinatorDescription[] =
912 "Enable memory coordinator instead of memory pressure listeners.";
913
914const char kMessageCenterNewStyleNotificationName[] = "New style notification";
915const char kMessageCenterNewStyleNotificationDescription[] =
916 "Enables the experiment style of material-design notification";
917
Brett Wilsonecb80982017-07-12 20:34:51918const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
919const char kMhtmlGeneratorOptionDescription[] =
920 "Provides experimental options for MHTML file generator.";
921const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
922const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
923
Kouhei Ueno08445c22017-09-05 03:58:30924const char kModuleScriptsDynamicImportName[] =
925 "Enable ECMAScript 6 modules dynamic import";
926const char kModuleScriptsDynamicImportDescription[] =
927 "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and "
928 "Blink.";
929
Hiroshige Hayashizaki15c2eb92017-10-20 04:57:05930const char kModuleScriptsImportMetaUrlName[] =
931 "Enable ECMAScript 6 modules import.meta.url";
932const char kModuleScriptsImportMetaUrlDescription[] =
933 "Enables ECMAScript 6 modules import.meta.url syntax support in V8 and "
934 "Blink.";
935
Brett Wilsonecb80982017-07-12 20:34:51936const char kNewAudioRenderingMixingStrategyName[] =
937 "New audio rendering mixing strategy";
938const char kNewAudioRenderingMixingStrategyDescription[] =
939 "Use the new audio rendering mixing strategy.";
940
941const char kNewBookmarkAppsName[] = "The new bookmark app system";
942const char kNewBookmarkAppsDescription[] =
943 "Enables the new system for creating bookmark apps.";
944
Brett Wilsonecb80982017-07-12 20:34:51945const char kNewRemotePlaybackPipelineName[] =
946 "Enable the new remote playback pipeline.";
947const char kNewRemotePlaybackPipelineDescription[] =
948 "Enable the new pipeline for playing media element remotely via "
949 "RemotePlayback API or native controls.";
CJ DiMeglio7b4a199f2017-11-30 01:26:50950const char kUseSurfaceLayerForVideoName[] =
951 "Enable the use of SurfaceLayer objects for videos.";
952const char kUseSurfaceLayerForVideoDescription[] =
953 "Enable compositing onto a Surface instead of a VideoLayer "
954 "for videos.";
Brett Wilsonecb80982017-07-12 20:34:51955
956const char kNewUsbBackendName[] = "Enable new USB backend";
957const char kNewUsbBackendDescription[] =
958 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:34959
brettw5f9c1642017-05-14 17:12:48960const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:34961const char kNostatePrefetchDescription[] =
962 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
963 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
964 R"*(improve load times even more. "Simple Load" does nothing and is )*"
965 R"*(similar to disabling the feature, but collects more metrics for )*"
966 R"*(comparison purposes.)*";
967
Brett Wilsonecb80982017-07-12 20:34:51968const char kNotificationsNativeFlagName[] = "Enable native notifications.";
969const char kNotificationsNativeFlagDescription[] =
970 "Enable support for using the native notification toasts and notification "
971 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:34972
Zentaro Kavanaghbad511c2017-10-18 22:29:00973#if defined(OS_POSIX)
974const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication";
975const char kNtlmV2EnabledDescription[] =
976 "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support.";
977#endif
978
Brett Wilsonecb80982017-07-12 20:34:51979const char kNumRasterThreadsName[] = "Number of raster threads";
980const char kNumRasterThreadsDescription[] =
981 "Specify the number of raster threads.";
982const char kNumRasterThreadsOne[] = "1";
983const char kNumRasterThreadsTwo[] = "2";
984const char kNumRasterThreadsThree[] = "3";
985const char kNumRasterThreadsFour[] = "4";
986
987const char kOfferStoreUnmaskedWalletCardsName[] =
988 "Google Payments card saving checkbox";
989const char kOfferStoreUnmaskedWalletCardsDescription[] =
990 "Show the checkbox to offer local saving of a credit card downloaded from "
991 "the server.";
992
993const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
994const char kOfflineAutoReloadDescription[] =
995 "Pages that fail to load while the browser is offline will be "
996 "auto-reloaded when the browser is online again.";
997
998const char kOfflineAutoReloadVisibleOnlyName[] =
999 "Only Auto-Reload Visible Tabs";
1000const char kOfflineAutoReloadVisibleOnlyDescription[] =
1001 "Pages that fail to load while the browser is offline will only be "
1002 "auto-reloaded if their tab is visible.";
1003
Brett Wilsonecb80982017-07-12 20:34:511004const char kOmniboxDisplayTitleForCurrentUrlName[] =
1005 "Include title for the current URL in the omnibox";
1006const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
1007 "In the event that the omnibox provides suggestions on-focus, the URL of "
1008 "the current page is provided as the first suggestion without a title. "
1009 "Enabling this flag causes the title to be displayed.";
1010
Benoit Lizeab08362c2017-07-19 14:50:541011const char kOmniboxSpareRendererName[] =
1012 "Start spare renderer on omnibox focus";
1013const char kOmniboxSpareRendererDescription[] =
1014 "When the omnibox is focused, start an empty spare renderer. This can "
1015 "speed up the load of the navigation from the omnibox.";
1016
Tommy C. Li8875a442017-08-23 00:10:591017const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
1018 "Omnibox UI Elide Suggestion URL After Host";
1019const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
1020 "Elides the path, query, and ref of suggested URLs in the Omnibox "
1021 "dropdown.";
1022
Tommy C. Lid79d4402017-12-22 22:49:121023const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsName[] =
1024 "Omnibox UI Hide Steady-State URL Scheme and Trivial Subdomains";
1025const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsDescription[] =
1026 "In the Omnibox, hide the scheme and trivial subdomains from steady state "
1027 "displayed URLs. Hidden portions are restored during editing.";
1028
Brett Wilsonecb80982017-07-12 20:34:511029const char kOmniboxUIHideSuggestionUrlSchemeName[] =
1030 "Omnibox UI Hide Suggestion URL Scheme";
1031const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
1032 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
1033
1034const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
1035 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
1036const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
1037 "Elides trivially informative subdomains from suggested URLs in the "
1038 "Omnibox dropdown (e.g. www. and m.).";
1039
1040const char kOmniboxUIMaxAutocompleteMatchesName[] =
1041 "Omnibox UI Max Autocomplete Matches";
1042
1043const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1044 "Changes the maximum number of autocomplete matches displayed in the "
1045 "Omnibox UI.";
1046
1047const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
1048const char kOmniboxUINarrowDropdownDescription[] =
1049 "Makes the suggestions dropdown width match the omnibox width.";
1050
Justin Donnelly65c9e8b2017-10-01 05:15:011051const char kOmniboxUIShowSuggestionFaviconsName[] =
1052 "Omnibox UI Show Suggestion Favicons";
1053const char kOmniboxUIShowSuggestionFaviconsDescription[] =
1054 "Shows favicons instead of generic vector icons for URL suggestions in the "
1055 "Omnibox dropdown.";
1056
1057const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL";
1058const char kOmniboxUISwapTitleAndUrlDescription[] =
1059 "In the omnibox dropdown, shows titles before URLs when both are "
1060 "available.";
1061
Brett Wilsonecb80982017-07-12 20:34:511062const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
1063const char kOmniboxUIVerticalLayoutDescription[] =
1064 "Displays Omnibox sugestions in 2 lines - title over origin.";
1065
1066const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
1067const char kOmniboxUIVerticalMarginDescription[] =
1068 "Changes the vertical margin in the Omnibox UI.";
1069
Troy Hildebrandtb32637ca2018-02-21 23:25:091070const char kOmniboxVoiceSearchAlwaysVisibleName[] =
1071 "Omnibox Voice Search Always Visible";
1072const char kOmniboxVoiceSearchAlwaysVisibleDescription[] =
1073 "Always displays voice search icon in focused omnibox as long as voice "
1074 "search is possible";
1075
Brett Wilsonecb80982017-07-12 20:34:511076const char kOriginTrialsName[] = "Origin Trials";
1077const char kOriginTrialsDescription[] =
1078 "Enables origin trials for controlling access to feature/API experiments.";
1079
Becca Hughes930d8cd2017-10-02 11:09:121080const char kOverflowIconsForMediaControlsName[] =
1081 "Icons on Media Controls Overflow Menu";
1082const char kOverflowIconsForMediaControlsDescription[] =
1083 "Displays icons on the overflow menu of the native media controls";
1084
Brett Wilsonecb80982017-07-12 20:34:511085const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1086const char kOverlayScrollbarsDescription[] =
1087 "Enable the experimental overlay scrollbars implementation. You must also "
1088 "enable threaded compositing to have the scrollbars animate.";
1089
chaopenge8aa016b2017-08-24 15:20:191090const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
1091 "Flash Overlay Scrollbars After Any Scroll Update";
1092const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
1093 "Flash Overlay Scrollbars After any scroll update happends in page. You"
1094 " must also enable Overlay Scrollbars.";
1095
chaopeng343678022017-08-24 18:45:001096const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
1097 "Flash Overlay Scrollbars When Mouse Enter";
1098const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
1099 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
1100 " enable Overlay Scrollbars.";
1101
Claudio Magni81326f92017-09-01 05:21:181102const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
1103const char kUseNewAcceptLanguageHeaderDescription[] =
1104 "Adds the base language code after other corresponding language+region "
1105 "codes. This ensures that users receive content in their preferred "
1106 "language.";
1107
Brett Wilsonecb80982017-07-12 20:34:511108const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1109const char kOverscrollHistoryNavigationDescription[] =
Mohsen Izadi88b392a2018-02-15 06:57:481110 "History navigation in response to horizontal overscroll.";
Brett Wilsonecb80982017-07-12 20:34:511111const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
Mohsen Izadi88b392a2018-02-15 06:57:481112const char kOverscrollHistoryNavigationParallaxUi[] = "Parallax";
Brett Wilsonecb80982017-07-12 20:34:511113
1114const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
1115const char kOverscrollStartThresholdDescription[] =
1116 "Changes overscroll start threshold relative to the default value.";
1117const char kOverscrollStartThreshold133Percent[] = "133%";
1118const char kOverscrollStartThreshold166Percent[] = "166%";
1119const char kOverscrollStartThreshold200Percent[] = "200%";
1120
Xing Liu5400a002017-09-15 21:48:291121const char kParallelDownloadingName[] = "Parallel downloading";
1122const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061123 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291124
Brett Wilsonecb80982017-07-12 20:34:511125const char kPassiveEventListenerDefaultName[] =
1126 "Passive Event Listener Override";
1127const char kPassiveEventListenerDefaultDescription[] =
1128 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1129 "haven't requested otherwise) to be treated as passive. This will break "
1130 "touch/wheel behavior on some websites but is useful for demonstrating the "
1131 "potential performance benefits of adopting passive event listeners.";
1132const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1133const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1134
1135const char kPassiveEventListenersDueToFlingName[] =
1136 "Touch Event Listeners Passive Default During Fling";
1137const char kPassiveEventListenersDueToFlingDescription[] =
1138 "Forces touchstart, and first touchmove per scroll event listeners during "
1139 "fling to be treated as passive.";
1140
1141const char kPassiveDocumentEventListenersName[] =
1142 "Document Level Event Listeners Passive Default";
1143const char kPassiveDocumentEventListenersDescription[] =
1144 "Forces touchstart, and touchmove event listeners on document level "
1145 "targets (which haven't requested otherwise) to be treated as passive.";
1146
1147const char kPasswordForceSavingName[] = "Force-saving of passwords";
1148const char kPasswordForceSavingDescription[] =
1149 "Allow the user to manually enforce password saving instead of relying on "
1150 "password manager's heuristics.";
1151
1152const char kPasswordGenerationName[] = "Password generation";
1153const char kPasswordGenerationDescription[] =
1154 "Allow the user to have Chrome generate passwords when it detects account "
1155 "creation pages.";
1156
Vaclav Brozekd8a3f542017-11-16 14:21:131157const char kPasswordExportName[] = "Password export";
1158const char kPasswordExportDescription[] =
1159 "Export functionality in password settings.";
1160
1161const char kPasswordImportName[] = "Password import";
1162const char kPasswordImportDescription[] =
1163 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511164
Friedrich Horschig03c91982018-01-25 14:21:281165const char kPasswordSearchMobileName[] = "Password search";
1166const char kPasswordSearchMobileDescription[] =
1167 "Search functionality in password settings.";
1168
Brett Wilsonecb80982017-07-12 20:34:511169const char kPermissionActionReportingName[] = "Permission Action Reporting";
1170const char kPermissionActionReportingDescription[] =
1171 "Enables permission action reporting to Safe Browsing servers for opted in "
1172 "users.";
1173
1174const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1175const char kPermissionsBlacklistDescription[] =
1176 "Enables the Permissions Blacklist, which blocks permissions for "
1177 "blacklisted sites for Safe Browsing users.";
1178
1179const char kPinchScaleName[] = "Pinch scale";
1180const char kPinchScaleDescription[] =
1181 "Enables experimental support for scale using pinch.";
1182
Doug Arnett620ff542018-02-06 17:54:221183const char kPreviewsAllowedName[] = "Previews Allowed";
1184const char kPreviewsAllowedDescription[] =
1185 "Allows previews to be shown subject to specific preview types being "
1186 "enabled and the client experiencing specific triggering conditions. "
1187 "May be used as a kill-switch to turn off all potential preview types.";
1188
Brett Wilsonecb80982017-07-12 20:34:511189const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1190const char kPrintPdfAsImageDescription[] =
1191 "If enabled, an option to print PDF files as images will be available in "
1192 "print preview.";
1193
1194const char kPrintPreviewRegisterPromosName[] =
1195 "Print Preview Registration Promos";
1196const char kPrintPreviewRegisterPromosDescription[] =
1197 "Enable registering unregistered cloud printers from print preview.";
1198
1199const char kProtectSyncCredentialName[] = "Autofill sync credential";
1200const char kProtectSyncCredentialDescription[] =
1201 "How the password manager handles autofill for the sync credential.";
1202
1203const char kProtectSyncCredentialOnReauthName[] =
1204 "Autofill sync credential only for transactional reauth pages";
1205const char kProtectSyncCredentialOnReauthDescription[] =
1206 "How the password manager handles autofill for the sync credential only "
1207 "for transactional reauth pages.";
1208
Mohsen Izadi93faac12017-07-29 04:45:151209const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1210const char kPullToRefreshDescription[] =
1211 "Pull-to-refresh gesture in response to vertical overscroll.";
1212
Brett Wilsonecb80982017-07-12 20:34:511213const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1214const char kPushApiBackgroundModeDescription[] =
1215 "Enable background mode for the Push API. This allows Chrome to continue "
1216 "running after the last window is closed, and to launch at OS startup, if "
1217 "the Push API needs it.";
1218
1219const char kQuicName[] = "Experimental QUIC protocol";
1220const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1221
1222const char kReducedReferrerGranularityName[] =
1223 "Reduce default 'referer' header granularity.";
1224const char kReducedReferrerGranularityDescription[] =
1225 "If a page hasn't set an explicit referrer policy, setting this flag will "
1226 "reduce the amount of information in the 'referer' header for cross-origin "
1227 "requests.";
1228
Claudio Magnie0a80bb2018-01-31 02:52:581229extern const char kRegionalLocalesAsDisplayUIName[] =
1230 "Allow regional locales as display UI";
1231extern const char kRegionalLocalesAsDisplayUIDescription[] =
1232 "This flag allows regional locales to be selected as display UI by the "
1233 "user in Language Settings. The actual locale of the system is derived "
1234 "from the user selection based on some simple fallback logic.";
1235
Mihai Sardarescu6d0f5b72017-10-30 11:24:381236const char kRemoveUsageOfDeprecatedGaiaSigninEndpointName[] =
1237 "Remove usage of the deprecated GAIA sign-in endpoint";
1238const char kRemoveUsageOfDeprecatedGaiaSigninEndpointDescription[] =
1239 "The Gaia sign-in endpoint used for full-tab sign-in page is deprecated. "
1240 "This flags controls wheter it should no longer be used during a sign-in "
1241 " flow.";
1242
Yutaka Hirano4c0f2f5d452017-11-17 04:24:351243const char kRendererSideResourceSchedulerName[] =
1244 "Renderer side ResourceScheduler";
1245const char kRendererSideResourceSchedulerDescription[] =
1246 "Migrate some ResourceScheduler functionalities to renderer";
1247
Brett Wilsonecb80982017-07-12 20:34:511248const char kRequestTabletSiteName[] =
1249 "Request tablet site option in the settings menu";
1250const char kRequestTabletSiteDescription[] =
1251 "Allows the user to request tablet site. Web content is often optimized "
1252 "for tablet devices. When this option is selected the user agent string is "
1253 "changed to indicate a tablet device. Web content optimized for tablets is "
1254 "received there after for the current tab.";
1255
1256const char kResetAppListInstallStateName[] =
1257 "Reset the App Launcher install state on every restart.";
1258const char kResetAppListInstallStateDescription[] =
1259 "Reset the App Launcher install state on every restart. While this flag is "
1260 "set, Chrome will forget the launcher has been installed each time it "
1261 "starts. This is used for testing the App Launcher install flow.";
1262
1263const char kResourceLoadSchedulerName[] = "Use the resource load scheduler";
1264const char kResourceLoadSchedulerDescription[] =
1265 "Uses the resource load scheduler in blink to schedule and throttle "
1266 "resource load requests.";
1267
Brett Wilsonecb80982017-07-12 20:34:511268const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1269const char kSafeSearchUrlReportingDescription[] =
1270 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1271
Alexei Filippov98772752018-01-27 08:26:521272const char kSamplingHeapProfilerName[] = "Native memory sampling profiler.";
1273const char kSamplingHeapProfilerDescription[] =
1274 "Enables native memory sampling profiler with specified rate in KiB. "
1275 "If sampling rate is not provided the default value of 128 KiB is used.";
1276
Brett Wilsonecb80982017-07-12 20:34:511277const char kSaveasMenuLabelExperimentName[] =
1278 "Switch 'Save as' menu labels to 'Download'";
1279const char kSaveasMenuLabelExperimentDescription[] =
1280 "Enables an experiment to switch menu labels that use 'Save as...' to "
1281 "'Download'.";
1282
1283const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1284const char kSavePageAsMhtmlDescription[] =
1285 "Enables saving pages as MHTML: a single text file containing HTML and all "
1286 "sub-resources.";
1287
Nate Chapin9638e7102017-09-20 22:11:011288const char kSavePreviousDocumentResourcesName[] =
1289 "Save Previous Document Resources";
1290const char kSavePreviousDocumentResourcesDescription[] =
1291 "Saves an old document's cached resources until the specified point in the "
1292 "next document's lifecycle.";
1293const char kSavePreviousDocumentResourcesNever[] =
1294 "Don't explicitly save resources";
1295const char kSavePreviousDocumentResourcesUntilOnDOMContentLoaded[] =
1296 "Save resources until onDOMContentLoaded completes";
1297const char kSavePreviousDocumentResourcesUntilOnLoad[] =
1298 "Save resources until onload completes";
1299
Brett Wilsonecb80982017-07-12 20:34:511300const char kScrollPredictionName[] = "Scroll prediction";
1301const char kScrollPredictionDescription[] =
1302 "Predicts the finger's future position during scrolls allowing time to "
1303 "render the frame before the finger is there.";
1304
1305const char kSecondaryUiMd[] =
1306 "Material Design in the rest of the browser's native UI";
1307const char kSecondaryUiMdDescription[] =
1308 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
1309 "etc.). On Mac, this enables MacViews, which uses toolkit-views for native "
1310 "browser dialogs.";
1311
1312const char kServiceWorkerNavigationPreloadName[] =
1313 "Service worker navigation preload.";
1314const char kServiceWorkerNavigationPreloadDescription[] =
1315 "Enable web pages to use the experimental service worker navigation "
1316 "preload API.";
1317
gogeraldd5061b592017-09-06 23:39:551318const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1319const char kServiceWorkerPaymentAppsDescription[] =
1320 "Enable Service Worker applications to integrate as payment apps";
1321
Makoto Shimazu22078cc2018-02-21 03:01:441322extern const char kServiceWorkerServicificationName[] =
1323 "Servicified service workers";
1324extern const char kServiceWorkerServicificationDescription[] =
1325 "Enable the servicified service workers. A servicified service worker can "
1326 "have direct connection from its clients, so that fetch events can be "
1327 "dispatched through the connection without hopping to the browser process.";
Makoto Shimazud9f333c2017-08-08 07:23:171328
Tsuyoshi Horobcb1c642017-11-24 16:32:141329const char kServiceWorkerScriptFullCodeCacheName[] =
1330 "Service worker script full code cache.";
1331const char kServiceWorkerScriptFullCodeCacheDescription[] =
1332 "Generate V8 full code cache of Service Worker scripts while installing.";
1333
Brett Wilsonecb80982017-07-12 20:34:511334const char kSettingsWindowName[] = "Show settings in a window";
1335const char kSettingsWindowDescription[] =
1336 "Settings will be shown in a dedicated window instead of as a browser tab.";
1337
Trent Apted750ba7022017-10-23 13:36:251338const char kShowAllDialogsWithViewsToolkitName[] =
1339 "Show all dialogs with Views toolkit";
1340const char kShowAllDialogsWithViewsToolkitDescription[] =
1341 "All browser dialogs will be shown using the Views toolkit rather than "
1342 "Cocoa. This requires <a href=\"#secondary-ui-md\">#secondary-ui-md</a>.";
1343
Brett Wilsonecb80982017-07-12 20:34:511344const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1345const char kShowAutofillSignaturesDescription[] =
1346 "Annotates web forms with Autofill signatures as HTML attributes.";
1347
1348const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1349const char kShowAutofillTypePredictionsDescription[] =
1350 "Annotates web forms with Autofill field type predictions as placeholder "
1351 "text.";
1352
1353const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1354const char kShowOverdrawFeedbackDescription[] =
1355 "Visualize overdraw by color-coding elements based on if they have other "
1356 "elements drawn underneath.";
1357
yiyixbdfa9a0b2017-10-23 22:21:471358const char kEnableDrawOcclusionName[] = "Enable draw occlusion";
1359const char kEnableDrawOcclusionDescription[] =
1360 "Enable the system to use draw occlusion to skip draw quads when they are "
1361 "not shown on the screen.";
1362
Brett Wilsonecb80982017-07-12 20:34:511363const char kShowSavedCopyName[] = "Show Saved Copy Button";
1364const char kShowSavedCopyDescription[] =
1365 "When a page fails to load, if a stale copy of the page exists in the "
1366 "browser cache, a button will be presented to allow the user to load that "
1367 "stale copy. The primary enabling choice puts the button in the most "
1368 "salient position on the error page; the secondary enabling choice puts it "
1369 "secondary to the reload button.";
1370const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1371const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1372const char kDisableShowSavedCopy[] = "Disable";
1373
Brett Wilsonecb80982017-07-12 20:34:511374const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1375const char kSilentDebuggerExtensionApiDescription[] =
1376 "Do not show the infobar when an extension attaches to a page via "
1377 "chrome.debugger API. This is required to debug extension background "
1378 "pages.";
1379
1380const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1381const char kSimpleCacheBackendDescription[] =
1382 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1383 "disk space allocation.";
1384
1385const char kSimplifiedFullscreenUiName[] =
1386 "Simplified full screen / mouse lock UI.";
1387const char kSimplifiedFullscreenUiDescription[] =
1388 "A simplified new user experience when entering page-triggered full screen "
1389 "or mouse pointer lock states.";
1390
Christopher Thompson75ff845d2018-02-01 20:12:461391const char kSimplifyHttpsIndicatorName[] = "Simplify HTTPS indicator UI";
1392const char kSimplifyHttpsIndicatorDescription[] =
1393 "Change the UI treatment for HTTPS pages.";
1394
Brett Wilsonecb80982017-07-12 20:34:511395const char kSingleClickAutofillName[] = "Single-click autofill";
1396const char kSingleClickAutofillDescription[] =
1397 "Make autofill suggestions on initial mouse click on a form element.";
1398
Brett Wilsonecb80982017-07-12 20:34:511399const char kSitePerProcessName[] = "Strict site isolation";
1400const char kSitePerProcessDescription[] =
Nasko Oskov6042073fe2017-12-08 20:35:171401 "Experimental security mode that ensures each renderer process "
Brett Wilsonecb80982017-07-12 20:34:511402 "contains pages from at most one site. In this mode, out-of-process "
1403 "iframes will be used whenever an iframe is cross-site.";
1404
1405const char kSiteSettings[] = "Site settings with All sites and Site details";
1406const char kSiteSettingsDescription[] =
1407 "Adds new ways of viewing Site settings.";
1408
1409const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
1410const char kSlimmingPaintInvalidationDescription[] =
1411 "Whether to enable a new paint invalidation system.";
1412
1413const char kSmoothScrollingName[] = "Smooth Scrolling";
1414const char kSmoothScrollingDescription[] =
1415 "Animate smoothly when scrolling page content.";
1416
1417const char kSoftwareRasterizerName[] = "3D software rasterizer";
1418const char kSoftwareRasterizerDescription[] =
1419 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1420
Wei-Yin Chen (陳威尹)deff0802018-01-19 06:29:201421const char kSoleIntegrationName[] = "Sole integration";
1422const char kSoleIntegrationDescription[] =
1423 "Enable Sole integration for browser customization. You must restart "
1424 "the browser twice for changes to take effect.";
1425
Tommy Steimel77704be2017-08-28 22:14:401426const char kSoundContentSettingName[] = "Sound content setting";
1427const char kSoundContentSettingDescription[] =
1428 "Enable site-wide muting in content settings and tab strip context menu.";
1429
Alexandr Ilinf0500ed32017-09-27 21:12:361430const char kSpeculativePreconnectName[] = "Enable new preconnect predictor";
1431const char kSpeculativePreconnectDescription[] =
1432 "Enable the new implementation of preconnect and DNS preresolve. "
1433 "\"Learning\" means that only database construction is enabled, "
1434 "\"Preconnect\" enables both learning and preconnect and disables the "
1435 "existing implementation. \"No preconnect\" disables both implementations.";
1436
Brett Wilsonecb80982017-07-12 20:34:511437const char kSpeculativePrefetchName[] = "Speculative Prefetch";
vabr0215a8e2017-03-28 12:47:341438const char kSpeculativePrefetchDescription[] =
1439 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
1440 R"*(load times, based on a local database (see chrome://predictors). )*"
1441 R"*("Learning" means that only the database construction is enabled, )*"
1442 R"*("Prefetching" that learning and prefetching are enabled.)*";
1443
Justin Donnelly4e448cb2017-07-07 21:32:131444const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1445 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131446const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1447 "If enabled, when the user enters text in the omnibox that looks like a "
1448 "a query, any service worker associated with the search engine the query "
1449 "will be sent to is started early.";
1450
Brett Wilsonecb80982017-07-12 20:34:511451const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1452const char kSpellingFeedbackFieldTrialDescription[] =
1453 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401454
Shubhie Panickerfaf082ed2018-01-03 04:49:151455const char kStopInBackgroundName[] = "Stop in background";
1456const char kStopInBackgroundDescription[] =
1457 "Stop scheduler task queues, in the background, "
1458 " after certain grace time.";
1459
1460const char kStopLoadingInBackgroundName[] = "Stop loading in background";
1461const char kStopLoadingInBackgroundDescription[] =
1462 "Stop loading tasks and loading "
1463 "resources, in the background, after certain grace time.";
1464
Brett Wilsonecb80982017-07-12 20:34:511465const char kSuggestionsWithSubStringMatchName[] =
1466 "Substring matching for Autofill suggestions";
1467const char kSuggestionsWithSubStringMatchDescription[] =
1468 "Match Autofill suggestions based on substrings (token prefixes) rather "
1469 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341470
Brett Wilsonecb80982017-07-12 20:34:511471const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1472const char kSyncSandboxDescription[] =
1473 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341474
Brett Wilsonecb80982017-07-12 20:34:511475const char kTabAudioMutingName[] = "Tab audio muting UI control";
1476const char kTabAudioMutingDescription[] =
1477 "When enabled, the audio indicators in the tab strip double as tab audio "
1478 "mute controls. This also adds commands in the tab context menu for "
1479 "quickly muting multiple selected tabs.";
vabr0215a8e2017-03-28 12:47:341480
Christian Dullweberd0d96f02017-09-13 09:22:511481const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1482const char kTabsInCbdDescription[] =
1483 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1484
Becky Zhou99c22802017-10-19 05:09:271485const char kTabModalJsDialogName[] = "Auto-dismissing JavaScript Dialogs";
1486const char kTabModalJsDialogDescription[] =
1487 "If enabled, the JavaScript dialog will be auto dismissable when switching"
1488 " tab.";
1489
Brett Wilsonecb80982017-07-12 20:34:511490const char kTcpFastOpenName[] = "TCP Fast Open";
1491const char kTcpFastOpenDescription[] =
1492 "Enable the option to send extra authentication information in the initial "
1493 "SYN packet for a previously connected client, allowing faster data send "
1494 "start.";
vabr0215a8e2017-03-28 12:47:341495
Daniele Castagna0fead93e2018-01-10 20:40:291496const char kTintGlCompositedContentName[] = "Tint GL-composited content";
1497const char kTintGlCompositedContentDescription[] =
1498 "Tint contents composited using GL with a shade of red to help debug and "
1499 "study overlay support.";
1500
Brett Wilsonecb80982017-07-12 20:34:511501const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
1502const char kTopChromeMdDescription[] =
1503 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
1504const char kTopChromeMdMaterial[] = "Normal";
Eugene Girard42dedf722017-10-12 21:07:531505const char kTopChromeMdMaterialAuto[] = "Auto";
Brett Wilsonecb80982017-07-12 20:34:511506const char kTopChromeMdMaterialHybrid[] = "Touch";
vabr0215a8e2017-03-28 12:47:341507
Brett Wilsonecb80982017-07-12 20:34:511508const char kThreadedScrollingName[] = "Threaded scrolling";
1509const char kThreadedScrollingDescription[] =
1510 "Threaded handling of scroll-related input events. Disabling this will "
1511 "force all such scroll events to be handled on the main thread. Note that "
1512 "this can dramatically hurt scrolling performance of most websites and is "
1513 "intended for testing purposes only.";
1514
Steven Valdez4584b2482017-07-14 01:11:571515const char kTLS13VariantName[] = "TLS 1.3";
1516const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1517const char kTLS13VariantDisabled[] = "Disabled";
Steven Valdez57d88652017-10-05 21:05:111518const char kTLS13VariantDeprecated[] = "Disabled (Deprecated Setting)";
Steven Valdez781157b2018-01-11 13:32:041519const char kTLS13VariantDraft23[] = "Enabled (Draft 23)";
Steven Valdez4584b2482017-07-14 01:11:571520
Brett Wilsonecb80982017-07-12 20:34:511521const char kTopDocumentIsolationName[] = "Top document isolation";
1522const char kTopDocumentIsolationDescription[] =
1523 "Highly experimental performance mode where cross-site iframes are kept in "
1524 "a separate process from the top document. In this mode, iframes from "
1525 "different third-party sites will be allowed to share a process.";
1526
Dominick Ng8896b1cd2017-10-17 23:24:361527const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement";
1528const char kTopSitesFromSiteEngagementDescription[] =
1529 "Enable Top Sites on the New Tab Page to be sourced and sorted using site "
1530 "engagement.";
1531
Brett Wilsonecb80982017-07-12 20:34:511532const char kTouchAdjustmentName[] = "Touch adjustment";
1533const char kTouchAdjustmentDescription[] =
1534 "Refine the position of a touch gesture in order to compensate for touches "
1535 "having poor resolution compared to a mouse.";
1536
1537const char kTouchDragDropName[] = "Touch initiated drag and drop";
1538const char kTouchDragDropDescription[] =
1539 "Touch drag and drop can be initiated through long press on a draggable "
1540 "element.";
1541
1542const char kTouchEventsName[] = "Touch Events API";
1543const char kTouchEventsDescription[] =
1544 "Force Touch Events API feature detection to always be enabled or "
1545 "disabled, or to be enabled when a touchscreen is detected on startup "
Ella Gea6a203c92017-10-26 19:09:291546 "(Automatic).";
Brett Wilsonecb80982017-07-12 20:34:511547
1548const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1549const char kTouchSelectionStrategyDescription[] =
1550 "Controls how text selection granularity changes when touch text selection "
1551 "handles are dragged. Non-default behavior is experimental.";
1552const char kTouchSelectionStrategyCharacter[] = "Character";
1553const char kTouchSelectionStrategyDirection[] = "Direction";
1554
1555const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1556const char kTraceUploadUrlDescription[] =
1557 "This is to be used in conjunction with the enable-navigation-tracing "
1558 "flag. Please select the label that best describes the recorded traces. "
1559 "This will choose the destination the traces are uploaded to. If you are "
1560 "not sure, select other. If left empty, no traces will be uploaded.";
1561const char kTraceUploadUrlChoiceOther[] = "Other";
1562const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1563const char kTraceUploadUrlChoiceQa[] = "QA";
1564const char kTraceUploadUrlChoiceTesting[] = "Testing";
1565
Philippe Hamel7fdaa452017-09-29 17:22:491566const char kTranslateRankerEnforcementName[] =
1567 "Enforce TranslateRanker decisions";
1568const char kTranslateRankerEnforcementDescription[] =
1569 "Improved Translate UI triggering logic. TranslateRanker decides whether "
1570 "or not Translate UI should be triggered in a given context.";
1571
Brett Wilsonecb80982017-07-12 20:34:511572const char kTrySupportedChannelLayoutsName[] =
1573 "Causes audio output streams to check if channel layouts other than the "
1574 "default hardware layout are available.";
1575const char kTrySupportedChannelLayoutsDescription[] =
1576 "Causes audio output streams to check if channel layouts other than the "
1577 "default hardware layout are available. Turning this on will allow the OS "
1578 "to do stereo to surround expansion if supported. May expose third party "
1579 "driver bugs, use with caution.";
1580
David Roger6762a092018-01-31 15:55:071581const char kUnifiedConsentName[] = "Unified Consent";
1582const char kUnifiedConsentDescription[] =
1583 "Enables a unified management of user consent for privacy-related "
1584 "features. This includes new confirmation screens and improved settings "
1585 "pages.";
1586
Brett Wilsonecb80982017-07-12 20:34:511587const char kUiPartialSwapName[] = "Partial swap";
1588const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1589
Chris Pickel3a227ae62017-08-24 10:47:261590const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1591const char kUseDdljsonApiDescription[] =
1592 "Enables the new ddljson API to fetch Doodles for the NTP.";
1593
Becca Hughes59c05b42017-11-03 13:11:581594const char kUseModernMediaControlsName[] = "New Media Controls";
1595const char kUseModernMediaControlsDescription[] =
1596 "Enables the new style native media controls.";
1597
Mustaq Ahmedc646c0a2017-10-20 20:08:301598const char kUserActivationV2Name[] = "User Activation v2";
1599const char kUserActivationV2Description[] =
1600 "Enable simple user activation for APIs that are otherwise controlled by "
1601 "user gesture tokens.";
1602
Brett Wilsonecb80982017-07-12 20:34:511603const char kUserConsentForExtensionScriptsName[] =
1604 "User consent for extension scripts";
1605const char kUserConsentForExtensionScriptsDescription[] =
1606 "Require user consent for an extension running a script on the page, if "
1607 "the extension requested permission to run on all urls.";
1608
1609const char kUseSuggestionsEvenIfFewFeatureName[] =
1610 "Disable minimum for server-side tile suggestions on NTP.";
1611const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1612 "Request server-side suggestions even if there are only very few of them "
1613 "and use them for tiles on the New Tab Page.";
1614
1615const char kV8CacheOptionsName[] = "V8 caching mode.";
1616const char kV8CacheOptionsDescription[] =
1617 "Caching mode for the V8 JavaScript engine.";
Brett Wilsonecb80982017-07-12 20:34:511618const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1619
Hitoshi Yoshida3e5db562017-09-11 02:31:081620const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts.";
1621const char kV8ContextSnapshotDescription[] =
1622 "Sets to use a snapshot to create V8 contexts in frame creation.";
1623
Michael Hablich896d52662017-10-23 15:59:571624const char kV8VmFutureName[] = "Future V8 VM features";
1625const char kV8VmFutureDescription[] =
1626 "This enables upcoming and experimental V8 VM features. "
1627 "This flag does not enable experimental JavaScript features.";
1628
Brett Wilsonecb80982017-07-12 20:34:511629const char kVibrateRequiresUserGestureName[] =
1630 "Requiring user gesture for the Vibration API";
1631const char kVibrateRequiresUserGestureDescription[] =
1632 "Block the Vibration API if no user gesture has been received on the frame "
1633 "or any embedded frame.";
1634
1635const char kVideoFullscreenOrientationLockName[] =
1636 "Lock screen orientation when playing a video fullscreen.";
1637const char kVideoFullscreenOrientationLockDescription[] =
1638 "Lock the screen orientation of the device to match video orientation when "
1639 "a video goes fullscreen. Only on phones.";
1640
1641const char kVideoRotateToFullscreenName[] =
1642 "Rotate-to-fullscreen gesture for videos.";
1643const char kVideoRotateToFullscreenDescription[] =
1644 "Enter/exit fullscreen when device is rotated to/from the orientation of "
1645 "the video. Only on phones.";
1646
1647const char kWalletServiceUseSandboxName[] =
1648 "Use Google Payments sandbox servers";
1649const char kWalletServiceUseSandboxDescription[] =
1650 "For developers: use the sandbox service for Google Payments API calls.";
1651
Brett Wilsonecb80982017-07-12 20:34:511652const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
1653const char kWebglDraftExtensionsDescription[] =
1654 "Enabling this option allows web applications to access the WebGL "
1655 "Extensions that are still in draft status.";
1656
1657const char kWebMidiName[] = "Web MIDI API";
1658const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1659
1660const char kWebPaymentsName[] = "Web Payments";
1661const char kWebPaymentsDescription[] =
1662 "Enable Web Payments API integration, a JavaScript API for merchants.";
1663
Mathieu Perreault51339b82017-07-20 17:06:051664const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
1665const char kWebPaymentsModifiersDescription[] =
1666 "If the website provides modifiers in the payment request, show the custom "
1667 "total for each payment instrument, update the shopping cart when "
1668 "instruments are switched, and send modified payment method specific data "
1669 "to the payment app.";
1670
Brett Wilsonecb80982017-07-12 20:34:511671const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
1672const char kWebrtcEchoCanceller3Description[] =
1673 "Experimental WebRTC echo canceller (AEC3).";
1674
1675const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
1676const char kWebrtcHwDecodingDescription[] =
1677 "Support in WebRTC for decoding video streams using platform hardware.";
1678
1679const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
1680const char kWebrtcHwEncodingDescription[] =
1681 "Support in WebRTC for encoding video streams using platform hardware.";
1682
1683const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
1684const char kWebrtcHwH264EncodingDescription[] =
1685 "Support in WebRTC for encoding h264 video streams using platform "
1686 "hardware.";
1687
1688const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
1689const char kWebrtcHwVP8EncodingDescription[] =
1690 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
1691
Niels Möller090866a2018-02-13 10:55:031692const char kWebrtcNewEncodeCpuLoadEstimatorName[] =
1693 "WebRTC new encode cpu load estimator";
1694const char kWebrtcNewEncodeCpuLoadEstimatorDescription[] =
1695 "Enable new estimator for the encoder cpu load, for evaluation and "
1696 "testing. Intended to improve accuracy when screen casting.";
1697
Brett Wilsonecb80982017-07-12 20:34:511698const char kWebrtcSrtpAesGcmName[] =
1699 "Negotiation with GCM cipher suites for SRTP in WebRTC";
1700const char kWebrtcSrtpAesGcmDescription[] =
1701 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
1702
Joachim Bauch4a41d7512017-08-23 14:24:231703const char kWebrtcSrtpEncryptedHeadersName[] =
1704 "Negotiation with encrypted header extensions for SRTP in WebRTC";
1705const char kWebrtcSrtpEncryptedHeadersDescription[] =
1706 "When enabled, WebRTC will try to negotiate encrypted header extensions "
1707 "for SRTP.";
1708
Brett Wilsonecb80982017-07-12 20:34:511709const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
1710const char kWebrtcStunOriginDescription[] =
1711 "When enabled, Stun messages generated by WebRTC will contain the Origin "
1712 "header.";
1713
1714const char kWebvrName[] = "WebVR";
1715const char kWebvrDescription[] =
David Dorwin5a496c32017-11-17 01:45:051716 "Allow web applications to access experimental "
Brandon Jonese9d9b2b2017-12-11 22:20:111717 "Virtual Reality functionality via the WebVR 1.1 API. This feature will "
1718 "eventually be replaced by the WebXR Device API. Warning: Enabling this "
1719 "will also allow WebVR content on insecure origins to access these "
1720 "powerful APIs, and may pose a security risk.";
Brett Wilsonecb80982017-07-12 20:34:511721
Brandon Jonese9d9b2b2017-12-11 22:20:111722const char kWebXrName[] = "WebXR Device API";
1723const char kWebXrDescription[] =
1724 "Allow web applications to access experimental APIs to interact with "
1725 "Virtual Reality (VR) and Augmented Reality (AR) devices.";
1726
Anna Maria57ecf7592018-01-12 03:10:401727const char kWebXrOrientationSensorDeviceName[] =
1728 "WebXR orientation sensor device";
1729const char kWebXrOrientationSensorDeviceDescription[] =
1730 "When no VR platform device is available, expose a non-presenting device "
1731 "based on the device's orientation sensors, if available.";
1732
Brett Wilsonecb80982017-07-12 20:34:511733const char kWifiCredentialSyncName[] = "WiFi credential sync";
1734const char kWifiCredentialSyncDescription[] =
1735 "Enables synchronizing WiFi network settings across devices. When enabled, "
1736 "the WiFi credential datatype is registered with Chrome Sync, and WiFi "
1737 "credentials are synchronized subject to user preferences. (See also, "
1738 "chrome://settings/syncSetup.)";
1739
1740const char kZeroCopyName[] = "Zero-copy rasterizer";
1741const char kZeroCopyDescription[] =
1742 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:341743
Brett Wilsonff596952017-07-14 01:06:551744// Android ---------------------------------------------------------------------
1745
1746#if defined(OS_ANDROID)
1747
1748const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
1749const char kAiaFetchingDescription[] =
1750 "Enable intermediate certificate fetching when a server does not provide "
1751 "sufficient certificates to build a chain to a trusted root.";
1752
1753const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
1754const char kAccessibilityTabSwitcherDescription[] =
1755 "Enable the accessibility tab switcher for Android.";
1756
Wei-Yin Chen (陳威尹)80683452017-10-02 19:08:251757const char kAllowReaderForAccessibilityName[] = "Reader Mode for Accessibility";
1758const char kAllowReaderForAccessibilityDescription[] =
1759 "Allows Reader Mode on any articles, even if the page is mobile-friendly.";
1760
Brett Wilsonff596952017-07-14 01:06:551761const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
1762const char kAndroidAutofillAccessibilityDescription[] =
1763 "Enable accessibility for autofill popup.";
1764
1765const char kAndroidPaymentAppsName[] = "Android payment apps";
1766const char kAndroidPaymentAppsDescription[] =
1767 "Enable third party Android apps to integrate as payment apps";
1768
Miriam Gershenson8cf1397222018-01-23 22:48:291769const char kAsyncDnsName[] = "Async DNS resolver";
1770const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
1771
Brett Wilsonff596952017-07-14 01:06:551772const char kAutofillAccessoryViewName[] =
1773 "Autofill suggestions as keyboard accessory view";
1774const char kAutofillAccessoryViewDescription[] =
1775 "Shows Autofill suggestions on top of the keyboard rather than in a "
1776 "dropdown.";
1777
1778const char kBackgroundLoaderForDownloadsName[] =
1779 "Enables background downloading of pages.";
1780const char kBackgroundLoaderForDownloadsDescription[] =
1781 "Enables downloading pages in the background in case page is not yet "
1782 "loaded in current tab.";
1783
Matthew Jones6c1f5e22018-02-06 18:19:531784const char kChromeDuplexName[] = "Chrome Duplex";
1785const char kChromeDuplexDescription[] =
1786 "Enables Chrome Duplex, split toolbar Chrome Home, on Android.";
Theresa Wellingtonb9243b22017-12-01 16:23:051787
1788const char kChromeHomeBottomNavLabelsName[] =
1789 "Chrome Home bottom navigation menu item labels.";
1790const char kChromeHomeBottomNavLabelsDescription[] =
1791 "Enables text labels for Chrome Home bottom navigation menu items.";
1792
1793const char kChromeHomeClearUrlOnOpenName[] = "Chrome Home clear url on open";
1794const char kChromeHomeClearUrlOnOpenDescription[] =
1795 "Clear omnibox URL when the bottom sheet is opened.";
1796
Daniel Park825a16f32017-12-08 00:44:261797const char kChromeHomeEnableSurveyName[] = "Enable Chrome Home survey";
1798const char kChromeHomeEnableSurveyDescription[] =
1799 "If enabled, the survey process will allow surveys using sample "
1800 "parameters.";
1801
Theresa Wellingtonb9243b22017-12-01 16:23:051802const char kChromeHomeInactivitySheetExpansionName[] =
1803 "Expansion of Chrome Home bottom sheet on startup";
1804const char kChromeHomeInactivitySheetExpansionDescription[] =
1805 "Expand bottom sheet on startup in Chrome Home after a period of"
1806 " inactivity.";
1807
Matthew Joneseab91aa2017-12-19 16:12:421808const char kChromeHomeMenuItemsName[] =
1809 "Show bookmarks, downloads, and history menu items in Chrome Home";
1810const char kChromeHomeMenuItemsDescription[] =
1811 "Shows bookmarks, downloads, and history menu items in the overflow menu"
1812 " when Chrome Home is enabled. These items will open the bottom sheet to"
1813 " show the desired content.";
1814
Theresa Wellingtonc4cff8a12017-11-28 04:13:181815const char kChromeHomePersistentIphName[] = "Chrome Home Persistent Iph";
1816const char kChromeHomePersistentIphDescription[] =
1817 "Wait to dismiss the Chrome Home IPH until the user inteacts with the "
1818 "toolbar or a timer expires.";
1819
Theresa Wellingtondd71c5c2017-10-02 15:50:381820const char kChromeHomePersonalizedOmniboxSuggestionsName[] =
1821 "Chrome Home Personalized Omnibox Suggestions";
1822const char kChromeHomePersonalizedOmniboxSuggestionsDescription[] =
1823 "Enable personalized omnibox suggestions on focus for Chrome Home.";
1824
Theresa Wellington13977c832017-12-13 16:59:111825const char kChromeHomePullToRefreshIphAtTopName[] =
1826 "Chrome Home Pull-To-Refresh Iph At Top";
1827const char kChromeHomePullToRefreshIphAtTopDescription[] =
1828 "Show the Chrome Home pull-to-refresh help bubble at the top of the screen";
1829
Theresa Wellington306c4cdc2017-12-07 16:43:081830const char kChromeHomeShowGoogleGName[] = "Chrome Home Show Google G";
1831const char kChromeHomeShowGoogleGDescription[] =
1832 "Show the Google G when the url is cleared. The flag to clear the url "
1833 "when the sheet is opened must also be set.";
1834
Brett Wilsonff596952017-07-14 01:06:551835const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1836const char kChromeHomeSwipeLogicDescription[] =
1837 "Various swipe logic options for Chrome Home for sheet expansion.";
1838const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
Matthew Jonesbe384ee42017-10-31 19:57:151839const char kChromeHomeSwipeLogicVelocity[] = "Velocity suppression model";
Brett Wilsonff596952017-07-14 01:06:551840
Matthew Jones5b7f1d62018-01-23 00:37:251841const char kChromeModernDesignName[] = "Chrome Modern Design";
1842const char kChromeModernDesignDescription[] =
Matthew Jones213a0692018-02-05 20:07:451843 "Enable modern design for Chrome. Chrome must be restarted twice for this "
1844 "flag to take effect.";
Matthew Jones5b7f1d62018-01-23 00:37:251845
Megan Jablonskic61eb1b82017-10-02 18:03:061846const char kChromeMemexName[] = "Chrome Memex";
1847const char kChromeMemexDescription[] =
1848 "Enables Chrome Memex homepage on Android. Restricted to opted-in "
1849 "Googlers.";
1850
Sarath Singapati83aef1c2017-11-16 15:54:521851const char kClearOldBrowsingDataName[] = "Clear older browsing data";
1852const char kClearOldBrowsingDataDescription[] =
1853 "Enables clearing of browsing data which is older than a given time "
1854 "period.";
1855
Brett Wilsonff596952017-07-14 01:06:551856const char kContentSuggestionsCategoryOrderName[] =
1857 "Default content suggestions category order (e.g. on NTP)";
1858const char kContentSuggestionsCategoryOrderDescription[] =
1859 "Set default order of content suggestion categories (e.g. on the NTP).";
1860
1861const char kContentSuggestionsCategoryRankerName[] =
1862 "Content suggestions category ranker (e.g. on NTP)";
1863const char kContentSuggestionsCategoryRankerDescription[] =
1864 "Set category ranker to order categories of content suggestions (e.g. on "
1865 "the NTP).";
1866
Vitalii Iarkof52ff802017-09-14 12:34:241867const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
1868const char kContentSuggestionsDebugLogDescription[] =
1869 "Enable content suggestions debug log accessible through "
1870 "snippets-internals.";
1871
Donn Denman8e58ead2017-11-04 01:44:011872const char kContextualSearchMlTapSuppressionName[] =
1873 "Contextual Search ML tap suppression";
1874const char kContextualSearchMlTapSuppressionDescription[] =
1875 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:021876 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
1877 "enabled!";
Brett Wilsonff596952017-07-14 01:06:551878
1879const char kContextualSearchName[] = "Contextual Search";
1880const char kContextualSearchDescription[] =
1881 "Whether or not Contextual Search is enabled.";
1882
Donn Denman59729812018-01-09 01:27:021883const char kContextualSearchRankerQueryName[] =
1884 "Contextual Search Ranker prediction";
1885const char kContextualSearchRankerQueryDescription[] =
1886 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
1887
1888const char kContextualSearchSecondTapName[] =
1889 "Contextual Search second tap triggering";
1890const char kContextualSearchSecondTapDescription[] =
1891 "Enables triggering on a second tap gesture even when Ranker would "
1892 "normally suppress that tap.";
1893
Dmitry Skiba9c3efa72017-07-20 22:01:141894const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
1895const char kDontPrefetchLibrariesDescription[] =
1896 "Don't prefetch libraries after loading.";
1897
Joy Ming5fd29ca62017-10-02 22:51:221898const char kDownloadsForegroundName[] = "Enable downloads foreground";
1899const char kDownloadsForegroundDescription[] =
1900 "Enable downloads as a foreground service for all versions of Android.";
1901
Joy Ming189b0cc2017-12-08 19:42:431902const char kDownloadsLocationChangeName[] = "Enable downloads location change";
1903const char kDownloadsLocationChangeDescription[] =
1904 "Enable changing default downloads storage location on Android.";
1905
Brett Wilsonff596952017-07-14 01:06:551906const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
1907const char kEnableAndroidPayIntegrationV1Description[] =
1908 "Enable integration with Android Pay using the first version of the API";
1909
1910const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
1911const char kEnableAndroidPayIntegrationV2Description[] =
1912 "Enable integration with Android Pay using the second version of the API";
1913
Vitalii Iarkof4ed32d2017-09-26 13:15:531914const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
Brett Wilsonff596952017-07-14 01:06:551915const char kEnableAndroidSpellcheckerDescription[] =
1916 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:551917
Vitalii Iarkof4ed32d2017-09-26 13:15:531918const char kEnableContentSuggestionsNewFaviconServerName[] =
1919 "Get favicons for content suggestions from a new server.";
1920const char kEnableContentSuggestionsNewFaviconServerDescription[] =
1921 "If enabled, the content suggestions (on the NTP) will get favicons from a "
1922 "new favicon server.";
Brett Wilsonff596952017-07-14 01:06:551923
1924const char kEnableContentSuggestionsSettingsName[] =
1925 "Show content suggestions settings.";
1926const char kEnableContentSuggestionsSettingsDescription[] =
1927 "If enabled, the content suggestions settings will be available from the "
1928 "main settings menu.";
1929
Vitalii Iarkof4ed32d2017-09-26 13:15:531930const char kEnableContentSuggestionsThumbnailDominantColorName[] =
1931 "Use content suggestions thumbnail dominant color.";
1932const char kEnableContentSuggestionsThumbnailDominantColorDescription[] =
1933 "Use content suggestions thumbnail dominant color as a placeholder before "
1934 "the real thumbnail is fetched (requires Chrome Home).";
1935
Brett Wilsonff596952017-07-14 01:06:551936const char kEnableCustomContextMenuName[] = "Enable custom context menu";
1937const char kEnableCustomContextMenuDescription[] =
1938 "Enables a new context menu when a link, image, or video is pressed within "
1939 "Chrome.";
1940
1941const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
1942const char kEnableCustomFeedbackUiDescription[] =
1943 "Enables a custom feedback UI when submitting feedback through Google "
1944 "Feedback. Works with Google Play Services v10.2+";
1945
1946const char kEnableDataReductionProxyMainMenuName[] =
Theresa Wellington141e4af2017-10-23 20:28:471947 "Enable Data Saver main menu item";
Brett Wilsonff596952017-07-14 01:06:551948const char kEnableDataReductionProxyMainMenuDescription[] =
Theresa Wellington141e4af2017-10-23 20:28:471949 "Enables the Data Saver menu item in the main menu";
Brett Wilsonff596952017-07-14 01:06:551950
Brett Wilsonff596952017-07-14 01:06:551951const char kEnableOmniboxClipboardProviderName[] =
1952 "Omnibox clipboard URL suggestions";
1953const char kEnableOmniboxClipboardProviderDescription[] =
1954 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
1955 "focus in the omnibox.";
1956
1957const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
1958 "Use expanded autofill credit card popup layout.";
1959const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
1960 "If enabled, displays autofill credit card popup using expanded layout.";
1961
Becky Zhoua7f11d62018-02-01 16:02:531962const char kEnableNtpArticleSuggestionsExpandableHeaderName[] =
1963 "Show article suggestions expandable header on New Tab Page";
1964const char kEnableNtpArticleSuggestionsExpandableHeaderDescription[] =
1965 "If enabled, the article suggestions content on New Tab Page can be "
1966 "toggled shown or hidden by clicking the expandable header.";
1967
Brett Wilsonff596952017-07-14 01:06:551968const char kEnableNtpAssetDownloadSuggestionsName[] =
1969 "Show asset downloads on the New Tab page";
1970const char kEnableNtpAssetDownloadSuggestionsDescription[] =
1971 "If enabled, the list of content suggestions on the New Tab page will "
1972 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
1973 "later use.";
1974
1975const char kEnableNtpBookmarkSuggestionsName[] =
1976 "Show recently visited bookmarks on the New Tab page";
1977const char kEnableNtpBookmarkSuggestionsDescription[] =
1978 "If enabled, the list of content suggestions on the New Tab page will "
1979 "contain recently visited bookmarks.";
1980
1981const char kEnableNtpForeignSessionsSuggestionsName[] =
1982 "Show recent foreign tabs on the New Tab page";
1983const char kEnableNtpForeignSessionsSuggestionsDescription[] =
1984 "If enabled, the list of content suggestions on the New Tab page will "
1985 "contain recent foreign tabs.";
1986
Brett Wilsonff596952017-07-14 01:06:551987const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
1988 "Show offline page downloads on the New Tab page";
1989const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
1990 "If enabled, the list of content suggestions on the New Tab page will "
1991 "contain pages that the user downloaded for later use.";
1992
1993const char kEnableNtpRemoteSuggestionsName[] =
1994 "Show server-side suggestions on the New Tab page";
1995const char kEnableNtpRemoteSuggestionsDescription[] =
1996 "If enabled, the list of content suggestions on the New Tab page will "
1997 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
1998 "allows to override the source used to retrieve these server-side "
1999 "suggestions.";
2000
2001const char kEnableNtpSnippetsVisibilityName[] =
2002 "Make New Tab Page Snippets more visible.";
2003const char kEnableNtpSnippetsVisibilityDescription[] =
2004 "If enabled, the NTP snippets will become more discoverable with a larger "
2005 "portion of the first card above the fold.";
2006
2007const char kEnableNtpSuggestionsNotificationsName[] =
2008 "Notify about new content suggestions available at the New Tab page";
2009const char kEnableNtpSuggestionsNotificationsDescription[] =
2010 "If enabled, notifications will inform about new content suggestions on "
2011 "the New Tab page.";
2012
2013const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
2014const char kEnablePhysicalWebDescription[] =
2015 "Enable scanning for URLs from Physical Web objects.";
2016
2017const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
2018const char kEnableOfflinePreviewsDescription[] =
2019 "Enable showing offline page previews on slow networks.";
2020
2021const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
2022const char kEnableOskOverscrollDescription[] =
2023 "Enable OSK overscroll support. With this flag on, the OSK will only "
2024 "resize the visual viewport.";
2025
2026const char kEnableSpecialLocaleName[] =
2027 "Enable custom logic for special locales.";
2028const char kEnableSpecialLocaleDescription[] =
2029 "Enable custom logic for special locales. In this mode, Chrome might "
2030 "behave differently in some locales.";
2031
Brett Wilsonff596952017-07-14 01:06:552032const char kEnableWebNfcName[] = "WebNFC";
2033const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
2034
gogeraldf3cbb422017-07-26 14:37:122035const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
2036 "Enable Web Payments method section order V2.";
2037const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
2038 "Enable this option to display payment method section above address "
2039 "section instead of below it.";
2040
Brett Wilsonff596952017-07-14 01:06:552041const char kEnableWebPaymentsSingleAppUiSkipName[] =
2042 "Enable Web Payments single app UI skip";
2043const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
2044 "Enable Web Payments to skip showing its UI if the developer specifies a "
2045 "single app.";
2046
Raymes Khoury582b43132017-12-12 23:54:302047const char kGrantNotificationsToDSEName[] =
2048 "Grant notifications to the Default Search Engine";
2049const char kGrantNotificationsToDSENameDescription[] =
2050 "Automatically grant the notifications permission to the Default Search "
2051 "Engine";
2052
Brett Wilsonff596952017-07-14 01:06:552053const char kKeepPrefetchedContentSuggestionsName[] =
2054 "Keep prefetched content suggestions";
2055const char kKeepPrefetchedContentSuggestionsDescription[] =
2056 "If enabled, some of prefetched content suggestions are not replaced by "
2057 "the new fetched suggestions.";
2058
Leo Zhang051b75482017-12-20 03:28:302059const char kLanguagesPreferenceName[] = "Language Settings";
2060const char kLanguagesPreferenceDescription[] =
2061 "Enable this option for Language Settings feature on Android.";
2062
Brett Wilsonff596952017-07-14 01:06:552063const char kLsdPermissionPromptName[] =
2064 "Location Settings Dialog Permission Prompt";
2065const char kLsdPermissionPromptDescription[] =
2066 "Whether to use the Google Play Services Location Settings Dialog "
2067 "permission dialog.";
2068
Amirhossein Simjour97b4154f2018-02-20 03:49:592069const char kModalPermissionDialogViewName[] = "Modal Permission Dialog";
2070const char kModalPermissionDialogViewDescription[] =
2071 "Enable this option to use ModalDialogManager for permission Dialogs.";
2072
Brett Wilsonff596952017-07-14 01:06:552073const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
2074const char kMediaScreenCaptureDescription[] =
2075 "Enable this option for experimental ScreenCapture feature on Android.";
2076
2077const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
2078const char kModalPermissionPromptsDescription[] =
2079 "Whether to use permission dialogs in place of permission infobars.";
2080
Brett Wilsonff596952017-07-14 01:06:552081const char kNewPhotoPickerName[] = "Enable new Photopicker";
2082const char kNewPhotoPickerDescription[] =
2083 "Activates the new picker for selecting photos.";
2084
2085const char kNoCreditCardAbort[] = "No Credit Card Abort";
2086const char kNoCreditCardAbortDescription[] =
2087 "Whether or not the No Credit Card Abort is enabled.";
2088
2089const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
2090const char kNtpCondensedLayoutDescription[] =
2091 "Show a condensed layout on the New Tab Page.";
2092
2093const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
2094const char kNtpCondensedTileLayoutDescription[] =
2095 "Show a condensed tile layout on the New Tab Page.";
2096
Michael van Ouwerkerkcdbbe332017-11-24 15:07:062097const char kNtpModernLayoutName[] = "Modern NTP layout";
2098const char kNtpModernLayoutDescription[] =
2099 "Show a modern layout on the New Tab Page.";
2100
Nicolas Dossou-gbete56f37dc2017-08-10 16:14:042101const char kSiteExplorationUiName[] = "Site Exploration UI";
2102const char kSiteExplorationUiDescription[] =
2103 "Show site suggestions in the Exploration UI";
2104
Brett Wilsonff596952017-07-14 01:06:552105const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
2106const char kNtpGoogleGInOmniboxDescription[] =
2107 "Show a Google G in the omnibox on the New Tab Page.";
2108
Brett Wilsonff596952017-07-14 01:06:552109const char kOfflineBookmarksName[] = "Enable offline bookmarks";
2110const char kOfflineBookmarksDescription[] =
2111 "Enable saving bookmarked pages for offline viewing.";
2112
Brett Wilsonff596952017-07-14 01:06:552113const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2114const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2115
2116const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
2117const char kOfflinePagesCtV2Description[] =
2118 "V2 features include attributing pages to the app that initiated the "
2119 "custom tabs, and being able to query for pages by page attribution.";
2120
Carlos Knippschild09272ecd2017-12-09 03:29:362121const char kOfflinePagesLimitlessPrefetchingName[] =
2122 "Removes resource usage limits for the prefetching of offline pages.";
2123const char kOfflinePagesLimitlessPrefetchingDescription[] =
2124 "Allows the prefetching of suggested offline pages to ignore resource "
2125 "usage limits. This allows it to completely ignore data usage limitations "
2126 "and allows downloads to happen with any kind of connection.";
2127
Brett Wilsonff596952017-07-14 01:06:552128const char kOfflinePagesLoadSignalCollectingName[] =
2129 "Enables collecting load timing data for offline page snapshots.";
2130const char kOfflinePagesLoadSignalCollectingDescription[] =
2131 "Enables loading completeness data collection while writing an offline "
2132 "page. This data is collected in the snapshotted offline page to allow "
2133 "data analysis to improve deciding when to make the offline snapshot.";
2134
Candice Sy229768e02017-12-21 00:19:222135const char kOfflinePagesDescriptivePendingStatusName[] =
2136 "Enables descriptive pending download status text.";
2137const char kOfflinePagesDescriptivePendingStatusDescription[] =
2138 "Enables pending download status text in notifications and Downloads Home "
2139 "to state the reason the request is pending.";
2140
Brett Wilsonff596952017-07-14 01:06:552141const char kOfflinePagesPrefetchingName[] =
2142 "Enables suggested offline pages to be prefetched.";
2143const char kOfflinePagesPrefetchingDescription[] =
2144 "Enables suggested offline pages to be prefetched, so useful content is "
2145 "available while offline.";
2146
Cathy Li3d5379e2017-09-07 00:11:092147const char kOfflinePagesPrefetchingUIName[] =
2148 "Enables prefetched offline pages to be shown in UI.";
2149const char kOfflinePagesPrefetchingUIDescription[] =
2150 "Enables prefetched offline pages to raise notifications and be shown in "
2151 "download home UI.";
2152
Pete Williamson7845dff2017-09-20 11:06:192153const char kOfflinePagesResourceBasedSnapshotName[] =
2154 "Enables offline page snapshots to be based on percentage of page loaded.";
2155const char kOfflinePagesResourceBasedSnapshotDescription[] =
2156 "Enables offline page snapshots to use a resource percentage based "
2157 "approach for determining when the page is loaded as opposed to a time "
2158 "based approach";
2159
Collin Baker17f92a52017-07-19 21:41:252160const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
2161const char kOfflinePagesRenovationsDescription[] =
2162 "Enables offline page renovations which correct issues with dynamic "
2163 "content that occur when offlining pages that use JavaScript.";
2164
Brett Wilsonff596952017-07-14 01:06:552165const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2166const char kOfflinePagesSharingDescription[] =
2167 "Enables the saved offline pages to be shared via other applications.";
2168
2169const char kOfflinePagesSvelteConcurrentLoadingName[] =
2170 "Enables concurrent background loading on svelte.";
2171const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2172 "Enables concurrent background loading (or downloading) of pages on "
2173 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2174 "happen when the svelte device is idle.";
2175
2176const char kOffliningRecentPagesName[] =
2177 "Enable offlining of recently visited pages";
2178const char kOffliningRecentPagesDescription[] =
2179 "Enable storing recently visited pages locally for offline use. Requires "
2180 "Offline Pages to be enabled.";
2181
Lei Zhang2eca9082017-10-17 20:42:502182const char kPayWithGoogleV1Name[] = "Pay with Google v1";
2183const char kPayWithGoogleV1Description[] =
Brett Wilsonff596952017-07-14 01:06:552184 "Enable Pay with Google integration into Web Payments with API version "
2185 "'1'.";
2186
Matthew Jonesa88b95852017-11-08 23:13:502187const char kProgressBarThrottleName[] = "Android progress update throttling.";
2188const char kProgressBarThrottleDescription[] =
2189 "Limit the maximum progress update to make progress appear smoother.";
2190
Brett Wilsonff596952017-07-14 01:06:552191const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
2192const char kPullToRefreshEffectDescription[] =
2193 "Page reloads triggered by vertically overscrolling content.";
2194
Piotr Swigon7c296ef2017-08-29 04:32:002195const char kPwaImprovedSplashScreenName[] =
2196 "Improved Splash Screen for standalone PWAs";
2197const char kPwaImprovedSplashScreenDescription[] =
2198 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
2199 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:492200const char kPwaPersistentNotificationName[] =
2201 "Persistent notification in standalone PWA";
2202const char kPwaPersistentNotificationDescription[] =
2203 "Enables a persistent Android notification for standalone PWAs";
2204
Brett Wilsonff596952017-07-14 01:06:552205const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
2206const char kReaderModeHeuristicsDescription[] =
2207 "Determines what pages the Reader Mode infobar is shown on.";
2208const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
2209const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
2210const char kReaderModeHeuristicsAllArticles[] = "All articles";
2211const char kReaderModeHeuristicsAlwaysOff[] = "Never";
2212const char kReaderModeHeuristicsAlwaysOn[] = "Always";
2213
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:182214const char kReaderModeInCCTName[] = "Reader Mode in CCT";
2215const char kReaderModeInCCTDescription[] =
2216 "Open Reader Mode in Chrome Custom Tabs.";
2217
Brett Wilsonff596952017-07-14 01:06:552218const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2219const char kSetMarketUrlForTestingDescription[] =
2220 "When enabled, sets the market URL for use in testing the update menu "
2221 "item.";
2222
2223const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
2224const char kSpannableInlineAutocompleteDescription[] =
2225 "A new type of inline autocomplete for the omnibox that works with "
2226 "keyboards that compose text.";
2227
Brett Wilsonff596952017-07-14 01:06:552228const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2229const char kUpdateMenuBadgeDescription[] =
2230 "When enabled, an update badge will be shown on the app menu button.";
2231
2232const char kUpdateMenuItemCustomSummaryDescription[] =
2233 "When this flag and the force show update menu item flag are enabled, a "
2234 "custom summary string will be displayed below the update menu item.";
2235const char kUpdateMenuItemCustomSummaryName[] =
2236 "Update menu item custom summary";
2237
2238const char kUpdateMenuItemName[] = "Force show update menu item";
2239const char kUpdateMenuItemDescription[] =
2240 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
2241 R"*(menu.)*";
2242
Amirhossein Simjourd78bbcf2018-02-02 16:23:392243const char kVrBrowsingNativeAndroidUiName[] = "VR browsing native android ui";
2244const char kVrBrowsingNativeAndroidUiDescription[] =
2245 "Enable Android UI elements in VR.";
2246
Marc Treib93af46a2017-08-23 13:30:002247const char kThirdPartyDoodlesName[] =
2248 "Enable Doodles for third-party search engines";
2249const char kThirdPartyDoodlesDescription[] =
2250 "Enables fetching and displaying Doodles on the NTP for third-party search "
2251 "engines.";
2252
Klaus Weidneraaf697f2018-01-18 20:07:362253const char kWebXrRenderPathName[] = "WebXR presentation render path";
2254const char kWebXrRenderPathDescription[] =
2255 "Render path to use for WebXR presentation (including WebVR)";
2256const char kWebXrRenderPathChoiceClientWaitDescription[] =
2257 "ClientWait (Baseline)";
2258const char kWebXrRenderPathChoiceGpuFenceDescription[] =
2259 "GpuFence (Android N+)";
2260
Brett Wilson7b44537e2017-08-18 01:38:282261// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552262
Brett Wilson7b44537e2017-08-18 01:38:282263#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482264
Brett Wilson7b44537e2017-08-18 01:38:282265const char kAccountConsistencyName[] =
2266 "Identity consistency between browser and cookie jar";
2267const char kAccountConsistencyDescription[] =
2268 "When enabled, the browser manages signing in and out of Google accounts.";
2269const char kAccountConsistencyChoiceMirror[] = "Mirror";
2270const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342271
Chris Pickel3a227ae62017-08-24 10:47:262272const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2273const char kDoodlesOnLocalNtpDescription[] =
2274 "Show doodles on the local New Tab page if Google is the default search "
2275 "engine.";
2276
mlamouriff56c092017-05-11 15:31:392277const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392278const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342279 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392280const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392281const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392282const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342283 "Enabled (Flash lowers volume when interrupted by other sound, "
2284 "experimental)";
2285
Brett Wilson7b44537e2017-08-18 01:38:282286const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2287const char kEnableNewAppMenuIconDescription[] =
2288 "Use the new app menu icon with update notification animations.";
vabr0215a8e2017-03-28 12:47:342289
2290const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342291const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282292 "Enable receiving entity suggestions - disambiguation descriptions - for "
2293 "Omnibox suggestions.";
2294
Dave Schuyler598a4a42018-01-04 02:15:102295const char kOmniboxRichEntitySuggestionsName[] =
2296 "Omnibox rich entity suggestions";
2297const char kOmniboxRichEntitySuggestionsDescription[] =
2298 "Display entity suggestions using images and an enhanced layout; showing "
2299 "more context and descriptive text about the entity";
2300
Kevin Bailey898669972017-11-06 15:34:492301const char kOmniboxTabSwitchSuggestionsName[] =
2302 "Omnibox tab switch suggestions";
2303const char kOmniboxTabSwitchSuggestionsDescription[] =
2304 "Enable suggestions for switching to open tabs within the Omnibox.";
2305
krbcc621412017-06-01 19:40:282306const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2307const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192308 "Enable receiving tail suggestions, a type of search suggestion based on "
2309 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342310
Brett Wilson7b44537e2017-08-18 01:38:282311const char kOneGoogleBarOnLocalNtpName[] =
2312 "Enable the OneGoogleBar on the local NTP";
2313const char kOneGoogleBarOnLocalNtpDescription[] =
2314 "Show a OneGoogleBar on the local New Tab page if Google is the default "
2315 "search engine.";
2316
Brett Wilson7b44537e2017-08-18 01:38:282317const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2318const char kUseGoogleLocalNtpDescription[] =
2319 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322320
Brett Wilson7b44537e2017-08-18 01:38:282321const char kVoiceSearchOnLocalNtpName[] =
2322 "Enable Voice Search on the local NTP";
2323const char kVoiceSearchOnLocalNtpDescription[] =
2324 "Show a microphone for voice search on the local New Tab page "
2325 "if Google is the default search engine.";
2326
Kim Paulhamus33f87b12018-01-18 22:00:422327const char kEnableWebAuthenticationAPIName[] = "Web Authentication API.";
2328const char kEnableWebAuthenticationAPIDescription[] =
2329 "Enable Web Authentication API support.";
2330
Brett Wilson7b44537e2017-08-18 01:38:282331#if defined(GOOGLE_CHROME_BUILD)
2332
2333const char kGoogleBrandedContextMenuName[] =
2334 "Google branding in the context menu";
2335const char kGoogleBrandedContextMenuDescription[] =
2336 "Shows a Google icon next to context menu items powered by Google "
2337 "services.";
2338
2339#endif // !defined(GOOGLE_CHROME_BUILD)
2340
2341#endif // !defined(OS_ANDROID)
2342
2343// Windows ---------------------------------------------------------------------
2344
2345#if defined(OS_WIN)
2346
2347const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2348const char kCloudPrintXpsDescription[] =
2349 "XPS enables advanced options for classic printers connected to the Cloud "
2350 "Print with Chrome. Printers must be re-connected after changing this "
2351 "flag.";
2352
Dave Tapuskadd43469d2017-08-22 22:15:532353const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
2354const char kDirectManipulationStylusDescription[] =
2355 "If enabled, Chrome will scroll web pages on stylus drag.";
2356
Brett Wilson7b44537e2017-08-18 01:38:282357const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2358const char kDisablePostscriptPrintingDescription[] =
2359 "Disables PostScript generation when printing to PostScript capable "
2360 "printers, and uses EMF generation in its place.";
2361
2362const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2363const char kEnableAppcontainerDescription[] =
2364 "Enables the use of an AppContainer on sandboxed processes to improve "
2365 "security.";
2366
2367const char kEnableD3DVsync[] = "D3D v-sync";
2368const char kEnableD3DVsyncDescription[] =
2369 "Produces v-sync signal by having D3D wait for vertical blanking interval "
2370 "to occur.";
2371
2372const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2373const char kEnableDesktopIosPromotionsDescription[] =
2374 "Enable Desktop to iOS promotions, and allow users to see them if they are "
2375 "eligible.";
2376
James Forshawfd0ce342018-02-14 09:55:392377const char kEnableGpuAppcontainerName[] = "Enable GPU AppContainer Lockdown.";
2378const char kEnableGpuAppcontainerDescription[] =
2379 "Enables the use of an AppContainer for the GPU sandboxed processes to "
2380 "improve security.";
2381
Brett Wilson7b44537e2017-08-18 01:38:282382const char kGdiTextPrinting[] = "GDI Text Printing";
2383const char kGdiTextPrintingDescription[] =
2384 "Use GDI to print text as simply text";
2385
Brett Wilson7b44537e2017-08-18 01:38:282386const char kTraceExportEventsToEtwName[] =
2387 "Enable exporting of tracing events to ETW.";
2388const char kTraceExportEventsToEtwDesription[] =
2389 "If enabled, trace events will be exported to the Event Tracing for "
2390 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2391 "Xperf.";
2392
2393const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2394const char kUseWinrtMidiApiDescription[] =
2395 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2396 "later).";
2397
2398const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2399const char kWindows10CustomTitlebarDescription[] =
2400 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2401 "deferring to Windows.";
2402
Wez6656c572017-08-29 22:29:582403#if DCHECK_IS_ON() && defined(SYZYASAN)
Lei Zhang2eca9082017-10-17 20:42:502404const char kSyzyAsanDcheckIsFatalName[] = "DCHECKs are fatal";
2405const char kSyzyAsanDcheckIsFatalDescription[] =
Wez6656c572017-08-29 22:29:582406 "By default Chrome will evaluate DCHECKs in SyzyASAN builds, but only log "
2407 "failed DCHECKs. If enabled, DCHECKs will crash the calling process.";
2408#endif // DCHECK_IS_ON() && defined(SYZYASAN)
2409
Brett Wilson7b44537e2017-08-18 01:38:282410#endif // defined(OS_WIN)
2411
2412// Mac -------------------------------------------------------------------------
2413
2414#if defined(OS_MACOSX)
2415
2416const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
2417const char kAppInfoDialogDescription[] =
2418 "Makes the Toolkit-Views based App Info dialog accessible from "
2419 "chrome://apps or chrome://extensions in place of the native extension "
2420 "permissions dialog, or the details link (which is a link to the Web "
2421 "Store).";
2422
2423const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
2424const char kAppWindowCyclingDescription[] =
2425 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
2426 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
2427 "browser window, and browser windows will not be cycled when a Chrome App "
2428 "is active.";
2429
Lei Zhang2eca9082017-10-17 20:42:502430const char kCreditCardAutofillTouchBarName[] = "Credit Card Autofill Touch Bar";
2431const char kCreditCardAutofillTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282432 "Shows Credit Card Autofill Suggestions on the Touch Bar.";
2433
2434const char kFullscreenToolbarRevealName[] =
2435 "Enables the toolbar in fullscreen to reveal itself.";
2436const char kFullscreenToolbarRevealDescription[] =
2437 "Reveal the toolbar in fullscreen for a short period when the tab strip "
2438 "has changed.";
2439
2440const char kContentFullscreenName[] = "Improved Content Fullscreen";
2441const char kContentFullscreenDescription[] =
2442 "Fullscreen content window detaches from main browser window and goes to "
2443 "a new space without moving or changing the original browser window.";
2444
Lei Zhang2eca9082017-10-17 20:42:502445const char kDialogTouchBarName[] = "Dialog Touch Bar";
2446const char kDialogTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282447 "Shows Dialog buttons on the Touch Bar.";
2448
2449const char kHostedAppsInWindowsName[] =
2450 "Allow hosted apps to be opened in windows";
2451const char kHostedAppsInWindowsDescription[] =
2452 "Allows hosted apps to be opened in windows instead of being limited to "
2453 "tabs.";
2454
Lei Zhang2eca9082017-10-17 20:42:502455const char kMacRTLName[] = "Enable RTL";
2456const char kMacRTLDescription[] = "Mirrors the UI for RTL language users";
Brett Wilson7b44537e2017-08-18 01:38:282457
Lei Zhang2eca9082017-10-17 20:42:502458const char kMacSystemShareMenuName[] = "Enable System Share Menu";
2459const char kMacSystemShareMenuDescription[] =
Leonard Grey2bdd08f2017-10-03 18:40:522460 "Enables sharing via macOS share extensions.";
2461
Lei Zhang2eca9082017-10-17 20:42:502462const char kMacTouchBarName[] = "Hardware Touch Bar";
2463const char kMacTouchBarDescription[] = "Control the use of the Touch Bar.";
Brett Wilson7b44537e2017-08-18 01:38:282464
2465const char kMacV2SandboxName[] = "Mac V2 Sandbox";
2466const char kMacV2SandboxDescription[] =
2467 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
2468 "entire life cycle.";
2469
2470const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2471const char kMacViewsNativeAppWindowsDescription[] =
2472 "Controls whether to use Toolkit-Views based Chrome App windows.";
2473
Jérôme Lebelff683d42017-11-10 10:24:022474const char kMacViewsProfileChooserName[] =
2475 "Profile chooser menu with toolkit-views on Mac";
2476const char kMacViewsProfileChooserDescription[] =
2477 "Enables profile chooser menu based on toolkit-views, on Mac";
2478
Brett Wilson7b44537e2017-08-18 01:38:282479const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2480const char kMacViewsTaskManagerDescription[] =
2481 "Controls whether to use the Toolkit-Views based Task Manager.";
2482
2483const char kTabDetachingInFullscreenName[] =
2484 "Allow tab detaching in fullscreen";
2485const char kTabDetachingInFullscreenDescription[] =
2486 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
2487
2488const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
2489const char kTabStripKeyboardFocusDescription[] =
2490 "Enable keyboard focus for the tabs in the tab strip.";
2491
2492const char kTranslateNewUxName[] = "New Translate UX";
2493const char kTranslateNewUxDescription[] =
2494 "Enable the new Translate bubble UX is offered instead of the infobar.";
2495
Brett Wilson7b44537e2017-08-18 01:38:282496#endif
2497
2498// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342499
2500#if defined(OS_CHROMEOS)
2501
Brett Wilson7b44537e2017-08-18 01:38:282502const char kAcceleratedMjpegDecodeName[] =
2503 "Hardware-accelerated mjpeg decode for captured frame";
2504const char kAcceleratedMjpegDecodeDescription[] =
2505 "Enable hardware-accelerated mjpeg decode for captured frame where "
2506 "available.";
vabr0215a8e2017-03-28 12:47:342507
Brett Wilson7b44537e2017-08-18 01:38:282508const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2509const char kAllowTouchpadThreeFingerClickDescription[] =
2510 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342511
Brett Wilson7b44537e2017-08-18 01:38:282512const char kArcBootCompleted[] = "Load Android apps automatically";
2513const char kArcBootCompletedDescription[] =
2514 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:342515
Lev Rumyantsev7a8544312017-08-18 19:26:512516const char kArcNativeBridgeExperimentName[] =
2517 "Enable native bridge experiment for ARC";
2518const char kArcNativeBridgeExperimentDescription[] =
2519 "Enables experimental native bridge feature.";
2520
lgchengecd1c1a62018-01-09 02:59:462521const char kArcUsbHostName[] = "Enable ARC USB host integration";
2522const char kArcUsbHostDescription[] =
2523 "Allow Android apps to use USB host feature on ChromeOS devices.";
2524
Kevin Cernekeeb7f96a52017-10-25 17:40:182525const char kArcVpnName[] = "Enable ARC VPN integration";
2526const char kArcVpnDescription[] =
2527 "Allow Android VPN clients to tunnel Chrome traffic.";
2528
Brett Wilson7b44537e2017-08-18 01:38:282529const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
2530const char kAshEnableUnifiedDesktopDescription[] =
2531 "Enable unified desktop mode which allows a window to span multiple "
2532 "displays.";
vabr0215a8e2017-03-28 12:47:342533
Sean Kau5e956192017-10-06 22:25:172534const char kBulkPrintersName[] = "Bulk Printers Policy";
2535const char kBulkPrintersDescription[] = "Enables the new bulk printers policy";
2536
Brett Wilson7b44537e2017-08-18 01:38:282537const char kCaptivePortalBypassProxyName[] =
2538 "Bypass proxy for Captive Portal Authorization";
2539const char kCaptivePortalBypassProxyDescription[] =
2540 "If proxy is configured, it usually prevents from authorization on "
2541 "different captive portals. This enables opening captive portal "
2542 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:342543
Brett Wilson7b44537e2017-08-18 01:38:282544const char kCrOSComponentName[] = "Chrome OS Component";
2545const char kCrOSComponentDescription[] =
Xiaochu Liu4c1b75d2017-12-18 23:52:082546 "Disable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:342547
Xiaochu Liu51d03fd2017-09-08 23:51:022548const char kCrOSContainerName[] = "Chrome OS Container";
2549const char kCrOSContainerDescription[] =
2550 "Enable the use of Chrome OS Container utility.";
2551
Brett Wilson7b44537e2017-08-18 01:38:282552const char kCrosRegionsModeName[] = "Cros-regions load mode";
2553const char kCrosRegionsModeDescription[] =
2554 "This flag controls cros-regions load mode";
2555const char kCrosRegionsModeDefault[] = "Default";
2556const char kCrosRegionsModeOverride[] = "Override VPD values.";
2557const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:342558
Jacob Dufault2becbc482017-08-25 00:36:352559const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
2560const char kDisableLockScreenAppsDescription[] =
2561 "Disable new-note action handler apps on the lock screen. The user will "
2562 "not be able to launch the preferred note-taking action from the lock "
2563 "screen, provided that the app supports lock screen note taking.";
2564
Sammie Quonef6b4882017-09-14 16:50:052565const char kDisableTabletAutohideTitlebarsName[] =
2566 "Disable autohide titlebars in tablet mode";
2567const char kDisableTabletAutohideTitlebarsDescription[] =
2568 "Disable tablet mode autohide titlebars functionality. The user will be "
2569 "able to see the titlebar in tablet mode.";
2570
xdaid45327d2018-01-29 18:57:072571const char kDisableTabletSplitViewName[] = "Disable split view in Tablet mode";
2572const char kDisableTabletSplitViewDescription[] =
2573 "Disable split view for Chrome OS tablet mode.";
2574
Brett Wilson7b44537e2017-08-18 01:38:282575const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
2576const char kEnablePerUserTimezoneDescription[] =
2577 "Chrome OS system timezone preference is stored and handled for each user "
2578 "individually.";
vabr0215a8e2017-03-28 12:47:342579
Brett Wilson7b44537e2017-08-18 01:38:282580const char kDisableSystemTimezoneAutomaticDetectionName[] =
2581 "SystemTimezoneAutomaticDetection policy support";
2582const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
2583 "Disable system timezone automatic detection device policy.";
vabr0215a8e2017-03-28 12:47:342584
Lei Zhang2eca9082017-10-17 20:42:502585const char kEnableBackgroundBlurName[] = "Enable background blur.";
2586const char kEnableBackgroundBlurDescription[] =
Wenzhao Zang50fb0b22017-11-07 01:38:422587 "Enables background blur for the Peeking Launcher and Tab Switcher.";
Alex Newcomer43cb7f12017-07-28 17:37:392588
Brett Wilson7b44537e2017-08-18 01:38:282589const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2590const char kEnableChromevoxArcSupportDescription[] =
2591 "Enable ChromeVox screen reader features in ARC";
vabr0215a8e2017-03-28 12:47:342592
F#m75862c92018-01-25 19:10:472593const char kEnableDisplayZoomSettingName[] = "Enable display zoom settings";
2594const char kEnableDisplayZoomSettingDescription[] =
2595 "Allows the user to modify the display size or zoom via the chrome display "
2596 "settings page.";
2597
Brett Wilson7b44537e2017-08-18 01:38:282598const char kEnableEhvInputName[] =
2599 "Emoji, handwriting and voice input on opt-in IME menu";
2600const char kEnableEhvInputDescription[] =
2601 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:342602
Brett Wilson7b44537e2017-08-18 01:38:282603const char kEnableEncryptionMigrationName[] =
2604 "Enable encryption migration of user data";
2605const char kEnableEncryptionMigrationDescription[] =
2606 "If enabled and the device supports ARC, the user will be asked to update "
2607 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:342608
Blake O'Hare9e9317b22017-10-24 02:49:352609const char kEnableFloatingVirtualKeyboardName[] =
2610 "Enable floating virtual keyboard";
2611const char kEnableFloatingVirtualKeyboardDescription[] =
2612 "If enabled, the keyboard will use floating behavior by default.";
2613
Brett Wilson7b44537e2017-08-18 01:38:282614const char kEnableImeMenuName[] = "Enable opt-in IME menu";
2615const char kEnableImeMenuDescription[] =
2616 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:342617
Klemen Kozjek05fc4512017-10-18 12:51:102618const char kEnableZipArchiverPackerName[] = "ZIP archiver - Packer";
2619const char kEnableZipArchiverPackerDescription[] =
2620 "Enable the ability to archive files on Drive in the Files app";
2621
Tatsuhisa Yamaguchi5c07d2532017-11-10 03:52:412622const char kZipArchiverUnpackerName[] = "ZIP archiver - Unpacker";
2623const char kZipArchiverUnpackerDescription[] =
2624 "Enable or disable the ability to unpack archives in incognito mode";
Brett Wilson7b44537e2017-08-18 01:38:282625
2626const char kEolNotificationName[] = "Disable Device End of Life notification.";
2627const char kEolNotificationDescription[] =
2628 "Disable Notifcation when Device is End of Life.";
2629
2630const char kExperimentalAccessibilityFeaturesName[] =
2631 "Experimental accessibility features";
2632const char kExperimentalAccessibilityFeaturesDescription[] =
2633 "Enable additional accessibility features in the Settings page.";
2634
2635const char kExperimentalInputViewFeaturesName[] =
2636 "Experimental input view features";
2637const char kExperimentalInputViewFeaturesDescription[] =
2638 "Enable experimental features for IME input views.";
2639
2640const char kFileManagerTouchModeName[] = "Files App. touch mode";
2641const char kFileManagerTouchModeDescription[] =
2642 "Touchscreen-specific interactions of the Files app.";
2643
2644const char kFirstRunUiTransitionsName[] =
2645 "Animated transitions in the first-run tutorial";
2646const char kFirstRunUiTransitionsDescription[] =
2647 "Transitions during first-run tutorial are animated.";
2648
Brett Wilson7b44537e2017-08-18 01:38:282649const char kForceEnableStylusToolsName[] = "Force enable stylus features";
2650const char kForceEnableStylusToolsDescription[] =
2651 "Forces display of the stylus tools menu in the shelf and the stylus "
2652 "section in settings, even if there is no attached stylus device.";
2653
2654const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
2655const char kGestureEditingDescription[] =
2656 "Enable/Disable gesture editing option in the settings page for the "
2657 "virtual keyboard.";
2658
2659const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
2660const char kGestureTypingDescription[] =
2661 "Enable/Disable gesture typing option in the settings page for the virtual "
2662 "keyboard.";
2663
2664const char kInputViewName[] = "Input views";
2665const char kInputViewDescription[] =
2666 "Enable IME extensions to supply custom views for user input such as "
2667 "virtual keyboards.";
2668
2669const char kMemoryPressureThresholdName[] =
2670 "Memory discard strategy for advanced pressure handling";
2671const char kMemoryPressureThresholdDescription[] =
2672 "Memory discarding strategy to use";
2673const char kConservativeThresholds[] =
2674 "Conservative memory pressure release strategy";
2675const char kAggressiveCacheDiscardThresholds[] =
2676 "Aggressive cache release strategy";
2677const char kAggressiveTabDiscardThresholds[] =
2678 "Aggressive tab release strategy";
2679const char kAggressiveThresholds[] =
2680 "Aggressive tab and cache release strategy";
2681
2682const char kMtpWriteSupportName[] = "MTP write support";
2683const char kMtpWriteSupportDescription[] =
2684 "MTP write support in File System API (and file manager). In-place editing "
2685 "operations are not supported.";
2686
2687const char kMultideviceName[] = "Enable multidevice features";
2688const char kMultideviceDescription[] =
2689 "Enables UI for controlling multidevice features.";
vabr0215a8e2017-03-28 12:47:342690
Kyle Horimoto027590fb2018-02-13 22:19:482691const char kMultiDeviceApiName[] = "Enables the MultiDevice API";
2692const char kMultiDeviceApiDescription[] =
2693 "Enable Mojo-based API which provides synced device metadata and the "
2694 "ability to connect to other devices associated the logged-in Google "
2695 "account.";
2696
Bailey Berrodca8eeca02017-11-18 00:49:122697const char kNativeSmbName[] = "Native Smb Client";
2698const char kNativeSmbDescription[] =
2699 "If enabled, allows connections to an smb filesystem via Files app";
Bailey Berrofc0da1b2017-11-02 11:02:302700
vabr0215a8e2017-03-28 12:47:342701const char kNetworkPortalNotificationName[] =
2702 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:342703const char kNetworkPortalNotificationDescription[] =
2704 "If enabled, notification is displayed when device is connected to a "
2705 "network behind captive portal.";
2706
Steven Bennetts77b67972017-12-14 19:38:322707const char kDisableNetworkSettingsConfigName[] =
2708 "Disable Settings based Network Configuration";
2709const char kDisableNetworkSettingsConfigDescription[] =
2710 "Disables the Settings based network configuration UI and restores the "
2711 "Views based configuration dialog.";
stevenjbe1d457382017-05-24 22:37:242712
Brett Wilson7b44537e2017-08-18 01:38:282713const char kNewKoreanImeName[] = "New Korean IME";
2714const char kNewKoreanImeDescription[] =
2715 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:342716
Brett Wilson7b44537e2017-08-18 01:38:282717const char kNewZipUnpackerName[] = "New ZIP unpacker";
2718const char kNewZipUnpackerDescription[] =
2719 "New ZIP unpacker flow, based on the File System Provider API.";
vabr0215a8e2017-03-28 12:47:342720
Brett Wilson7b44537e2017-08-18 01:38:282721const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
2722const char kPhysicalKeyboardAutocorrectDescription[] =
2723 "Enable physical keyboard autocorrect for US keyboard, which can provide "
2724 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:342725
2726const char kPrinterProviderSearchAppName[] =
2727 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:342728const char kPrinterProviderSearchAppDescription[] =
2729 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:192730 "searches Chrome Web Store for extensions that support printing to a USB "
2731 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:342732
Brett Wilson7b44537e2017-08-18 01:38:282733const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
2734const char kQuickUnlockPinDescription[] =
2735 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2736 "device on the lock screen after you have signed into your device.";
2737const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2738const char kQuickUnlockPinSigninDescription[] =
2739 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2740 "device. After changing this flag PIN needs to be set up again.";
2741const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2742const char kQuickUnlockFingerprintDescription[] =
2743 "Enabling fingerprint quick unlock allows you to setup and use a "
2744 "fingerprint to unlock your Chromebook on the lock screen after you have "
2745 "signed into your device.";
vabr0215a8e2017-03-28 12:47:342746
Brett Wilson7b44537e2017-08-18 01:38:282747const char kOfficeEditingComponentAppName[] =
2748 "Office Editing for Docs, Sheets & Slides";
2749const char kOfficeEditingComponentAppDescription[] =
2750 "Office Editing for Docs, Sheets & Slides for testing purposes.";
Daniel Erat33054b22017-06-27 16:18:072751
James Cook0ba192bf2017-12-01 20:53:112752const char kShowTapsName[] = "Show taps";
2753const char kShowTapsDescription[] =
2754 "Draws a circle at each touch point, which makes touch points more obvious "
2755 "when projecting or mirroring the display. Similar to the Android OS "
2756 "developer option.";
2757
2758const char kShowTouchHudName[] = "Show HUD for touch points";
2759const char kShowTouchHudDescription[] =
2760 "Shows a trail of colored dots for the last few touch points. Pressing "
2761 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
2762 "debug hardware issues that generate spurious touch events.";
2763
Chung-Sheng Wu468b0b32017-09-01 14:41:572764const char kSysInternalsName[] = "Enable Sys-Internals";
2765const char kSysInternalsDescription[] =
2766 "If enabled, user can monitor system information at "
2767 "chrome://sys-internals.";
2768
Brett Wilson7b44537e2017-08-18 01:38:282769const char kTeamDrivesName[] = "Enable Team Drives Integration";
2770const char kTeamDrivesDescription[] =
2771 "If enabled, files under Team Drives will appear in the Files app.";
vabr0215a8e2017-03-28 12:47:342772
Brett Wilson7b44537e2017-08-18 01:38:282773const char kTetherName[] = "Instant Tethering";
2774const char kTetherDescription[] =
2775 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
2776 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:372777
Brett Wilson7b44537e2017-08-18 01:38:282778const char kTouchscreenCalibrationName[] =
2779 "Enable/disable touchscreen calibration option in material design settings";
2780const char kTouchscreenCalibrationDescription[] =
2781 "If enabled, the user can calibrate the touch screen displays in "
2782 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:092783
Mitsuru Oshima63d3f2a2017-08-23 00:12:112784// Force UI Mode
2785const char kUiModeName[] = "Force Ui Mode";
2786const char kUiModeDescription[] =
2787 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
2788 R"*(despite its current orientation. "Tablet" means that the )*"
2789 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
2790 R"*(means that the chromebook will act as if it were in clamshell )*"
2791 R"*(mode . "Auto" means that the chromebook will alternate between )*"
2792 R"*(the two, based on its orientation.)*";
2793const char kUiModeTablet[] = "TouchView";
2794const char kUiModeClamshell[] = "Clamshell";
2795const char kUiModeAuto[] = "Auto (default)";
2796
bruthigeafb0c02017-06-09 13:11:532797const char kUiDevToolsName[] = "Enable native UI inspection";
2798const char kUiDevToolsDescription[] =
2799 "Enables inspection of native UI elements. For local inspection use "
2800 "chrome://inspect#other";
2801
James Cooka1bcfa9a2018-01-30 00:18:402802const char kUseMusName[] = "Mojo UI service (mus)";
2803const char kUseMusDescription[] =
2804 "Handles input events, display configuration, and windowing in a mojo "
2805 "service on a thread in the browser process.";
2806
2807const char kUseMashName[] = "Out-of-process system UI (mash)";
2808const char kUseMashDescription[] =
2809 "Runs the mojo UI service (mus) and the ash window manager and system UI "
2810 "in a separate process.";
Brett Wilson7b44537e2017-08-18 01:38:282811
Miguel Casas-Sanchez8ba32f92017-11-07 05:03:342812// TODO(mcasas): remove after https://crbug.com/771345.
2813const char kUseMonitorColorSpaceName[] = "Use monitor color space";
2814const char kUseMonitorColorSpaceDescription[] =
2815 "Enables Chrome to use the color space information provided by the monitor"
2816 " instead of the default sRGB color space.";
2817
Brett Wilson7b44537e2017-08-18 01:38:282818const char kVideoPlayerChromecastSupportName[] =
2819 "Experimental Chromecast support for Video Player";
2820const char kVideoPlayerChromecastSupportDescription[] =
2821 "This option enables experimental Chromecast support for Video Player app "
2822 "on ChromeOS.";
2823
2824const char kVirtualKeyboardName[] = "Virtual Keyboard";
2825const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
2826
2827const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
2828const char kVirtualKeyboardOverscrollDescription[] =
2829 "Enables virtual keyboard overscroll support.";
2830
2831const char kVoiceInputName[] = "Voice input on virtual keyboard";
2832const char kVoiceInputDescription[] =
2833 "Enables voice input on virtual keyboard.";
2834
2835const char kWakeOnPacketsName[] = "Wake On Packets";
2836const char kWakeOnPacketsDescription[] =
2837 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:202838
yhanadac5bff5b2017-05-18 06:37:092839#endif // defined(OS_CHROMEOS)
2840
Brett Wilson7b44537e2017-08-18 01:38:282841// Random platform combinations -----------------------------------------------
2842
2843#if defined(OS_WIN) || defined(OS_LINUX)
2844
2845const char kEnableInputImeApiName[] = "Enable Input IME API";
2846const char kEnableInputImeApiDescription[] =
2847 "Enable the use of chrome.input.ime API.";
2848
2849#endif // defined(OS_WIN) || defined(OS_LINUX)
2850
2851#if defined(OS_WIN) || defined(OS_MACOSX)
2852
2853const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2854const char kAutomaticTabDiscardingDescription[] =
2855 "If enabled, tabs get automatically discarded from memory when the system "
2856 "memory is low. Discarded tabs are still visible on the tab strip and get "
2857 "reloaded when clicked on. Info about discarded tabs can be found at "
2858 "chrome://discards.";
2859
2860#endif // defined(OS_WIN) || defined(OS_MACOSX)
2861
2862// Feature flags --------------------------------------------------------------
2863
2864#if BUILDFLAG(ENABLE_VR)
2865
David Dorwin5a496c32017-11-17 01:45:052866const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing";
2867const char kWebVrVsyncAlignDescription[] =
2868 "Align WebVR application rendering with VSync for smoother animations.";
2869
Brett Wilson7b44537e2017-08-18 01:38:282870#if defined(OS_ANDROID)
2871
David Dorwin5a496c32017-11-17 01:45:052872const char kVrBrowsingName[] = "VR browsing";
2873const char kVrBrowsingDescription[] =
2874 "Browsing within a VR headset if available for this device.";
Brett Wilson7b44537e2017-08-18 01:38:282875
Yash Malik50bcfc12017-11-18 00:47:592876const char kVrBrowserKeyboardName[] = "Chrome VR virtual keyboard.";
2877const char kVrBrowserKeyboardDescription[] =
2878 "Enable a virtual keyboard for Chrome VR.";
2879
Yash Malikb78e72a72018-02-21 09:14:102880const char kVrWebInputEditingName[] = "VR browsing web input editing";
2881const char kVrWebInputEditingDescription[] =
2882 "Allow editing web input fields while in VR mode.";
2883
David Dorwin5a496c32017-11-17 01:45:052884const char kVrBrowsingExperimentalFeaturesName[] =
2885 "VR browsing experimental features";
2886const char kVrBrowsingExperimentalFeaturesDescription[] =
2887 "Experimental VR browsing features that are under development.";
Brett Wilson7b44537e2017-08-18 01:38:282888
David Dorwin5a496c32017-11-17 01:45:052889const char kVrBrowsingExperimentalRenderingName[] =
2890 "VR browsing experimental rendering features";
2891const char kVrBrowsingExperimentalRenderingDescription[] =
2892 "Experimental rendering features for VR browsing (e.g. power-saving "
2893 "rendering modes).";
Michael Thiessenb480fe92017-10-26 16:25:102894
David Dorwin5a496c32017-11-17 01:45:052895const char kVrBrowsingInCustomTabName[] = "VR browsing in Custom Tabs";
2896const char kVrBrowsingInCustomTabDescription[] =
2897 "Allow browsing within a VR headset while in a Custom Tab.";
2898
Michael Thiessen37895912018-01-19 20:15:542899const char kVrIconInDaydreamHomeName[] = "Chrome icon in Daydream Home";
2900const char kVrIconInDaydreamHomeDescription[] =
2901 "Adds an icon to Daydream Home that allows launching Chrome in VR.";
2902
David Dorwin5a496c32017-11-17 01:45:052903const char kVrLaunchIntentsName[] = "VR intents";
2904const char kVrLaunchIntentsDescription[] =
Yash Malik812aebe2017-10-31 18:17:262905 "Allow intents to launch Chrome in VR mode.";
2906
David Dorwin5a496c32017-11-17 01:45:052907const char kWebVrAutopresentFromIntentName[] =
2908 "WebVR auto presentation from intents";
2909const char kWebVrAutopresentFromIntentDescription[] =
2910 "Allow auto presentation of WebVR content from trusted first-party apps.";
Brett Wilson7b44537e2017-08-18 01:38:282911
2912#endif // OS_ANDROID
2913
Bill Orr103ed272018-02-14 21:23:052914#if BUILDFLAG(ENABLE_OCULUS_VR)
2915const char kOculusVRName[] = "Oculus hardware support";
2916const char kOculusVRDescription[] =
2917 "If enabled, Chrome will use Oculus devices for VR (supported only on "
2918 "Windows 10 or later).";
2919#endif // ENABLE_OCULUS_VR
2920
Bill Orr49527562017-11-22 16:58:482921#if BUILDFLAG(ENABLE_OPENVR)
2922const char kOpenVRName[] = "OpenVR hardware support";
2923const char kOpenVRDescription[] =
Bill Orr5056e692018-01-17 02:08:072924 "If enabled, Chrome will use OpenVR devices for VR (supported only on "
2925 "Windows 10 or later).";
Bill Orr49527562017-11-22 16:58:482926#endif // ENABLE_OPENVR
2927
Brett Wilson7b44537e2017-08-18 01:38:282928#endif // ENABLE_VR
2929
Nico Weberaf3b00b2017-09-11 17:58:172930#if BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282931
2932const char kNaclDebugMaskName[] =
2933 "Restrict Native Client GDB-based debugging by pattern";
2934const char kNaclDebugMaskDescription[] =
2935 "Restricts Native Client application GDB-based debugging by URL of "
2936 "manifest file. Native Client GDB-based debugging must be enabled for this "
2937 "option to work.";
2938const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
2939const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
2940 "Debug everything except secure shell and the PNaCl translator.";
2941const char kNaclDebugMaskChoiceIncludeDebug[] =
2942 "Debug only if manifest URL ends with debug.nmf.";
2943
2944const char kNaclDebugName[] = "Native Client GDB-based debugging";
2945const char kNaclDebugDescription[] =
2946 "Enable GDB debug stub. This will stop a Native Client application on "
2947 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
2948
2949const char kNaclName[] = "Native Client";
2950const char kNaclDescription[] =
2951 "Support Native Client for all web applications, even those that were not "
2952 "installed from the Chrome Web Store.";
2953
2954const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
2955const char kPnaclSubzeroDescription[] =
2956 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
2957
Nico Weberaf3b00b2017-09-11 17:58:172958#endif // BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282959
Brett Wilson7b44537e2017-08-18 01:38:282960#if BUILDFLAG(ENABLE_WEBRTC)
2961
2962const char kWebrtcH264WithOpenh264FfmpegName[] =
2963 "WebRTC H.264 software video encoder/decoder";
2964const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2965 "When enabled, an H.264 software video encoder/decoder pair is included. "
2966 "If a hardware encoder/decoder is also available it may be used instead of "
2967 "this encoder/decoder.";
2968
2969#endif // BUILDFLAG(ENABLE_WEBRTC)
2970
James Cookf9d34d22017-10-04 16:39:352971#if defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:282972
Wenzhao Zang50fb0b22017-11-07 01:38:422973const char kAshDisableLoginDimAndBlurName[] =
2974 "Disable dimming and blur on login screen.";
2975const char kAshDisableLoginDimAndBlurDescription[] =
2976 "Disable dimming and blur on login screen.";
2977
Brett Wilson7b44537e2017-08-18 01:38:282978const char kAshDisableSmoothScreenRotationName[] =
2979 "Disable smooth rotation animations.";
2980const char kAshDisableSmoothScreenRotationDescription[] =
2981 "Disable smooth rotation animations.";
2982
wutaoead73f582018-02-11 23:25:362983const char kAshDisableTrilinearFilteringName[] = "Disable trilinear filtering.";
2984const char kAshDisableTrilinearFilteringDescription[] =
2985 "Disable trilinear filtering.";
2986
Qiang Xub7e921072017-12-07 21:02:112987const char kAshEnableDisplayMoveWindowAccelsName[] =
2988 "Enable shortcuts for moving window between displays.";
2989const char kAshEnableDisplayMoveWindowAccelsDescription[] =
2990 "Enable shortcuts for moving window between displays.";
2991
wutaoc70d7b92017-11-01 08:06:012992const char kAshEnableKeyboardShortcutViewerName[] =
2993 "Enable keyboard shortcut viewer.";
2994const char kAshEnableKeyboardShortcutViewerDescription[] =
2995 "Enable keyboard shortcut viewer.";
2996
Brett Wilson7b44537e2017-08-18 01:38:282997const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
2998const char kAshEnableMirroredScreenDescription[] =
2999 "Enable the mirrored screen mode. This mode flips the screen image "
3000 "horizontally.";
3001
Sammie Quon4e14214d2018-01-30 22:45:243002const char kAshEnableNewOverviewUiName[] = "Enable new overview UI.";
3003const char kAshEnableNewOverviewUiDescription[] =
3004 "Enables the new overview mode UI.";
3005
wutaod9cbcd32018-02-17 02:31:063006const char kAshEnableNewOverviewAnimationsName[] =
3007 "Enable new overview animations.";
3008const char kAshEnableNewOverviewAnimationsDescription[] =
3009 "Enables the new overview mode animations.";
3010
Qiang Xufa19cfd2018-01-29 19:36:503011const char kAshEnablePersistentWindowBoundsName[] =
3012 "Enable persistent window bounds in multi-displays scenario.";
3013const char kAshEnablePersistentWindowBoundsDescription[] =
3014 "Enable persistent window bounds in multi-displays scenario.";
3015
Brett Wilson7b44537e2017-08-18 01:38:283016const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
3017const char kAshShelfColorDescription[] =
3018 "Enables/disables the shelf color to be a derived from the wallpaper. The "
3019 "--ash-shelf-color-scheme flag defines how that color is derived.";
3020
3021const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
3022const char kAshShelfColorSchemeDescription[] =
3023 "Specify how the color is derived from the wallpaper. This flag is only "
3024 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
3025const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
3026const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
3027const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
3028const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
3029const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
3030const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
3031
3032const char kMaterialDesignInkDropAnimationSpeedName[] =
Mike Wasserman2115b162017-09-19 23:42:373033 "Material design ink drop animation speed";
Brett Wilson7b44537e2017-08-18 01:38:283034const char kMaterialDesignInkDropAnimationSpeedDescription[] =
3035 "Sets the speed of the experimental visual feedback animations for "
3036 "material design.";
3037const char kMaterialDesignInkDropAnimationFast[] = "Fast";
3038const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
3039
3040const char kUiShowCompositedLayerBordersName[] =
3041 "Show UI composited layer borders";
3042const char kUiShowCompositedLayerBordersDescription[] =
3043 "Show border around composited layers created by UI.";
3044const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
3045const char kUiShowCompositedLayerBordersSurface[] = "Surface";
3046const char kUiShowCompositedLayerBordersLayer[] = "Layer";
3047const char kUiShowCompositedLayerBordersAll[] = "All";
3048
3049const char kUiSlowAnimationsName[] = "Slow UI animations";
3050const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
3051
James Cookf9d34d22017-10-04 16:39:353052#endif // defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:283053
Brett Wilson7b44537e2017-08-18 01:38:283054#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3055
3056const char kAutofillCreditCardUploadName[] =
3057 "Enable offering upload of Autofilled credit cards";
3058const char kAutofillCreditCardUploadDescription[] =
3059 "Enables a new option to upload credit cards to Google Payments for sync "
3060 "to all Chrome devices.";
3061
3062#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3063
3064// ============================================================================
3065// Don't just add flags to the end, put them in the right section in
3066// alphabetical order just like the header file.
3067// ============================================================================
3068
vabr0215a8e2017-03-28 12:47:343069} // namespace flag_descriptions