blob: 040de0bb96ba78db10d0ad40cf02181f00426b90 [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
Khushalba202212017-07-12 19:53:4946const char kAsyncImageDecodingName[] = "AsyncImageDecoding";
47const char kAsyncImageDecodingDescription[] =
48 "Enables asynchronous decoding of images from raster for web content";
49
Brett Wilsonf27ff602017-07-07 22:28:4750const char kAutoplayPolicyName[] = "Autoplay policy";
51const char kAutoplayPolicyDescription[] =
52 "Policy used when deciding if audio or video is allowed to autoplay.";
53
54const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
55 "User gesture is required for cross-origin iframes.";
56const char kAutoplayPolicyNoUserGestureRequired[] =
57 "No user gesture is required.";
58const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
59const char kAutoplayPolicyDocumentUserActivation[] =
60 "Document user activation is required.";
61
Johanne0cc6902017-11-16 00:23:5062extern const char kAv1DecoderName[] = "Enable AV1 video decoding.";
63extern const char kAv1DecoderDescription[] =
64 "Allow decoding of files with the AV1 video codec.";
65
Brett Wilsonf27ff602017-07-07 22:28:4766const char kBackgroundVideoTrackOptimizationName[] =
67 "Optimize background video playback.";
68const char kBackgroundVideoTrackOptimizationDescription[] =
69 "Disable video tracks when the video is played in the background to "
70 "optimize performance.";
71
72const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
73const char kBleAdvertisingInExtensionsDescription[] =
74 "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere "
75 "with regular use of Bluetooth Low Energy features.";
76
Charles Harrisond629cc62017-10-05 01:39:5477const char kBlockTabUndersName[] = "Block tab-unders";
78const char kBlockTabUndersDescription[] =
79 "Blocks tab-unders in Chrome with some native UI to allow the user to "
80 "proceed.";
81
arthursonzognif2bc2d202017-11-08 11:01:0282const char kNavigationMojoResponseName[] = "Navigation response using Mojo";
83const char kNavigationMojoResponseDescription[] =
84 "Browser side navigation (aka PlzNavigate) is using blob URLs to deliver "
85 "the body of the main resource to the renderer process. This flag replaces "
86 "this mechanism by using a Mojo DataPipe.";
87
Brett Wilsonf27ff602017-07-07 22:28:4788const char kBrowserTaskSchedulerName[] = "Task Scheduler";
89const char kBrowserTaskSchedulerDescription[] =
90 "Enables redirection of some task posting APIs to the task scheduler.";
91
92const char kBypassAppBannerEngagementChecksName[] =
93 "Bypass user engagement checks";
94const char kBypassAppBannerEngagementChecksDescription[] =
95 "Bypasses user engagement checks for displaying app banners, such as "
96 "requiring that users have visited the site before and that the banner "
97 "hasn't been shown recently. This allows developers to test that other "
98 "eligibility requirements for showing app banners, such as having a "
99 "manifest, are met.";
100
Lucas Garronb9539b732017-10-31 00:22:09101const char kCommittedInterstitialsName[] = "Committed Interstitials";
102const char kCommittedInterstitialsDescription[] =
103 "Use committed error pages instead of transient navigation entries "
104 "for interstitial error pages (e.g. certificate errors).";
105
Marc Treib026acc532017-10-17 18:39:59106const char kCaptureThumbnailOnNavigatingAwayName[] =
107 "Capture page thumbnail on navigating away";
108const char kCaptureThumbnailOnNavigatingAwayDescription[] =
109 "Capture a page thumbnail (for use on the New Tab page) when navigating "
110 "away from the current page, in addition to other times a thumbnail may be "
111 "captured.";
112
Brett Wilsonf27ff602017-07-07 22:28:47113const char kCastStreamingHwEncodingName[] =
114 "Cast Streaming hardware video encoding";
115const char kCastStreamingHwEncodingDescription[] =
116 "This option enables support in Cast Streaming for encoding video streams "
117 "using platform hardware.";
118
Amber Won478561d2017-08-19 01:02:59119const char kClickToOpenPDFName[] = "Click to open embedded PDFs";
120const char kClickToOpenPDFDescription[] =
121 "When the PDF plugin is unavailable, show a click-to-open placeholder for "
122 "embedded PDFs.";
123
Gary Kacmarcikfb69b212017-11-14 03:41:08124const char kClipboardContentSettingName[] = "Clipboard content setting";
125const char kClipboardContentSettingDescription[] =
126 "Enables a site-wide permission in the UI which controls access to the "
127 "asynchronous clipboard web API";
128
Brett Wilsonf27ff602017-07-07 22:28:47129const char kCloudImportName[] = "Cloud Import";
130const char kCloudImportDescription[] = "Allows the cloud-import feature.";
131
Christopher Cameronceb8727d2017-09-07 23:53:16132const char kForceColorProfileSRGB[] = "sRGB";
133const char kForceColorProfileP3[] = "Display P3 D65";
134const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
135const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)";
136
137const char kForceColorProfileName[] = "Force color profile";
138const char kForceColorProfileDescription[] =
139 "Forces Chrome to use a specific color profile instead of the color "
140 "of the window's current monitor, as specified by the operating system.";
141
Brett Wilsonf27ff602017-07-07 22:28:47142const char kCompositedLayerBordersName[] = "Composited render layer borders";
143const char kCompositedLayerBordersDescription[] =
144 "Renders a border around composited Render Layers to help debug and study "
145 "layer compositing.";
146
Theresa Wellington39f634e12018-01-17 01:42:51147const char kContextualSuggestionsAboveArticlesName[] =
148 "Enable Contextual Suggestions Above Articles";
149const char kContextualSuggestionsAboveArticlesDescription[] =
150 "If enabled, shows contextual suggestions in a linear list above "
151 "article suggestions.";
152
Brett Wilsonf27ff602017-07-07 22:28:47153const char kContextualSuggestionsCarouselName[] =
Theresa Wellington39f634e12018-01-17 01:42:51154 "Enable Contextual Suggestions Carousel";
Brett Wilsonf27ff602017-07-07 22:28:47155const char kContextualSuggestionsCarouselDescription[] =
156 "If enabled, shows contextual suggestions in a horizontal carousel in "
157 "bottom sheet content.";
158
159const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
160const char kCreditCardAssistDescription[] =
161 "Enable assisted credit card filling on certain sites.";
162
163const char kCrossProcessGuestViewIsolationName[] =
164 "Cross process frames for guests";
165const char kCrossProcessGuestViewIsolationDescription[] =
166 "Highly experimental where guests such as <webview> are implemented on "
167 "the out-of-process iframe infrastructure.";
168
Thanh Le659cb102017-12-20 22:00:19169const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews";
170const char kDataSaverServerPreviewsDescription[] =
171 "Allow the Data Reduction Proxy to serve previews.";
Brett Wilsonf27ff602017-07-07 22:28:47172
173const char kDatasaverPromptName[] = "Cellular Data Saver Prompt";
174const char kDatasaverPromptDescription[] =
175 "Enables a prompt, which appears when a cellular network connection is "
176 "detected, to take the user to the Data Saver extension page on Chrome Web "
177 "Store.";
178const char kDatasaverPromptDemoMode[] = "Demo mode";
179
180const char kDebugPackedAppName[] = "Debugging for packed apps";
181const char kDebugPackedAppDescription[] =
182 "Enables debugging context menu options such as Inspect Element for packed "
183 "applications.";
184
185const char kDefaultTileHeightName[] = "Default tile height";
186const char kDefaultTileHeightDescription[] = "Specify the default tile height.";
187const char kDefaultTileHeightShort[] = "128";
188const char kDefaultTileHeightTall[] = "256";
189const char kDefaultTileHeightGrande[] = "512";
190const char kDefaultTileHeightVenti[] = "1024";
191
192const char kDefaultTileWidthName[] = "Default tile width";
193const char kDefaultTileWidthDescription[] = "Specify the default tile width.";
194const char kDefaultTileWidthShort[] = "128";
195const char kDefaultTileWidthTall[] = "256";
196const char kDefaultTileWidthGrande[] = "512";
197const char kDefaultTileWidthVenti[] = "1024";
198
199const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
200const char kDebugShortcutsDescription[] =
201 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
202
203const char kDeviceDiscoveryNotificationsName[] =
204 "Device Discovery Notifications";
205const char kDeviceDiscoveryNotificationsDescription[] =
206 "Device discovery notifications on local network.";
207
208const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
209const char kDevtoolsExperimentsDescription[] =
210 "Enables Developer Tools experiments. Use Settings panel in Developer "
211 "Tools to toggle individual experiments.";
212
213const char kDisableAudioForDesktopShareName[] =
214 "Disable Audio For Desktop Share";
215const char kDisableAudioForDesktopShareDescription[] =
216 "With this flag on, desktop share picker window will not let the user "
217 "choose whether to share audio.";
218
Brett Wilsonf27ff602017-07-07 22:28:47219const char kDisableTabForDesktopShareName[] =
220 "Disable Desktop Share with tab source";
221const char kDisableTabForDesktopShareDescription[] =
222 "This flag controls whether users can choose a tab for desktop share.";
223
224const char kDisallowDocWrittenScriptsUiName[] =
225 "Block scripts loaded via document.write";
226const char kDisallowDocWrittenScriptsUiDescription[] =
227 "Disallows fetches for third-party parser-blocking scripts inserted into "
228 "the main frame via document.write.";
229
Brett Wilsonf27ff602017-07-07 22:28:47230const char kDistanceFieldTextName[] = "Distance field text";
231const char kDistanceFieldTextDescription[] =
232 "Text is rendered with signed distance fields rather than bitmap alpha "
233 "masks.";
234
235const char kDriveSearchInChromeLauncherName[] =
236 "Drive Search in Chrome App Launcher";
237const char kDriveSearchInChromeLauncherDescription[] =
238 "Files from Drive will show up when searching the Chrome App Launcher.";
239
Brett Wilsonf27ff602017-07-07 22:28:47240const char kEasyUnlockBluetoothLowEnergyDiscoveryName[] =
241 "Smart Lock Bluetooth Low Energy Discovery";
242const char kEasyUnlockBluetoothLowEnergyDiscoveryDescription[] =
Tim Song52c142c62017-07-20 03:29:07243 "Disables a Smart Lock setting that allows Chromebook to discover phones "
Brett Wilsonf27ff602017-07-07 22:28:47244 "over Bluetooth Low Energy in order to unlock the Chromebook when the "
245 "phone is in its proximity.";
246
Gustavo Sacomotofb11164f2017-07-21 12:56:18247const char kEasyUnlockPromotionsName[] = "Smart Lock Promotions";
248const char kEasyUnlockPromotionsDescription[] =
249 "Enables Smart Lock promotions. Promotions will be periodically display "
250 "if the user is eligible.";
251
Brett Wilsonf27ff602017-07-07 22:28:47252const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
253const char kEmbeddedExtensionOptionsDescription[] =
254 "Display extension options as an embedded element in chrome://extensions "
255 "rather than opening a new tab.";
256
257const char kEnableAsmWasmName[] =
258 "Experimental Validate Asm.js and convert to WebAssembly when valid.";
259const char kEnableAsmWasmDescription[] =
260 R"*(Validate Asm.js when "use asm" is present and then convert to )*"
261 R"*(WebAssembly.)*";
262
Shanfeng Zhang19c16562017-10-17 02:30:40263const char kEnableAutofillCreditCardAblationExperimentDisplayName[] =
264 "Credit card autofill ablation experiment.";
265const char kEnableAutofillCreditCardAblationExperimentDescription[] =
266 "If enabled, credit card autofill suggestions will not display.";
267
Brett Wilsonf27ff602017-07-07 22:28:47268const char kEnableAutofillCreditCardBankNameDisplayName[] =
269 "Display the issuer bank name of a credit card in autofill.";
270const char kEnableAutofillCreditCardBankNameDisplayDescription[] =
271 "If enabled, displays the issuer bank name of a credit card in autofill.";
272
Shanfeng Zhang18f58352018-01-05 19:22:49273const char kEnableAutofillCreditCardDropdownGooglePayBrandingName[] =
274 "Show the Google Pay logo in the Autofill credit card dropdown";
275const char kEnableAutofillCreditCardDropdownGooglePayBrandingDescription[] =
276 "If enabled, shows the Google Pay logo in the Autofill credit card "
277 "dropdown.";
278
Brett Wilsonf27ff602017-07-07 22:28:47279const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
280 "Display the last used date of a credit card in autofill.";
281const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
282 "If enabled, display the last used date of a credit card in autofill.";
283
284const char kEnableAutofillCreditCardUploadCvcPromptName[] =
285 "Enable requesting missing CVC during Autofill credit card upload";
286const char kEnableAutofillCreditCardUploadCvcPromptDescription[] =
287 "If enabled, requests missing CVC when offering to upload credit cards to "
288 "Google Payments.";
289
Jared Saula3d51862018-01-12 02:51:09290const char kEnableAutofillCreditCardUploadGooglePayBrandingName[] =
Jared Saul8d2fb4442018-01-22 21:20:16291 "Enable Google Pay branding when offering credit card upload";
Jared Saula3d51862018-01-12 02:51:09292const char kEnableAutofillCreditCardUploadGooglePayBrandingDescription[] =
Jared Saul8d2fb4442018-01-22 21:20:16293 "If enabled, shows the Google Pay logo, a shorter header message, and a "
294 "narrower dialog when credit card upload to Google Payments is offered.";
Jared Saula3d51862018-01-12 02:51:09295
Jared Saul1e4786a2017-12-14 01:43:09296const char kEnableAutofillCreditCardUploadSendDetectedValuesName[] =
297 "Always send metadata on detected form values for Autofill credit card "
298 "upload";
299const char kEnableAutofillCreditCardUploadSendDetectedValuesDescription[] =
300 "If enabled, always checks with Google Payments when deciding whether to "
301 "offer credit card upload, even if some data is missing.";
302
Jared Saul5c2a1482017-12-09 00:24:31303const char kEnableAutofillCreditCardUploadSendPanFirstSixName[] =
304 "Send first six digits of PAN when deciding whether to offer Autofill "
305 "credit card upload";
306const char kEnableAutofillCreditCardUploadSendPanFirstSixDescription[] =
307 "If enabled, when deciding whether to offer credit card upload to Google "
308 "Payments, sends the first six digits of the card number to avoid cases "
309 "where card upload is likely to fail.";
310
Jason Guo71f621e2017-10-13 04:18:53311const char kEnableAutofillSendBillingCustomerNumberName[] =
312 "Enable autofill sending billing customer number when calling Google "
313 "Payments";
314const char kEnableAutofillSendBillingCustomerNumberDescription[] =
315 "If enabled, autofill sends billing customer number when calling Google "
316 "Payments.";
317
Shanfeng Zhang18f58352018-01-05 19:22:49318const char kEnableAutofillUseNewSettingsNameInDropdownName[] =
319 "Show a new Autofill settings string in the Autofill dropdown";
320const char kEnableAutofillUseNewSettingsNameInDropdownDescription[] =
321 "If enabled, shows a new Autofill settings string in the Autofill "
322 "dropdown.";
323
Vitalii Iarko4f9834ce2017-08-04 07:05:19324const char kEnableBreakingNewsPushName[] = "Breaking News Push";
325const char kEnableBreakingNewsPushDescription[] =
326 "Listen for breaking news content suggestions (e.g. for New Tab Page) "
327 "through Google Cloud Messaging.";
328
Brett Wilsonf27ff602017-07-07 22:28:47329const char kEnableBrotliName[] = "Brotli Content-Encoding.";
330const char kEnableBrotliDescription[] =
331 "Enable Brotli Content-Encoding support.";
332
Qiang Xu0f602fe62017-12-22 01:31:20333const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization";
334const char kEnableCaptivePortalRandomUrlDescription[] =
335 "Enable Captive Portal URL randomization.";
336
sclittle50e4bb92017-07-08 02:23:03337const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
338
339const char kEnableClientLoFiDescription[] =
340 "Enable showing low fidelity images on some pages on slow networks.";
341
Doug Arnett08b4067b2017-10-12 20:14:44342const char kEnableNoScriptPreviewsName[] = "NoScript previews";
343
344const char kEnableNoScriptPreviewsDescription[] =
345 "Enable disabling JavaScript on some pages on slow networks.";
346
Thanh Le2c279fbc2017-11-21 01:25:40347const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1";
348const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2";
349const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3";
350const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4";
351const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5";
352const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6";
353const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7";
354const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8";
355const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9";
356const char kDataReductionProxyServerAlternative10[] =
357 "Use alt. server config 10";
Brett Wilsonf27ff602017-07-07 22:28:47358const char kEnableDataReductionProxyServerExperimentName[] =
359 "Use an alternative Data Saver back end configuration.";
360const char kEnableDataReductionProxyServerExperimentDescription[] =
361 "Enable a different approach to saving data by configuring the back end "
362 "server";
363
364const char kEnableDataReductionProxySavingsPromoName[] =
365 "Data Saver 1 MB Savings Promo";
366const char kEnableDataReductionProxySavingsPromoDescription[] =
367 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
368 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
369 "enabled for the promo to be shown.";
370
Matt Giucad4870432017-11-24 01:04:38371const char kEnableDesktopPWAsName[] = "Desktop PWAs";
372const char kEnableDesktopPWAsDescription[] =
373 "Experimental windowing and install banner treatment for Progressive Web "
374 "Apps on desktop platforms. Implies #enable-experimental-app-banners.";
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17375
Ahmed Fakhry0037de02018-01-29 19:58:31376const char kEnableDockedMagnifierName[] = "Docked Magnifier";
377const char kEnableDockedMagnifierDescription[] =
378 "Enables the Docked Magnifier (a.k.a. picture-in-picture magnifier).";
379
Brett Wilsonf27ff602017-07-07 22:28:47380const char kEnableEnumeratingAudioDevicesName[] =
381 "Experimentally enable enumerating audio devices.";
382const char kEnableEnumeratingAudioDevicesDescription[] =
383 "Experimentally enable the use of enumerating audio devices.";
384
385const char kEnableGenericSensorName[] = "Generic Sensor";
386const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25387 "Enables motion sensor classes based on Generic Sensor API, i.e. "
388 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
389 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
390
391const char kEnableGenericSensorExtraClassesName[] =
392 "Generic Sensor Extra Classes";
393const char kEnableGenericSensorExtraClassesDescription[] =
394 "Enables an extra set of sensor classes based on Generic Sensor API, which "
395 "expose previously unavailable platform features, i.e. AmbientLightSensor "
396 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47397
Brett Wilsonf27ff602017-07-07 22:28:47398const char kEnableHDRName[] = "HDR mode";
399const char kEnableHDRDescription[] =
400 "Enables HDR support on compatible displays.";
401
402const char kEnableHeapProfilingName[] = "Heap profiling";
403const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
404const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
405const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
406const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
407
408const char kEnableHttpFormWarningName[] =
409 "Show in-form warnings for sensitive fields when the top-level page is not "
Eric Lawrenceed8fccf2017-09-08 21:27:15410 "HTTPS";
Brett Wilsonf27ff602017-07-07 22:28:47411const char kEnableHttpFormWarningDescription[] =
412 "Attaches a warning UI to any password or credit card fields detected when "
413 "the top-level page is not HTTPS";
414
Sidney San Martín9375b892017-09-09 00:29:54415const char kEnableMacMaterialDesignDownloadShelfName[] =
416 "Enable Material Design download shelf";
417
418const char kEnableMacMaterialDesignDownloadShelfDescription[] =
419 "If enabled, the download shelf uses Material Design.";
420
Tatiana Gornakafb40452017-07-31 13:50:04421const char kEnableManualFallbacksFillingName[] =
422 "Manual fallbacks for password manager forms filling";
423const char kEnableManualFallbacksFillingDescription[] =
424 "If enabled, then if user clicks on the password field on a form, popup "
425 "might contain generation fallbacks or 'Show all saved passwords' "
426 "fallback.";
427
vabr0215a8e2017-03-28 12:47:34428const char kEnableMaterialDesignBookmarksName[] =
429 "Enable Material Design bookmarks";
vabr0215a8e2017-03-28 12:47:34430const char kEnableMaterialDesignBookmarksDescription[] =
431 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
432 "bookmarks page.";
433
vabr0215a8e2017-03-28 12:47:34434const char kEnableMaterialDesignExtensionsName[] =
435 "Enable Material Design extensions";
vabr0215a8e2017-03-28 12:47:34436const char kEnableMaterialDesignExtensionsDescription[] =
437 "If enabled, the chrome://extensions/ URL loads the Material Design "
438 "extensions page.";
439
Anton Urusov47cd4932017-09-19 14:41:41440const char kEnablePolicyToolName[] = "Enable policy management page";
441const char kEnablePolicyToolDescription[] =
442 "If enabled, the chrome://policy-tool URL loads a page for managing "
443 "policies.";
444
Tsuyoshi Horoea7edb72017-11-12 04:14:00445const char kEnablePWAFullCodeCacheName[] = "Enable PWA full code cache";
446const char kEnablePWAFullCodeCacheDescription[] =
447 "Generate V8 code cache in Cache Storage while installing Service Worker "
448 "for PWAs.";
449
Weidong Guof1e5a892018-01-06 02:26:39450const char kDisableMultiMirroringName[] =
Weidong Guo7dfd1482017-11-08 05:56:28451 "Display mirroring across multiple displays.";
Weidong Guof1e5a892018-01-06 02:26:39452const char kDisableMultiMirroringDescription[] =
453 "Disable Display mirroring across multiple displays.";
Weidong Guo7dfd1482017-11-08 05:56:28454
Brett Wilsonf27ff602017-07-07 22:28:47455const char kEnableNavigationTracingName[] = "Enable navigation tracing";
456const char kEnableNavigationTracingDescription[] =
457 "This is to be used in conjunction with the trace-upload-url flag. "
458 "WARNING: When enabled, Chrome will record performance data for every "
459 "navigation and upload it to the URL specified by the trace-upload-url "
460 "flag. The trace may include personally identifiable information (PII) "
461 "such as the titles and URLs of websites you visit.";
462
Bernhard Bauer5533f9912017-11-06 17:56:02463const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
464const char kEnableNetworkLoggingToFileDescription[] =
465 "Enables network logging to a file named netlog.json in the user data "
466 "directory. The file can be imported into chrome://net-internals.";
467
Brett Wilsonf27ff602017-07-07 22:28:47468const char kEnableNetworkServiceName[] = "Enable network service";
469const char kEnableNetworkServiceDescription[] =
470 "Enables the network service, which makes network requests through a "
471 "separate service. Note: most features don't work with this yet.";
472
John Abd-El-Malek8067cc02017-12-04 23:23:20473const char kEnableNetworkServiceInProcessName[] =
474 "Runs network service in-process";
475const char kEnableNetworkServiceInProcessDescription[] =
476 "Runs the network service in the browser process.";
477
dpapaded8349472017-10-25 03:21:27478const char kEnableNewPrintPreview[] = "Enable new Print Preview UI";
479const char kEnableNewPrintPreviewDescription[] =
480 "If enabled, Print Preview will display a newer UI";
481
Ahmed Fakhry2fd8fc82017-07-28 16:31:12482const char kEnableNightLightName[] = "Enable Night Light";
483const char kEnableNightLightDescription[] =
484 "Enable the Night Light feature which controls the color temperature of "
485 "the screen.";
486
Sophie Chang117a3b22017-10-24 22:25:36487const char kEnableOptimizationHintsName[] = "Optimization Hints";
488const char kEnableOptimizationHintsDescription[] =
489 "Enable the Optimization Hints feature which incorporates server hints"
490 "into decisions for what optimizations to perform on some pages on slow "
491 "networks.";
492
Yutaka Hirano98be3272017-08-07 17:55:39493const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS";
494const char kEnableOutOfBlinkCORSDescription[] =
495 "CORS handling logic is moved out of blink.";
496
kylechar7051c092018-02-05 20:31:39497const char kVizDisplayCompositorName[] = "Viz Display Compositor (OOP-D)";
498const char kVizDisplayCompositorDescription[] =
499 "If enabled, the display compositor runs as part of the viz service in the"
500 "GPU process.";
501
Erik Chen49bbfa22017-08-18 08:49:56502const char kEnableOutOfProcessHeapProfilingName[] =
Albert J. Wong174174762018-01-18 23:50:23503 "Out of process heap profiling start mode.";
Erik Chen49bbfa22017-08-18 08:49:56504const char kEnableOutOfProcessHeapProfilingDescription[] =
505 "Creates a profiling service that records stacktraces for all live, "
erikchen94aca892018-01-18 00:21:19506 "malloced objects. Heap dumps can be obtained at chrome://tracing "
507 "[category:memory-infra] and chrome://memory-internals. This setting "
508 "controls which processes are profiled. As long as this setting is not "
509 "disabled, users can start profiling any given process in "
510 "chrome://memory-internals.";
511const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU";
512const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes";
513const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers";
514const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser";
515const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU.";
erikchen0a5dd692017-12-12 00:53:10516const char kEnableOutOfProcessHeapProfilingModeManual[] =
erikchen94aca892018-01-18 00:21:19517 "None by default. Visit chrome://memory-internals to choose which "
518 "processes to profile.";
Albert J. Wongbd5bd902017-11-09 19:56:15519const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] =
520 "Profile a random sampling of renderer processes, ensuring only one is "
521 "ever profiled at a time.";
erikchen94aca892018-01-18 00:21:19522
Erik Chen8bb76b52017-12-06 19:06:25523const char kOutOfProcessHeapProfilingKeepSmallAllocations[] =
erikchen94aca892018-01-18 00:21:19524 "Emit small allocations in memlog heap dumps.";
Erik Chen8bb76b52017-12-06 19:06:25525const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] =
526 "By default, small allocations are pruned from the heap dump. This reduces "
527 "the size of the compressed trace by 100x. If pruning is disabled, the "
528 "chrome://tracing UI may be unable to take or load the trace. Save the "
529 "trace directly using chrome://memory-internals, and use other mechanisms "
530 "[e.g. diff_heap_profiler.py] to examine the trace. Note that "
531 "automatically uploaded traces will always be pruned. This only affects "
532 "manually taken memory-infra traces.";
Erik Chen49bbfa22017-08-18 08:49:56533
Erik Chen3303fd0232018-01-11 20:29:05534const char kOOPHPStackModeName[] =
535 "The type of stack to record for memlog heap dumps";
536const char kOOPHPStackModeDescription[] =
erikchen94aca892018-01-18 00:21:19537 "By default, memlog heap dumps record native stacks, which requires a "
538 "post-processing step to symbolize. Requires a custom build with frame "
erikchen011ad3f2018-01-26 17:54:55539 "pointers to work on Android. Native with thread names will add the thread "
540 "name as the first frame of each native stack. It's also possible to "
541 "record a pseudo stack using trace events as identifiers. It's also "
542 "possible to do a mix of both.";
erikchen94aca892018-01-18 00:21:19543const char kOOPHPStackModeMixed[] = "Mixed";
544const char kOOPHPStackModeNative[] = "Native";
erikchen011ad3f2018-01-26 17:54:55545const char kOOPHPStackModeNativeWithThreadNames[] = "Native with thread names";
erikchen94aca892018-01-18 00:21:19546const char kOOPHPStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:05547
Brett Wilsonf27ff602017-07-07 22:28:47548const char kEnablePictureInPictureName[] = "Enable picture in picture.";
549const char kEnablePictureInPictureDescription[] =
550 "Enable the picture in picture feature for videos.";
551
F#m59d036e2017-09-13 07:22:17552const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
553const char kEnablePixelCanvasRecordingDescription[] =
554 "Pixel canvas recording allows the compositor to raster contents aligned "
555 "with the pixel and improves text rendering. This should be enabled when a "
556 "device is using fractional scale factor.";
557
Brett Wilsonf27ff602017-07-07 22:28:47558const char kEnableTokenBindingName[] = "Token Binding.";
559const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
560
Sahel Sharifyd732ab12017-11-29 23:03:16561extern const char kEnableTouchpadAndWheelScrollLatchingName[] =
562 "Wheel Scroll Latching.";
563extern const char kEnableTouchpadAndWheelScrollLatchingDescription[] =
564 "Wheel scroll latching enforces latching to a single element for the "
565 "duration of a scroll sequence.";
566
Brett Wilsonf27ff602017-07-07 22:28:47567const char kEnableUseZoomForDsfName[] =
568 "Use Blink's zoom for device scale factor.";
569const char kEnableUseZoomForDsfDescription[] =
570 "If enabled, Blink uses its zooming mechanism to scale content for device "
571 "scale factor.";
572const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
573const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
574const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
575
576const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
577const char kEnableScrollAnchoringDescription[] =
578 "Adjusts scroll position to prevent visible jumps when offscreen content "
579 "changes.";
580
Patrick Noland8ee016e2018-01-24 11:44:53581const char kEnableScrollAnchorSerializationName[] =
582 "Scroll Anchor Serialization";
583const char kEnableScrollAnchorSerializationDescription[] =
584 "Save the scroll anchor and use it to restore the scroll position when "
585 "navigating.";
586
Brad Nelson5cd500e2018-01-04 00:50:19587const char kEnableSharedArrayBufferName[] =
588 "Experimental enabled SharedArrayBuffer support in JavaScript.";
589const char kEnableSharedArrayBufferDescription[] =
590 "Enable SharedArrayBuffer support in JavaScript.";
591
Brett Wilsonf27ff602017-07-07 22:28:47592const char kEnableWasmName[] = "WebAssembly structured cloning support.";
593const char kEnableWasmDescription[] =
594 "Enable web pages to use WebAssembly structured cloning.";
595
Brett Wilsonf27ff602017-07-07 22:28:47596const char kEnableImageCaptureAPIName[] = "Image Capture API";
597const char kEnableImageCaptureAPIDescription[] =
598 "Enables the Web Platform Image Capture API: takePhoto(), "
599 "getPhotoCapabilities(), etc.";
600
601const char kEnableZeroSuggestRedirectToChromeName[] =
602 "Experimental contextual omnibox suggestion";
603const char kEnableZeroSuggestRedirectToChromeDescription[] =
604 "Change omnibox contextual suggestions to an experimental source. Note "
605 "that this is not an on/off switch for contextual omnibox and it only "
606 "applies to suggestions provided before the user starts typing a URL or a "
607 "search query (i.e. zero suggest).";
608
609const char kEnableWasmStreamingName[] =
610 "WebAssembly streaming compile/instantiate support.";
611const char kEnableWasmStreamingDescription[] =
612 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
613
Brett Wilsonf27ff602017-07-07 22:28:47614const char kExpensiveBackgroundTimerThrottlingName[] =
615 "Throttle expensive background timers";
616const char kExpensiveBackgroundTimerThrottlingDescription[] =
617 "Enables intervention to limit CPU usage of background timers to 1%.";
618
619const char kExperimentalAppBannersName[] = "Experimental app banners";
620const char kExperimentalAppBannersDescription[] =
Matt Giucad4870432017-11-24 01:04:38621 "Enables a new experimental app banner flow and UI. Implies "
622 "#enable-app-banners.";
Brett Wilsonf27ff602017-07-07 22:28:47623
624const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
625const char kExperimentalCanvasFeaturesDescription[] =
626 "Enables the use of experimental canvas features which are still in "
627 "development.";
628
629const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
630const char kExperimentalExtensionApisDescription[] =
631 "Enables experimental extension APIs. Note that the extension gallery "
632 "doesn't allow you to upload extensions that use experimental APIs.";
633
634const char kExperimentalFullscreenExitUIName[] =
635 "Experimental fullscreen exit UI";
636const char kExperimentalFullscreenExitUIDescription[] =
637 "Displays experimental UI to allow mouse and touch input methods to exit "
638 "fullscreen mode.";
639
Brett Wilsonf27ff602017-07-07 22:28:47640const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
641const char kExperimentalKeyboardLockUiDescription[] =
642 "An experimental full screen with keyboard lock mode requiring users to "
643 "hold Esc to exit.";
644
645const char kExperimentalSecurityFeaturesName[] =
646 "Potentially annoying security features";
647const char kExperimentalSecurityFeaturesDescription[] =
648 "Enables several security features that will likely break one or more "
649 "pages that you visit on a daily basis. Strict mixed content checking, for "
650 "example. And locking powerful features to secure contexts. This flag will "
651 "probably annoy you.";
652
653const char kExperimentalWebPlatformFeaturesName[] =
654 "Experimental Web Platform features";
655const char kExperimentalWebPlatformFeaturesDescription[] =
656 "Enables experimental Web Platform features that are in development.";
657
658const char kExtensionContentVerificationName[] =
659 "Extension Content Verification";
660const char kExtensionContentVerificationDescription[] =
661 "This flag can be used to turn on verification that the contents of the "
662 "files on disk for extensions from the webstore match what they're "
663 "expected to be. This can be used to turn on this feature if it would not "
664 "otherwise have been turned on, but cannot be used to turn it off (because "
665 "this setting can be tampered with by malware).";
666const char kExtensionContentVerificationBootstrap[] =
667 "Bootstrap (get expected hashes, but do not enforce them)";
668const char kExtensionContentVerificationEnforce[] =
669 "Enforce (try to get hashes, and enforce them if successful)";
670const char kExtensionContentVerificationEnforceStrict[] =
671 "Enforce strict (hard fail if we can't get hashes)";
672
673const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
674const char kExtensionsOnChromeUrlsDescription[] =
675 "Enables running extensions on chrome:// URLs, where extensions explicitly "
676 "request this permission.";
galinapae72e152017-05-12 13:12:28677
Brett Wilsonecb80982017-07-12 20:34:51678const char kFastUnloadName[] = "Fast tab/window close";
679const char kFastUnloadDescription[] =
680 "Enables fast tab/window closing - runs a tab's onunload js handler "
681 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:34682
Brett Wilsonecb80982017-07-12 20:34:51683const char kFeaturePolicyName[] = "Feature Policy";
684const char kFeaturePolicyDescription[] =
685 "Enables granting and removing access to features through the "
686 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:34687
Brett Wilsonecb80982017-07-12 20:34:51688const char kFontCacheScalingName[] = "FontCache scaling";
689const char kFontCacheScalingDescription[] =
690 "Reuse a cached font in the renderer to serve different sizes of font for "
691 "faster layout.";
692
693const char kForceEffectiveConnectionTypeName[] =
694 "Override effective connection type";
695const char kForceEffectiveConnectionTypeDescription[] =
696 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:30697 "returned by the network quality estimator. Slow 2G on Cellular returns "
698 "Slow 2G when connected to a cellular network, and the actual estimate "
699 "effective connection type when not on a cellular network. Previews are "
700 "usually served on 2G networks.";
Brett Wilsonecb80982017-07-12 20:34:51701const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
702const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
703const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:30704const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
705 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:51706const char kEffectiveConnectionType2GDescription[] = "2G";
707const char kEffectiveConnectionType3GDescription[] = "3G";
708const char kEffectiveConnectionType4GDescription[] = "4G";
709
710const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
711const char kFillOnAccountSelectDescription[] =
712 "Filling of passwords when an account is explicitly selected by the user "
713 "rather than autofilling credentials on page load.";
714
Brett Wilsonecb80982017-07-12 20:34:51715const char kForceTextDirectionName[] = "Force text direction";
716const char kForceTextDirectionDescription[] =
717 "Explicitly force the per-character directionality of UI text to "
718 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
719 "direction of the character language.";
720const char kForceDirectionLtr[] = "Left-to-right";
721const char kForceDirectionRtl[] = "Right-to-left";
722
723const char kForceUiDirectionName[] = "Force UI direction";
724const char kForceUiDirectionDescription[] =
725 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
726 "mode, overriding the default direction of the UI language.";
727
728const char kFramebustingName[] =
729 "Framebusting requires same-origin or a user gesture";
730const char kFramebustingDescription[] =
731 "Don't permit an iframe to navigate the top level browsing context unless "
732 "they are same-origin or the iframe is processing a user gesture.";
733
734const char kGamepadExtensionsName[] = "Gamepad Extensions";
735const char kGamepadExtensionsDescription[] =
736 "Enabling this option allows web applications to access experimental "
737 "extensions to the Gamepad APIs.";
738
Brett Wilsonecb80982017-07-12 20:34:51739const char kGpuRasterizationMsaaSampleCountName[] =
740 "GPU rasterization MSAA sample count.";
741const char kGpuRasterizationMsaaSampleCountDescription[] =
742 "Specify the number of MSAA samples for GPU rasterization.";
743const char kGpuRasterizationMsaaSampleCountZero[] = "0";
744const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
745const char kGpuRasterizationMsaaSampleCountFour[] = "4";
746const char kGpuRasterizationMsaaSampleCountEight[] = "8";
747const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
748
749const char kGpuRasterizationName[] = "GPU rasterization";
750const char kGpuRasterizationDescription[] =
751 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:28752const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:51753
754const char kGoogleProfileInfoName[] = "Google profile name and icon";
755const char kGoogleProfileInfoDescription[] =
756 "Enables using Google information to populate the profile name and icon in "
757 "the avatar menu.";
758
759const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
760const char kHarfbuzzRendertextDescription[] =
761 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect "
762 "web content.";
763
764const char kHistoryRequiresUserGestureName[] =
765 "New history entries require a user gesture.";
766const char kHistoryRequiresUserGestureDescription[] =
767 "Require a user gesture to add a history entry.";
768const char kHyperlinkAuditingName[] = "Hyperlink auditing";
769const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
770
771const char kHostedAppQuitNotificationName[] =
772 "Quit notification for hosted apps";
773const char kHostedAppQuitNotificationDescription[] =
774 "Display a notification when quitting Chrome if hosted apps are currently "
775 "running.";
776
777const char kHostedAppShimCreationName[] =
778 "Creation of app shims for hosted apps on Mac";
779const char kHostedAppShimCreationDescription[] =
780 "Create app shims on Mac when creating a hosted app.";
781
Ana-Cosmina Popescuda3bcbe2017-09-22 18:24:48782const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector";
783const char kHtmlBasedUsernameDetectorDescription[] =
784 "Use HTML-based username detector for the password manager.";
785
Brett Wilsonecb80982017-07-12 20:34:51786const char kIconNtpName[] = "Large icons on the New Tab page";
787const char kIconNtpDescription[] =
788 "Enable the experimental New Tab page using large icons.";
789
790const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
791const char kIgnoreGpuBlacklistDescription[] =
792 "Overrides the built-in software rendering list and enables "
793 "GPU-acceleration on unsupported system configurations.";
794
Thanh Le5f090efa52017-12-27 22:39:44795const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blacklist";
796const char kIgnorePreviewsBlacklistDescription[] =
797 "Ignore decisions made by the PreviewsBlackList";
798
Brett Wilsonecb80982017-07-12 20:34:51799const char kImportantSitesInCbdName[] =
800 "Important sites options in clear browsing data dialog";
801const char kImportantSitesInCbdDescription[] =
802 "Include the option to whitelist important sites in the clear browsing "
803 "data dialog.";
804
Claudio Magni61c210922017-12-28 00:29:51805const char kImprovedLanguageSettingsName[] = "Improved Language Settings";
806const char kImprovedLanguageSettingsDescription[] =
807 "Set of changes for Language Settings. These changes are intended to fix "
808 "the major bugs related to Language Settings.";
809
Brett Wilsonecb80982017-07-12 20:34:51810const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
811const char kInProductHelpDemoModeChoiceDescription[] =
812 "Selects the In-Product Help demo mode.";
813
814const char kJavascriptHarmonyName[] = "Experimental JavaScript";
815const char kJavascriptHarmonyDescription[] =
816 "Enable web pages to use experimental JavaScript features.";
817
818const char kJavascriptHarmonyShippingName[] =
819 "Latest stable JavaScript features";
820const char kJavascriptHarmonyShippingDescription[] =
821 "Some web pages use legacy or non-standard JavaScript extensions that may "
822 "conflict with the latest JavaScript features. This flag allows disabling "
823 "support of those features for compatibility with such pages.";
824
Yutaka Hiranof7f2f632017-09-06 10:40:08825const char kKeepAliveRendererForKeepaliveRequestsName[] =
826 "Keep a renderer alive for keepalive fetch requests";
827const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
828 "Keep a render process alive when the process has a pending fetch request "
829 "with `keepalive' specified.";
830
Joe Downing095fd6d2018-02-01 18:40:36831const char kKeyboardLockApiName[] = "Experimental keyboard lock API.";
832const char kKeyboardLockApiDescription[] =
833 "Enables websites to use the new keyboard{Lock|Unlock} API to intercept "
834 "specific key events and have them routed directly to the webpage when in "
835 "fullscreen mode. Implies #experimental-keyboard-lock-ui.";
836
Brett Wilsonecb80982017-07-12 20:34:51837const char kLcdTextName[] = "LCD text antialiasing";
838const char kLcdTextDescription[] =
839 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
840 "(subpixel) when doing accelerated compositing.";
841
Matt Giucac399982f2017-10-06 07:51:29842const char kLeftToRightUrlsName[] =
843 "Render bidirectional URLs from left to right";
844const char kLeftToRightUrlsDescription[] =
845 "An experimental Bidi URL rendering algorithm where the URL components are "
846 "always shown in order from left to right, regardless of any RTL "
847 "characters. (The contents of each component are still rendered with the "
848 "normal Bidi algorithm.)";
849
Brett Wilsonecb80982017-07-12 20:34:51850const char kLoadMediaRouterComponentExtensionName[] =
851 "Load Media Router Component Extension";
852const char kLoadMediaRouterComponentExtensionDescription[] =
853 "Loads the Media Router component extension at startup.";
854
855const char kManualPasswordGenerationName[] = "Manual password generation.";
856const char kManualPasswordGenerationDescription[] =
857 "Show a 'Generate Password' option on the context menu for all password "
858 "fields.";
859
Dominic Battref27e8762017-08-23 11:16:25860const char kManualPasswordSavingName[] = "Manual password saving.";
861const char kManualPasswordSavingDescription[] =
862 "Show the password manager icon when typing into a password filed. "
863 "Clicking it allows to save the password without submitting the form.";
864
Brett Wilsonecb80982017-07-12 20:34:51865const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
866const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
Brett Wilsonecb80982017-07-12 20:34:51867
Lei Zhang2eca9082017-10-17 20:42:50868const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP.";
869const char kMaterialDesignIncognitoNTPDescription[] =
Brett Wilsonecb80982017-07-12 20:34:51870 "If enabled, the Incognito New Tab page uses the new material design with "
871 "a better readable text.";
872
873const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
874const char kMediaRemotingDescription[] =
875 "When Casting a tab to a remote device, enabling this turns on an "
876 "optimization that forwards the content bitstream directly to the remote "
877 "device when a video is fullscreened.";
878
879const char kMemoryAblationName[] = "Memory ablation experiment";
880const char kMemoryAblationDescription[] =
881 "Allocates extra memory in the browser process.";
882
883const char kMemoryCoordinatorName[] = "Memory coordinator";
884const char kMemoryCoordinatorDescription[] =
885 "Enable memory coordinator instead of memory pressure listeners.";
886
887const char kMessageCenterNewStyleNotificationName[] = "New style notification";
888const char kMessageCenterNewStyleNotificationDescription[] =
889 "Enables the experiment style of material-design notification";
890
Brett Wilsonecb80982017-07-12 20:34:51891const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
892const char kMhtmlGeneratorOptionDescription[] =
893 "Provides experimental options for MHTML file generator.";
894const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
895const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
896
Kouhei Ueno08445c22017-09-05 03:58:30897const char kModuleScriptsDynamicImportName[] =
898 "Enable ECMAScript 6 modules dynamic import";
899const char kModuleScriptsDynamicImportDescription[] =
900 "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and "
901 "Blink.";
902
Hiroshige Hayashizaki15c2eb92017-10-20 04:57:05903const char kModuleScriptsImportMetaUrlName[] =
904 "Enable ECMAScript 6 modules import.meta.url";
905const char kModuleScriptsImportMetaUrlDescription[] =
906 "Enables ECMAScript 6 modules import.meta.url syntax support in V8 and "
907 "Blink.";
908
Brett Wilsonecb80982017-07-12 20:34:51909const char kNewAudioRenderingMixingStrategyName[] =
910 "New audio rendering mixing strategy";
911const char kNewAudioRenderingMixingStrategyDescription[] =
912 "Use the new audio rendering mixing strategy.";
913
914const char kNewBookmarkAppsName[] = "The new bookmark app system";
915const char kNewBookmarkAppsDescription[] =
916 "Enables the new system for creating bookmark apps.";
917
Brett Wilsonecb80982017-07-12 20:34:51918const char kNewRemotePlaybackPipelineName[] =
919 "Enable the new remote playback pipeline.";
920const char kNewRemotePlaybackPipelineDescription[] =
921 "Enable the new pipeline for playing media element remotely via "
922 "RemotePlayback API or native controls.";
CJ DiMeglio7b4a199f2017-11-30 01:26:50923const char kUseSurfaceLayerForVideoName[] =
924 "Enable the use of SurfaceLayer objects for videos.";
925const char kUseSurfaceLayerForVideoDescription[] =
926 "Enable compositing onto a Surface instead of a VideoLayer "
927 "for videos.";
Brett Wilsonecb80982017-07-12 20:34:51928
929const char kNewUsbBackendName[] = "Enable new USB backend";
930const char kNewUsbBackendDescription[] =
931 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:34932
brettw5f9c1642017-05-14 17:12:48933const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:34934const char kNostatePrefetchDescription[] =
935 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
936 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
937 R"*(improve load times even more. "Simple Load" does nothing and is )*"
938 R"*(similar to disabling the feature, but collects more metrics for )*"
939 R"*(comparison purposes.)*";
940
Brett Wilsonecb80982017-07-12 20:34:51941const char kNotificationsNativeFlagName[] = "Enable native notifications.";
942const char kNotificationsNativeFlagDescription[] =
943 "Enable support for using the native notification toasts and notification "
944 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:34945
Zentaro Kavanaghbad511c2017-10-18 22:29:00946#if defined(OS_POSIX)
947const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication";
948const char kNtlmV2EnabledDescription[] =
949 "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support.";
950#endif
951
Brett Wilsonecb80982017-07-12 20:34:51952const char kNumRasterThreadsName[] = "Number of raster threads";
953const char kNumRasterThreadsDescription[] =
954 "Specify the number of raster threads.";
955const char kNumRasterThreadsOne[] = "1";
956const char kNumRasterThreadsTwo[] = "2";
957const char kNumRasterThreadsThree[] = "3";
958const char kNumRasterThreadsFour[] = "4";
959
960const char kOfferStoreUnmaskedWalletCardsName[] =
961 "Google Payments card saving checkbox";
962const char kOfferStoreUnmaskedWalletCardsDescription[] =
963 "Show the checkbox to offer local saving of a credit card downloaded from "
964 "the server.";
965
966const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
967const char kOfflineAutoReloadDescription[] =
968 "Pages that fail to load while the browser is offline will be "
969 "auto-reloaded when the browser is online again.";
970
971const char kOfflineAutoReloadVisibleOnlyName[] =
972 "Only Auto-Reload Visible Tabs";
973const char kOfflineAutoReloadVisibleOnlyDescription[] =
974 "Pages that fail to load while the browser is offline will only be "
975 "auto-reloaded if their tab is visible.";
976
Brett Wilsonecb80982017-07-12 20:34:51977const char kOmniboxDisplayTitleForCurrentUrlName[] =
978 "Include title for the current URL in the omnibox";
979const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
980 "In the event that the omnibox provides suggestions on-focus, the URL of "
981 "the current page is provided as the first suggestion without a title. "
982 "Enabling this flag causes the title to be displayed.";
983
Benoit Lizeab08362c2017-07-19 14:50:54984const char kOmniboxSpareRendererName[] =
985 "Start spare renderer on omnibox focus";
986const char kOmniboxSpareRendererDescription[] =
987 "When the omnibox is focused, start an empty spare renderer. This can "
988 "speed up the load of the navigation from the omnibox.";
989
Tommy C. Li8875a442017-08-23 00:10:59990const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
991 "Omnibox UI Elide Suggestion URL After Host";
992const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
993 "Elides the path, query, and ref of suggested URLs in the Omnibox "
994 "dropdown.";
995
Tommy C. Lid79d4402017-12-22 22:49:12996const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsName[] =
997 "Omnibox UI Hide Steady-State URL Scheme and Trivial Subdomains";
998const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsDescription[] =
999 "In the Omnibox, hide the scheme and trivial subdomains from steady state "
1000 "displayed URLs. Hidden portions are restored during editing.";
1001
Brett Wilsonecb80982017-07-12 20:34:511002const char kOmniboxUIHideSuggestionUrlSchemeName[] =
1003 "Omnibox UI Hide Suggestion URL Scheme";
1004const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
1005 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
1006
1007const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
1008 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
1009const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
1010 "Elides trivially informative subdomains from suggested URLs in the "
1011 "Omnibox dropdown (e.g. www. and m.).";
1012
1013const char kOmniboxUIMaxAutocompleteMatchesName[] =
1014 "Omnibox UI Max Autocomplete Matches";
1015
1016const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
1017 "Changes the maximum number of autocomplete matches displayed in the "
1018 "Omnibox UI.";
1019
1020const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
1021const char kOmniboxUINarrowDropdownDescription[] =
1022 "Makes the suggestions dropdown width match the omnibox width.";
1023
Justin Donnelly65c9e8b2017-10-01 05:15:011024const char kOmniboxUIShowSuggestionFaviconsName[] =
1025 "Omnibox UI Show Suggestion Favicons";
1026const char kOmniboxUIShowSuggestionFaviconsDescription[] =
1027 "Shows favicons instead of generic vector icons for URL suggestions in the "
1028 "Omnibox dropdown.";
1029
1030const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL";
1031const char kOmniboxUISwapTitleAndUrlDescription[] =
1032 "In the omnibox dropdown, shows titles before URLs when both are "
1033 "available.";
1034
Brett Wilsonecb80982017-07-12 20:34:511035const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
1036const char kOmniboxUIVerticalLayoutDescription[] =
1037 "Displays Omnibox sugestions in 2 lines - title over origin.";
1038
1039const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
1040const char kOmniboxUIVerticalMarginDescription[] =
1041 "Changes the vertical margin in the Omnibox UI.";
1042
1043const char kOriginTrialsName[] = "Origin Trials";
1044const char kOriginTrialsDescription[] =
1045 "Enables origin trials for controlling access to feature/API experiments.";
1046
Becca Hughes930d8cd2017-10-02 11:09:121047const char kOverflowIconsForMediaControlsName[] =
1048 "Icons on Media Controls Overflow Menu";
1049const char kOverflowIconsForMediaControlsDescription[] =
1050 "Displays icons on the overflow menu of the native media controls";
1051
Brett Wilsonecb80982017-07-12 20:34:511052const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1053const char kOverlayScrollbarsDescription[] =
1054 "Enable the experimental overlay scrollbars implementation. You must also "
1055 "enable threaded compositing to have the scrollbars animate.";
1056
chaopenge8aa016b2017-08-24 15:20:191057const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
1058 "Flash Overlay Scrollbars After Any Scroll Update";
1059const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
1060 "Flash Overlay Scrollbars After any scroll update happends in page. You"
1061 " must also enable Overlay Scrollbars.";
1062
chaopeng343678022017-08-24 18:45:001063const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
1064 "Flash Overlay Scrollbars When Mouse Enter";
1065const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
1066 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
1067 " enable Overlay Scrollbars.";
1068
Claudio Magni81326f92017-09-01 05:21:181069const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
1070const char kUseNewAcceptLanguageHeaderDescription[] =
1071 "Adds the base language code after other corresponding language+region "
1072 "codes. This ensures that users receive content in their preferred "
1073 "language.";
1074
Brett Wilsonecb80982017-07-12 20:34:511075const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1076const char kOverscrollHistoryNavigationDescription[] =
1077 "Experimental history navigation in response to horizontal overscroll.";
1078const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
1079
1080const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
1081const char kOverscrollStartThresholdDescription[] =
1082 "Changes overscroll start threshold relative to the default value.";
1083const char kOverscrollStartThreshold133Percent[] = "133%";
1084const char kOverscrollStartThreshold166Percent[] = "166%";
1085const char kOverscrollStartThreshold200Percent[] = "200%";
1086
Xing Liu5400a002017-09-15 21:48:291087const char kParallelDownloadingName[] = "Parallel downloading";
1088const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061089 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291090
Brett Wilsonecb80982017-07-12 20:34:511091const char kPassiveEventListenerDefaultName[] =
1092 "Passive Event Listener Override";
1093const char kPassiveEventListenerDefaultDescription[] =
1094 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1095 "haven't requested otherwise) to be treated as passive. This will break "
1096 "touch/wheel behavior on some websites but is useful for demonstrating the "
1097 "potential performance benefits of adopting passive event listeners.";
1098const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1099const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1100
1101const char kPassiveEventListenersDueToFlingName[] =
1102 "Touch Event Listeners Passive Default During Fling";
1103const char kPassiveEventListenersDueToFlingDescription[] =
1104 "Forces touchstart, and first touchmove per scroll event listeners during "
1105 "fling to be treated as passive.";
1106
1107const char kPassiveDocumentEventListenersName[] =
1108 "Document Level Event Listeners Passive Default";
1109const char kPassiveDocumentEventListenersDescription[] =
1110 "Forces touchstart, and touchmove event listeners on document level "
1111 "targets (which haven't requested otherwise) to be treated as passive.";
1112
1113const char kPasswordForceSavingName[] = "Force-saving of passwords";
1114const char kPasswordForceSavingDescription[] =
1115 "Allow the user to manually enforce password saving instead of relying on "
1116 "password manager's heuristics.";
1117
1118const char kPasswordGenerationName[] = "Password generation";
1119const char kPasswordGenerationDescription[] =
1120 "Allow the user to have Chrome generate passwords when it detects account "
1121 "creation pages.";
1122
Vaclav Brozekd8a3f542017-11-16 14:21:131123const char kPasswordExportName[] = "Password export";
1124const char kPasswordExportDescription[] =
1125 "Export functionality in password settings.";
1126
1127const char kPasswordImportName[] = "Password import";
1128const char kPasswordImportDescription[] =
1129 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511130
Friedrich Horschig03c91982018-01-25 14:21:281131const char kPasswordSearchMobileName[] = "Password search";
1132const char kPasswordSearchMobileDescription[] =
1133 "Search functionality in password settings.";
1134
Brett Wilsonecb80982017-07-12 20:34:511135const char kPermissionActionReportingName[] = "Permission Action Reporting";
1136const char kPermissionActionReportingDescription[] =
1137 "Enables permission action reporting to Safe Browsing servers for opted in "
1138 "users.";
1139
1140const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1141const char kPermissionsBlacklistDescription[] =
1142 "Enables the Permissions Blacklist, which blocks permissions for "
1143 "blacklisted sites for Safe Browsing users.";
1144
1145const char kPinchScaleName[] = "Pinch scale";
1146const char kPinchScaleDescription[] =
1147 "Enables experimental support for scale using pinch.";
1148
Doug Arnett620ff542018-02-06 17:54:221149const char kPreviewsAllowedName[] = "Previews Allowed";
1150const char kPreviewsAllowedDescription[] =
1151 "Allows previews to be shown subject to specific preview types being "
1152 "enabled and the client experiencing specific triggering conditions. "
1153 "May be used as a kill-switch to turn off all potential preview types.";
1154
Brett Wilsonecb80982017-07-12 20:34:511155const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1156const char kPrintPdfAsImageDescription[] =
1157 "If enabled, an option to print PDF files as images will be available in "
1158 "print preview.";
1159
1160const char kPrintPreviewRegisterPromosName[] =
1161 "Print Preview Registration Promos";
1162const char kPrintPreviewRegisterPromosDescription[] =
1163 "Enable registering unregistered cloud printers from print preview.";
1164
1165const char kProtectSyncCredentialName[] = "Autofill sync credential";
1166const char kProtectSyncCredentialDescription[] =
1167 "How the password manager handles autofill for the sync credential.";
1168
1169const char kProtectSyncCredentialOnReauthName[] =
1170 "Autofill sync credential only for transactional reauth pages";
1171const char kProtectSyncCredentialOnReauthDescription[] =
1172 "How the password manager handles autofill for the sync credential only "
1173 "for transactional reauth pages.";
1174
Mohsen Izadi93faac12017-07-29 04:45:151175const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1176const char kPullToRefreshDescription[] =
1177 "Pull-to-refresh gesture in response to vertical overscroll.";
1178
Brett Wilsonecb80982017-07-12 20:34:511179const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1180const char kPushApiBackgroundModeDescription[] =
1181 "Enable background mode for the Push API. This allows Chrome to continue "
1182 "running after the last window is closed, and to launch at OS startup, if "
1183 "the Push API needs it.";
1184
1185const char kQuicName[] = "Experimental QUIC protocol";
1186const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1187
1188const char kReducedReferrerGranularityName[] =
1189 "Reduce default 'referer' header granularity.";
1190const char kReducedReferrerGranularityDescription[] =
1191 "If a page hasn't set an explicit referrer policy, setting this flag will "
1192 "reduce the amount of information in the 'referer' header for cross-origin "
1193 "requests.";
1194
Claudio Magnie0a80bb2018-01-31 02:52:581195extern const char kRegionalLocalesAsDisplayUIName[] =
1196 "Allow regional locales as display UI";
1197extern const char kRegionalLocalesAsDisplayUIDescription[] =
1198 "This flag allows regional locales to be selected as display UI by the "
1199 "user in Language Settings. The actual locale of the system is derived "
1200 "from the user selection based on some simple fallback logic.";
1201
Mihai Sardarescu6d0f5b72017-10-30 11:24:381202const char kRemoveUsageOfDeprecatedGaiaSigninEndpointName[] =
1203 "Remove usage of the deprecated GAIA sign-in endpoint";
1204const char kRemoveUsageOfDeprecatedGaiaSigninEndpointDescription[] =
1205 "The Gaia sign-in endpoint used for full-tab sign-in page is deprecated. "
1206 "This flags controls wheter it should no longer be used during a sign-in "
1207 " flow.";
1208
Yutaka Hirano4c0f2f5d452017-11-17 04:24:351209const char kRendererSideResourceSchedulerName[] =
1210 "Renderer side ResourceScheduler";
1211const char kRendererSideResourceSchedulerDescription[] =
1212 "Migrate some ResourceScheduler functionalities to renderer";
1213
Brett Wilsonecb80982017-07-12 20:34:511214const char kRequestTabletSiteName[] =
1215 "Request tablet site option in the settings menu";
1216const char kRequestTabletSiteDescription[] =
1217 "Allows the user to request tablet site. Web content is often optimized "
1218 "for tablet devices. When this option is selected the user agent string is "
1219 "changed to indicate a tablet device. Web content optimized for tablets is "
1220 "received there after for the current tab.";
1221
1222const char kResetAppListInstallStateName[] =
1223 "Reset the App Launcher install state on every restart.";
1224const char kResetAppListInstallStateDescription[] =
1225 "Reset the App Launcher install state on every restart. While this flag is "
1226 "set, Chrome will forget the launcher has been installed each time it "
1227 "starts. This is used for testing the App Launcher install flow.";
1228
1229const char kResourceLoadSchedulerName[] = "Use the resource load scheduler";
1230const char kResourceLoadSchedulerDescription[] =
1231 "Uses the resource load scheduler in blink to schedule and throttle "
1232 "resource load requests.";
1233
Brett Wilsonecb80982017-07-12 20:34:511234const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1235const char kSafeSearchUrlReportingDescription[] =
1236 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1237
Alexei Filippov98772752018-01-27 08:26:521238const char kSamplingHeapProfilerName[] = "Native memory sampling profiler.";
1239const char kSamplingHeapProfilerDescription[] =
1240 "Enables native memory sampling profiler with specified rate in KiB. "
1241 "If sampling rate is not provided the default value of 128 KiB is used.";
1242
Brett Wilsonecb80982017-07-12 20:34:511243const char kSaveasMenuLabelExperimentName[] =
1244 "Switch 'Save as' menu labels to 'Download'";
1245const char kSaveasMenuLabelExperimentDescription[] =
1246 "Enables an experiment to switch menu labels that use 'Save as...' to "
1247 "'Download'.";
1248
1249const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1250const char kSavePageAsMhtmlDescription[] =
1251 "Enables saving pages as MHTML: a single text file containing HTML and all "
1252 "sub-resources.";
1253
Nate Chapin9638e7102017-09-20 22:11:011254const char kSavePreviousDocumentResourcesName[] =
1255 "Save Previous Document Resources";
1256const char kSavePreviousDocumentResourcesDescription[] =
1257 "Saves an old document's cached resources until the specified point in the "
1258 "next document's lifecycle.";
1259const char kSavePreviousDocumentResourcesNever[] =
1260 "Don't explicitly save resources";
1261const char kSavePreviousDocumentResourcesUntilOnDOMContentLoaded[] =
1262 "Save resources until onDOMContentLoaded completes";
1263const char kSavePreviousDocumentResourcesUntilOnLoad[] =
1264 "Save resources until onload completes";
1265
Brett Wilsonecb80982017-07-12 20:34:511266const char kScrollPredictionName[] = "Scroll prediction";
1267const char kScrollPredictionDescription[] =
1268 "Predicts the finger's future position during scrolls allowing time to "
1269 "render the frame before the finger is there.";
1270
1271const char kSecondaryUiMd[] =
1272 "Material Design in the rest of the browser's native UI";
1273const char kSecondaryUiMdDescription[] =
1274 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
1275 "etc.). On Mac, this enables MacViews, which uses toolkit-views for native "
1276 "browser dialogs.";
1277
1278const char kServiceWorkerNavigationPreloadName[] =
1279 "Service worker navigation preload.";
1280const char kServiceWorkerNavigationPreloadDescription[] =
1281 "Enable web pages to use the experimental service worker navigation "
1282 "preload API.";
1283
gogeraldd5061b592017-09-06 23:39:551284const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1285const char kServiceWorkerPaymentAppsDescription[] =
1286 "Enable Service Worker applications to integrate as payment apps";
1287
Makoto Shimazud9f333c2017-08-08 07:23:171288const char kServiceWorkerScriptStreamingName[] =
1289 "Service worker script streaming.";
1290const char kServiceWorkerScriptStreamingDescription[] =
1291 "Installed scripts for a service worker are sent over a dedicated "
1292 "message pipe and data pipes, and that is never be blocked on the main "
1293 "thread.";
1294
Makoto Shimazu98f946d2018-01-24 07:29:241295extern const char kServiceWorkerServicificationName[] =
1296 "Servicified service workers";
1297extern const char kServiceWorkerServicificationDescription[] =
1298 "Enable the servicified service workers. A servicified service worker can "
1299 "have direct connection from its clients, so that fetch events can be "
1300 "dispatched through the connection without hopping to the browser process.";
1301
Tsuyoshi Horobcb1c642017-11-24 16:32:141302const char kServiceWorkerScriptFullCodeCacheName[] =
1303 "Service worker script full code cache.";
1304const char kServiceWorkerScriptFullCodeCacheDescription[] =
1305 "Generate V8 full code cache of Service Worker scripts while installing.";
1306
Brett Wilsonecb80982017-07-12 20:34:511307const char kSettingsWindowName[] = "Show settings in a window";
1308const char kSettingsWindowDescription[] =
1309 "Settings will be shown in a dedicated window instead of as a browser tab.";
1310
Trent Apted750ba7022017-10-23 13:36:251311const char kShowAllDialogsWithViewsToolkitName[] =
1312 "Show all dialogs with Views toolkit";
1313const char kShowAllDialogsWithViewsToolkitDescription[] =
1314 "All browser dialogs will be shown using the Views toolkit rather than "
1315 "Cocoa. This requires <a href=\"#secondary-ui-md\">#secondary-ui-md</a>.";
1316
Brett Wilsonecb80982017-07-12 20:34:511317const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1318const char kShowAutofillSignaturesDescription[] =
1319 "Annotates web forms with Autofill signatures as HTML attributes.";
1320
1321const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1322const char kShowAutofillTypePredictionsDescription[] =
1323 "Annotates web forms with Autofill field type predictions as placeholder "
1324 "text.";
1325
1326const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1327const char kShowOverdrawFeedbackDescription[] =
1328 "Visualize overdraw by color-coding elements based on if they have other "
1329 "elements drawn underneath.";
1330
yiyixbdfa9a0b2017-10-23 22:21:471331const char kEnableDrawOcclusionName[] = "Enable draw occlusion";
1332const char kEnableDrawOcclusionDescription[] =
1333 "Enable the system to use draw occlusion to skip draw quads when they are "
1334 "not shown on the screen.";
1335
Brett Wilsonecb80982017-07-12 20:34:511336const char kShowSavedCopyName[] = "Show Saved Copy Button";
1337const char kShowSavedCopyDescription[] =
1338 "When a page fails to load, if a stale copy of the page exists in the "
1339 "browser cache, a button will be presented to allow the user to load that "
1340 "stale copy. The primary enabling choice puts the button in the most "
1341 "salient position on the error page; the secondary enabling choice puts it "
1342 "secondary to the reload button.";
1343const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1344const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1345const char kDisableShowSavedCopy[] = "Disable";
1346
Brett Wilsonecb80982017-07-12 20:34:511347const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1348const char kSilentDebuggerExtensionApiDescription[] =
1349 "Do not show the infobar when an extension attaches to a page via "
1350 "chrome.debugger API. This is required to debug extension background "
1351 "pages.";
1352
1353const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1354const char kSimpleCacheBackendDescription[] =
1355 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1356 "disk space allocation.";
1357
1358const char kSimplifiedFullscreenUiName[] =
1359 "Simplified full screen / mouse lock UI.";
1360const char kSimplifiedFullscreenUiDescription[] =
1361 "A simplified new user experience when entering page-triggered full screen "
1362 "or mouse pointer lock states.";
1363
Christopher Thompson75ff845d2018-02-01 20:12:461364const char kSimplifyHttpsIndicatorName[] = "Simplify HTTPS indicator UI";
1365const char kSimplifyHttpsIndicatorDescription[] =
1366 "Change the UI treatment for HTTPS pages.";
1367
Brett Wilsonecb80982017-07-12 20:34:511368const char kSingleClickAutofillName[] = "Single-click autofill";
1369const char kSingleClickAutofillDescription[] =
1370 "Make autofill suggestions on initial mouse click on a form element.";
1371
Brett Wilsonecb80982017-07-12 20:34:511372const char kSitePerProcessName[] = "Strict site isolation";
1373const char kSitePerProcessDescription[] =
Nasko Oskov6042073fe2017-12-08 20:35:171374 "Experimental security mode that ensures each renderer process "
Brett Wilsonecb80982017-07-12 20:34:511375 "contains pages from at most one site. In this mode, out-of-process "
1376 "iframes will be used whenever an iframe is cross-site.";
1377
1378const char kSiteSettings[] = "Site settings with All sites and Site details";
1379const char kSiteSettingsDescription[] =
1380 "Adds new ways of viewing Site settings.";
1381
1382const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
1383const char kSlimmingPaintInvalidationDescription[] =
1384 "Whether to enable a new paint invalidation system.";
1385
1386const char kSmoothScrollingName[] = "Smooth Scrolling";
1387const char kSmoothScrollingDescription[] =
1388 "Animate smoothly when scrolling page content.";
1389
1390const char kSoftwareRasterizerName[] = "3D software rasterizer";
1391const char kSoftwareRasterizerDescription[] =
1392 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1393
Wei-Yin Chen (陳威尹)deff0802018-01-19 06:29:201394const char kSoleIntegrationName[] = "Sole integration";
1395const char kSoleIntegrationDescription[] =
1396 "Enable Sole integration for browser customization. You must restart "
1397 "the browser twice for changes to take effect.";
1398
Tommy Steimel77704be2017-08-28 22:14:401399const char kSoundContentSettingName[] = "Sound content setting";
1400const char kSoundContentSettingDescription[] =
1401 "Enable site-wide muting in content settings and tab strip context menu.";
1402
Alexandr Ilinf0500ed32017-09-27 21:12:361403const char kSpeculativePreconnectName[] = "Enable new preconnect predictor";
1404const char kSpeculativePreconnectDescription[] =
1405 "Enable the new implementation of preconnect and DNS preresolve. "
1406 "\"Learning\" means that only database construction is enabled, "
1407 "\"Preconnect\" enables both learning and preconnect and disables the "
1408 "existing implementation. \"No preconnect\" disables both implementations.";
1409
Brett Wilsonecb80982017-07-12 20:34:511410const char kSpeculativePrefetchName[] = "Speculative Prefetch";
vabr0215a8e2017-03-28 12:47:341411const char kSpeculativePrefetchDescription[] =
1412 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
1413 R"*(load times, based on a local database (see chrome://predictors). )*"
1414 R"*("Learning" means that only the database construction is enabled, )*"
1415 R"*("Prefetching" that learning and prefetching are enabled.)*";
1416
Justin Donnelly4e448cb2017-07-07 21:32:131417const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1418 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131419const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1420 "If enabled, when the user enters text in the omnibox that looks like a "
1421 "a query, any service worker associated with the search engine the query "
1422 "will be sent to is started early.";
1423
Brett Wilsonecb80982017-07-12 20:34:511424const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1425const char kSpellingFeedbackFieldTrialDescription[] =
1426 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401427
Shubhie Panickerfaf082ed2018-01-03 04:49:151428const char kStopInBackgroundName[] = "Stop in background";
1429const char kStopInBackgroundDescription[] =
1430 "Stop scheduler task queues, in the background, "
1431 " after certain grace time.";
1432
1433const char kStopLoadingInBackgroundName[] = "Stop loading in background";
1434const char kStopLoadingInBackgroundDescription[] =
1435 "Stop loading tasks and loading "
1436 "resources, in the background, after certain grace time.";
1437
Brett Wilsonecb80982017-07-12 20:34:511438const char kSuggestionsWithSubStringMatchName[] =
1439 "Substring matching for Autofill suggestions";
1440const char kSuggestionsWithSubStringMatchDescription[] =
1441 "Match Autofill suggestions based on substrings (token prefixes) rather "
1442 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341443
Brett Wilsonecb80982017-07-12 20:34:511444const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1445const char kSyncSandboxDescription[] =
1446 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341447
Brett Wilsonecb80982017-07-12 20:34:511448const char kTabAudioMutingName[] = "Tab audio muting UI control";
1449const char kTabAudioMutingDescription[] =
1450 "When enabled, the audio indicators in the tab strip double as tab audio "
1451 "mute controls. This also adds commands in the tab context menu for "
1452 "quickly muting multiple selected tabs.";
vabr0215a8e2017-03-28 12:47:341453
Christian Dullweberd0d96f02017-09-13 09:22:511454const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1455const char kTabsInCbdDescription[] =
1456 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1457
Becky Zhou99c22802017-10-19 05:09:271458const char kTabModalJsDialogName[] = "Auto-dismissing JavaScript Dialogs";
1459const char kTabModalJsDialogDescription[] =
1460 "If enabled, the JavaScript dialog will be auto dismissable when switching"
1461 " tab.";
1462
Brett Wilsonecb80982017-07-12 20:34:511463const char kTcpFastOpenName[] = "TCP Fast Open";
1464const char kTcpFastOpenDescription[] =
1465 "Enable the option to send extra authentication information in the initial "
1466 "SYN packet for a previously connected client, allowing faster data send "
1467 "start.";
vabr0215a8e2017-03-28 12:47:341468
Daniele Castagna0fead93e2018-01-10 20:40:291469const char kTintGlCompositedContentName[] = "Tint GL-composited content";
1470const char kTintGlCompositedContentDescription[] =
1471 "Tint contents composited using GL with a shade of red to help debug and "
1472 "study overlay support.";
1473
Brett Wilsonecb80982017-07-12 20:34:511474const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
1475const char kTopChromeMdDescription[] =
1476 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
1477const char kTopChromeMdMaterial[] = "Normal";
Eugene Girard42dedf722017-10-12 21:07:531478const char kTopChromeMdMaterialAuto[] = "Auto";
Brett Wilsonecb80982017-07-12 20:34:511479const char kTopChromeMdMaterialHybrid[] = "Touch";
vabr0215a8e2017-03-28 12:47:341480
Brett Wilsonecb80982017-07-12 20:34:511481const char kThreadedScrollingName[] = "Threaded scrolling";
1482const char kThreadedScrollingDescription[] =
1483 "Threaded handling of scroll-related input events. Disabling this will "
1484 "force all such scroll events to be handled on the main thread. Note that "
1485 "this can dramatically hurt scrolling performance of most websites and is "
1486 "intended for testing purposes only.";
1487
Steven Valdez4584b2482017-07-14 01:11:571488const char kTLS13VariantName[] = "TLS 1.3";
1489const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1490const char kTLS13VariantDisabled[] = "Disabled";
Steven Valdez57d88652017-10-05 21:05:111491const char kTLS13VariantDeprecated[] = "Disabled (Deprecated Setting)";
Steven Valdez781157b2018-01-11 13:32:041492const char kTLS13VariantDraft23[] = "Enabled (Draft 23)";
Steven Valdez4584b2482017-07-14 01:11:571493
Brett Wilsonecb80982017-07-12 20:34:511494const char kTopDocumentIsolationName[] = "Top document isolation";
1495const char kTopDocumentIsolationDescription[] =
1496 "Highly experimental performance mode where cross-site iframes are kept in "
1497 "a separate process from the top document. In this mode, iframes from "
1498 "different third-party sites will be allowed to share a process.";
1499
Dominick Ng8896b1cd2017-10-17 23:24:361500const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement";
1501const char kTopSitesFromSiteEngagementDescription[] =
1502 "Enable Top Sites on the New Tab Page to be sourced and sorted using site "
1503 "engagement.";
1504
Brett Wilsonecb80982017-07-12 20:34:511505const char kTouchAdjustmentName[] = "Touch adjustment";
1506const char kTouchAdjustmentDescription[] =
1507 "Refine the position of a touch gesture in order to compensate for touches "
1508 "having poor resolution compared to a mouse.";
1509
1510const char kTouchDragDropName[] = "Touch initiated drag and drop";
1511const char kTouchDragDropDescription[] =
1512 "Touch drag and drop can be initiated through long press on a draggable "
1513 "element.";
1514
1515const char kTouchEventsName[] = "Touch Events API";
1516const char kTouchEventsDescription[] =
1517 "Force Touch Events API feature detection to always be enabled or "
1518 "disabled, or to be enabled when a touchscreen is detected on startup "
Ella Gea6a203c92017-10-26 19:09:291519 "(Automatic).";
Brett Wilsonecb80982017-07-12 20:34:511520
1521const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1522const char kTouchSelectionStrategyDescription[] =
1523 "Controls how text selection granularity changes when touch text selection "
1524 "handles are dragged. Non-default behavior is experimental.";
1525const char kTouchSelectionStrategyCharacter[] = "Character";
1526const char kTouchSelectionStrategyDirection[] = "Direction";
1527
1528const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1529const char kTraceUploadUrlDescription[] =
1530 "This is to be used in conjunction with the enable-navigation-tracing "
1531 "flag. Please select the label that best describes the recorded traces. "
1532 "This will choose the destination the traces are uploaded to. If you are "
1533 "not sure, select other. If left empty, no traces will be uploaded.";
1534const char kTraceUploadUrlChoiceOther[] = "Other";
1535const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1536const char kTraceUploadUrlChoiceQa[] = "QA";
1537const char kTraceUploadUrlChoiceTesting[] = "Testing";
1538
Philippe Hamel7fdaa452017-09-29 17:22:491539const char kTranslateRankerEnforcementName[] =
1540 "Enforce TranslateRanker decisions";
1541const char kTranslateRankerEnforcementDescription[] =
1542 "Improved Translate UI triggering logic. TranslateRanker decides whether "
1543 "or not Translate UI should be triggered in a given context.";
1544
Brett Wilsonecb80982017-07-12 20:34:511545const char kTrySupportedChannelLayoutsName[] =
1546 "Causes audio output streams to check if channel layouts other than the "
1547 "default hardware layout are available.";
1548const char kTrySupportedChannelLayoutsDescription[] =
1549 "Causes audio output streams to check if channel layouts other than the "
1550 "default hardware layout are available. Turning this on will allow the OS "
1551 "to do stereo to surround expansion if supported. May expose third party "
1552 "driver bugs, use with caution.";
1553
David Roger6762a092018-01-31 15:55:071554const char kUnifiedConsentName[] = "Unified Consent";
1555const char kUnifiedConsentDescription[] =
1556 "Enables a unified management of user consent for privacy-related "
1557 "features. This includes new confirmation screens and improved settings "
1558 "pages.";
1559
Brett Wilsonecb80982017-07-12 20:34:511560const char kUiPartialSwapName[] = "Partial swap";
1561const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1562
Chris Pickel3a227ae62017-08-24 10:47:261563const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1564const char kUseDdljsonApiDescription[] =
1565 "Enables the new ddljson API to fetch Doodles for the NTP.";
1566
Becca Hughes59c05b42017-11-03 13:11:581567const char kUseModernMediaControlsName[] = "New Media Controls";
1568const char kUseModernMediaControlsDescription[] =
1569 "Enables the new style native media controls.";
1570
Mustaq Ahmedc646c0a2017-10-20 20:08:301571const char kUserActivationV2Name[] = "User Activation v2";
1572const char kUserActivationV2Description[] =
1573 "Enable simple user activation for APIs that are otherwise controlled by "
1574 "user gesture tokens.";
1575
Brett Wilsonecb80982017-07-12 20:34:511576const char kUserConsentForExtensionScriptsName[] =
1577 "User consent for extension scripts";
1578const char kUserConsentForExtensionScriptsDescription[] =
1579 "Require user consent for an extension running a script on the page, if "
1580 "the extension requested permission to run on all urls.";
1581
1582const char kUseSuggestionsEvenIfFewFeatureName[] =
1583 "Disable minimum for server-side tile suggestions on NTP.";
1584const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1585 "Request server-side suggestions even if there are only very few of them "
1586 "and use them for tiles on the New Tab Page.";
1587
1588const char kV8CacheOptionsName[] = "V8 caching mode.";
1589const char kV8CacheOptionsDescription[] =
1590 "Caching mode for the V8 JavaScript engine.";
1591const char kV8CacheOptionsParse[] = "Cache V8 parser data.";
1592const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1593
Hitoshi Yoshida3e5db562017-09-11 02:31:081594const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts.";
1595const char kV8ContextSnapshotDescription[] =
1596 "Sets to use a snapshot to create V8 contexts in frame creation.";
1597
Michael Hablich896d52662017-10-23 15:59:571598const char kV8VmFutureName[] = "Future V8 VM features";
1599const char kV8VmFutureDescription[] =
1600 "This enables upcoming and experimental V8 VM features. "
1601 "This flag does not enable experimental JavaScript features.";
1602
Brett Wilsonecb80982017-07-12 20:34:511603const char kVibrateRequiresUserGestureName[] =
1604 "Requiring user gesture for the Vibration API";
1605const char kVibrateRequiresUserGestureDescription[] =
1606 "Block the Vibration API if no user gesture has been received on the frame "
1607 "or any embedded frame.";
1608
1609const char kVideoFullscreenOrientationLockName[] =
1610 "Lock screen orientation when playing a video fullscreen.";
1611const char kVideoFullscreenOrientationLockDescription[] =
1612 "Lock the screen orientation of the device to match video orientation when "
1613 "a video goes fullscreen. Only on phones.";
1614
1615const char kVideoRotateToFullscreenName[] =
1616 "Rotate-to-fullscreen gesture for videos.";
1617const char kVideoRotateToFullscreenDescription[] =
1618 "Enter/exit fullscreen when device is rotated to/from the orientation of "
1619 "the video. Only on phones.";
1620
1621const char kWalletServiceUseSandboxName[] =
1622 "Use Google Payments sandbox servers";
1623const char kWalletServiceUseSandboxDescription[] =
1624 "For developers: use the sandbox service for Google Payments API calls.";
1625
Brett Wilsonecb80982017-07-12 20:34:511626const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
1627const char kWebglDraftExtensionsDescription[] =
1628 "Enabling this option allows web applications to access the WebGL "
1629 "Extensions that are still in draft status.";
1630
1631const char kWebMidiName[] = "Web MIDI API";
1632const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1633
1634const char kWebPaymentsName[] = "Web Payments";
1635const char kWebPaymentsDescription[] =
1636 "Enable Web Payments API integration, a JavaScript API for merchants.";
1637
Mathieu Perreault51339b82017-07-20 17:06:051638const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
1639const char kWebPaymentsModifiersDescription[] =
1640 "If the website provides modifiers in the payment request, show the custom "
1641 "total for each payment instrument, update the shopping cart when "
1642 "instruments are switched, and send modified payment method specific data "
1643 "to the payment app.";
1644
Brett Wilsonecb80982017-07-12 20:34:511645const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
1646const char kWebrtcEchoCanceller3Description[] =
1647 "Experimental WebRTC echo canceller (AEC3).";
1648
1649const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
1650const char kWebrtcHwDecodingDescription[] =
1651 "Support in WebRTC for decoding video streams using platform hardware.";
1652
1653const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
1654const char kWebrtcHwEncodingDescription[] =
1655 "Support in WebRTC for encoding video streams using platform hardware.";
1656
1657const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
1658const char kWebrtcHwH264EncodingDescription[] =
1659 "Support in WebRTC for encoding h264 video streams using platform "
1660 "hardware.";
1661
1662const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
1663const char kWebrtcHwVP8EncodingDescription[] =
1664 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
1665
1666const char kWebrtcSrtpAesGcmName[] =
1667 "Negotiation with GCM cipher suites for SRTP in WebRTC";
1668const char kWebrtcSrtpAesGcmDescription[] =
1669 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
1670
Joachim Bauch4a41d7512017-08-23 14:24:231671const char kWebrtcSrtpEncryptedHeadersName[] =
1672 "Negotiation with encrypted header extensions for SRTP in WebRTC";
1673const char kWebrtcSrtpEncryptedHeadersDescription[] =
1674 "When enabled, WebRTC will try to negotiate encrypted header extensions "
1675 "for SRTP.";
1676
Brett Wilsonecb80982017-07-12 20:34:511677const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
1678const char kWebrtcStunOriginDescription[] =
1679 "When enabled, Stun messages generated by WebRTC will contain the Origin "
1680 "header.";
1681
1682const char kWebvrName[] = "WebVR";
1683const char kWebvrDescription[] =
David Dorwin5a496c32017-11-17 01:45:051684 "Allow web applications to access experimental "
Brandon Jonese9d9b2b2017-12-11 22:20:111685 "Virtual Reality functionality via the WebVR 1.1 API. This feature will "
1686 "eventually be replaced by the WebXR Device API. Warning: Enabling this "
1687 "will also allow WebVR content on insecure origins to access these "
1688 "powerful APIs, and may pose a security risk.";
Brett Wilsonecb80982017-07-12 20:34:511689
Brandon Jonese9d9b2b2017-12-11 22:20:111690const char kWebXrName[] = "WebXR Device API";
1691const char kWebXrDescription[] =
1692 "Allow web applications to access experimental APIs to interact with "
1693 "Virtual Reality (VR) and Augmented Reality (AR) devices.";
1694
Anna Maria57ecf7592018-01-12 03:10:401695const char kWebXrOrientationSensorDeviceName[] =
1696 "WebXR orientation sensor device";
1697const char kWebXrOrientationSensorDeviceDescription[] =
1698 "When no VR platform device is available, expose a non-presenting device "
1699 "based on the device's orientation sensors, if available.";
1700
Brett Wilsonecb80982017-07-12 20:34:511701const char kWifiCredentialSyncName[] = "WiFi credential sync";
1702const char kWifiCredentialSyncDescription[] =
1703 "Enables synchronizing WiFi network settings across devices. When enabled, "
1704 "the WiFi credential datatype is registered with Chrome Sync, and WiFi "
1705 "credentials are synchronized subject to user preferences. (See also, "
1706 "chrome://settings/syncSetup.)";
1707
1708const char kZeroCopyName[] = "Zero-copy rasterizer";
1709const char kZeroCopyDescription[] =
1710 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:341711
Brett Wilsonff596952017-07-14 01:06:551712// Android ---------------------------------------------------------------------
1713
1714#if defined(OS_ANDROID)
1715
1716const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
1717const char kAiaFetchingDescription[] =
1718 "Enable intermediate certificate fetching when a server does not provide "
1719 "sufficient certificates to build a chain to a trusted root.";
1720
1721const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
1722const char kAccessibilityTabSwitcherDescription[] =
1723 "Enable the accessibility tab switcher for Android.";
1724
Wei-Yin Chen (陳威尹)80683452017-10-02 19:08:251725const char kAllowReaderForAccessibilityName[] = "Reader Mode for Accessibility";
1726const char kAllowReaderForAccessibilityDescription[] =
1727 "Allows Reader Mode on any articles, even if the page is mobile-friendly.";
1728
Brett Wilsonff596952017-07-14 01:06:551729const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
1730const char kAndroidAutofillAccessibilityDescription[] =
1731 "Enable accessibility for autofill popup.";
1732
1733const char kAndroidPaymentAppsName[] = "Android payment apps";
1734const char kAndroidPaymentAppsDescription[] =
1735 "Enable third party Android apps to integrate as payment apps";
1736
Miriam Gershenson8cf1397222018-01-23 22:48:291737const char kAsyncDnsName[] = "Async DNS resolver";
1738const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver.";
1739
Brett Wilsonff596952017-07-14 01:06:551740const char kAutofillAccessoryViewName[] =
1741 "Autofill suggestions as keyboard accessory view";
1742const char kAutofillAccessoryViewDescription[] =
1743 "Shows Autofill suggestions on top of the keyboard rather than in a "
1744 "dropdown.";
1745
1746const char kBackgroundLoaderForDownloadsName[] =
1747 "Enables background downloading of pages.";
1748const char kBackgroundLoaderForDownloadsDescription[] =
1749 "Enables downloading pages in the background in case page is not yet "
1750 "loaded in current tab.";
1751
Matthew Jones6c1f5e22018-02-06 18:19:531752const char kChromeDuplexName[] = "Chrome Duplex";
1753const char kChromeDuplexDescription[] =
1754 "Enables Chrome Duplex, split toolbar Chrome Home, on Android.";
Theresa Wellingtonb9243b22017-12-01 16:23:051755
1756const char kChromeHomeBottomNavLabelsName[] =
1757 "Chrome Home bottom navigation menu item labels.";
1758const char kChromeHomeBottomNavLabelsDescription[] =
1759 "Enables text labels for Chrome Home bottom navigation menu items.";
1760
1761const char kChromeHomeClearUrlOnOpenName[] = "Chrome Home clear url on open";
1762const char kChromeHomeClearUrlOnOpenDescription[] =
1763 "Clear omnibox URL when the bottom sheet is opened.";
1764
Daniel Park825a16f32017-12-08 00:44:261765const char kChromeHomeEnableSurveyName[] = "Enable Chrome Home survey";
1766const char kChromeHomeEnableSurveyDescription[] =
1767 "If enabled, the survey process will allow surveys using sample "
1768 "parameters.";
1769
Theresa Wellingtonb9243b22017-12-01 16:23:051770const char kChromeHomeInactivitySheetExpansionName[] =
1771 "Expansion of Chrome Home bottom sheet on startup";
1772const char kChromeHomeInactivitySheetExpansionDescription[] =
1773 "Expand bottom sheet on startup in Chrome Home after a period of"
1774 " inactivity.";
1775
Matthew Joneseab91aa2017-12-19 16:12:421776const char kChromeHomeMenuItemsName[] =
1777 "Show bookmarks, downloads, and history menu items in Chrome Home";
1778const char kChromeHomeMenuItemsDescription[] =
1779 "Shows bookmarks, downloads, and history menu items in the overflow menu"
1780 " when Chrome Home is enabled. These items will open the bottom sheet to"
1781 " show the desired content.";
1782
Theresa Wellingtonc4cff8a12017-11-28 04:13:181783const char kChromeHomePersistentIphName[] = "Chrome Home Persistent Iph";
1784const char kChromeHomePersistentIphDescription[] =
1785 "Wait to dismiss the Chrome Home IPH until the user inteacts with the "
1786 "toolbar or a timer expires.";
1787
Theresa Wellingtondd71c5c2017-10-02 15:50:381788const char kChromeHomePersonalizedOmniboxSuggestionsName[] =
1789 "Chrome Home Personalized Omnibox Suggestions";
1790const char kChromeHomePersonalizedOmniboxSuggestionsDescription[] =
1791 "Enable personalized omnibox suggestions on focus for Chrome Home.";
1792
Theresa Wellington13977c832017-12-13 16:59:111793const char kChromeHomePullToRefreshIphAtTopName[] =
1794 "Chrome Home Pull-To-Refresh Iph At Top";
1795const char kChromeHomePullToRefreshIphAtTopDescription[] =
1796 "Show the Chrome Home pull-to-refresh help bubble at the top of the screen";
1797
Theresa Wellington306c4cdc2017-12-07 16:43:081798const char kChromeHomeShowGoogleGName[] = "Chrome Home Show Google G";
1799const char kChromeHomeShowGoogleGDescription[] =
1800 "Show the Google G when the url is cleared. The flag to clear the url "
1801 "when the sheet is opened must also be set.";
1802
Brett Wilsonff596952017-07-14 01:06:551803const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1804const char kChromeHomeSwipeLogicDescription[] =
1805 "Various swipe logic options for Chrome Home for sheet expansion.";
1806const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
Matthew Jonesbe384ee42017-10-31 19:57:151807const char kChromeHomeSwipeLogicVelocity[] = "Velocity suppression model";
Brett Wilsonff596952017-07-14 01:06:551808
Matthew Jones5b7f1d62018-01-23 00:37:251809const char kChromeModernDesignName[] = "Chrome Modern Design";
1810const char kChromeModernDesignDescription[] =
Matthew Jones213a0692018-02-05 20:07:451811 "Enable modern design for Chrome. Chrome must be restarted twice for this "
1812 "flag to take effect.";
Matthew Jones5b7f1d62018-01-23 00:37:251813
Megan Jablonskic61eb1b82017-10-02 18:03:061814const char kChromeMemexName[] = "Chrome Memex";
1815const char kChromeMemexDescription[] =
1816 "Enables Chrome Memex homepage on Android. Restricted to opted-in "
1817 "Googlers.";
1818
Sarath Singapati83aef1c2017-11-16 15:54:521819const char kClearOldBrowsingDataName[] = "Clear older browsing data";
1820const char kClearOldBrowsingDataDescription[] =
1821 "Enables clearing of browsing data which is older than a given time "
1822 "period.";
1823
Brett Wilsonff596952017-07-14 01:06:551824const char kContentSuggestionsCategoryOrderName[] =
1825 "Default content suggestions category order (e.g. on NTP)";
1826const char kContentSuggestionsCategoryOrderDescription[] =
1827 "Set default order of content suggestion categories (e.g. on the NTP).";
1828
1829const char kContentSuggestionsCategoryRankerName[] =
1830 "Content suggestions category ranker (e.g. on NTP)";
1831const char kContentSuggestionsCategoryRankerDescription[] =
1832 "Set category ranker to order categories of content suggestions (e.g. on "
1833 "the NTP).";
1834
Vitalii Iarkof52ff802017-09-14 12:34:241835const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
1836const char kContentSuggestionsDebugLogDescription[] =
1837 "Enable content suggestions debug log accessible through "
1838 "snippets-internals.";
1839
Donn Denman8e58ead2017-11-04 01:44:011840const char kContextualSearchMlTapSuppressionName[] =
1841 "Contextual Search ML tap suppression";
1842const char kContextualSearchMlTapSuppressionDescription[] =
1843 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:021844 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
1845 "enabled!";
Brett Wilsonff596952017-07-14 01:06:551846
1847const char kContextualSearchName[] = "Contextual Search";
1848const char kContextualSearchDescription[] =
1849 "Whether or not Contextual Search is enabled.";
1850
Donn Denman59729812018-01-09 01:27:021851const char kContextualSearchRankerQueryName[] =
1852 "Contextual Search Ranker prediction";
1853const char kContextualSearchRankerQueryDescription[] =
1854 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
1855
1856const char kContextualSearchSecondTapName[] =
1857 "Contextual Search second tap triggering";
1858const char kContextualSearchSecondTapDescription[] =
1859 "Enables triggering on a second tap gesture even when Ranker would "
1860 "normally suppress that tap.";
1861
Dmitry Skiba9c3efa72017-07-20 22:01:141862const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
1863const char kDontPrefetchLibrariesDescription[] =
1864 "Don't prefetch libraries after loading.";
1865
Joy Ming5fd29ca62017-10-02 22:51:221866const char kDownloadsForegroundName[] = "Enable downloads foreground";
1867const char kDownloadsForegroundDescription[] =
1868 "Enable downloads as a foreground service for all versions of Android.";
1869
Joy Ming189b0cc2017-12-08 19:42:431870const char kDownloadsLocationChangeName[] = "Enable downloads location change";
1871const char kDownloadsLocationChangeDescription[] =
1872 "Enable changing default downloads storage location on Android.";
1873
Brett Wilsonff596952017-07-14 01:06:551874const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
1875const char kEnableAndroidPayIntegrationV1Description[] =
1876 "Enable integration with Android Pay using the first version of the API";
1877
1878const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
1879const char kEnableAndroidPayIntegrationV2Description[] =
1880 "Enable integration with Android Pay using the second version of the API";
1881
Vitalii Iarkof4ed32d2017-09-26 13:15:531882const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
Brett Wilsonff596952017-07-14 01:06:551883const char kEnableAndroidSpellcheckerDescription[] =
1884 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:551885
Vitalii Iarkof4ed32d2017-09-26 13:15:531886const char kEnableContentSuggestionsNewFaviconServerName[] =
1887 "Get favicons for content suggestions from a new server.";
1888const char kEnableContentSuggestionsNewFaviconServerDescription[] =
1889 "If enabled, the content suggestions (on the NTP) will get favicons from a "
1890 "new favicon server.";
Brett Wilsonff596952017-07-14 01:06:551891
1892const char kEnableContentSuggestionsSettingsName[] =
1893 "Show content suggestions settings.";
1894const char kEnableContentSuggestionsSettingsDescription[] =
1895 "If enabled, the content suggestions settings will be available from the "
1896 "main settings menu.";
1897
Vitalii Iarkof4ed32d2017-09-26 13:15:531898const char kEnableContentSuggestionsThumbnailDominantColorName[] =
1899 "Use content suggestions thumbnail dominant color.";
1900const char kEnableContentSuggestionsThumbnailDominantColorDescription[] =
1901 "Use content suggestions thumbnail dominant color as a placeholder before "
1902 "the real thumbnail is fetched (requires Chrome Home).";
1903
Brett Wilsonff596952017-07-14 01:06:551904const char kEnableCustomContextMenuName[] = "Enable custom context menu";
1905const char kEnableCustomContextMenuDescription[] =
1906 "Enables a new context menu when a link, image, or video is pressed within "
1907 "Chrome.";
1908
1909const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
1910const char kEnableCustomFeedbackUiDescription[] =
1911 "Enables a custom feedback UI when submitting feedback through Google "
1912 "Feedback. Works with Google Play Services v10.2+";
1913
1914const char kEnableDataReductionProxyMainMenuName[] =
Theresa Wellington141e4af2017-10-23 20:28:471915 "Enable Data Saver main menu item";
Brett Wilsonff596952017-07-14 01:06:551916const char kEnableDataReductionProxyMainMenuDescription[] =
Theresa Wellington141e4af2017-10-23 20:28:471917 "Enables the Data Saver menu item in the main menu";
Brett Wilsonff596952017-07-14 01:06:551918
Brett Wilsonff596952017-07-14 01:06:551919const char kEnableOmniboxClipboardProviderName[] =
1920 "Omnibox clipboard URL suggestions";
1921const char kEnableOmniboxClipboardProviderDescription[] =
1922 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
1923 "focus in the omnibox.";
1924
1925const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
1926 "Use expanded autofill credit card popup layout.";
1927const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
1928 "If enabled, displays autofill credit card popup using expanded layout.";
1929
Becky Zhoua7f11d62018-02-01 16:02:531930const char kEnableNtpArticleSuggestionsExpandableHeaderName[] =
1931 "Show article suggestions expandable header on New Tab Page";
1932const char kEnableNtpArticleSuggestionsExpandableHeaderDescription[] =
1933 "If enabled, the article suggestions content on New Tab Page can be "
1934 "toggled shown or hidden by clicking the expandable header.";
1935
Brett Wilsonff596952017-07-14 01:06:551936const char kEnableNtpAssetDownloadSuggestionsName[] =
1937 "Show asset downloads on the New Tab page";
1938const char kEnableNtpAssetDownloadSuggestionsDescription[] =
1939 "If enabled, the list of content suggestions on the New Tab page will "
1940 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
1941 "later use.";
1942
1943const char kEnableNtpBookmarkSuggestionsName[] =
1944 "Show recently visited bookmarks on the New Tab page";
1945const char kEnableNtpBookmarkSuggestionsDescription[] =
1946 "If enabled, the list of content suggestions on the New Tab page will "
1947 "contain recently visited bookmarks.";
1948
1949const char kEnableNtpForeignSessionsSuggestionsName[] =
1950 "Show recent foreign tabs on the New Tab page";
1951const char kEnableNtpForeignSessionsSuggestionsDescription[] =
1952 "If enabled, the list of content suggestions on the New Tab page will "
1953 "contain recent foreign tabs.";
1954
Brett Wilsonff596952017-07-14 01:06:551955const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
1956 "Show offline page downloads on the New Tab page";
1957const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
1958 "If enabled, the list of content suggestions on the New Tab page will "
1959 "contain pages that the user downloaded for later use.";
1960
1961const char kEnableNtpRemoteSuggestionsName[] =
1962 "Show server-side suggestions on the New Tab page";
1963const char kEnableNtpRemoteSuggestionsDescription[] =
1964 "If enabled, the list of content suggestions on the New Tab page will "
1965 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
1966 "allows to override the source used to retrieve these server-side "
1967 "suggestions.";
1968
1969const char kEnableNtpSnippetsVisibilityName[] =
1970 "Make New Tab Page Snippets more visible.";
1971const char kEnableNtpSnippetsVisibilityDescription[] =
1972 "If enabled, the NTP snippets will become more discoverable with a larger "
1973 "portion of the first card above the fold.";
1974
1975const char kEnableNtpSuggestionsNotificationsName[] =
1976 "Notify about new content suggestions available at the New Tab page";
1977const char kEnableNtpSuggestionsNotificationsDescription[] =
1978 "If enabled, notifications will inform about new content suggestions on "
1979 "the New Tab page.";
1980
1981const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
1982const char kEnablePhysicalWebDescription[] =
1983 "Enable scanning for URLs from Physical Web objects.";
1984
1985const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1986const char kEnableOfflinePreviewsDescription[] =
1987 "Enable showing offline page previews on slow networks.";
1988
1989const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
1990const char kEnableOskOverscrollDescription[] =
1991 "Enable OSK overscroll support. With this flag on, the OSK will only "
1992 "resize the visual viewport.";
1993
1994const char kEnableSpecialLocaleName[] =
1995 "Enable custom logic for special locales.";
1996const char kEnableSpecialLocaleDescription[] =
1997 "Enable custom logic for special locales. In this mode, Chrome might "
1998 "behave differently in some locales.";
1999
Brett Wilsonff596952017-07-14 01:06:552000const char kEnableWebNfcName[] = "WebNFC";
2001const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
2002
gogeraldf3cbb422017-07-26 14:37:122003const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
2004 "Enable Web Payments method section order V2.";
2005const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
2006 "Enable this option to display payment method section above address "
2007 "section instead of below it.";
2008
Brett Wilsonff596952017-07-14 01:06:552009const char kEnableWebPaymentsSingleAppUiSkipName[] =
2010 "Enable Web Payments single app UI skip";
2011const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
2012 "Enable Web Payments to skip showing its UI if the developer specifies a "
2013 "single app.";
2014
Raymes Khoury582b43132017-12-12 23:54:302015const char kGrantNotificationsToDSEName[] =
2016 "Grant notifications to the Default Search Engine";
2017const char kGrantNotificationsToDSENameDescription[] =
2018 "Automatically grant the notifications permission to the Default Search "
2019 "Engine";
2020
Brett Wilsonff596952017-07-14 01:06:552021const char kKeepPrefetchedContentSuggestionsName[] =
2022 "Keep prefetched content suggestions";
2023const char kKeepPrefetchedContentSuggestionsDescription[] =
2024 "If enabled, some of prefetched content suggestions are not replaced by "
2025 "the new fetched suggestions.";
2026
Leo Zhang051b75482017-12-20 03:28:302027const char kLanguagesPreferenceName[] = "Language Settings";
2028const char kLanguagesPreferenceDescription[] =
2029 "Enable this option for Language Settings feature on Android.";
2030
Brett Wilsonff596952017-07-14 01:06:552031const char kLsdPermissionPromptName[] =
2032 "Location Settings Dialog Permission Prompt";
2033const char kLsdPermissionPromptDescription[] =
2034 "Whether to use the Google Play Services Location Settings Dialog "
2035 "permission dialog.";
2036
Brett Wilsonff596952017-07-14 01:06:552037const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
2038const char kMediaScreenCaptureDescription[] =
2039 "Enable this option for experimental ScreenCapture feature on Android.";
2040
2041const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
2042const char kModalPermissionPromptsDescription[] =
2043 "Whether to use permission dialogs in place of permission infobars.";
2044
Brett Wilsonff596952017-07-14 01:06:552045const char kNewPhotoPickerName[] = "Enable new Photopicker";
2046const char kNewPhotoPickerDescription[] =
2047 "Activates the new picker for selecting photos.";
2048
2049const char kNoCreditCardAbort[] = "No Credit Card Abort";
2050const char kNoCreditCardAbortDescription[] =
2051 "Whether or not the No Credit Card Abort is enabled.";
2052
2053const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
2054const char kNtpCondensedLayoutDescription[] =
2055 "Show a condensed layout on the New Tab Page.";
2056
2057const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
2058const char kNtpCondensedTileLayoutDescription[] =
2059 "Show a condensed tile layout on the New Tab Page.";
2060
Michael van Ouwerkerkcdbbe332017-11-24 15:07:062061const char kNtpModernLayoutName[] = "Modern NTP layout";
2062const char kNtpModernLayoutDescription[] =
2063 "Show a modern layout on the New Tab Page.";
2064
Nicolas Dossou-gbete56f37dc2017-08-10 16:14:042065const char kSiteExplorationUiName[] = "Site Exploration UI";
2066const char kSiteExplorationUiDescription[] =
2067 "Show site suggestions in the Exploration UI";
2068
Brett Wilsonff596952017-07-14 01:06:552069const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
2070const char kNtpGoogleGInOmniboxDescription[] =
2071 "Show a Google G in the omnibox on the New Tab Page.";
2072
Theresad246e1f2018-02-02 01:05:182073const char kNtpPopularSitesName[] = "Show popular sites on the New Tab page";
2074const char kNtpPopularSitesDescription[] =
2075 "Pre-populate the New Tab page with popular sites.";
2076
Brett Wilsonff596952017-07-14 01:06:552077const char kOfflineBookmarksName[] = "Enable offline bookmarks";
2078const char kOfflineBookmarksDescription[] =
2079 "Enable saving bookmarked pages for offline viewing.";
2080
Brett Wilsonff596952017-07-14 01:06:552081const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2082const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2083
2084const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
2085const char kOfflinePagesCtV2Description[] =
2086 "V2 features include attributing pages to the app that initiated the "
2087 "custom tabs, and being able to query for pages by page attribution.";
2088
Carlos Knippschild09272ecd2017-12-09 03:29:362089const char kOfflinePagesLimitlessPrefetchingName[] =
2090 "Removes resource usage limits for the prefetching of offline pages.";
2091const char kOfflinePagesLimitlessPrefetchingDescription[] =
2092 "Allows the prefetching of suggested offline pages to ignore resource "
2093 "usage limits. This allows it to completely ignore data usage limitations "
2094 "and allows downloads to happen with any kind of connection.";
2095
Brett Wilsonff596952017-07-14 01:06:552096const char kOfflinePagesLoadSignalCollectingName[] =
2097 "Enables collecting load timing data for offline page snapshots.";
2098const char kOfflinePagesLoadSignalCollectingDescription[] =
2099 "Enables loading completeness data collection while writing an offline "
2100 "page. This data is collected in the snapshotted offline page to allow "
2101 "data analysis to improve deciding when to make the offline snapshot.";
2102
Candice Sy229768e02017-12-21 00:19:222103const char kOfflinePagesDescriptivePendingStatusName[] =
2104 "Enables descriptive pending download status text.";
2105const char kOfflinePagesDescriptivePendingStatusDescription[] =
2106 "Enables pending download status text in notifications and Downloads Home "
2107 "to state the reason the request is pending.";
2108
Brett Wilsonff596952017-07-14 01:06:552109const char kOfflinePagesPrefetchingName[] =
2110 "Enables suggested offline pages to be prefetched.";
2111const char kOfflinePagesPrefetchingDescription[] =
2112 "Enables suggested offline pages to be prefetched, so useful content is "
2113 "available while offline.";
2114
Cathy Li3d5379e2017-09-07 00:11:092115const char kOfflinePagesPrefetchingUIName[] =
2116 "Enables prefetched offline pages to be shown in UI.";
2117const char kOfflinePagesPrefetchingUIDescription[] =
2118 "Enables prefetched offline pages to raise notifications and be shown in "
2119 "download home UI.";
2120
Pete Williamson7845dff2017-09-20 11:06:192121const char kOfflinePagesResourceBasedSnapshotName[] =
2122 "Enables offline page snapshots to be based on percentage of page loaded.";
2123const char kOfflinePagesResourceBasedSnapshotDescription[] =
2124 "Enables offline page snapshots to use a resource percentage based "
2125 "approach for determining when the page is loaded as opposed to a time "
2126 "based approach";
2127
Collin Baker17f92a52017-07-19 21:41:252128const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
2129const char kOfflinePagesRenovationsDescription[] =
2130 "Enables offline page renovations which correct issues with dynamic "
2131 "content that occur when offlining pages that use JavaScript.";
2132
Brett Wilsonff596952017-07-14 01:06:552133const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2134const char kOfflinePagesSharingDescription[] =
2135 "Enables the saved offline pages to be shared via other applications.";
2136
2137const char kOfflinePagesSvelteConcurrentLoadingName[] =
2138 "Enables concurrent background loading on svelte.";
2139const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2140 "Enables concurrent background loading (or downloading) of pages on "
2141 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2142 "happen when the svelte device is idle.";
2143
2144const char kOffliningRecentPagesName[] =
2145 "Enable offlining of recently visited pages";
2146const char kOffliningRecentPagesDescription[] =
2147 "Enable storing recently visited pages locally for offline use. Requires "
2148 "Offline Pages to be enabled.";
2149
Lei Zhang2eca9082017-10-17 20:42:502150const char kPayWithGoogleV1Name[] = "Pay with Google v1";
2151const char kPayWithGoogleV1Description[] =
Brett Wilsonff596952017-07-14 01:06:552152 "Enable Pay with Google integration into Web Payments with API version "
2153 "'1'.";
2154
Matthew Jonesa88b95852017-11-08 23:13:502155const char kProgressBarThrottleName[] = "Android progress update throttling.";
2156const char kProgressBarThrottleDescription[] =
2157 "Limit the maximum progress update to make progress appear smoother.";
2158
Brett Wilsonff596952017-07-14 01:06:552159const char kProgressBarCompletionName[] =
2160 "Android phone page load progress bar completion time.";
2161const char kProgressBarCompletionDescription[] =
2162 "Configures Android phone page loading progress bar completion time.";
2163const char kProgressBarCompletionLoadEvent[] =
2164 R"*(Top loading frame's onload event ("everything" is done in the )*"
2165 R"*(page, historical behavior).)*";
2166const char kProgressBarCompletionResourcesBeforeDcl[] =
2167 "Main frame's domContentLoaded and all resources loads started before "
2168 "domContentLoaded (iframes ignored).";
2169const char kProgressBarCompletionDomContentLoaded[] =
2170 "Main frame's domContentLoaded (iframes ignored).";
2171const char kProgressBarCompletionResourcesBeforeDclAndSameOriginIframes[] =
2172 "domContentLoaded and all resources loads started before domContentLoaded "
2173 "(main frame and same origin iframes).";
2174
2175const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
2176const char kPullToRefreshEffectDescription[] =
2177 "Page reloads triggered by vertically overscrolling content.";
2178
Piotr Swigon7c296ef2017-08-29 04:32:002179const char kPwaImprovedSplashScreenName[] =
2180 "Improved Splash Screen for standalone PWAs";
2181const char kPwaImprovedSplashScreenDescription[] =
2182 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
2183 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:492184const char kPwaPersistentNotificationName[] =
2185 "Persistent notification in standalone PWA";
2186const char kPwaPersistentNotificationDescription[] =
2187 "Enables a persistent Android notification for standalone PWAs";
2188
Brett Wilsonff596952017-07-14 01:06:552189const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
2190const char kReaderModeHeuristicsDescription[] =
2191 "Determines what pages the Reader Mode infobar is shown on.";
2192const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
2193const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
2194const char kReaderModeHeuristicsAllArticles[] = "All articles";
2195const char kReaderModeHeuristicsAlwaysOff[] = "Never";
2196const char kReaderModeHeuristicsAlwaysOn[] = "Always";
2197
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:182198const char kReaderModeInCCTName[] = "Reader Mode in CCT";
2199const char kReaderModeInCCTDescription[] =
2200 "Open Reader Mode in Chrome Custom Tabs.";
2201
Brett Wilsonff596952017-07-14 01:06:552202const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2203const char kSetMarketUrlForTestingDescription[] =
2204 "When enabled, sets the market URL for use in testing the update menu "
2205 "item.";
2206
2207const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
2208const char kSpannableInlineAutocompleteDescription[] =
2209 "A new type of inline autocomplete for the omnibox that works with "
2210 "keyboards that compose text.";
2211
Brett Wilsonff596952017-07-14 01:06:552212const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2213const char kUpdateMenuBadgeDescription[] =
2214 "When enabled, an update badge will be shown on the app menu button.";
2215
2216const char kUpdateMenuItemCustomSummaryDescription[] =
2217 "When this flag and the force show update menu item flag are enabled, a "
2218 "custom summary string will be displayed below the update menu item.";
2219const char kUpdateMenuItemCustomSummaryName[] =
2220 "Update menu item custom summary";
2221
2222const char kUpdateMenuItemName[] = "Force show update menu item";
2223const char kUpdateMenuItemDescription[] =
2224 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
2225 R"*(menu.)*";
2226
Amirhossein Simjourd78bbcf2018-02-02 16:23:392227const char kVrBrowsingNativeAndroidUiName[] = "VR browsing native android ui";
2228const char kVrBrowsingNativeAndroidUiDescription[] =
2229 "Enable Android UI elements in VR.";
2230
Marc Treib93af46a2017-08-23 13:30:002231const char kThirdPartyDoodlesName[] =
2232 "Enable Doodles for third-party search engines";
2233const char kThirdPartyDoodlesDescription[] =
2234 "Enables fetching and displaying Doodles on the NTP for third-party search "
2235 "engines.";
2236
Klaus Weidneraaf697f2018-01-18 20:07:362237const char kWebXrRenderPathName[] = "WebXR presentation render path";
2238const char kWebXrRenderPathDescription[] =
2239 "Render path to use for WebXR presentation (including WebVR)";
2240const char kWebXrRenderPathChoiceClientWaitDescription[] =
2241 "ClientWait (Baseline)";
2242const char kWebXrRenderPathChoiceGpuFenceDescription[] =
2243 "GpuFence (Android N+)";
2244
Brett Wilson7b44537e2017-08-18 01:38:282245// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552246
Brett Wilson7b44537e2017-08-18 01:38:282247#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482248
Brett Wilson7b44537e2017-08-18 01:38:282249const char kAccountConsistencyName[] =
2250 "Identity consistency between browser and cookie jar";
2251const char kAccountConsistencyDescription[] =
2252 "When enabled, the browser manages signing in and out of Google accounts.";
2253const char kAccountConsistencyChoiceMirror[] = "Mirror";
2254const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342255
Chris Pickel3a227ae62017-08-24 10:47:262256const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2257const char kDoodlesOnLocalNtpDescription[] =
2258 "Show doodles on the local New Tab page if Google is the default search "
2259 "engine.";
2260
mlamouriff56c092017-05-11 15:31:392261const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392262const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342263 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392264const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392265const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392266const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342267 "Enabled (Flash lowers volume when interrupted by other sound, "
2268 "experimental)";
2269
Brett Wilson7b44537e2017-08-18 01:38:282270const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2271const char kEnableNewAppMenuIconDescription[] =
2272 "Use the new app menu icon with update notification animations.";
vabr0215a8e2017-03-28 12:47:342273
2274const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342275const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282276 "Enable receiving entity suggestions - disambiguation descriptions - for "
2277 "Omnibox suggestions.";
2278
Dave Schuyler598a4a42018-01-04 02:15:102279const char kOmniboxRichEntitySuggestionsName[] =
2280 "Omnibox rich entity suggestions";
2281const char kOmniboxRichEntitySuggestionsDescription[] =
2282 "Display entity suggestions using images and an enhanced layout; showing "
2283 "more context and descriptive text about the entity";
2284
Kevin Bailey898669972017-11-06 15:34:492285const char kOmniboxTabSwitchSuggestionsName[] =
2286 "Omnibox tab switch suggestions";
2287const char kOmniboxTabSwitchSuggestionsDescription[] =
2288 "Enable suggestions for switching to open tabs within the Omnibox.";
2289
krbcc621412017-06-01 19:40:282290const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2291const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192292 "Enable receiving tail suggestions, a type of search suggestion based on "
2293 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342294
Brett Wilson7b44537e2017-08-18 01:38:282295const char kOneGoogleBarOnLocalNtpName[] =
2296 "Enable the OneGoogleBar on the local NTP";
2297const char kOneGoogleBarOnLocalNtpDescription[] =
2298 "Show a OneGoogleBar on the local New Tab page if Google is the default "
2299 "search engine.";
2300
Brett Wilson7b44537e2017-08-18 01:38:282301const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2302const char kUseGoogleLocalNtpDescription[] =
2303 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322304
Brett Wilson7b44537e2017-08-18 01:38:282305const char kVoiceSearchOnLocalNtpName[] =
2306 "Enable Voice Search on the local NTP";
2307const char kVoiceSearchOnLocalNtpDescription[] =
2308 "Show a microphone for voice search on the local New Tab page "
2309 "if Google is the default search engine.";
2310
Kim Paulhamus33f87b12018-01-18 22:00:422311const char kEnableWebAuthenticationAPIName[] = "Web Authentication API.";
2312const char kEnableWebAuthenticationAPIDescription[] =
2313 "Enable Web Authentication API support.";
2314
Brett Wilson7b44537e2017-08-18 01:38:282315#if defined(GOOGLE_CHROME_BUILD)
2316
2317const char kGoogleBrandedContextMenuName[] =
2318 "Google branding in the context menu";
2319const char kGoogleBrandedContextMenuDescription[] =
2320 "Shows a Google icon next to context menu items powered by Google "
2321 "services.";
2322
2323#endif // !defined(GOOGLE_CHROME_BUILD)
2324
2325#endif // !defined(OS_ANDROID)
2326
2327// Windows ---------------------------------------------------------------------
2328
2329#if defined(OS_WIN)
2330
2331const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2332const char kCloudPrintXpsDescription[] =
2333 "XPS enables advanced options for classic printers connected to the Cloud "
2334 "Print with Chrome. Printers must be re-connected after changing this "
2335 "flag.";
2336
Dave Tapuskadd43469d2017-08-22 22:15:532337const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
2338const char kDirectManipulationStylusDescription[] =
2339 "If enabled, Chrome will scroll web pages on stylus drag.";
2340
Brett Wilson7b44537e2017-08-18 01:38:282341const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2342const char kDisablePostscriptPrintingDescription[] =
2343 "Disables PostScript generation when printing to PostScript capable "
2344 "printers, and uses EMF generation in its place.";
2345
2346const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2347const char kEnableAppcontainerDescription[] =
2348 "Enables the use of an AppContainer on sandboxed processes to improve "
2349 "security.";
2350
2351const char kEnableD3DVsync[] = "D3D v-sync";
2352const char kEnableD3DVsyncDescription[] =
2353 "Produces v-sync signal by having D3D wait for vertical blanking interval "
2354 "to occur.";
2355
2356const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2357const char kEnableDesktopIosPromotionsDescription[] =
2358 "Enable Desktop to iOS promotions, and allow users to see them if they are "
2359 "eligible.";
2360
2361const char kGdiTextPrinting[] = "GDI Text Printing";
2362const char kGdiTextPrintingDescription[] =
2363 "Use GDI to print text as simply text";
2364
Brett Wilson7b44537e2017-08-18 01:38:282365const char kTraceExportEventsToEtwName[] =
2366 "Enable exporting of tracing events to ETW.";
2367const char kTraceExportEventsToEtwDesription[] =
2368 "If enabled, trace events will be exported to the Event Tracing for "
2369 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2370 "Xperf.";
2371
2372const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2373const char kUseWinrtMidiApiDescription[] =
2374 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2375 "later).";
2376
2377const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2378const char kWindows10CustomTitlebarDescription[] =
2379 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2380 "deferring to Windows.";
2381
Wez6656c572017-08-29 22:29:582382#if DCHECK_IS_ON() && defined(SYZYASAN)
Lei Zhang2eca9082017-10-17 20:42:502383const char kSyzyAsanDcheckIsFatalName[] = "DCHECKs are fatal";
2384const char kSyzyAsanDcheckIsFatalDescription[] =
Wez6656c572017-08-29 22:29:582385 "By default Chrome will evaluate DCHECKs in SyzyASAN builds, but only log "
2386 "failed DCHECKs. If enabled, DCHECKs will crash the calling process.";
2387#endif // DCHECK_IS_ON() && defined(SYZYASAN)
2388
Brett Wilson7b44537e2017-08-18 01:38:282389#endif // defined(OS_WIN)
2390
2391// Mac -------------------------------------------------------------------------
2392
2393#if defined(OS_MACOSX)
2394
2395const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
2396const char kAppInfoDialogDescription[] =
2397 "Makes the Toolkit-Views based App Info dialog accessible from "
2398 "chrome://apps or chrome://extensions in place of the native extension "
2399 "permissions dialog, or the details link (which is a link to the Web "
2400 "Store).";
2401
2402const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
2403const char kAppWindowCyclingDescription[] =
2404 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
2405 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
2406 "browser window, and browser windows will not be cycled when a Chrome App "
2407 "is active.";
2408
Lei Zhang2eca9082017-10-17 20:42:502409const char kCreditCardAutofillTouchBarName[] = "Credit Card Autofill Touch Bar";
2410const char kCreditCardAutofillTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282411 "Shows Credit Card Autofill Suggestions on the Touch Bar.";
2412
2413const char kFullscreenToolbarRevealName[] =
2414 "Enables the toolbar in fullscreen to reveal itself.";
2415const char kFullscreenToolbarRevealDescription[] =
2416 "Reveal the toolbar in fullscreen for a short period when the tab strip "
2417 "has changed.";
2418
2419const char kContentFullscreenName[] = "Improved Content Fullscreen";
2420const char kContentFullscreenDescription[] =
2421 "Fullscreen content window detaches from main browser window and goes to "
2422 "a new space without moving or changing the original browser window.";
2423
Lei Zhang2eca9082017-10-17 20:42:502424const char kDialogTouchBarName[] = "Dialog Touch Bar";
2425const char kDialogTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282426 "Shows Dialog buttons on the Touch Bar.";
2427
2428const char kHostedAppsInWindowsName[] =
2429 "Allow hosted apps to be opened in windows";
2430const char kHostedAppsInWindowsDescription[] =
2431 "Allows hosted apps to be opened in windows instead of being limited to "
2432 "tabs.";
2433
Lei Zhang2eca9082017-10-17 20:42:502434const char kMacRTLName[] = "Enable RTL";
2435const char kMacRTLDescription[] = "Mirrors the UI for RTL language users";
Brett Wilson7b44537e2017-08-18 01:38:282436
Lei Zhang2eca9082017-10-17 20:42:502437const char kMacSystemShareMenuName[] = "Enable System Share Menu";
2438const char kMacSystemShareMenuDescription[] =
Leonard Grey2bdd08f2017-10-03 18:40:522439 "Enables sharing via macOS share extensions.";
2440
Lei Zhang2eca9082017-10-17 20:42:502441const char kMacTouchBarName[] = "Hardware Touch Bar";
2442const char kMacTouchBarDescription[] = "Control the use of the Touch Bar.";
Brett Wilson7b44537e2017-08-18 01:38:282443
2444const char kMacV2SandboxName[] = "Mac V2 Sandbox";
2445const char kMacV2SandboxDescription[] =
2446 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
2447 "entire life cycle.";
2448
2449const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2450const char kMacViewsNativeAppWindowsDescription[] =
2451 "Controls whether to use Toolkit-Views based Chrome App windows.";
2452
Jérôme Lebelff683d42017-11-10 10:24:022453const char kMacViewsProfileChooserName[] =
2454 "Profile chooser menu with toolkit-views on Mac";
2455const char kMacViewsProfileChooserDescription[] =
2456 "Enables profile chooser menu based on toolkit-views, on Mac";
2457
Brett Wilson7b44537e2017-08-18 01:38:282458const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2459const char kMacViewsTaskManagerDescription[] =
2460 "Controls whether to use the Toolkit-Views based Task Manager.";
2461
2462const char kTabDetachingInFullscreenName[] =
2463 "Allow tab detaching in fullscreen";
2464const char kTabDetachingInFullscreenDescription[] =
2465 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
2466
2467const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
2468const char kTabStripKeyboardFocusDescription[] =
2469 "Enable keyboard focus for the tabs in the tab strip.";
2470
2471const char kTranslateNewUxName[] = "New Translate UX";
2472const char kTranslateNewUxDescription[] =
2473 "Enable the new Translate bubble UX is offered instead of the infobar.";
2474
Brett Wilson7b44537e2017-08-18 01:38:282475#endif
2476
2477// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342478
2479#if defined(OS_CHROMEOS)
2480
Brett Wilson7b44537e2017-08-18 01:38:282481const char kAcceleratedMjpegDecodeName[] =
2482 "Hardware-accelerated mjpeg decode for captured frame";
2483const char kAcceleratedMjpegDecodeDescription[] =
2484 "Enable hardware-accelerated mjpeg decode for captured frame where "
2485 "available.";
vabr0215a8e2017-03-28 12:47:342486
Brett Wilson7b44537e2017-08-18 01:38:282487const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2488const char kAllowTouchpadThreeFingerClickDescription[] =
2489 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342490
Brett Wilson7b44537e2017-08-18 01:38:282491const char kArcBootCompleted[] = "Load Android apps automatically";
2492const char kArcBootCompletedDescription[] =
2493 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:342494
Lev Rumyantsev7a8544312017-08-18 19:26:512495const char kArcNativeBridgeExperimentName[] =
2496 "Enable native bridge experiment for ARC";
2497const char kArcNativeBridgeExperimentDescription[] =
2498 "Enables experimental native bridge feature.";
2499
lgchengecd1c1a62018-01-09 02:59:462500const char kArcUsbHostName[] = "Enable ARC USB host integration";
2501const char kArcUsbHostDescription[] =
2502 "Allow Android apps to use USB host feature on ChromeOS devices.";
2503
Kevin Cernekeeb7f96a52017-10-25 17:40:182504const char kArcVpnName[] = "Enable ARC VPN integration";
2505const char kArcVpnDescription[] =
2506 "Allow Android VPN clients to tunnel Chrome traffic.";
2507
Brett Wilson7b44537e2017-08-18 01:38:282508const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
2509const char kAshEnableUnifiedDesktopDescription[] =
2510 "Enable unified desktop mode which allows a window to span multiple "
2511 "displays.";
vabr0215a8e2017-03-28 12:47:342512
Yuki Awanoc6f28222018-02-01 10:49:082513const char kAshNewTouchSupportForScreenMagnificationName[] =
2514 "New touch support for screen magnification";
2515const char kAshNewTouchSupportForScreenMagnificationDescription[] =
2516 "Enable new implementation of touch support for screen magnification";
2517
Sean Kau5e956192017-10-06 22:25:172518const char kBulkPrintersName[] = "Bulk Printers Policy";
2519const char kBulkPrintersDescription[] = "Enables the new bulk printers policy";
2520
Brett Wilson7b44537e2017-08-18 01:38:282521const char kCaptivePortalBypassProxyName[] =
2522 "Bypass proxy for Captive Portal Authorization";
2523const char kCaptivePortalBypassProxyDescription[] =
2524 "If proxy is configured, it usually prevents from authorization on "
2525 "different captive portals. This enables opening captive portal "
2526 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:342527
Brett Wilson7b44537e2017-08-18 01:38:282528const char kCrOSComponentName[] = "Chrome OS Component";
2529const char kCrOSComponentDescription[] =
Xiaochu Liu4c1b75d2017-12-18 23:52:082530 "Disable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:342531
Xiaochu Liu51d03fd2017-09-08 23:51:022532const char kCrOSContainerName[] = "Chrome OS Container";
2533const char kCrOSContainerDescription[] =
2534 "Enable the use of Chrome OS Container utility.";
2535
Brett Wilson7b44537e2017-08-18 01:38:282536const char kCrosRegionsModeName[] = "Cros-regions load mode";
2537const char kCrosRegionsModeDescription[] =
2538 "This flag controls cros-regions load mode";
2539const char kCrosRegionsModeDefault[] = "Default";
2540const char kCrosRegionsModeOverride[] = "Override VPD values.";
2541const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:342542
Jacob Dufault2becbc482017-08-25 00:36:352543const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
2544const char kDisableLockScreenAppsDescription[] =
2545 "Disable new-note action handler apps on the lock screen. The user will "
2546 "not be able to launch the preferred note-taking action from the lock "
2547 "screen, provided that the app supports lock screen note taking.";
2548
Sammie Quonef6b4882017-09-14 16:50:052549const char kDisableTabletAutohideTitlebarsName[] =
2550 "Disable autohide titlebars in tablet mode";
2551const char kDisableTabletAutohideTitlebarsDescription[] =
2552 "Disable tablet mode autohide titlebars functionality. The user will be "
2553 "able to see the titlebar in tablet mode.";
2554
xdaid45327d2018-01-29 18:57:072555const char kDisableTabletSplitViewName[] = "Disable split view in Tablet mode";
2556const char kDisableTabletSplitViewDescription[] =
2557 "Disable split view for Chrome OS tablet mode.";
2558
Brett Wilson7b44537e2017-08-18 01:38:282559const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
2560const char kEnablePerUserTimezoneDescription[] =
2561 "Chrome OS system timezone preference is stored and handled for each user "
2562 "individually.";
vabr0215a8e2017-03-28 12:47:342563
Brett Wilson7b44537e2017-08-18 01:38:282564const char kDisableSystemTimezoneAutomaticDetectionName[] =
2565 "SystemTimezoneAutomaticDetection policy support";
2566const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
2567 "Disable system timezone automatic detection device policy.";
vabr0215a8e2017-03-28 12:47:342568
Lei Zhang2eca9082017-10-17 20:42:502569const char kEnableBackgroundBlurName[] = "Enable background blur.";
2570const char kEnableBackgroundBlurDescription[] =
Wenzhao Zang50fb0b22017-11-07 01:38:422571 "Enables background blur for the Peeking Launcher and Tab Switcher.";
Alex Newcomer43cb7f12017-07-28 17:37:392572
Brett Wilson7b44537e2017-08-18 01:38:282573const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2574const char kEnableAndroidWallpapersAppDescription[] =
2575 "Enables the Android Wallpapers App as the default Wallpaper App on Chrome "
2576 "OS.";
vabr0215a8e2017-03-28 12:47:342577
Brett Wilson7b44537e2017-08-18 01:38:282578const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2579const char kEnableChromevoxArcSupportDescription[] =
2580 "Enable ChromeVox screen reader features in ARC";
vabr0215a8e2017-03-28 12:47:342581
F#m75862c92018-01-25 19:10:472582const char kEnableDisplayZoomSettingName[] = "Enable display zoom settings";
2583const char kEnableDisplayZoomSettingDescription[] =
2584 "Allows the user to modify the display size or zoom via the chrome display "
2585 "settings page.";
2586
Brett Wilson7b44537e2017-08-18 01:38:282587const char kEnableEhvInputName[] =
2588 "Emoji, handwriting and voice input on opt-in IME menu";
2589const char kEnableEhvInputDescription[] =
2590 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:342591
Brett Wilson7b44537e2017-08-18 01:38:282592const char kEnableEncryptionMigrationName[] =
2593 "Enable encryption migration of user data";
2594const char kEnableEncryptionMigrationDescription[] =
2595 "If enabled and the device supports ARC, the user will be asked to update "
2596 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:342597
Blake O'Hare9e9317b22017-10-24 02:49:352598const char kEnableFloatingVirtualKeyboardName[] =
2599 "Enable floating virtual keyboard";
2600const char kEnableFloatingVirtualKeyboardDescription[] =
2601 "If enabled, the keyboard will use floating behavior by default.";
2602
Brett Wilson7b44537e2017-08-18 01:38:282603const char kEnableImeMenuName[] = "Enable opt-in IME menu";
2604const char kEnableImeMenuDescription[] =
2605 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:342606
Klemen Kozjek05fc4512017-10-18 12:51:102607const char kEnableZipArchiverPackerName[] = "ZIP archiver - Packer";
2608const char kEnableZipArchiverPackerDescription[] =
2609 "Enable the ability to archive files on Drive in the Files app";
2610
Tatsuhisa Yamaguchi5c07d2532017-11-10 03:52:412611const char kZipArchiverUnpackerName[] = "ZIP archiver - Unpacker";
2612const char kZipArchiverUnpackerDescription[] =
2613 "Enable or disable the ability to unpack archives in incognito mode";
Brett Wilson7b44537e2017-08-18 01:38:282614
2615const char kEolNotificationName[] = "Disable Device End of Life notification.";
2616const char kEolNotificationDescription[] =
2617 "Disable Notifcation when Device is End of Life.";
2618
2619const char kExperimentalAccessibilityFeaturesName[] =
2620 "Experimental accessibility features";
2621const char kExperimentalAccessibilityFeaturesDescription[] =
2622 "Enable additional accessibility features in the Settings page.";
2623
2624const char kExperimentalInputViewFeaturesName[] =
2625 "Experimental input view features";
2626const char kExperimentalInputViewFeaturesDescription[] =
2627 "Enable experimental features for IME input views.";
2628
2629const char kFileManagerTouchModeName[] = "Files App. touch mode";
2630const char kFileManagerTouchModeDescription[] =
2631 "Touchscreen-specific interactions of the Files app.";
2632
2633const char kFirstRunUiTransitionsName[] =
2634 "Animated transitions in the first-run tutorial";
2635const char kFirstRunUiTransitionsDescription[] =
2636 "Transitions during first-run tutorial are animated.";
2637
Brett Wilson7b44537e2017-08-18 01:38:282638const char kForceEnableStylusToolsName[] = "Force enable stylus features";
2639const char kForceEnableStylusToolsDescription[] =
2640 "Forces display of the stylus tools menu in the shelf and the stylus "
2641 "section in settings, even if there is no attached stylus device.";
2642
2643const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
2644const char kGestureEditingDescription[] =
2645 "Enable/Disable gesture editing option in the settings page for the "
2646 "virtual keyboard.";
2647
2648const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
2649const char kGestureTypingDescription[] =
2650 "Enable/Disable gesture typing option in the settings page for the virtual "
2651 "keyboard.";
2652
2653const char kInputViewName[] = "Input views";
2654const char kInputViewDescription[] =
2655 "Enable IME extensions to supply custom views for user input such as "
2656 "virtual keyboards.";
2657
2658const char kMemoryPressureThresholdName[] =
2659 "Memory discard strategy for advanced pressure handling";
2660const char kMemoryPressureThresholdDescription[] =
2661 "Memory discarding strategy to use";
2662const char kConservativeThresholds[] =
2663 "Conservative memory pressure release strategy";
2664const char kAggressiveCacheDiscardThresholds[] =
2665 "Aggressive cache release strategy";
2666const char kAggressiveTabDiscardThresholds[] =
2667 "Aggressive tab release strategy";
2668const char kAggressiveThresholds[] =
2669 "Aggressive tab and cache release strategy";
2670
2671const char kMtpWriteSupportName[] = "MTP write support";
2672const char kMtpWriteSupportDescription[] =
2673 "MTP write support in File System API (and file manager). In-place editing "
2674 "operations are not supported.";
2675
2676const char kMultideviceName[] = "Enable multidevice features";
2677const char kMultideviceDescription[] =
2678 "Enables UI for controlling multidevice features.";
vabr0215a8e2017-03-28 12:47:342679
Bailey Berrodca8eeca02017-11-18 00:49:122680const char kNativeSmbName[] = "Native Smb Client";
2681const char kNativeSmbDescription[] =
2682 "If enabled, allows connections to an smb filesystem via Files app";
Bailey Berrofc0da1b2017-11-02 11:02:302683
vabr0215a8e2017-03-28 12:47:342684const char kNetworkPortalNotificationName[] =
2685 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:342686const char kNetworkPortalNotificationDescription[] =
2687 "If enabled, notification is displayed when device is connected to a "
2688 "network behind captive portal.";
2689
Steven Bennetts77b67972017-12-14 19:38:322690const char kDisableNetworkSettingsConfigName[] =
2691 "Disable Settings based Network Configuration";
2692const char kDisableNetworkSettingsConfigDescription[] =
2693 "Disables the Settings based network configuration UI and restores the "
2694 "Views based configuration dialog.";
stevenjbe1d457382017-05-24 22:37:242695
Brett Wilson7b44537e2017-08-18 01:38:282696const char kNewKoreanImeName[] = "New Korean IME";
2697const char kNewKoreanImeDescription[] =
2698 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:342699
Brett Wilson7b44537e2017-08-18 01:38:282700const char kNewZipUnpackerName[] = "New ZIP unpacker";
2701const char kNewZipUnpackerDescription[] =
2702 "New ZIP unpacker flow, based on the File System Provider API.";
vabr0215a8e2017-03-28 12:47:342703
Brett Wilson7b44537e2017-08-18 01:38:282704const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
2705const char kPhysicalKeyboardAutocorrectDescription[] =
2706 "Enable physical keyboard autocorrect for US keyboard, which can provide "
2707 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:342708
2709const char kPrinterProviderSearchAppName[] =
2710 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:342711const char kPrinterProviderSearchAppDescription[] =
2712 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:192713 "searches Chrome Web Store for extensions that support printing to a USB "
2714 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:342715
Brett Wilson7b44537e2017-08-18 01:38:282716const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
2717const char kQuickUnlockPinDescription[] =
2718 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2719 "device on the lock screen after you have signed into your device.";
2720const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2721const char kQuickUnlockPinSigninDescription[] =
2722 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2723 "device. After changing this flag PIN needs to be set up again.";
2724const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2725const char kQuickUnlockFingerprintDescription[] =
2726 "Enabling fingerprint quick unlock allows you to setup and use a "
2727 "fingerprint to unlock your Chromebook on the lock screen after you have "
2728 "signed into your device.";
vabr0215a8e2017-03-28 12:47:342729
Brett Wilson7b44537e2017-08-18 01:38:282730const char kOfficeEditingComponentAppName[] =
2731 "Office Editing for Docs, Sheets & Slides";
2732const char kOfficeEditingComponentAppDescription[] =
2733 "Office Editing for Docs, Sheets & Slides for testing purposes.";
Daniel Erat33054b22017-06-27 16:18:072734
James Cook0ba192bf2017-12-01 20:53:112735const char kShowTapsName[] = "Show taps";
2736const char kShowTapsDescription[] =
2737 "Draws a circle at each touch point, which makes touch points more obvious "
2738 "when projecting or mirroring the display. Similar to the Android OS "
2739 "developer option.";
2740
2741const char kShowTouchHudName[] = "Show HUD for touch points";
2742const char kShowTouchHudDescription[] =
2743 "Shows a trail of colored dots for the last few touch points. Pressing "
2744 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
2745 "debug hardware issues that generate spurious touch events.";
2746
Chung-Sheng Wu468b0b32017-09-01 14:41:572747const char kSysInternalsName[] = "Enable Sys-Internals";
2748const char kSysInternalsDescription[] =
2749 "If enabled, user can monitor system information at "
2750 "chrome://sys-internals.";
2751
Brett Wilson7b44537e2017-08-18 01:38:282752const char kTeamDrivesName[] = "Enable Team Drives Integration";
2753const char kTeamDrivesDescription[] =
2754 "If enabled, files under Team Drives will appear in the Files app.";
vabr0215a8e2017-03-28 12:47:342755
Brett Wilson7b44537e2017-08-18 01:38:282756const char kTetherName[] = "Instant Tethering";
2757const char kTetherDescription[] =
2758 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
2759 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:372760
Brett Wilson7b44537e2017-08-18 01:38:282761const char kTouchscreenCalibrationName[] =
2762 "Enable/disable touchscreen calibration option in material design settings";
2763const char kTouchscreenCalibrationDescription[] =
2764 "If enabled, the user can calibrate the touch screen displays in "
2765 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:092766
Mitsuru Oshima63d3f2a2017-08-23 00:12:112767// Force UI Mode
2768const char kUiModeName[] = "Force Ui Mode";
2769const char kUiModeDescription[] =
2770 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
2771 R"*(despite its current orientation. "Tablet" means that the )*"
2772 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
2773 R"*(means that the chromebook will act as if it were in clamshell )*"
2774 R"*(mode . "Auto" means that the chromebook will alternate between )*"
2775 R"*(the two, based on its orientation.)*";
2776const char kUiModeTablet[] = "TouchView";
2777const char kUiModeClamshell[] = "Clamshell";
2778const char kUiModeAuto[] = "Auto (default)";
2779
bruthigeafb0c02017-06-09 13:11:532780const char kUiDevToolsName[] = "Enable native UI inspection";
2781const char kUiDevToolsDescription[] =
2782 "Enables inspection of native UI elements. For local inspection use "
2783 "chrome://inspect#other";
2784
James Cooka1bcfa9a2018-01-30 00:18:402785const char kUseMusName[] = "Mojo UI service (mus)";
2786const char kUseMusDescription[] =
2787 "Handles input events, display configuration, and windowing in a mojo "
2788 "service on a thread in the browser process.";
2789
2790const char kUseMashName[] = "Out-of-process system UI (mash)";
2791const char kUseMashDescription[] =
2792 "Runs the mojo UI service (mus) and the ash window manager and system UI "
2793 "in a separate process.";
Brett Wilson7b44537e2017-08-18 01:38:282794
Miguel Casas-Sanchez8ba32f92017-11-07 05:03:342795// TODO(mcasas): remove after https://crbug.com/771345.
2796const char kUseMonitorColorSpaceName[] = "Use monitor color space";
2797const char kUseMonitorColorSpaceDescription[] =
2798 "Enables Chrome to use the color space information provided by the monitor"
2799 " instead of the default sRGB color space.";
2800
Brett Wilson7b44537e2017-08-18 01:38:282801const char kVideoPlayerChromecastSupportName[] =
2802 "Experimental Chromecast support for Video Player";
2803const char kVideoPlayerChromecastSupportDescription[] =
2804 "This option enables experimental Chromecast support for Video Player app "
2805 "on ChromeOS.";
2806
2807const char kVirtualKeyboardName[] = "Virtual Keyboard";
2808const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
2809
2810const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
2811const char kVirtualKeyboardOverscrollDescription[] =
2812 "Enables virtual keyboard overscroll support.";
2813
2814const char kVoiceInputName[] = "Voice input on virtual keyboard";
2815const char kVoiceInputDescription[] =
2816 "Enables voice input on virtual keyboard.";
2817
2818const char kWakeOnPacketsName[] = "Wake On Packets";
2819const char kWakeOnPacketsDescription[] =
2820 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:202821
yhanadac5bff5b2017-05-18 06:37:092822#endif // defined(OS_CHROMEOS)
2823
Brett Wilson7b44537e2017-08-18 01:38:282824// Random platform combinations -----------------------------------------------
2825
2826#if defined(OS_WIN) || defined(OS_LINUX)
2827
2828const char kEnableInputImeApiName[] = "Enable Input IME API";
2829const char kEnableInputImeApiDescription[] =
2830 "Enable the use of chrome.input.ime API.";
2831
2832#endif // defined(OS_WIN) || defined(OS_LINUX)
2833
2834#if defined(OS_WIN) || defined(OS_MACOSX)
2835
2836const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2837const char kAutomaticTabDiscardingDescription[] =
2838 "If enabled, tabs get automatically discarded from memory when the system "
2839 "memory is low. Discarded tabs are still visible on the tab strip and get "
2840 "reloaded when clicked on. Info about discarded tabs can be found at "
2841 "chrome://discards.";
2842
2843#endif // defined(OS_WIN) || defined(OS_MACOSX)
2844
2845// Feature flags --------------------------------------------------------------
2846
2847#if BUILDFLAG(ENABLE_VR)
2848
David Dorwin5a496c32017-11-17 01:45:052849const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing";
2850const char kWebVrVsyncAlignDescription[] =
2851 "Align WebVR application rendering with VSync for smoother animations.";
2852
Brett Wilson7b44537e2017-08-18 01:38:282853#if defined(OS_ANDROID)
2854
David Dorwin5a496c32017-11-17 01:45:052855const char kVrBrowsingName[] = "VR browsing";
2856const char kVrBrowsingDescription[] =
2857 "Browsing within a VR headset if available for this device.";
Brett Wilson7b44537e2017-08-18 01:38:282858
Yash Malik50bcfc12017-11-18 00:47:592859const char kVrBrowserKeyboardName[] = "Chrome VR virtual keyboard.";
2860const char kVrBrowserKeyboardDescription[] =
2861 "Enable a virtual keyboard for Chrome VR.";
2862
David Dorwin5a496c32017-11-17 01:45:052863const char kVrBrowsingExperimentalFeaturesName[] =
2864 "VR browsing experimental features";
2865const char kVrBrowsingExperimentalFeaturesDescription[] =
2866 "Experimental VR browsing features that are under development.";
Brett Wilson7b44537e2017-08-18 01:38:282867
David Dorwin5a496c32017-11-17 01:45:052868const char kVrBrowsingExperimentalRenderingName[] =
2869 "VR browsing experimental rendering features";
2870const char kVrBrowsingExperimentalRenderingDescription[] =
2871 "Experimental rendering features for VR browsing (e.g. power-saving "
2872 "rendering modes).";
Michael Thiessenb480fe92017-10-26 16:25:102873
David Dorwin5a496c32017-11-17 01:45:052874const char kVrBrowsingInCustomTabName[] = "VR browsing in Custom Tabs";
2875const char kVrBrowsingInCustomTabDescription[] =
2876 "Allow browsing within a VR headset while in a Custom Tab.";
2877
Michael Thiessen37895912018-01-19 20:15:542878const char kVrIconInDaydreamHomeName[] = "Chrome icon in Daydream Home";
2879const char kVrIconInDaydreamHomeDescription[] =
2880 "Adds an icon to Daydream Home that allows launching Chrome in VR.";
2881
David Dorwin5a496c32017-11-17 01:45:052882const char kVrLaunchIntentsName[] = "VR intents";
2883const char kVrLaunchIntentsDescription[] =
Yash Malik812aebe2017-10-31 18:17:262884 "Allow intents to launch Chrome in VR mode.";
2885
David Dorwin5a496c32017-11-17 01:45:052886const char kWebVrAutopresentFromIntentName[] =
2887 "WebVR auto presentation from intents";
2888const char kWebVrAutopresentFromIntentDescription[] =
2889 "Allow auto presentation of WebVR content from trusted first-party apps.";
Brett Wilson7b44537e2017-08-18 01:38:282890
2891#endif // OS_ANDROID
2892
Bill Orr49527562017-11-22 16:58:482893#if BUILDFLAG(ENABLE_OPENVR)
2894const char kOpenVRName[] = "OpenVR hardware support";
2895const char kOpenVRDescription[] =
Bill Orr5056e692018-01-17 02:08:072896 "If enabled, Chrome will use OpenVR devices for VR (supported only on "
2897 "Windows 10 or later).";
Bill Orr49527562017-11-22 16:58:482898#endif // ENABLE_OPENVR
2899
Brett Wilson7b44537e2017-08-18 01:38:282900#endif // ENABLE_VR
2901
Nico Weberaf3b00b2017-09-11 17:58:172902#if BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282903
2904const char kNaclDebugMaskName[] =
2905 "Restrict Native Client GDB-based debugging by pattern";
2906const char kNaclDebugMaskDescription[] =
2907 "Restricts Native Client application GDB-based debugging by URL of "
2908 "manifest file. Native Client GDB-based debugging must be enabled for this "
2909 "option to work.";
2910const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
2911const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
2912 "Debug everything except secure shell and the PNaCl translator.";
2913const char kNaclDebugMaskChoiceIncludeDebug[] =
2914 "Debug only if manifest URL ends with debug.nmf.";
2915
2916const char kNaclDebugName[] = "Native Client GDB-based debugging";
2917const char kNaclDebugDescription[] =
2918 "Enable GDB debug stub. This will stop a Native Client application on "
2919 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
2920
2921const char kNaclName[] = "Native Client";
2922const char kNaclDescription[] =
2923 "Support Native Client for all web applications, even those that were not "
2924 "installed from the Chrome Web Store.";
2925
2926const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
2927const char kPnaclSubzeroDescription[] =
2928 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
2929
Nico Weberaf3b00b2017-09-11 17:58:172930#endif // BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282931
Brett Wilson7b44537e2017-08-18 01:38:282932#if BUILDFLAG(ENABLE_WEBRTC)
2933
2934const char kWebrtcH264WithOpenh264FfmpegName[] =
2935 "WebRTC H.264 software video encoder/decoder";
2936const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2937 "When enabled, an H.264 software video encoder/decoder pair is included. "
2938 "If a hardware encoder/decoder is also available it may be used instead of "
2939 "this encoder/decoder.";
2940
2941#endif // BUILDFLAG(ENABLE_WEBRTC)
2942
James Cookf9d34d22017-10-04 16:39:352943#if defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:282944
Wenzhao Zang50fb0b22017-11-07 01:38:422945const char kAshDisableLoginDimAndBlurName[] =
2946 "Disable dimming and blur on login screen.";
2947const char kAshDisableLoginDimAndBlurDescription[] =
2948 "Disable dimming and blur on login screen.";
2949
Brett Wilson7b44537e2017-08-18 01:38:282950const char kAshDisableSmoothScreenRotationName[] =
2951 "Disable smooth rotation animations.";
2952const char kAshDisableSmoothScreenRotationDescription[] =
2953 "Disable smooth rotation animations.";
2954
Qiang Xub7e921072017-12-07 21:02:112955const char kAshEnableDisplayMoveWindowAccelsName[] =
2956 "Enable shortcuts for moving window between displays.";
2957const char kAshEnableDisplayMoveWindowAccelsDescription[] =
2958 "Enable shortcuts for moving window between displays.";
2959
wutaoc70d7b92017-11-01 08:06:012960const char kAshEnableKeyboardShortcutViewerName[] =
2961 "Enable keyboard shortcut viewer.";
2962const char kAshEnableKeyboardShortcutViewerDescription[] =
2963 "Enable keyboard shortcut viewer.";
2964
Brett Wilson7b44537e2017-08-18 01:38:282965const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
2966const char kAshEnableMirroredScreenDescription[] =
2967 "Enable the mirrored screen mode. This mode flips the screen image "
2968 "horizontally.";
2969
Sammie Quon4e14214d2018-01-30 22:45:242970const char kAshEnableNewOverviewUiName[] = "Enable new overview UI.";
2971const char kAshEnableNewOverviewUiDescription[] =
2972 "Enables the new overview mode UI.";
2973
Qiang Xufa19cfd2018-01-29 19:36:502974const char kAshEnablePersistentWindowBoundsName[] =
2975 "Enable persistent window bounds in multi-displays scenario.";
2976const char kAshEnablePersistentWindowBoundsDescription[] =
2977 "Enable persistent window bounds in multi-displays scenario.";
2978
Brett Wilson7b44537e2017-08-18 01:38:282979const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
2980const char kAshShelfColorDescription[] =
2981 "Enables/disables the shelf color to be a derived from the wallpaper. The "
2982 "--ash-shelf-color-scheme flag defines how that color is derived.";
2983
2984const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
2985const char kAshShelfColorSchemeDescription[] =
2986 "Specify how the color is derived from the wallpaper. This flag is only "
2987 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
2988const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
2989const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
2990const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
2991const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
2992const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
2993const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
2994
Mike Wassermana38a8a62017-10-02 03:04:272995const char kAshDisableShelfModelSynchronization[] =
2996 "Disable shelf model synchronization";
2997const char kAshDisableShelfModelSynchronizationDescription[] =
2998 "Use a single in-process shelf data model shared between Chrome and Ash. "
2999 "This only applies to the Classic Ash and Mus configs; synchronization "
3000 "between two models is required when running the Mash config via --mash.";
Mike Wasserman2115b162017-09-19 23:42:373001
Brett Wilson7b44537e2017-08-18 01:38:283002const char kMaterialDesignInkDropAnimationSpeedName[] =
Mike Wasserman2115b162017-09-19 23:42:373003 "Material design ink drop animation speed";
Brett Wilson7b44537e2017-08-18 01:38:283004const char kMaterialDesignInkDropAnimationSpeedDescription[] =
3005 "Sets the speed of the experimental visual feedback animations for "
3006 "material design.";
3007const char kMaterialDesignInkDropAnimationFast[] = "Fast";
3008const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
3009
3010const char kUiShowCompositedLayerBordersName[] =
3011 "Show UI composited layer borders";
3012const char kUiShowCompositedLayerBordersDescription[] =
3013 "Show border around composited layers created by UI.";
3014const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
3015const char kUiShowCompositedLayerBordersSurface[] = "Surface";
3016const char kUiShowCompositedLayerBordersLayer[] = "Layer";
3017const char kUiShowCompositedLayerBordersAll[] = "All";
3018
3019const char kUiSlowAnimationsName[] = "Slow UI animations";
3020const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
3021
James Cookf9d34d22017-10-04 16:39:353022#endif // defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:283023
Brett Wilson7b44537e2017-08-18 01:38:283024#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3025
3026const char kAutofillCreditCardUploadName[] =
3027 "Enable offering upload of Autofilled credit cards";
3028const char kAutofillCreditCardUploadDescription[] =
3029 "Enables a new option to upload credit cards to Google Payments for sync "
3030 "to all Chrome devices.";
3031
3032#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
3033
3034// ============================================================================
3035// Don't just add flags to the end, put them in the right section in
3036// alphabetical order just like the header file.
3037// ============================================================================
3038
vabr0215a8e2017-03-28 12:47:343039} // namespace flag_descriptions