blob: f82ba49929c90ded48182e11347f20ed05a965ff [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[] =
291 "Show the Google Pay logo when offering credit card upload";
292const char kEnableAutofillCreditCardUploadGooglePayBrandingDescription[] =
293 "If enabled, shows the Google Pay logo and a shorter header message when "
294 "credit card upload to Google Payments is offered.";
295
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
Mathieu Perreault069024e12017-10-24 01:14:08318const char kEnableAutofillToolkitViewsCreditCardDialogsMac[] =
319 "Enable toolkit-views credit card dialogs on Mac";
320const char kEnableAutofillToolkitViewsCreditCardDialogsMacDescription[] =
321 "Enable more modern credit card dialogs on Mac, based on toolkit-views.";
322
Shanfeng Zhang18f58352018-01-05 19:22:49323const char kEnableAutofillUseNewSettingsNameInDropdownName[] =
324 "Show a new Autofill settings string in the Autofill dropdown";
325const char kEnableAutofillUseNewSettingsNameInDropdownDescription[] =
326 "If enabled, shows a new Autofill settings string in the Autofill "
327 "dropdown.";
328
Vitalii Iarko4f9834ce2017-08-04 07:05:19329const char kEnableBreakingNewsPushName[] = "Breaking News Push";
330const char kEnableBreakingNewsPushDescription[] =
331 "Listen for breaking news content suggestions (e.g. for New Tab Page) "
332 "through Google Cloud Messaging.";
333
Brett Wilsonf27ff602017-07-07 22:28:47334const char kEnableBrotliName[] = "Brotli Content-Encoding.";
335const char kEnableBrotliDescription[] =
336 "Enable Brotli Content-Encoding support.";
337
Qiang Xu0f602fe62017-12-22 01:31:20338const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization";
339const char kEnableCaptivePortalRandomUrlDescription[] =
340 "Enable Captive Portal URL randomization.";
341
sclittle50e4bb92017-07-08 02:23:03342const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
343
344const char kEnableClientLoFiDescription[] =
345 "Enable showing low fidelity images on some pages on slow networks.";
346
Doug Arnett08b4067b2017-10-12 20:14:44347const char kEnableNoScriptPreviewsName[] = "NoScript previews";
348
349const char kEnableNoScriptPreviewsDescription[] =
350 "Enable disabling JavaScript on some pages on slow networks.";
351
Thanh Le2c279fbc2017-11-21 01:25:40352const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1";
353const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2";
354const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3";
355const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4";
356const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5";
357const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6";
358const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7";
359const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8";
360const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9";
361const char kDataReductionProxyServerAlternative10[] =
362 "Use alt. server config 10";
Brett Wilsonf27ff602017-07-07 22:28:47363const char kEnableDataReductionProxyServerExperimentName[] =
364 "Use an alternative Data Saver back end configuration.";
365const char kEnableDataReductionProxyServerExperimentDescription[] =
366 "Enable a different approach to saving data by configuring the back end "
367 "server";
368
369const char kEnableDataReductionProxySavingsPromoName[] =
370 "Data Saver 1 MB Savings Promo";
371const char kEnableDataReductionProxySavingsPromoDescription[] =
372 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
373 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
374 "enabled for the promo to be shown.";
375
Matt Giucad4870432017-11-24 01:04:38376const char kEnableDesktopPWAsName[] = "Desktop PWAs";
377const char kEnableDesktopPWAsDescription[] =
378 "Experimental windowing and install banner treatment for Progressive Web "
379 "Apps on desktop platforms. Implies #enable-experimental-app-banners.";
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17380
Brett Wilsonf27ff602017-07-07 22:28:47381const char kEnableEnumeratingAudioDevicesName[] =
382 "Experimentally enable enumerating audio devices.";
383const char kEnableEnumeratingAudioDevicesDescription[] =
384 "Experimentally enable the use of enumerating audio devices.";
385
386const char kEnableGenericSensorName[] = "Generic Sensor";
387const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25388 "Enables motion sensor classes based on Generic Sensor API, i.e. "
389 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
390 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
391
392const char kEnableGenericSensorExtraClassesName[] =
393 "Generic Sensor Extra Classes";
394const char kEnableGenericSensorExtraClassesDescription[] =
395 "Enables an extra set of sensor classes based on Generic Sensor API, which "
396 "expose previously unavailable platform features, i.e. AmbientLightSensor "
397 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47398
Brett Wilsonf27ff602017-07-07 22:28:47399const char kEnableHDRName[] = "HDR mode";
400const char kEnableHDRDescription[] =
401 "Enables HDR support on compatible displays.";
402
403const char kEnableHeapProfilingName[] = "Heap profiling";
404const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
405const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
406const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
407const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
408
409const char kEnableHttpFormWarningName[] =
410 "Show in-form warnings for sensitive fields when the top-level page is not "
Eric Lawrenceed8fccf2017-09-08 21:27:15411 "HTTPS";
Brett Wilsonf27ff602017-07-07 22:28:47412const char kEnableHttpFormWarningDescription[] =
413 "Attaches a warning UI to any password or credit card fields detected when "
414 "the top-level page is not HTTPS";
415
Sidney San Martín9375b892017-09-09 00:29:54416const char kEnableMacMaterialDesignDownloadShelfName[] =
417 "Enable Material Design download shelf";
418
419const char kEnableMacMaterialDesignDownloadShelfDescription[] =
420 "If enabled, the download shelf uses Material Design.";
421
Tatiana Gornakafb40452017-07-31 13:50:04422const char kEnableManualFallbacksFillingName[] =
423 "Manual fallbacks for password manager forms filling";
424const char kEnableManualFallbacksFillingDescription[] =
425 "If enabled, then if user clicks on the password field on a form, popup "
426 "might contain generation fallbacks or 'Show all saved passwords' "
427 "fallback.";
428
vabr0215a8e2017-03-28 12:47:34429const char kEnableMaterialDesignBookmarksName[] =
430 "Enable Material Design bookmarks";
vabr0215a8e2017-03-28 12:47:34431const char kEnableMaterialDesignBookmarksDescription[] =
432 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
433 "bookmarks page.";
434
vabr0215a8e2017-03-28 12:47:34435const char kEnableMaterialDesignExtensionsName[] =
436 "Enable Material Design extensions";
vabr0215a8e2017-03-28 12:47:34437const char kEnableMaterialDesignExtensionsDescription[] =
438 "If enabled, the chrome://extensions/ URL loads the Material Design "
439 "extensions page.";
440
Anton Urusov47cd4932017-09-19 14:41:41441const char kEnablePolicyToolName[] = "Enable policy management page";
442const char kEnablePolicyToolDescription[] =
443 "If enabled, the chrome://policy-tool URL loads a page for managing "
444 "policies.";
445
Tsuyoshi Horoea7edb72017-11-12 04:14:00446const char kEnablePWAFullCodeCacheName[] = "Enable PWA full code cache";
447const char kEnablePWAFullCodeCacheDescription[] =
448 "Generate V8 code cache in Cache Storage while installing Service Worker "
449 "for PWAs.";
450
Weidong Guof1e5a892018-01-06 02:26:39451const char kDisableMultiMirroringName[] =
Weidong Guo7dfd1482017-11-08 05:56:28452 "Display mirroring across multiple displays.";
Weidong Guof1e5a892018-01-06 02:26:39453const char kDisableMultiMirroringDescription[] =
454 "Disable Display mirroring across multiple displays.";
Weidong Guo7dfd1482017-11-08 05:56:28455
Brett Wilsonf27ff602017-07-07 22:28:47456const char kEnableNavigationTracingName[] = "Enable navigation tracing";
457const char kEnableNavigationTracingDescription[] =
458 "This is to be used in conjunction with the trace-upload-url flag. "
459 "WARNING: When enabled, Chrome will record performance data for every "
460 "navigation and upload it to the URL specified by the trace-upload-url "
461 "flag. The trace may include personally identifiable information (PII) "
462 "such as the titles and URLs of websites you visit.";
463
Bernhard Bauer5533f9912017-11-06 17:56:02464const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file";
465const char kEnableNetworkLoggingToFileDescription[] =
466 "Enables network logging to a file named netlog.json in the user data "
467 "directory. The file can be imported into chrome://net-internals.";
468
Brett Wilsonf27ff602017-07-07 22:28:47469const char kEnableNetworkServiceName[] = "Enable network service";
470const char kEnableNetworkServiceDescription[] =
471 "Enables the network service, which makes network requests through a "
472 "separate service. Note: most features don't work with this yet.";
473
John Abd-El-Malek8067cc02017-12-04 23:23:20474const char kEnableNetworkServiceInProcessName[] =
475 "Runs network service in-process";
476const char kEnableNetworkServiceInProcessDescription[] =
477 "Runs the network service in the browser process.";
478
dpapaded8349472017-10-25 03:21:27479const char kEnableNewPrintPreview[] = "Enable new Print Preview UI";
480const char kEnableNewPrintPreviewDescription[] =
481 "If enabled, Print Preview will display a newer UI";
482
Ahmed Fakhry2fd8fc82017-07-28 16:31:12483const char kEnableNightLightName[] = "Enable Night Light";
484const char kEnableNightLightDescription[] =
485 "Enable the Night Light feature which controls the color temperature of "
486 "the screen.";
487
Sophie Chang117a3b22017-10-24 22:25:36488const char kEnableOptimizationHintsName[] = "Optimization Hints";
489const char kEnableOptimizationHintsDescription[] =
490 "Enable the Optimization Hints feature which incorporates server hints"
491 "into decisions for what optimizations to perform on some pages on slow "
492 "networks.";
493
Yutaka Hirano98be3272017-08-07 17:55:39494const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS";
495const char kEnableOutOfBlinkCORSDescription[] =
496 "CORS handling logic is moved out of blink.";
497
Erik Chen49bbfa22017-08-18 08:49:56498const char kEnableOutOfProcessHeapProfilingName[] =
Albert J. Wong174174762018-01-18 23:50:23499 "Out of process heap profiling start mode.";
Erik Chen49bbfa22017-08-18 08:49:56500const char kEnableOutOfProcessHeapProfilingDescription[] =
501 "Creates a profiling service that records stacktraces for all live, "
erikchen94aca892018-01-18 00:21:19502 "malloced objects. Heap dumps can be obtained at chrome://tracing "
503 "[category:memory-infra] and chrome://memory-internals. This setting "
504 "controls which processes are profiled. As long as this setting is not "
505 "disabled, users can start profiling any given process in "
506 "chrome://memory-internals.";
507const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU";
508const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes";
509const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers";
510const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser";
511const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU.";
erikchen0a5dd692017-12-12 00:53:10512const char kEnableOutOfProcessHeapProfilingModeManual[] =
erikchen94aca892018-01-18 00:21:19513 "None by default. Visit chrome://memory-internals to choose which "
514 "processes to profile.";
Albert J. Wongbd5bd902017-11-09 19:56:15515const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] =
516 "Profile a random sampling of renderer processes, ensuring only one is "
517 "ever profiled at a time.";
erikchen94aca892018-01-18 00:21:19518
Erik Chen8bb76b52017-12-06 19:06:25519const char kOutOfProcessHeapProfilingKeepSmallAllocations[] =
erikchen94aca892018-01-18 00:21:19520 "Emit small allocations in memlog heap dumps.";
Erik Chen8bb76b52017-12-06 19:06:25521const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] =
522 "By default, small allocations are pruned from the heap dump. This reduces "
523 "the size of the compressed trace by 100x. If pruning is disabled, the "
524 "chrome://tracing UI may be unable to take or load the trace. Save the "
525 "trace directly using chrome://memory-internals, and use other mechanisms "
526 "[e.g. diff_heap_profiler.py] to examine the trace. Note that "
527 "automatically uploaded traces will always be pruned. This only affects "
528 "manually taken memory-infra traces.";
Erik Chen49bbfa22017-08-18 08:49:56529
Erik Chen3303fd0232018-01-11 20:29:05530const char kOOPHPStackModeName[] =
531 "The type of stack to record for memlog heap dumps";
532const char kOOPHPStackModeDescription[] =
erikchen94aca892018-01-18 00:21:19533 "By default, memlog heap dumps record native stacks, which requires a "
534 "post-processing step to symbolize. Requires a custom build with frame "
535 "pointers to work on Android. It's also possible to record a pseudo stack "
536 "using trace events as identifiers. It's also possible to do a mix of "
537 "both.";
538const char kOOPHPStackModeMixed[] = "Mixed";
539const char kOOPHPStackModeNative[] = "Native";
540const char kOOPHPStackModePseudo[] = "Trace events";
Erik Chen3303fd0232018-01-11 20:29:05541
Brett Wilsonf27ff602017-07-07 22:28:47542const char kEnablePictureInPictureName[] = "Enable picture in picture.";
543const char kEnablePictureInPictureDescription[] =
544 "Enable the picture in picture feature for videos.";
545
F#m59d036e2017-09-13 07:22:17546const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
547const char kEnablePixelCanvasRecordingDescription[] =
548 "Pixel canvas recording allows the compositor to raster contents aligned "
549 "with the pixel and improves text rendering. This should be enabled when a "
550 "device is using fractional scale factor.";
551
Brett Wilsonf27ff602017-07-07 22:28:47552const char kEnableTokenBindingName[] = "Token Binding.";
553const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
554
Sahel Sharifyd732ab12017-11-29 23:03:16555extern const char kEnableTouchpadAndWheelScrollLatchingName[] =
556 "Wheel Scroll Latching.";
557extern const char kEnableTouchpadAndWheelScrollLatchingDescription[] =
558 "Wheel scroll latching enforces latching to a single element for the "
559 "duration of a scroll sequence.";
560
Brett Wilsonf27ff602017-07-07 22:28:47561const char kEnableUseZoomForDsfName[] =
562 "Use Blink's zoom for device scale factor.";
563const char kEnableUseZoomForDsfDescription[] =
564 "If enabled, Blink uses its zooming mechanism to scale content for device "
565 "scale factor.";
566const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
567const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
568const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
569
570const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
571const char kEnableScrollAnchoringDescription[] =
572 "Adjusts scroll position to prevent visible jumps when offscreen content "
573 "changes.";
574
Brad Nelson5cd500e2018-01-04 00:50:19575const char kEnableSharedArrayBufferName[] =
576 "Experimental enabled SharedArrayBuffer support in JavaScript.";
577const char kEnableSharedArrayBufferDescription[] =
578 "Enable SharedArrayBuffer support in JavaScript.";
579
Brett Wilsonf27ff602017-07-07 22:28:47580const char kEnableWasmName[] = "WebAssembly structured cloning support.";
581const char kEnableWasmDescription[] =
582 "Enable web pages to use WebAssembly structured cloning.";
583
Brett Wilsonf27ff602017-07-07 22:28:47584const char kEnableImageCaptureAPIName[] = "Image Capture API";
585const char kEnableImageCaptureAPIDescription[] =
586 "Enables the Web Platform Image Capture API: takePhoto(), "
587 "getPhotoCapabilities(), etc.";
588
589const char kEnableZeroSuggestRedirectToChromeName[] =
590 "Experimental contextual omnibox suggestion";
591const char kEnableZeroSuggestRedirectToChromeDescription[] =
592 "Change omnibox contextual suggestions to an experimental source. Note "
593 "that this is not an on/off switch for contextual omnibox and it only "
594 "applies to suggestions provided before the user starts typing a URL or a "
595 "search query (i.e. zero suggest).";
596
597const char kEnableWasmStreamingName[] =
598 "WebAssembly streaming compile/instantiate support.";
599const char kEnableWasmStreamingDescription[] =
600 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
601
Brett Wilsonf27ff602017-07-07 22:28:47602const char kExpensiveBackgroundTimerThrottlingName[] =
603 "Throttle expensive background timers";
604const char kExpensiveBackgroundTimerThrottlingDescription[] =
605 "Enables intervention to limit CPU usage of background timers to 1%.";
606
607const char kExperimentalAppBannersName[] = "Experimental app banners";
608const char kExperimentalAppBannersDescription[] =
Matt Giucad4870432017-11-24 01:04:38609 "Enables a new experimental app banner flow and UI. Implies "
610 "#enable-app-banners.";
Brett Wilsonf27ff602017-07-07 22:28:47611
612const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
613const char kExperimentalCanvasFeaturesDescription[] =
614 "Enables the use of experimental canvas features which are still in "
615 "development.";
616
617const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
618const char kExperimentalExtensionApisDescription[] =
619 "Enables experimental extension APIs. Note that the extension gallery "
620 "doesn't allow you to upload extensions that use experimental APIs.";
621
622const char kExperimentalFullscreenExitUIName[] =
623 "Experimental fullscreen exit UI";
624const char kExperimentalFullscreenExitUIDescription[] =
625 "Displays experimental UI to allow mouse and touch input methods to exit "
626 "fullscreen mode.";
627
Brett Wilsonf27ff602017-07-07 22:28:47628const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
629const char kExperimentalKeyboardLockUiDescription[] =
630 "An experimental full screen with keyboard lock mode requiring users to "
631 "hold Esc to exit.";
632
633const char kExperimentalSecurityFeaturesName[] =
634 "Potentially annoying security features";
635const char kExperimentalSecurityFeaturesDescription[] =
636 "Enables several security features that will likely break one or more "
637 "pages that you visit on a daily basis. Strict mixed content checking, for "
638 "example. And locking powerful features to secure contexts. This flag will "
639 "probably annoy you.";
640
641const char kExperimentalWebPlatformFeaturesName[] =
642 "Experimental Web Platform features";
643const char kExperimentalWebPlatformFeaturesDescription[] =
644 "Enables experimental Web Platform features that are in development.";
645
646const char kExtensionContentVerificationName[] =
647 "Extension Content Verification";
648const char kExtensionContentVerificationDescription[] =
649 "This flag can be used to turn on verification that the contents of the "
650 "files on disk for extensions from the webstore match what they're "
651 "expected to be. This can be used to turn on this feature if it would not "
652 "otherwise have been turned on, but cannot be used to turn it off (because "
653 "this setting can be tampered with by malware).";
654const char kExtensionContentVerificationBootstrap[] =
655 "Bootstrap (get expected hashes, but do not enforce them)";
656const char kExtensionContentVerificationEnforce[] =
657 "Enforce (try to get hashes, and enforce them if successful)";
658const char kExtensionContentVerificationEnforceStrict[] =
659 "Enforce strict (hard fail if we can't get hashes)";
660
661const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
662const char kExtensionsOnChromeUrlsDescription[] =
663 "Enables running extensions on chrome:// URLs, where extensions explicitly "
664 "request this permission.";
galinapae72e152017-05-12 13:12:28665
Brett Wilsonecb80982017-07-12 20:34:51666const char kFastUnloadName[] = "Fast tab/window close";
667const char kFastUnloadDescription[] =
668 "Enables fast tab/window closing - runs a tab's onunload js handler "
669 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:34670
Brett Wilsonecb80982017-07-12 20:34:51671const char kFeaturePolicyName[] = "Feature Policy";
672const char kFeaturePolicyDescription[] =
673 "Enables granting and removing access to features through the "
674 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:34675
Brett Wilsonecb80982017-07-12 20:34:51676const char kFontCacheScalingName[] = "FontCache scaling";
677const char kFontCacheScalingDescription[] =
678 "Reuse a cached font in the renderer to serve different sizes of font for "
679 "faster layout.";
680
681const char kForceEffectiveConnectionTypeName[] =
682 "Override effective connection type";
683const char kForceEffectiveConnectionTypeDescription[] =
684 "Overrides the effective connection type of the current connection "
Thanh Lea98f12f2017-12-18 19:35:30685 "returned by the network quality estimator. Slow 2G on Cellular returns "
686 "Slow 2G when connected to a cellular network, and the actual estimate "
687 "effective connection type when not on a cellular network. Previews are "
688 "usually served on 2G networks.";
Brett Wilsonecb80982017-07-12 20:34:51689const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
690const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
691const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
Thanh Lea98f12f2017-12-18 19:35:30692const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] =
693 "Slow 2G On Cellular";
Brett Wilsonecb80982017-07-12 20:34:51694const char kEffectiveConnectionType2GDescription[] = "2G";
695const char kEffectiveConnectionType3GDescription[] = "3G";
696const char kEffectiveConnectionType4GDescription[] = "4G";
697
698const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
699const char kFillOnAccountSelectDescription[] =
700 "Filling of passwords when an account is explicitly selected by the user "
701 "rather than autofilling credentials on page load.";
702
Brett Wilsonecb80982017-07-12 20:34:51703const char kForceTextDirectionName[] = "Force text direction";
704const char kForceTextDirectionDescription[] =
705 "Explicitly force the per-character directionality of UI text to "
706 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
707 "direction of the character language.";
708const char kForceDirectionLtr[] = "Left-to-right";
709const char kForceDirectionRtl[] = "Right-to-left";
710
711const char kForceUiDirectionName[] = "Force UI direction";
712const char kForceUiDirectionDescription[] =
713 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
714 "mode, overriding the default direction of the UI language.";
715
716const char kFramebustingName[] =
717 "Framebusting requires same-origin or a user gesture";
718const char kFramebustingDescription[] =
719 "Don't permit an iframe to navigate the top level browsing context unless "
720 "they are same-origin or the iframe is processing a user gesture.";
721
722const char kGamepadExtensionsName[] = "Gamepad Extensions";
723const char kGamepadExtensionsDescription[] =
724 "Enabling this option allows web applications to access experimental "
725 "extensions to the Gamepad APIs.";
726
Brett Wilsonecb80982017-07-12 20:34:51727const char kGpuRasterizationMsaaSampleCountName[] =
728 "GPU rasterization MSAA sample count.";
729const char kGpuRasterizationMsaaSampleCountDescription[] =
730 "Specify the number of MSAA samples for GPU rasterization.";
731const char kGpuRasterizationMsaaSampleCountZero[] = "0";
732const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
733const char kGpuRasterizationMsaaSampleCountFour[] = "4";
734const char kGpuRasterizationMsaaSampleCountEight[] = "8";
735const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
736
737const char kGpuRasterizationName[] = "GPU rasterization";
738const char kGpuRasterizationDescription[] =
739 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:28740const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:51741
742const char kGoogleProfileInfoName[] = "Google profile name and icon";
743const char kGoogleProfileInfoDescription[] =
744 "Enables using Google information to populate the profile name and icon in "
745 "the avatar menu.";
746
747const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
748const char kHarfbuzzRendertextDescription[] =
749 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect "
750 "web content.";
751
752const char kHistoryRequiresUserGestureName[] =
753 "New history entries require a user gesture.";
754const char kHistoryRequiresUserGestureDescription[] =
755 "Require a user gesture to add a history entry.";
756const char kHyperlinkAuditingName[] = "Hyperlink auditing";
757const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
758
759const char kHostedAppQuitNotificationName[] =
760 "Quit notification for hosted apps";
761const char kHostedAppQuitNotificationDescription[] =
762 "Display a notification when quitting Chrome if hosted apps are currently "
763 "running.";
764
765const char kHostedAppShimCreationName[] =
766 "Creation of app shims for hosted apps on Mac";
767const char kHostedAppShimCreationDescription[] =
768 "Create app shims on Mac when creating a hosted app.";
769
Ana-Cosmina Popescuda3bcbe2017-09-22 18:24:48770const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector";
771const char kHtmlBasedUsernameDetectorDescription[] =
772 "Use HTML-based username detector for the password manager.";
773
Brett Wilsonecb80982017-07-12 20:34:51774const char kIconNtpName[] = "Large icons on the New Tab page";
775const char kIconNtpDescription[] =
776 "Enable the experimental New Tab page using large icons.";
777
778const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
779const char kIgnoreGpuBlacklistDescription[] =
780 "Overrides the built-in software rendering list and enables "
781 "GPU-acceleration on unsupported system configurations.";
782
Thanh Le5f090efa52017-12-27 22:39:44783const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blacklist";
784const char kIgnorePreviewsBlacklistDescription[] =
785 "Ignore decisions made by the PreviewsBlackList";
786
Brett Wilsonecb80982017-07-12 20:34:51787const char kImportantSitesInCbdName[] =
788 "Important sites options in clear browsing data dialog";
789const char kImportantSitesInCbdDescription[] =
790 "Include the option to whitelist important sites in the clear browsing "
791 "data dialog.";
792
Claudio Magni61c210922017-12-28 00:29:51793const char kImprovedLanguageSettingsName[] = "Improved Language Settings";
794const char kImprovedLanguageSettingsDescription[] =
795 "Set of changes for Language Settings. These changes are intended to fix "
796 "the major bugs related to Language Settings.";
797
Brett Wilsonecb80982017-07-12 20:34:51798const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
799const char kInProductHelpDemoModeChoiceDescription[] =
800 "Selects the In-Product Help demo mode.";
801
802const char kJavascriptHarmonyName[] = "Experimental JavaScript";
803const char kJavascriptHarmonyDescription[] =
804 "Enable web pages to use experimental JavaScript features.";
805
806const char kJavascriptHarmonyShippingName[] =
807 "Latest stable JavaScript features";
808const char kJavascriptHarmonyShippingDescription[] =
809 "Some web pages use legacy or non-standard JavaScript extensions that may "
810 "conflict with the latest JavaScript features. This flag allows disabling "
811 "support of those features for compatibility with such pages.";
812
Yutaka Hiranof7f2f632017-09-06 10:40:08813const char kKeepAliveRendererForKeepaliveRequestsName[] =
814 "Keep a renderer alive for keepalive fetch requests";
815const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
816 "Keep a render process alive when the process has a pending fetch request "
817 "with `keepalive' specified.";
818
Brett Wilsonecb80982017-07-12 20:34:51819const char kLcdTextName[] = "LCD text antialiasing";
820const char kLcdTextDescription[] =
821 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
822 "(subpixel) when doing accelerated compositing.";
823
Matt Giucac399982f2017-10-06 07:51:29824const char kLeftToRightUrlsName[] =
825 "Render bidirectional URLs from left to right";
826const char kLeftToRightUrlsDescription[] =
827 "An experimental Bidi URL rendering algorithm where the URL components are "
828 "always shown in order from left to right, regardless of any RTL "
829 "characters. (The contents of each component are still rendered with the "
830 "normal Bidi algorithm.)";
831
Brett Wilsonecb80982017-07-12 20:34:51832const char kLoadMediaRouterComponentExtensionName[] =
833 "Load Media Router Component Extension";
834const char kLoadMediaRouterComponentExtensionDescription[] =
835 "Loads the Media Router component extension at startup.";
836
837const char kManualPasswordGenerationName[] = "Manual password generation.";
838const char kManualPasswordGenerationDescription[] =
839 "Show a 'Generate Password' option on the context menu for all password "
840 "fields.";
841
Dominic Battref27e8762017-08-23 11:16:25842const char kManualPasswordSavingName[] = "Manual password saving.";
843const char kManualPasswordSavingDescription[] =
844 "Show the password manager icon when typing into a password filed. "
845 "Clicking it allows to save the password without submitting the form.";
846
Brett Wilsonecb80982017-07-12 20:34:51847const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
848const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
Brett Wilsonecb80982017-07-12 20:34:51849
Lei Zhang2eca9082017-10-17 20:42:50850const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP.";
851const char kMaterialDesignIncognitoNTPDescription[] =
Brett Wilsonecb80982017-07-12 20:34:51852 "If enabled, the Incognito New Tab page uses the new material design with "
853 "a better readable text.";
854
855const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
856const char kMediaRemotingDescription[] =
857 "When Casting a tab to a remote device, enabling this turns on an "
858 "optimization that forwards the content bitstream directly to the remote "
859 "device when a video is fullscreened.";
860
861const char kMemoryAblationName[] = "Memory ablation experiment";
862const char kMemoryAblationDescription[] =
863 "Allocates extra memory in the browser process.";
864
865const char kMemoryCoordinatorName[] = "Memory coordinator";
866const char kMemoryCoordinatorDescription[] =
867 "Enable memory coordinator instead of memory pressure listeners.";
868
869const char kMessageCenterNewStyleNotificationName[] = "New style notification";
870const char kMessageCenterNewStyleNotificationDescription[] =
871 "Enables the experiment style of material-design notification";
872
Brett Wilsonecb80982017-07-12 20:34:51873const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
874const char kMhtmlGeneratorOptionDescription[] =
875 "Provides experimental options for MHTML file generator.";
876const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
877const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
878
Kouhei Ueno08445c22017-09-05 03:58:30879const char kModuleScriptsDynamicImportName[] =
880 "Enable ECMAScript 6 modules dynamic import";
881const char kModuleScriptsDynamicImportDescription[] =
882 "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and "
883 "Blink.";
884
Hiroshige Hayashizaki15c2eb92017-10-20 04:57:05885const char kModuleScriptsImportMetaUrlName[] =
886 "Enable ECMAScript 6 modules import.meta.url";
887const char kModuleScriptsImportMetaUrlDescription[] =
888 "Enables ECMAScript 6 modules import.meta.url syntax support in V8 and "
889 "Blink.";
890
Brett Wilsonecb80982017-07-12 20:34:51891const char kNewAudioRenderingMixingStrategyName[] =
892 "New audio rendering mixing strategy";
893const char kNewAudioRenderingMixingStrategyDescription[] =
894 "Use the new audio rendering mixing strategy.";
895
896const char kNewBookmarkAppsName[] = "The new bookmark app system";
897const char kNewBookmarkAppsDescription[] =
898 "Enables the new system for creating bookmark apps.";
899
Brett Wilsonecb80982017-07-12 20:34:51900const char kNewRemotePlaybackPipelineName[] =
901 "Enable the new remote playback pipeline.";
902const char kNewRemotePlaybackPipelineDescription[] =
903 "Enable the new pipeline for playing media element remotely via "
904 "RemotePlayback API or native controls.";
CJ DiMeglio7b4a199f2017-11-30 01:26:50905const char kUseSurfaceLayerForVideoName[] =
906 "Enable the use of SurfaceLayer objects for videos.";
907const char kUseSurfaceLayerForVideoDescription[] =
908 "Enable compositing onto a Surface instead of a VideoLayer "
909 "for videos.";
Brett Wilsonecb80982017-07-12 20:34:51910
911const char kNewUsbBackendName[] = "Enable new USB backend";
912const char kNewUsbBackendDescription[] =
913 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:34914
brettw5f9c1642017-05-14 17:12:48915const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:34916const char kNostatePrefetchDescription[] =
917 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
918 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
919 R"*(improve load times even more. "Simple Load" does nothing and is )*"
920 R"*(similar to disabling the feature, but collects more metrics for )*"
921 R"*(comparison purposes.)*";
922
Brett Wilsonecb80982017-07-12 20:34:51923const char kNotificationsNativeFlagName[] = "Enable native notifications.";
924const char kNotificationsNativeFlagDescription[] =
925 "Enable support for using the native notification toasts and notification "
926 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:34927
Zentaro Kavanaghbad511c2017-10-18 22:29:00928#if defined(OS_POSIX)
929const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication";
930const char kNtlmV2EnabledDescription[] =
931 "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support.";
932#endif
933
Brett Wilsonecb80982017-07-12 20:34:51934const char kNumRasterThreadsName[] = "Number of raster threads";
935const char kNumRasterThreadsDescription[] =
936 "Specify the number of raster threads.";
937const char kNumRasterThreadsOne[] = "1";
938const char kNumRasterThreadsTwo[] = "2";
939const char kNumRasterThreadsThree[] = "3";
940const char kNumRasterThreadsFour[] = "4";
941
942const char kOfferStoreUnmaskedWalletCardsName[] =
943 "Google Payments card saving checkbox";
944const char kOfferStoreUnmaskedWalletCardsDescription[] =
945 "Show the checkbox to offer local saving of a credit card downloaded from "
946 "the server.";
947
948const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
949const char kOfflineAutoReloadDescription[] =
950 "Pages that fail to load while the browser is offline will be "
951 "auto-reloaded when the browser is online again.";
952
953const char kOfflineAutoReloadVisibleOnlyName[] =
954 "Only Auto-Reload Visible Tabs";
955const char kOfflineAutoReloadVisibleOnlyDescription[] =
956 "Pages that fail to load while the browser is offline will only be "
957 "auto-reloaded if their tab is visible.";
958
Brett Wilsonecb80982017-07-12 20:34:51959const char kOmniboxDisplayTitleForCurrentUrlName[] =
960 "Include title for the current URL in the omnibox";
961const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
962 "In the event that the omnibox provides suggestions on-focus, the URL of "
963 "the current page is provided as the first suggestion without a title. "
964 "Enabling this flag causes the title to be displayed.";
965
Benoit Lizeab08362c2017-07-19 14:50:54966const char kOmniboxSpareRendererName[] =
967 "Start spare renderer on omnibox focus";
968const char kOmniboxSpareRendererDescription[] =
969 "When the omnibox is focused, start an empty spare renderer. This can "
970 "speed up the load of the navigation from the omnibox.";
971
Tommy C. Li8875a442017-08-23 00:10:59972const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
973 "Omnibox UI Elide Suggestion URL After Host";
974const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
975 "Elides the path, query, and ref of suggested URLs in the Omnibox "
976 "dropdown.";
977
Tommy C. Lid79d4402017-12-22 22:49:12978const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsName[] =
979 "Omnibox UI Hide Steady-State URL Scheme and Trivial Subdomains";
980const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsDescription[] =
981 "In the Omnibox, hide the scheme and trivial subdomains from steady state "
982 "displayed URLs. Hidden portions are restored during editing.";
983
Brett Wilsonecb80982017-07-12 20:34:51984const char kOmniboxUIHideSuggestionUrlSchemeName[] =
985 "Omnibox UI Hide Suggestion URL Scheme";
986const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
987 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
988
989const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
990 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
991const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
992 "Elides trivially informative subdomains from suggested URLs in the "
993 "Omnibox dropdown (e.g. www. and m.).";
994
995const char kOmniboxUIMaxAutocompleteMatchesName[] =
996 "Omnibox UI Max Autocomplete Matches";
997
998const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
999 "Changes the maximum number of autocomplete matches displayed in the "
1000 "Omnibox UI.";
1001
1002const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
1003const char kOmniboxUINarrowDropdownDescription[] =
1004 "Makes the suggestions dropdown width match the omnibox width.";
1005
Justin Donnelly65c9e8b2017-10-01 05:15:011006const char kOmniboxUIShowSuggestionFaviconsName[] =
1007 "Omnibox UI Show Suggestion Favicons";
1008const char kOmniboxUIShowSuggestionFaviconsDescription[] =
1009 "Shows favicons instead of generic vector icons for URL suggestions in the "
1010 "Omnibox dropdown.";
1011
1012const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL";
1013const char kOmniboxUISwapTitleAndUrlDescription[] =
1014 "In the omnibox dropdown, shows titles before URLs when both are "
1015 "available.";
1016
Brett Wilsonecb80982017-07-12 20:34:511017const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
1018const char kOmniboxUIVerticalLayoutDescription[] =
1019 "Displays Omnibox sugestions in 2 lines - title over origin.";
1020
1021const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
1022const char kOmniboxUIVerticalMarginDescription[] =
1023 "Changes the vertical margin in the Omnibox UI.";
1024
1025const char kOriginTrialsName[] = "Origin Trials";
1026const char kOriginTrialsDescription[] =
1027 "Enables origin trials for controlling access to feature/API experiments.";
1028
Becca Hughes930d8cd2017-10-02 11:09:121029const char kOverflowIconsForMediaControlsName[] =
1030 "Icons on Media Controls Overflow Menu";
1031const char kOverflowIconsForMediaControlsDescription[] =
1032 "Displays icons on the overflow menu of the native media controls";
1033
Brett Wilsonecb80982017-07-12 20:34:511034const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
1035const char kOverlayScrollbarsDescription[] =
1036 "Enable the experimental overlay scrollbars implementation. You must also "
1037 "enable threaded compositing to have the scrollbars animate.";
1038
chaopenge8aa016b2017-08-24 15:20:191039const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
1040 "Flash Overlay Scrollbars After Any Scroll Update";
1041const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
1042 "Flash Overlay Scrollbars After any scroll update happends in page. You"
1043 " must also enable Overlay Scrollbars.";
1044
chaopeng343678022017-08-24 18:45:001045const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
1046 "Flash Overlay Scrollbars When Mouse Enter";
1047const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
1048 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
1049 " enable Overlay Scrollbars.";
1050
Claudio Magni81326f92017-09-01 05:21:181051const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
1052const char kUseNewAcceptLanguageHeaderDescription[] =
1053 "Adds the base language code after other corresponding language+region "
1054 "codes. This ensures that users receive content in their preferred "
1055 "language.";
1056
Brett Wilsonecb80982017-07-12 20:34:511057const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
1058const char kOverscrollHistoryNavigationDescription[] =
1059 "Experimental history navigation in response to horizontal overscroll.";
1060const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
1061
1062const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
1063const char kOverscrollStartThresholdDescription[] =
1064 "Changes overscroll start threshold relative to the default value.";
1065const char kOverscrollStartThreshold133Percent[] = "133%";
1066const char kOverscrollStartThreshold166Percent[] = "166%";
1067const char kOverscrollStartThreshold200Percent[] = "200%";
1068
Xing Liu5400a002017-09-15 21:48:291069const char kParallelDownloadingName[] = "Parallel downloading";
1070const char kParallelDownloadingDescription[] =
Yannic Bonenbergera32f9902017-11-20 18:47:061071 "Enable parallel downloading to accelerate download speed.";
Xing Liu5400a002017-09-15 21:48:291072
Brett Wilsonecb80982017-07-12 20:34:511073const char kPassiveEventListenerDefaultName[] =
1074 "Passive Event Listener Override";
1075const char kPassiveEventListenerDefaultDescription[] =
1076 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1077 "haven't requested otherwise) to be treated as passive. This will break "
1078 "touch/wheel behavior on some websites but is useful for demonstrating the "
1079 "potential performance benefits of adopting passive event listeners.";
1080const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1081const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1082
1083const char kPassiveEventListenersDueToFlingName[] =
1084 "Touch Event Listeners Passive Default During Fling";
1085const char kPassiveEventListenersDueToFlingDescription[] =
1086 "Forces touchstart, and first touchmove per scroll event listeners during "
1087 "fling to be treated as passive.";
1088
1089const char kPassiveDocumentEventListenersName[] =
1090 "Document Level Event Listeners Passive Default";
1091const char kPassiveDocumentEventListenersDescription[] =
1092 "Forces touchstart, and touchmove event listeners on document level "
1093 "targets (which haven't requested otherwise) to be treated as passive.";
1094
1095const char kPasswordForceSavingName[] = "Force-saving of passwords";
1096const char kPasswordForceSavingDescription[] =
1097 "Allow the user to manually enforce password saving instead of relying on "
1098 "password manager's heuristics.";
1099
1100const char kPasswordGenerationName[] = "Password generation";
1101const char kPasswordGenerationDescription[] =
1102 "Allow the user to have Chrome generate passwords when it detects account "
1103 "creation pages.";
1104
Vaclav Brozekd8a3f542017-11-16 14:21:131105const char kPasswordExportName[] = "Password export";
1106const char kPasswordExportDescription[] =
1107 "Export functionality in password settings.";
1108
1109const char kPasswordImportName[] = "Password import";
1110const char kPasswordImportDescription[] =
1111 "Import functionality in password settings.";
Brett Wilsonecb80982017-07-12 20:34:511112
1113const char kPermissionActionReportingName[] = "Permission Action Reporting";
1114const char kPermissionActionReportingDescription[] =
1115 "Enables permission action reporting to Safe Browsing servers for opted in "
1116 "users.";
1117
1118const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1119const char kPermissionsBlacklistDescription[] =
1120 "Enables the Permissions Blacklist, which blocks permissions for "
1121 "blacklisted sites for Safe Browsing users.";
1122
1123const char kPinchScaleName[] = "Pinch scale";
1124const char kPinchScaleDescription[] =
1125 "Enables experimental support for scale using pinch.";
1126
Brett Wilsonecb80982017-07-12 20:34:511127const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1128const char kPrintPdfAsImageDescription[] =
1129 "If enabled, an option to print PDF files as images will be available in "
1130 "print preview.";
1131
1132const char kPrintPreviewRegisterPromosName[] =
1133 "Print Preview Registration Promos";
1134const char kPrintPreviewRegisterPromosDescription[] =
1135 "Enable registering unregistered cloud printers from print preview.";
1136
1137const char kProtectSyncCredentialName[] = "Autofill sync credential";
1138const char kProtectSyncCredentialDescription[] =
1139 "How the password manager handles autofill for the sync credential.";
1140
1141const char kProtectSyncCredentialOnReauthName[] =
1142 "Autofill sync credential only for transactional reauth pages";
1143const char kProtectSyncCredentialOnReauthDescription[] =
1144 "How the password manager handles autofill for the sync credential only "
1145 "for transactional reauth pages.";
1146
Mohsen Izadi93faac12017-07-29 04:45:151147const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1148const char kPullToRefreshDescription[] =
1149 "Pull-to-refresh gesture in response to vertical overscroll.";
1150
Brett Wilsonecb80982017-07-12 20:34:511151const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1152const char kPushApiBackgroundModeDescription[] =
1153 "Enable background mode for the Push API. This allows Chrome to continue "
1154 "running after the last window is closed, and to launch at OS startup, if "
1155 "the Push API needs it.";
1156
1157const char kQuicName[] = "Experimental QUIC protocol";
1158const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1159
1160const char kReducedReferrerGranularityName[] =
1161 "Reduce default 'referer' header granularity.";
1162const char kReducedReferrerGranularityDescription[] =
1163 "If a page hasn't set an explicit referrer policy, setting this flag will "
1164 "reduce the amount of information in the 'referer' header for cross-origin "
1165 "requests.";
1166
Mihai Sardarescu6d0f5b72017-10-30 11:24:381167const char kRemoveUsageOfDeprecatedGaiaSigninEndpointName[] =
1168 "Remove usage of the deprecated GAIA sign-in endpoint";
1169const char kRemoveUsageOfDeprecatedGaiaSigninEndpointDescription[] =
1170 "The Gaia sign-in endpoint used for full-tab sign-in page is deprecated. "
1171 "This flags controls wheter it should no longer be used during a sign-in "
1172 " flow.";
1173
Yutaka Hirano4c0f2f5d452017-11-17 04:24:351174const char kRendererSideResourceSchedulerName[] =
1175 "Renderer side ResourceScheduler";
1176const char kRendererSideResourceSchedulerDescription[] =
1177 "Migrate some ResourceScheduler functionalities to renderer";
1178
Brett Wilsonecb80982017-07-12 20:34:511179const char kRequestTabletSiteName[] =
1180 "Request tablet site option in the settings menu";
1181const char kRequestTabletSiteDescription[] =
1182 "Allows the user to request tablet site. Web content is often optimized "
1183 "for tablet devices. When this option is selected the user agent string is "
1184 "changed to indicate a tablet device. Web content optimized for tablets is "
1185 "received there after for the current tab.";
1186
1187const char kResetAppListInstallStateName[] =
1188 "Reset the App Launcher install state on every restart.";
1189const char kResetAppListInstallStateDescription[] =
1190 "Reset the App Launcher install state on every restart. While this flag is "
1191 "set, Chrome will forget the launcher has been installed each time it "
1192 "starts. This is used for testing the App Launcher install flow.";
1193
1194const char kResourceLoadSchedulerName[] = "Use the resource load scheduler";
1195const char kResourceLoadSchedulerDescription[] =
1196 "Uses the resource load scheduler in blink to schedule and throttle "
1197 "resource load requests.";
1198
Brett Wilsonecb80982017-07-12 20:34:511199const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1200const char kSafeSearchUrlReportingDescription[] =
1201 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1202
1203const char kSaveasMenuLabelExperimentName[] =
1204 "Switch 'Save as' menu labels to 'Download'";
1205const char kSaveasMenuLabelExperimentDescription[] =
1206 "Enables an experiment to switch menu labels that use 'Save as...' to "
1207 "'Download'.";
1208
1209const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1210const char kSavePageAsMhtmlDescription[] =
1211 "Enables saving pages as MHTML: a single text file containing HTML and all "
1212 "sub-resources.";
1213
Nate Chapin9638e7102017-09-20 22:11:011214const char kSavePreviousDocumentResourcesName[] =
1215 "Save Previous Document Resources";
1216const char kSavePreviousDocumentResourcesDescription[] =
1217 "Saves an old document's cached resources until the specified point in the "
1218 "next document's lifecycle.";
1219const char kSavePreviousDocumentResourcesNever[] =
1220 "Don't explicitly save resources";
1221const char kSavePreviousDocumentResourcesUntilOnDOMContentLoaded[] =
1222 "Save resources until onDOMContentLoaded completes";
1223const char kSavePreviousDocumentResourcesUntilOnLoad[] =
1224 "Save resources until onload completes";
1225
Brett Wilsonecb80982017-07-12 20:34:511226const char kScrollPredictionName[] = "Scroll prediction";
1227const char kScrollPredictionDescription[] =
1228 "Predicts the finger's future position during scrolls allowing time to "
1229 "render the frame before the finger is there.";
1230
1231const char kSecondaryUiMd[] =
1232 "Material Design in the rest of the browser's native UI";
1233const char kSecondaryUiMdDescription[] =
1234 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
1235 "etc.). On Mac, this enables MacViews, which uses toolkit-views for native "
1236 "browser dialogs.";
1237
1238const char kServiceWorkerNavigationPreloadName[] =
1239 "Service worker navigation preload.";
1240const char kServiceWorkerNavigationPreloadDescription[] =
1241 "Enable web pages to use the experimental service worker navigation "
1242 "preload API.";
1243
gogeraldd5061b592017-09-06 23:39:551244const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1245const char kServiceWorkerPaymentAppsDescription[] =
1246 "Enable Service Worker applications to integrate as payment apps";
1247
Makoto Shimazud9f333c2017-08-08 07:23:171248const char kServiceWorkerScriptStreamingName[] =
1249 "Service worker script streaming.";
1250const char kServiceWorkerScriptStreamingDescription[] =
1251 "Installed scripts for a service worker are sent over a dedicated "
1252 "message pipe and data pipes, and that is never be blocked on the main "
1253 "thread.";
1254
Tsuyoshi Horobcb1c642017-11-24 16:32:141255const char kServiceWorkerScriptFullCodeCacheName[] =
1256 "Service worker script full code cache.";
1257const char kServiceWorkerScriptFullCodeCacheDescription[] =
1258 "Generate V8 full code cache of Service Worker scripts while installing.";
1259
Brett Wilsonecb80982017-07-12 20:34:511260const char kSettingsWindowName[] = "Show settings in a window";
1261const char kSettingsWindowDescription[] =
1262 "Settings will be shown in a dedicated window instead of as a browser tab.";
1263
Trent Apted750ba7022017-10-23 13:36:251264const char kShowAllDialogsWithViewsToolkitName[] =
1265 "Show all dialogs with Views toolkit";
1266const char kShowAllDialogsWithViewsToolkitDescription[] =
1267 "All browser dialogs will be shown using the Views toolkit rather than "
1268 "Cocoa. This requires <a href=\"#secondary-ui-md\">#secondary-ui-md</a>.";
1269
Brett Wilsonecb80982017-07-12 20:34:511270const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1271const char kShowAutofillSignaturesDescription[] =
1272 "Annotates web forms with Autofill signatures as HTML attributes.";
1273
1274const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1275const char kShowAutofillTypePredictionsDescription[] =
1276 "Annotates web forms with Autofill field type predictions as placeholder "
1277 "text.";
1278
1279const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1280const char kShowOverdrawFeedbackDescription[] =
1281 "Visualize overdraw by color-coding elements based on if they have other "
1282 "elements drawn underneath.";
1283
yiyixbdfa9a0b2017-10-23 22:21:471284const char kEnableDrawOcclusionName[] = "Enable draw occlusion";
1285const char kEnableDrawOcclusionDescription[] =
1286 "Enable the system to use draw occlusion to skip draw quads when they are "
1287 "not shown on the screen.";
1288
Brett Wilsonecb80982017-07-12 20:34:511289const char kShowSavedCopyName[] = "Show Saved Copy Button";
1290const char kShowSavedCopyDescription[] =
1291 "When a page fails to load, if a stale copy of the page exists in the "
1292 "browser cache, a button will be presented to allow the user to load that "
1293 "stale copy. The primary enabling choice puts the button in the most "
1294 "salient position on the error page; the secondary enabling choice puts it "
1295 "secondary to the reload button.";
1296const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1297const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1298const char kDisableShowSavedCopy[] = "Disable";
1299
Brett Wilsonecb80982017-07-12 20:34:511300const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1301const char kSilentDebuggerExtensionApiDescription[] =
1302 "Do not show the infobar when an extension attaches to a page via "
1303 "chrome.debugger API. This is required to debug extension background "
1304 "pages.";
1305
1306const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1307const char kSimpleCacheBackendDescription[] =
1308 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1309 "disk space allocation.";
1310
1311const char kSimplifiedFullscreenUiName[] =
1312 "Simplified full screen / mouse lock UI.";
1313const char kSimplifiedFullscreenUiDescription[] =
1314 "A simplified new user experience when entering page-triggered full screen "
1315 "or mouse pointer lock states.";
1316
1317const char kSingleClickAutofillName[] = "Single-click autofill";
1318const char kSingleClickAutofillDescription[] =
1319 "Make autofill suggestions on initial mouse click on a form element.";
1320
Brett Wilsonecb80982017-07-12 20:34:511321const char kSitePerProcessName[] = "Strict site isolation";
1322const char kSitePerProcessDescription[] =
Nasko Oskov6042073fe2017-12-08 20:35:171323 "Experimental security mode that ensures each renderer process "
Brett Wilsonecb80982017-07-12 20:34:511324 "contains pages from at most one site. In this mode, out-of-process "
1325 "iframes will be used whenever an iframe is cross-site.";
1326
1327const char kSiteSettings[] = "Site settings with All sites and Site details";
1328const char kSiteSettingsDescription[] =
1329 "Adds new ways of viewing Site settings.";
1330
1331const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
1332const char kSlimmingPaintInvalidationDescription[] =
1333 "Whether to enable a new paint invalidation system.";
1334
1335const char kSmoothScrollingName[] = "Smooth Scrolling";
1336const char kSmoothScrollingDescription[] =
1337 "Animate smoothly when scrolling page content.";
1338
1339const char kSoftwareRasterizerName[] = "3D software rasterizer";
1340const char kSoftwareRasterizerDescription[] =
1341 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1342
Tommy Steimel77704be2017-08-28 22:14:401343const char kSoundContentSettingName[] = "Sound content setting";
1344const char kSoundContentSettingDescription[] =
1345 "Enable site-wide muting in content settings and tab strip context menu.";
1346
Alexandr Ilinf0500ed32017-09-27 21:12:361347const char kSpeculativePreconnectName[] = "Enable new preconnect predictor";
1348const char kSpeculativePreconnectDescription[] =
1349 "Enable the new implementation of preconnect and DNS preresolve. "
1350 "\"Learning\" means that only database construction is enabled, "
1351 "\"Preconnect\" enables both learning and preconnect and disables the "
1352 "existing implementation. \"No preconnect\" disables both implementations.";
1353
Brett Wilsonecb80982017-07-12 20:34:511354const char kSpeculativePrefetchName[] = "Speculative Prefetch";
vabr0215a8e2017-03-28 12:47:341355const char kSpeculativePrefetchDescription[] =
1356 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
1357 R"*(load times, based on a local database (see chrome://predictors). )*"
1358 R"*("Learning" means that only the database construction is enabled, )*"
1359 R"*("Prefetching" that learning and prefetching are enabled.)*";
1360
Justin Donnelly4e448cb2017-07-07 21:32:131361const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1362 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131363const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1364 "If enabled, when the user enters text in the omnibox that looks like a "
1365 "a query, any service worker associated with the search engine the query "
1366 "will be sent to is started early.";
1367
Brett Wilsonecb80982017-07-12 20:34:511368const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1369const char kSpellingFeedbackFieldTrialDescription[] =
1370 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401371
Shubhie Panickerfaf082ed2018-01-03 04:49:151372const char kStopInBackgroundName[] = "Stop in background";
1373const char kStopInBackgroundDescription[] =
1374 "Stop scheduler task queues, in the background, "
1375 " after certain grace time.";
1376
1377const char kStopLoadingInBackgroundName[] = "Stop loading in background";
1378const char kStopLoadingInBackgroundDescription[] =
1379 "Stop loading tasks and loading "
1380 "resources, in the background, after certain grace time.";
1381
Brett Wilsonecb80982017-07-12 20:34:511382const char kSuggestionsWithSubStringMatchName[] =
1383 "Substring matching for Autofill suggestions";
1384const char kSuggestionsWithSubStringMatchDescription[] =
1385 "Match Autofill suggestions based on substrings (token prefixes) rather "
1386 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341387
Brett Wilsonecb80982017-07-12 20:34:511388const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1389const char kSyncSandboxDescription[] =
1390 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341391
Brett Wilsonecb80982017-07-12 20:34:511392const char kTabAudioMutingName[] = "Tab audio muting UI control";
1393const char kTabAudioMutingDescription[] =
1394 "When enabled, the audio indicators in the tab strip double as tab audio "
1395 "mute controls. This also adds commands in the tab context menu for "
1396 "quickly muting multiple selected tabs.";
vabr0215a8e2017-03-28 12:47:341397
Christian Dullweberd0d96f02017-09-13 09:22:511398const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1399const char kTabsInCbdDescription[] =
1400 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1401
Becky Zhou99c22802017-10-19 05:09:271402const char kTabModalJsDialogName[] = "Auto-dismissing JavaScript Dialogs";
1403const char kTabModalJsDialogDescription[] =
1404 "If enabled, the JavaScript dialog will be auto dismissable when switching"
1405 " tab.";
1406
Brett Wilsonecb80982017-07-12 20:34:511407const char kTcpFastOpenName[] = "TCP Fast Open";
1408const char kTcpFastOpenDescription[] =
1409 "Enable the option to send extra authentication information in the initial "
1410 "SYN packet for a previously connected client, allowing faster data send "
1411 "start.";
vabr0215a8e2017-03-28 12:47:341412
Daniele Castagna0fead93e2018-01-10 20:40:291413const char kTintGlCompositedContentName[] = "Tint GL-composited content";
1414const char kTintGlCompositedContentDescription[] =
1415 "Tint contents composited using GL with a shade of red to help debug and "
1416 "study overlay support.";
1417
Brett Wilsonecb80982017-07-12 20:34:511418const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
1419const char kTopChromeMdDescription[] =
1420 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
1421const char kTopChromeMdMaterial[] = "Normal";
Eugene Girard42dedf722017-10-12 21:07:531422const char kTopChromeMdMaterialAuto[] = "Auto";
Brett Wilsonecb80982017-07-12 20:34:511423const char kTopChromeMdMaterialHybrid[] = "Touch";
vabr0215a8e2017-03-28 12:47:341424
Brett Wilsonecb80982017-07-12 20:34:511425const char kThreadedScrollingName[] = "Threaded scrolling";
1426const char kThreadedScrollingDescription[] =
1427 "Threaded handling of scroll-related input events. Disabling this will "
1428 "force all such scroll events to be handled on the main thread. Note that "
1429 "this can dramatically hurt scrolling performance of most websites and is "
1430 "intended for testing purposes only.";
1431
Steven Valdez4584b2482017-07-14 01:11:571432const char kTLS13VariantName[] = "TLS 1.3";
1433const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1434const char kTLS13VariantDisabled[] = "Disabled";
Steven Valdez57d88652017-10-05 21:05:111435const char kTLS13VariantDeprecated[] = "Disabled (Deprecated Setting)";
Steven Valdez49408842017-12-13 18:34:481436const char kTLS13VariantDraft22[] = "Enabled (Draft 22)";
Steven Valdez781157b2018-01-11 13:32:041437const char kTLS13VariantDraft23[] = "Enabled (Draft 23)";
Steven Valdezf00f8782017-09-13 18:05:281438const char kTLS13VariantExperiment2[] = "Enabled (Experiment 2)";
Steven Valdez4584b2482017-07-14 01:11:571439
Brett Wilsonecb80982017-07-12 20:34:511440const char kTopDocumentIsolationName[] = "Top document isolation";
1441const char kTopDocumentIsolationDescription[] =
1442 "Highly experimental performance mode where cross-site iframes are kept in "
1443 "a separate process from the top document. In this mode, iframes from "
1444 "different third-party sites will be allowed to share a process.";
1445
Dominick Ng8896b1cd2017-10-17 23:24:361446const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement";
1447const char kTopSitesFromSiteEngagementDescription[] =
1448 "Enable Top Sites on the New Tab Page to be sourced and sorted using site "
1449 "engagement.";
1450
Brett Wilsonecb80982017-07-12 20:34:511451const char kTouchAdjustmentName[] = "Touch adjustment";
1452const char kTouchAdjustmentDescription[] =
1453 "Refine the position of a touch gesture in order to compensate for touches "
1454 "having poor resolution compared to a mouse.";
1455
1456const char kTouchDragDropName[] = "Touch initiated drag and drop";
1457const char kTouchDragDropDescription[] =
1458 "Touch drag and drop can be initiated through long press on a draggable "
1459 "element.";
1460
1461const char kTouchEventsName[] = "Touch Events API";
1462const char kTouchEventsDescription[] =
1463 "Force Touch Events API feature detection to always be enabled or "
1464 "disabled, or to be enabled when a touchscreen is detected on startup "
Ella Gea6a203c92017-10-26 19:09:291465 "(Automatic).";
Brett Wilsonecb80982017-07-12 20:34:511466
1467const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1468const char kTouchSelectionStrategyDescription[] =
1469 "Controls how text selection granularity changes when touch text selection "
1470 "handles are dragged. Non-default behavior is experimental.";
1471const char kTouchSelectionStrategyCharacter[] = "Character";
1472const char kTouchSelectionStrategyDirection[] = "Direction";
1473
1474const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1475const char kTraceUploadUrlDescription[] =
1476 "This is to be used in conjunction with the enable-navigation-tracing "
1477 "flag. Please select the label that best describes the recorded traces. "
1478 "This will choose the destination the traces are uploaded to. If you are "
1479 "not sure, select other. If left empty, no traces will be uploaded.";
1480const char kTraceUploadUrlChoiceOther[] = "Other";
1481const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1482const char kTraceUploadUrlChoiceQa[] = "QA";
1483const char kTraceUploadUrlChoiceTesting[] = "Testing";
1484
Philippe Hamel7fdaa452017-09-29 17:22:491485const char kTranslateRankerEnforcementName[] =
1486 "Enforce TranslateRanker decisions";
1487const char kTranslateRankerEnforcementDescription[] =
1488 "Improved Translate UI triggering logic. TranslateRanker decides whether "
1489 "or not Translate UI should be triggered in a given context.";
1490
Brett Wilsonecb80982017-07-12 20:34:511491const char kTrySupportedChannelLayoutsName[] =
1492 "Causes audio output streams to check if channel layouts other than the "
1493 "default hardware layout are available.";
1494const char kTrySupportedChannelLayoutsDescription[] =
1495 "Causes audio output streams to check if channel layouts other than the "
1496 "default hardware layout are available. Turning this on will allow the OS "
1497 "to do stereo to surround expansion if supported. May expose third party "
1498 "driver bugs, use with caution.";
1499
1500const char kUiPartialSwapName[] = "Partial swap";
1501const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1502
Chris Pickel3a227ae62017-08-24 10:47:261503const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1504const char kUseDdljsonApiDescription[] =
1505 "Enables the new ddljson API to fetch Doodles for the NTP.";
1506
Becca Hughes59c05b42017-11-03 13:11:581507const char kUseModernMediaControlsName[] = "New Media Controls";
1508const char kUseModernMediaControlsDescription[] =
1509 "Enables the new style native media controls.";
1510
Mustaq Ahmedc646c0a2017-10-20 20:08:301511const char kUserActivationV2Name[] = "User Activation v2";
1512const char kUserActivationV2Description[] =
1513 "Enable simple user activation for APIs that are otherwise controlled by "
1514 "user gesture tokens.";
1515
Brett Wilsonecb80982017-07-12 20:34:511516const char kUserConsentForExtensionScriptsName[] =
1517 "User consent for extension scripts";
1518const char kUserConsentForExtensionScriptsDescription[] =
1519 "Require user consent for an extension running a script on the page, if "
1520 "the extension requested permission to run on all urls.";
1521
1522const char kUseSuggestionsEvenIfFewFeatureName[] =
1523 "Disable minimum for server-side tile suggestions on NTP.";
1524const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1525 "Request server-side suggestions even if there are only very few of them "
1526 "and use them for tiles on the New Tab Page.";
1527
1528const char kV8CacheOptionsName[] = "V8 caching mode.";
1529const char kV8CacheOptionsDescription[] =
1530 "Caching mode for the V8 JavaScript engine.";
1531const char kV8CacheOptionsParse[] = "Cache V8 parser data.";
1532const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1533
Hitoshi Yoshida3e5db562017-09-11 02:31:081534const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts.";
1535const char kV8ContextSnapshotDescription[] =
1536 "Sets to use a snapshot to create V8 contexts in frame creation.";
1537
Michael Hablich896d52662017-10-23 15:59:571538const char kV8VmFutureName[] = "Future V8 VM features";
1539const char kV8VmFutureDescription[] =
1540 "This enables upcoming and experimental V8 VM features. "
1541 "This flag does not enable experimental JavaScript features.";
1542
Brett Wilsonecb80982017-07-12 20:34:511543const char kVibrateRequiresUserGestureName[] =
1544 "Requiring user gesture for the Vibration API";
1545const char kVibrateRequiresUserGestureDescription[] =
1546 "Block the Vibration API if no user gesture has been received on the frame "
1547 "or any embedded frame.";
1548
1549const char kVideoFullscreenOrientationLockName[] =
1550 "Lock screen orientation when playing a video fullscreen.";
1551const char kVideoFullscreenOrientationLockDescription[] =
1552 "Lock the screen orientation of the device to match video orientation when "
1553 "a video goes fullscreen. Only on phones.";
1554
1555const char kVideoRotateToFullscreenName[] =
1556 "Rotate-to-fullscreen gesture for videos.";
1557const char kVideoRotateToFullscreenDescription[] =
1558 "Enter/exit fullscreen when device is rotated to/from the orientation of "
1559 "the video. Only on phones.";
1560
1561const char kWalletServiceUseSandboxName[] =
1562 "Use Google Payments sandbox servers";
1563const char kWalletServiceUseSandboxDescription[] =
1564 "For developers: use the sandbox service for Google Payments API calls.";
1565
Brett Wilsonecb80982017-07-12 20:34:511566const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
1567const char kWebglDraftExtensionsDescription[] =
1568 "Enabling this option allows web applications to access the WebGL "
1569 "Extensions that are still in draft status.";
1570
1571const char kWebMidiName[] = "Web MIDI API";
1572const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1573
1574const char kWebPaymentsName[] = "Web Payments";
1575const char kWebPaymentsDescription[] =
1576 "Enable Web Payments API integration, a JavaScript API for merchants.";
1577
Mathieu Perreault51339b82017-07-20 17:06:051578const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
1579const char kWebPaymentsModifiersDescription[] =
1580 "If the website provides modifiers in the payment request, show the custom "
1581 "total for each payment instrument, update the shopping cart when "
1582 "instruments are switched, and send modified payment method specific data "
1583 "to the payment app.";
1584
Brett Wilsonecb80982017-07-12 20:34:511585const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
1586const char kWebrtcEchoCanceller3Description[] =
1587 "Experimental WebRTC echo canceller (AEC3).";
1588
1589const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
1590const char kWebrtcHwDecodingDescription[] =
1591 "Support in WebRTC for decoding video streams using platform hardware.";
1592
1593const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
1594const char kWebrtcHwEncodingDescription[] =
1595 "Support in WebRTC for encoding video streams using platform hardware.";
1596
1597const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
1598const char kWebrtcHwH264EncodingDescription[] =
1599 "Support in WebRTC for encoding h264 video streams using platform "
1600 "hardware.";
1601
1602const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
1603const char kWebrtcHwVP8EncodingDescription[] =
1604 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
1605
1606const char kWebrtcSrtpAesGcmName[] =
1607 "Negotiation with GCM cipher suites for SRTP in WebRTC";
1608const char kWebrtcSrtpAesGcmDescription[] =
1609 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
1610
Joachim Bauch4a41d7512017-08-23 14:24:231611const char kWebrtcSrtpEncryptedHeadersName[] =
1612 "Negotiation with encrypted header extensions for SRTP in WebRTC";
1613const char kWebrtcSrtpEncryptedHeadersDescription[] =
1614 "When enabled, WebRTC will try to negotiate encrypted header extensions "
1615 "for SRTP.";
1616
Brett Wilsonecb80982017-07-12 20:34:511617const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
1618const char kWebrtcStunOriginDescription[] =
1619 "When enabled, Stun messages generated by WebRTC will contain the Origin "
1620 "header.";
1621
1622const char kWebvrName[] = "WebVR";
1623const char kWebvrDescription[] =
David Dorwin5a496c32017-11-17 01:45:051624 "Allow web applications to access experimental "
Brandon Jonese9d9b2b2017-12-11 22:20:111625 "Virtual Reality functionality via the WebVR 1.1 API. This feature will "
1626 "eventually be replaced by the WebXR Device API. Warning: Enabling this "
1627 "will also allow WebVR content on insecure origins to access these "
1628 "powerful APIs, and may pose a security risk.";
Brett Wilsonecb80982017-07-12 20:34:511629
Brandon Jonese9d9b2b2017-12-11 22:20:111630const char kWebXrName[] = "WebXR Device API";
1631const char kWebXrDescription[] =
1632 "Allow web applications to access experimental APIs to interact with "
1633 "Virtual Reality (VR) and Augmented Reality (AR) devices.";
1634
Anna Maria57ecf7592018-01-12 03:10:401635const char kWebXrOrientationSensorDeviceName[] =
1636 "WebXR orientation sensor device";
1637const char kWebXrOrientationSensorDeviceDescription[] =
1638 "When no VR platform device is available, expose a non-presenting device "
1639 "based on the device's orientation sensors, if available.";
1640
Brett Wilsonecb80982017-07-12 20:34:511641const char kWifiCredentialSyncName[] = "WiFi credential sync";
1642const char kWifiCredentialSyncDescription[] =
1643 "Enables synchronizing WiFi network settings across devices. When enabled, "
1644 "the WiFi credential datatype is registered with Chrome Sync, and WiFi "
1645 "credentials are synchronized subject to user preferences. (See also, "
1646 "chrome://settings/syncSetup.)";
1647
1648const char kZeroCopyName[] = "Zero-copy rasterizer";
1649const char kZeroCopyDescription[] =
1650 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:341651
Brett Wilsonff596952017-07-14 01:06:551652// Android ---------------------------------------------------------------------
1653
1654#if defined(OS_ANDROID)
1655
1656const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
1657const char kAiaFetchingDescription[] =
1658 "Enable intermediate certificate fetching when a server does not provide "
1659 "sufficient certificates to build a chain to a trusted root.";
1660
1661const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
1662const char kAccessibilityTabSwitcherDescription[] =
1663 "Enable the accessibility tab switcher for Android.";
1664
Wei-Yin Chen (陳威尹)80683452017-10-02 19:08:251665const char kAllowReaderForAccessibilityName[] = "Reader Mode for Accessibility";
1666const char kAllowReaderForAccessibilityDescription[] =
1667 "Allows Reader Mode on any articles, even if the page is mobile-friendly.";
1668
Brett Wilsonff596952017-07-14 01:06:551669const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
1670const char kAndroidAutofillAccessibilityDescription[] =
1671 "Enable accessibility for autofill popup.";
1672
1673const char kAndroidPaymentAppsName[] = "Android payment apps";
1674const char kAndroidPaymentAppsDescription[] =
1675 "Enable third party Android apps to integrate as payment apps";
1676
Tatiana Gornak38ab3562017-07-28 11:04:181677const char kAndroidViewPasswordsName[] = "Copy and view passwords for Android";
1678const char kAndroidViewPasswordsDescription[] =
1679 "Enables copying and viewing passwords in settings.";
1680
Brett Wilsonff596952017-07-14 01:06:551681const char kAutofillAccessoryViewName[] =
1682 "Autofill suggestions as keyboard accessory view";
1683const char kAutofillAccessoryViewDescription[] =
1684 "Shows Autofill suggestions on top of the keyboard rather than in a "
1685 "dropdown.";
1686
1687const char kBackgroundLoaderForDownloadsName[] =
1688 "Enables background downloading of pages.";
1689const char kBackgroundLoaderForDownloadsDescription[] =
1690 "Enables downloading pages in the background in case page is not yet "
1691 "loaded in current tab.";
1692
Theresa Wellingtonb9243b22017-12-01 16:23:051693const char kChromeHomeName[] = "Chrome Home";
1694const char kChromeHomeDescription[] =
1695 "Enables Chrome Home on Android. You must restart the browser"
1696 " twice for changes to take effect.";
1697
1698const char kChromeHomeBottomNavLabelsName[] =
1699 "Chrome Home bottom navigation menu item labels.";
1700const char kChromeHomeBottomNavLabelsDescription[] =
1701 "Enables text labels for Chrome Home bottom navigation menu items.";
1702
1703const char kChromeHomeClearUrlOnOpenName[] = "Chrome Home clear url on open";
1704const char kChromeHomeClearUrlOnOpenDescription[] =
1705 "Clear omnibox URL when the bottom sheet is opened.";
1706
Daniel Park825a16f32017-12-08 00:44:261707const char kChromeHomeEnableSurveyName[] = "Enable Chrome Home survey";
1708const char kChromeHomeEnableSurveyDescription[] =
1709 "If enabled, the survey process will allow surveys using sample "
1710 "parameters.";
1711
Theresa Wellingtonb9243b22017-12-01 16:23:051712const char kChromeHomeInactivitySheetExpansionName[] =
1713 "Expansion of Chrome Home bottom sheet on startup";
1714const char kChromeHomeInactivitySheetExpansionDescription[] =
1715 "Expand bottom sheet on startup in Chrome Home after a period of"
1716 " inactivity.";
1717
Matthew Joneseab91aa2017-12-19 16:12:421718const char kChromeHomeMenuItemsName[] =
1719 "Show bookmarks, downloads, and history menu items in Chrome Home";
1720const char kChromeHomeMenuItemsDescription[] =
1721 "Shows bookmarks, downloads, and history menu items in the overflow menu"
1722 " when Chrome Home is enabled. These items will open the bottom sheet to"
1723 " show the desired content.";
1724
Theresa Wellington82d6f6ef2017-10-12 02:39:131725const char kChromeHomeOptOutSnackbarName[] = "Chrome Home Opt-out Snackbar";
1726const char kChromeHomeOptOutSnackbarDescription[] =
1727 "Show a snackbar prompting users to take a survey the first time they"
1728 " opt-out of Chrome Home";
1729
Theresa Wellingtonc4cff8a12017-11-28 04:13:181730const char kChromeHomePersistentIphName[] = "Chrome Home Persistent Iph";
1731const char kChromeHomePersistentIphDescription[] =
1732 "Wait to dismiss the Chrome Home IPH until the user inteacts with the "
1733 "toolbar or a timer expires.";
1734
Theresa Wellingtondd71c5c2017-10-02 15:50:381735const char kChromeHomePersonalizedOmniboxSuggestionsName[] =
1736 "Chrome Home Personalized Omnibox Suggestions";
1737const char kChromeHomePersonalizedOmniboxSuggestionsDescription[] =
1738 "Enable personalized omnibox suggestions on focus for Chrome Home.";
1739
Matthew Jones4214d2a12017-09-28 18:35:111740const char kChromeHomePromoName[] = "Chrome Home Promo";
1741const char kChromeHomePromoDescription[] =
Matthew Jonesdcdf51b2017-10-12 20:02:331742 "Enable showing the opt-in/out Chrome Home promo.";
Matthew Jones4214d2a12017-09-28 18:35:111743
Theresa Wellington13977c832017-12-13 16:59:111744const char kChromeHomePullToRefreshIphAtTopName[] =
1745 "Chrome Home Pull-To-Refresh Iph At Top";
1746const char kChromeHomePullToRefreshIphAtTopDescription[] =
1747 "Show the Chrome Home pull-to-refresh help bubble at the top of the screen";
1748
Theresa Wellington306c4cdc2017-12-07 16:43:081749const char kChromeHomeShowGoogleGName[] = "Chrome Home Show Google G";
1750const char kChromeHomeShowGoogleGDescription[] =
1751 "Show the Google G when the url is cleared. The flag to clear the url "
1752 "when the sheet is opened must also be set.";
1753
Brett Wilsonff596952017-07-14 01:06:551754const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1755const char kChromeHomeSwipeLogicDescription[] =
1756 "Various swipe logic options for Chrome Home for sheet expansion.";
1757const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
Matthew Jonesbe384ee42017-10-31 19:57:151758const char kChromeHomeSwipeLogicVelocity[] = "Velocity suppression model";
Brett Wilsonff596952017-07-14 01:06:551759
Megan Jablonskic61eb1b82017-10-02 18:03:061760const char kChromeMemexName[] = "Chrome Memex";
1761const char kChromeMemexDescription[] =
1762 "Enables Chrome Memex homepage on Android. Restricted to opted-in "
1763 "Googlers.";
1764
Sarath Singapati83aef1c2017-11-16 15:54:521765const char kClearOldBrowsingDataName[] = "Clear older browsing data";
1766const char kClearOldBrowsingDataDescription[] =
1767 "Enables clearing of browsing data which is older than a given time "
1768 "period.";
1769
Brett Wilsonff596952017-07-14 01:06:551770const char kContentSuggestionsCategoryOrderName[] =
1771 "Default content suggestions category order (e.g. on NTP)";
1772const char kContentSuggestionsCategoryOrderDescription[] =
1773 "Set default order of content suggestion categories (e.g. on the NTP).";
1774
1775const char kContentSuggestionsCategoryRankerName[] =
1776 "Content suggestions category ranker (e.g. on NTP)";
1777const char kContentSuggestionsCategoryRankerDescription[] =
1778 "Set category ranker to order categories of content suggestions (e.g. on "
1779 "the NTP).";
1780
Vitalii Iarkof52ff802017-09-14 12:34:241781const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
1782const char kContentSuggestionsDebugLogDescription[] =
1783 "Enable content suggestions debug log accessible through "
1784 "snippets-internals.";
1785
Donn Denman8e58ead2017-11-04 01:44:011786const char kContextualSearchMlTapSuppressionName[] =
1787 "Contextual Search ML tap suppression";
1788const char kContextualSearchMlTapSuppressionDescription[] =
1789 "Enables tap gestures to be suppressed to improve CTR by applying machine "
Donn Denman59729812018-01-09 01:27:021790 "learning. The \"Contextual Search Ranker prediction\" flag must also be "
1791 "enabled!";
Brett Wilsonff596952017-07-14 01:06:551792
1793const char kContextualSearchName[] = "Contextual Search";
1794const char kContextualSearchDescription[] =
1795 "Whether or not Contextual Search is enabled.";
1796
Donn Denman59729812018-01-09 01:27:021797const char kContextualSearchRankerQueryName[] =
1798 "Contextual Search Ranker prediction";
1799const char kContextualSearchRankerQueryDescription[] =
1800 "Enables prediction of tap gestures using Assist-Ranker machine learning.";
1801
1802const char kContextualSearchSecondTapName[] =
1803 "Contextual Search second tap triggering";
1804const char kContextualSearchSecondTapDescription[] =
1805 "Enables triggering on a second tap gesture even when Ranker would "
1806 "normally suppress that tap.";
1807
Dmitry Skiba9c3efa72017-07-20 22:01:141808const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
1809const char kDontPrefetchLibrariesDescription[] =
1810 "Don't prefetch libraries after loading.";
1811
Joy Ming5fd29ca62017-10-02 22:51:221812const char kDownloadsForegroundName[] = "Enable downloads foreground";
1813const char kDownloadsForegroundDescription[] =
1814 "Enable downloads as a foreground service for all versions of Android.";
1815
Joy Ming189b0cc2017-12-08 19:42:431816const char kDownloadsLocationChangeName[] = "Enable downloads location change";
1817const char kDownloadsLocationChangeDescription[] =
1818 "Enable changing default downloads storage location on Android.";
1819
Brett Wilsonff596952017-07-14 01:06:551820const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
1821const char kEnableAndroidPayIntegrationV1Description[] =
1822 "Enable integration with Android Pay using the first version of the API";
1823
1824const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
1825const char kEnableAndroidPayIntegrationV2Description[] =
1826 "Enable integration with Android Pay using the second version of the API";
1827
Vitalii Iarkof4ed32d2017-09-26 13:15:531828const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
Brett Wilsonff596952017-07-14 01:06:551829const char kEnableAndroidSpellcheckerDescription[] =
1830 "Enables use of the Android spellchecker.";
Brett Wilsonff596952017-07-14 01:06:551831
Vitalii Iarkof4ed32d2017-09-26 13:15:531832const char kEnableContentSuggestionsNewFaviconServerName[] =
1833 "Get favicons for content suggestions from a new server.";
1834const char kEnableContentSuggestionsNewFaviconServerDescription[] =
1835 "If enabled, the content suggestions (on the NTP) will get favicons from a "
1836 "new favicon server.";
Brett Wilsonff596952017-07-14 01:06:551837
1838const char kEnableContentSuggestionsSettingsName[] =
1839 "Show content suggestions settings.";
1840const char kEnableContentSuggestionsSettingsDescription[] =
1841 "If enabled, the content suggestions settings will be available from the "
1842 "main settings menu.";
1843
Vitalii Iarkof4ed32d2017-09-26 13:15:531844const char kEnableContentSuggestionsThumbnailDominantColorName[] =
1845 "Use content suggestions thumbnail dominant color.";
1846const char kEnableContentSuggestionsThumbnailDominantColorDescription[] =
1847 "Use content suggestions thumbnail dominant color as a placeholder before "
1848 "the real thumbnail is fetched (requires Chrome Home).";
1849
Brett Wilsonff596952017-07-14 01:06:551850const char kEnableCopylessPasteName[] = "App Indexing (Copyless Paste)";
1851const char kEnableCopylessPasteDescription[] =
1852 "Provide suggestions for text input, based on your recent context. For "
1853 "example, if you looked at a restaurant website and switched to the Maps "
1854 "app, the keyboard would offer the name of that restaurant as a suggestion "
1855 "to enter into the search bar. The data is indexed locally, and never sent "
1856 "to the server. It's disabled in incognito mode.";
1857
1858const char kEnableCustomContextMenuName[] = "Enable custom context menu";
1859const char kEnableCustomContextMenuDescription[] =
1860 "Enables a new context menu when a link, image, or video is pressed within "
1861 "Chrome.";
1862
1863const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
1864const char kEnableCustomFeedbackUiDescription[] =
1865 "Enables a custom feedback UI when submitting feedback through Google "
1866 "Feedback. Works with Google Play Services v10.2+";
1867
1868const char kEnableDataReductionProxyMainMenuName[] =
Theresa Wellington141e4af2017-10-23 20:28:471869 "Enable Data Saver main menu item";
Brett Wilsonff596952017-07-14 01:06:551870const char kEnableDataReductionProxyMainMenuDescription[] =
Theresa Wellington141e4af2017-10-23 20:28:471871 "Enables the Data Saver menu item in the main menu";
Brett Wilsonff596952017-07-14 01:06:551872
Brett Wilsonff596952017-07-14 01:06:551873const char kEnableOmniboxClipboardProviderName[] =
1874 "Omnibox clipboard URL suggestions";
1875const char kEnableOmniboxClipboardProviderDescription[] =
1876 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
1877 "focus in the omnibox.";
1878
1879const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
1880 "Use expanded autofill credit card popup layout.";
1881const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
1882 "If enabled, displays autofill credit card popup using expanded layout.";
1883
Brett Wilsonff596952017-07-14 01:06:551884const char kEnableNtpAssetDownloadSuggestionsName[] =
1885 "Show asset downloads on the New Tab page";
1886const char kEnableNtpAssetDownloadSuggestionsDescription[] =
1887 "If enabled, the list of content suggestions on the New Tab page will "
1888 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
1889 "later use.";
1890
1891const char kEnableNtpBookmarkSuggestionsName[] =
1892 "Show recently visited bookmarks on the New Tab page";
1893const char kEnableNtpBookmarkSuggestionsDescription[] =
1894 "If enabled, the list of content suggestions on the New Tab page will "
1895 "contain recently visited bookmarks.";
1896
1897const char kEnableNtpForeignSessionsSuggestionsName[] =
1898 "Show recent foreign tabs on the New Tab page";
1899const char kEnableNtpForeignSessionsSuggestionsDescription[] =
1900 "If enabled, the list of content suggestions on the New Tab page will "
1901 "contain recent foreign tabs.";
1902
Brett Wilsonff596952017-07-14 01:06:551903const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
1904 "Show offline page downloads on the New Tab page";
1905const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
1906 "If enabled, the list of content suggestions on the New Tab page will "
1907 "contain pages that the user downloaded for later use.";
1908
1909const char kEnableNtpRemoteSuggestionsName[] =
1910 "Show server-side suggestions on the New Tab page";
1911const char kEnableNtpRemoteSuggestionsDescription[] =
1912 "If enabled, the list of content suggestions on the New Tab page will "
1913 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
1914 "allows to override the source used to retrieve these server-side "
1915 "suggestions.";
1916
1917const char kEnableNtpSnippetsVisibilityName[] =
1918 "Make New Tab Page Snippets more visible.";
1919const char kEnableNtpSnippetsVisibilityDescription[] =
1920 "If enabled, the NTP snippets will become more discoverable with a larger "
1921 "portion of the first card above the fold.";
1922
1923const char kEnableNtpSuggestionsNotificationsName[] =
1924 "Notify about new content suggestions available at the New Tab page";
1925const char kEnableNtpSuggestionsNotificationsDescription[] =
1926 "If enabled, notifications will inform about new content suggestions on "
1927 "the New Tab page.";
1928
1929const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
1930const char kEnablePhysicalWebDescription[] =
1931 "Enable scanning for URLs from Physical Web objects.";
1932
1933const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1934const char kEnableOfflinePreviewsDescription[] =
1935 "Enable showing offline page previews on slow networks.";
1936
1937const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
1938const char kEnableOskOverscrollDescription[] =
1939 "Enable OSK overscroll support. With this flag on, the OSK will only "
1940 "resize the visual viewport.";
1941
1942const char kEnableSpecialLocaleName[] =
1943 "Enable custom logic for special locales.";
1944const char kEnableSpecialLocaleDescription[] =
1945 "Enable custom logic for special locales. In this mode, Chrome might "
1946 "behave differently in some locales.";
1947
Brett Wilsonff596952017-07-14 01:06:551948const char kEnableWebNfcName[] = "WebNFC";
1949const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
1950
gogeraldf3cbb422017-07-26 14:37:121951const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
1952 "Enable Web Payments method section order V2.";
1953const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
1954 "Enable this option to display payment method section above address "
1955 "section instead of below it.";
1956
Brett Wilsonff596952017-07-14 01:06:551957const char kEnableWebPaymentsSingleAppUiSkipName[] =
1958 "Enable Web Payments single app UI skip";
1959const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
1960 "Enable Web Payments to skip showing its UI if the developer specifies a "
1961 "single app.";
1962
Raymes Khoury582b43132017-12-12 23:54:301963const char kGrantNotificationsToDSEName[] =
1964 "Grant notifications to the Default Search Engine";
1965const char kGrantNotificationsToDSENameDescription[] =
1966 "Automatically grant the notifications permission to the Default Search "
1967 "Engine";
1968
Brett Wilsonff596952017-07-14 01:06:551969const char kKeepPrefetchedContentSuggestionsName[] =
1970 "Keep prefetched content suggestions";
1971const char kKeepPrefetchedContentSuggestionsDescription[] =
1972 "If enabled, some of prefetched content suggestions are not replaced by "
1973 "the new fetched suggestions.";
1974
Leo Zhang051b75482017-12-20 03:28:301975const char kLanguagesPreferenceName[] = "Language Settings";
1976const char kLanguagesPreferenceDescription[] =
1977 "Enable this option for Language Settings feature on Android.";
1978
Brett Wilsonff596952017-07-14 01:06:551979const char kLsdPermissionPromptName[] =
1980 "Location Settings Dialog Permission Prompt";
1981const char kLsdPermissionPromptDescription[] =
1982 "Whether to use the Google Play Services Location Settings Dialog "
1983 "permission dialog.";
1984
Brett Wilsonff596952017-07-14 01:06:551985const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
1986const char kMediaScreenCaptureDescription[] =
1987 "Enable this option for experimental ScreenCapture feature on Android.";
1988
1989const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
1990const char kModalPermissionPromptsDescription[] =
1991 "Whether to use permission dialogs in place of permission infobars.";
1992
Brett Wilsonff596952017-07-14 01:06:551993const char kNewPhotoPickerName[] = "Enable new Photopicker";
1994const char kNewPhotoPickerDescription[] =
1995 "Activates the new picker for selecting photos.";
1996
1997const char kNoCreditCardAbort[] = "No Credit Card Abort";
1998const char kNoCreditCardAbortDescription[] =
1999 "Whether or not the No Credit Card Abort is enabled.";
2000
2001const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
2002const char kNtpCondensedLayoutDescription[] =
2003 "Show a condensed layout on the New Tab Page.";
2004
2005const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
2006const char kNtpCondensedTileLayoutDescription[] =
2007 "Show a condensed tile layout on the New Tab Page.";
2008
Michael van Ouwerkerkcdbbe332017-11-24 15:07:062009const char kNtpModernLayoutName[] = "Modern NTP layout";
2010const char kNtpModernLayoutDescription[] =
2011 "Show a modern layout on the New Tab Page.";
2012
Nicolas Dossou-gbete56f37dc2017-08-10 16:14:042013const char kSiteExplorationUiName[] = "Site Exploration UI";
2014const char kSiteExplorationUiDescription[] =
2015 "Show site suggestions in the Exploration UI";
2016
Brett Wilsonff596952017-07-14 01:06:552017const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
2018const char kNtpGoogleGInOmniboxDescription[] =
2019 "Show a Google G in the omnibox on the New Tab Page.";
2020
Yoland Yan99d89cf62018-01-10 20:38:322021const char kNtpPopularSitesName[] = "Show popular sites on the New Tab page";
2022const char kNtpPopularSitesDescription[] =
2023 "Pre-populate the New Tab page with popular sites.";
2024
Brett Wilsonff596952017-07-14 01:06:552025const char kOfflineBookmarksName[] = "Enable offline bookmarks";
2026const char kOfflineBookmarksDescription[] =
2027 "Enable saving bookmarked pages for offline viewing.";
2028
Brett Wilsonff596952017-07-14 01:06:552029const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2030const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2031
2032const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
2033const char kOfflinePagesCtV2Description[] =
2034 "V2 features include attributing pages to the app that initiated the "
2035 "custom tabs, and being able to query for pages by page attribution.";
2036
Carlos Knippschild09272ecd2017-12-09 03:29:362037const char kOfflinePagesLimitlessPrefetchingName[] =
2038 "Removes resource usage limits for the prefetching of offline pages.";
2039const char kOfflinePagesLimitlessPrefetchingDescription[] =
2040 "Allows the prefetching of suggested offline pages to ignore resource "
2041 "usage limits. This allows it to completely ignore data usage limitations "
2042 "and allows downloads to happen with any kind of connection.";
2043
Brett Wilsonff596952017-07-14 01:06:552044const char kOfflinePagesLoadSignalCollectingName[] =
2045 "Enables collecting load timing data for offline page snapshots.";
2046const char kOfflinePagesLoadSignalCollectingDescription[] =
2047 "Enables loading completeness data collection while writing an offline "
2048 "page. This data is collected in the snapshotted offline page to allow "
2049 "data analysis to improve deciding when to make the offline snapshot.";
2050
Candice Sy229768e02017-12-21 00:19:222051const char kOfflinePagesDescriptivePendingStatusName[] =
2052 "Enables descriptive pending download status text.";
2053const char kOfflinePagesDescriptivePendingStatusDescription[] =
2054 "Enables pending download status text in notifications and Downloads Home "
2055 "to state the reason the request is pending.";
2056
Brett Wilsonff596952017-07-14 01:06:552057const char kOfflinePagesPrefetchingName[] =
2058 "Enables suggested offline pages to be prefetched.";
2059const char kOfflinePagesPrefetchingDescription[] =
2060 "Enables suggested offline pages to be prefetched, so useful content is "
2061 "available while offline.";
2062
Cathy Li3d5379e2017-09-07 00:11:092063const char kOfflinePagesPrefetchingUIName[] =
2064 "Enables prefetched offline pages to be shown in UI.";
2065const char kOfflinePagesPrefetchingUIDescription[] =
2066 "Enables prefetched offline pages to raise notifications and be shown in "
2067 "download home UI.";
2068
Pete Williamson7845dff2017-09-20 11:06:192069const char kOfflinePagesResourceBasedSnapshotName[] =
2070 "Enables offline page snapshots to be based on percentage of page loaded.";
2071const char kOfflinePagesResourceBasedSnapshotDescription[] =
2072 "Enables offline page snapshots to use a resource percentage based "
2073 "approach for determining when the page is loaded as opposed to a time "
2074 "based approach";
2075
Collin Baker17f92a52017-07-19 21:41:252076const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
2077const char kOfflinePagesRenovationsDescription[] =
2078 "Enables offline page renovations which correct issues with dynamic "
2079 "content that occur when offlining pages that use JavaScript.";
2080
Brett Wilsonff596952017-07-14 01:06:552081const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2082const char kOfflinePagesSharingDescription[] =
2083 "Enables the saved offline pages to be shared via other applications.";
2084
2085const char kOfflinePagesSvelteConcurrentLoadingName[] =
2086 "Enables concurrent background loading on svelte.";
2087const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2088 "Enables concurrent background loading (or downloading) of pages on "
2089 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2090 "happen when the svelte device is idle.";
2091
2092const char kOffliningRecentPagesName[] =
2093 "Enable offlining of recently visited pages";
2094const char kOffliningRecentPagesDescription[] =
2095 "Enable storing recently visited pages locally for offline use. Requires "
2096 "Offline Pages to be enabled.";
2097
Lei Zhang2eca9082017-10-17 20:42:502098const char kPayWithGoogleV1Name[] = "Pay with Google v1";
2099const char kPayWithGoogleV1Description[] =
Brett Wilsonff596952017-07-14 01:06:552100 "Enable Pay with Google integration into Web Payments with API version "
2101 "'1'.";
2102
Matthew Jonesa88b95852017-11-08 23:13:502103const char kProgressBarThrottleName[] = "Android progress update throttling.";
2104const char kProgressBarThrottleDescription[] =
2105 "Limit the maximum progress update to make progress appear smoother.";
2106
Brett Wilsonff596952017-07-14 01:06:552107const char kProgressBarCompletionName[] =
2108 "Android phone page load progress bar completion time.";
2109const char kProgressBarCompletionDescription[] =
2110 "Configures Android phone page loading progress bar completion time.";
2111const char kProgressBarCompletionLoadEvent[] =
2112 R"*(Top loading frame's onload event ("everything" is done in the )*"
2113 R"*(page, historical behavior).)*";
2114const char kProgressBarCompletionResourcesBeforeDcl[] =
2115 "Main frame's domContentLoaded and all resources loads started before "
2116 "domContentLoaded (iframes ignored).";
2117const char kProgressBarCompletionDomContentLoaded[] =
2118 "Main frame's domContentLoaded (iframes ignored).";
2119const char kProgressBarCompletionResourcesBeforeDclAndSameOriginIframes[] =
2120 "domContentLoaded and all resources loads started before domContentLoaded "
2121 "(main frame and same origin iframes).";
2122
2123const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
2124const char kPullToRefreshEffectDescription[] =
2125 "Page reloads triggered by vertically overscrolling content.";
2126
Piotr Swigon7c296ef2017-08-29 04:32:002127const char kPwaImprovedSplashScreenName[] =
2128 "Improved Splash Screen for standalone PWAs";
2129const char kPwaImprovedSplashScreenDescription[] =
2130 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
2131 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:492132const char kPwaPersistentNotificationName[] =
2133 "Persistent notification in standalone PWA";
2134const char kPwaPersistentNotificationDescription[] =
2135 "Enables a persistent Android notification for standalone PWAs";
2136
Brett Wilsonff596952017-07-14 01:06:552137const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
2138const char kReaderModeHeuristicsDescription[] =
2139 "Determines what pages the Reader Mode infobar is shown on.";
2140const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
2141const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
2142const char kReaderModeHeuristicsAllArticles[] = "All articles";
2143const char kReaderModeHeuristicsAlwaysOff[] = "Never";
2144const char kReaderModeHeuristicsAlwaysOn[] = "Always";
2145
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:182146const char kReaderModeInCCTName[] = "Reader Mode in CCT";
2147const char kReaderModeInCCTDescription[] =
2148 "Open Reader Mode in Chrome Custom Tabs.";
2149
Brett Wilsonff596952017-07-14 01:06:552150const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2151const char kSetMarketUrlForTestingDescription[] =
2152 "When enabled, sets the market URL for use in testing the update menu "
2153 "item.";
2154
2155const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
2156const char kSpannableInlineAutocompleteDescription[] =
2157 "A new type of inline autocomplete for the omnibox that works with "
2158 "keyboards that compose text.";
2159
Brett Wilsonff596952017-07-14 01:06:552160const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2161const char kUpdateMenuBadgeDescription[] =
2162 "When enabled, an update badge will be shown on the app menu button.";
2163
2164const char kUpdateMenuItemCustomSummaryDescription[] =
2165 "When this flag and the force show update menu item flag are enabled, a "
2166 "custom summary string will be displayed below the update menu item.";
2167const char kUpdateMenuItemCustomSummaryName[] =
2168 "Update menu item custom summary";
2169
2170const char kUpdateMenuItemName[] = "Force show update menu item";
2171const char kUpdateMenuItemDescription[] =
2172 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
2173 R"*(menu.)*";
2174
Marc Treib93af46a2017-08-23 13:30:002175const char kThirdPartyDoodlesName[] =
2176 "Enable Doodles for third-party search engines";
2177const char kThirdPartyDoodlesDescription[] =
2178 "Enables fetching and displaying Doodles on the NTP for third-party search "
2179 "engines.";
2180
Klaus Weidneraaf697f2018-01-18 20:07:362181const char kWebXrRenderPathName[] = "WebXR presentation render path";
2182const char kWebXrRenderPathDescription[] =
2183 "Render path to use for WebXR presentation (including WebVR)";
2184const char kWebXrRenderPathChoiceClientWaitDescription[] =
2185 "ClientWait (Baseline)";
2186const char kWebXrRenderPathChoiceGpuFenceDescription[] =
2187 "GpuFence (Android N+)";
2188
Brett Wilson7b44537e2017-08-18 01:38:282189// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552190
Brett Wilson7b44537e2017-08-18 01:38:282191#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482192
Brett Wilson7b44537e2017-08-18 01:38:282193const char kAccountConsistencyName[] =
2194 "Identity consistency between browser and cookie jar";
2195const char kAccountConsistencyDescription[] =
2196 "When enabled, the browser manages signing in and out of Google accounts.";
2197const char kAccountConsistencyChoiceMirror[] = "Mirror";
2198const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342199
Chris Pickel3a227ae62017-08-24 10:47:262200const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2201const char kDoodlesOnLocalNtpDescription[] =
2202 "Show doodles on the local New Tab page if Google is the default search "
2203 "engine.";
2204
mlamouriff56c092017-05-11 15:31:392205const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392206const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342207 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392208const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392209const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392210const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342211 "Enabled (Flash lowers volume when interrupted by other sound, "
2212 "experimental)";
2213
Brett Wilson7b44537e2017-08-18 01:38:282214const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2215const char kEnableNewAppMenuIconDescription[] =
2216 "Use the new app menu icon with update notification animations.";
vabr0215a8e2017-03-28 12:47:342217
2218const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342219const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282220 "Enable receiving entity suggestions - disambiguation descriptions - for "
2221 "Omnibox suggestions.";
2222
Dave Schuyler598a4a42018-01-04 02:15:102223const char kOmniboxRichEntitySuggestionsName[] =
2224 "Omnibox rich entity suggestions";
2225const char kOmniboxRichEntitySuggestionsDescription[] =
2226 "Display entity suggestions using images and an enhanced layout; showing "
2227 "more context and descriptive text about the entity";
2228
Kevin Bailey898669972017-11-06 15:34:492229const char kOmniboxTabSwitchSuggestionsName[] =
2230 "Omnibox tab switch suggestions";
2231const char kOmniboxTabSwitchSuggestionsDescription[] =
2232 "Enable suggestions for switching to open tabs within the Omnibox.";
2233
krbcc621412017-06-01 19:40:282234const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2235const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192236 "Enable receiving tail suggestions, a type of search suggestion based on "
2237 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342238
Brett Wilson7b44537e2017-08-18 01:38:282239const char kOneGoogleBarOnLocalNtpName[] =
2240 "Enable the OneGoogleBar on the local NTP";
2241const char kOneGoogleBarOnLocalNtpDescription[] =
2242 "Show a OneGoogleBar on the local New Tab page if Google is the default "
2243 "search engine.";
2244
Brett Wilson7b44537e2017-08-18 01:38:282245const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2246const char kUseGoogleLocalNtpDescription[] =
2247 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322248
Brett Wilson7b44537e2017-08-18 01:38:282249const char kVoiceSearchOnLocalNtpName[] =
2250 "Enable Voice Search on the local NTP";
2251const char kVoiceSearchOnLocalNtpDescription[] =
2252 "Show a microphone for voice search on the local New Tab page "
2253 "if Google is the default search engine.";
2254
Kim Paulhamus33f87b12018-01-18 22:00:422255const char kEnableWebAuthenticationAPIName[] = "Web Authentication API.";
2256const char kEnableWebAuthenticationAPIDescription[] =
2257 "Enable Web Authentication API support.";
2258
Brett Wilson7b44537e2017-08-18 01:38:282259#if defined(GOOGLE_CHROME_BUILD)
2260
2261const char kGoogleBrandedContextMenuName[] =
2262 "Google branding in the context menu";
2263const char kGoogleBrandedContextMenuDescription[] =
2264 "Shows a Google icon next to context menu items powered by Google "
2265 "services.";
2266
2267#endif // !defined(GOOGLE_CHROME_BUILD)
2268
2269#endif // !defined(OS_ANDROID)
2270
2271// Windows ---------------------------------------------------------------------
2272
2273#if defined(OS_WIN)
2274
2275const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2276const char kCloudPrintXpsDescription[] =
2277 "XPS enables advanced options for classic printers connected to the Cloud "
2278 "Print with Chrome. Printers must be re-connected after changing this "
2279 "flag.";
2280
Dave Tapuskadd43469d2017-08-22 22:15:532281const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
2282const char kDirectManipulationStylusDescription[] =
2283 "If enabled, Chrome will scroll web pages on stylus drag.";
2284
Brett Wilson7b44537e2017-08-18 01:38:282285const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2286const char kDisablePostscriptPrintingDescription[] =
2287 "Disables PostScript generation when printing to PostScript capable "
2288 "printers, and uses EMF generation in its place.";
2289
2290const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2291const char kEnableAppcontainerDescription[] =
2292 "Enables the use of an AppContainer on sandboxed processes to improve "
2293 "security.";
2294
2295const char kEnableD3DVsync[] = "D3D v-sync";
2296const char kEnableD3DVsyncDescription[] =
2297 "Produces v-sync signal by having D3D wait for vertical blanking interval "
2298 "to occur.";
2299
2300const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2301const char kEnableDesktopIosPromotionsDescription[] =
2302 "Enable Desktop to iOS promotions, and allow users to see them if they are "
2303 "eligible.";
2304
2305const char kGdiTextPrinting[] = "GDI Text Printing";
2306const char kGdiTextPrintingDescription[] =
2307 "Use GDI to print text as simply text";
2308
Brett Wilson7b44537e2017-08-18 01:38:282309const char kTraceExportEventsToEtwName[] =
2310 "Enable exporting of tracing events to ETW.";
2311const char kTraceExportEventsToEtwDesription[] =
2312 "If enabled, trace events will be exported to the Event Tracing for "
2313 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2314 "Xperf.";
2315
2316const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2317const char kUseWinrtMidiApiDescription[] =
2318 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2319 "later).";
2320
2321const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2322const char kWindows10CustomTitlebarDescription[] =
2323 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2324 "deferring to Windows.";
2325
Wez6656c572017-08-29 22:29:582326#if DCHECK_IS_ON() && defined(SYZYASAN)
Lei Zhang2eca9082017-10-17 20:42:502327const char kSyzyAsanDcheckIsFatalName[] = "DCHECKs are fatal";
2328const char kSyzyAsanDcheckIsFatalDescription[] =
Wez6656c572017-08-29 22:29:582329 "By default Chrome will evaluate DCHECKs in SyzyASAN builds, but only log "
2330 "failed DCHECKs. If enabled, DCHECKs will crash the calling process.";
2331#endif // DCHECK_IS_ON() && defined(SYZYASAN)
2332
Brett Wilson7b44537e2017-08-18 01:38:282333#endif // defined(OS_WIN)
2334
2335// Mac -------------------------------------------------------------------------
2336
2337#if defined(OS_MACOSX)
2338
2339const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
2340const char kAppInfoDialogDescription[] =
2341 "Makes the Toolkit-Views based App Info dialog accessible from "
2342 "chrome://apps or chrome://extensions in place of the native extension "
2343 "permissions dialog, or the details link (which is a link to the Web "
2344 "Store).";
2345
2346const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
2347const char kAppWindowCyclingDescription[] =
2348 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
2349 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
2350 "browser window, and browser windows will not be cycled when a Chrome App "
2351 "is active.";
2352
Lei Zhang2eca9082017-10-17 20:42:502353const char kCreditCardAutofillTouchBarName[] = "Credit Card Autofill Touch Bar";
2354const char kCreditCardAutofillTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282355 "Shows Credit Card Autofill Suggestions on the Touch Bar.";
2356
2357const char kFullscreenToolbarRevealName[] =
2358 "Enables the toolbar in fullscreen to reveal itself.";
2359const char kFullscreenToolbarRevealDescription[] =
2360 "Reveal the toolbar in fullscreen for a short period when the tab strip "
2361 "has changed.";
2362
2363const char kContentFullscreenName[] = "Improved Content Fullscreen";
2364const char kContentFullscreenDescription[] =
2365 "Fullscreen content window detaches from main browser window and goes to "
2366 "a new space without moving or changing the original browser window.";
2367
Lei Zhang2eca9082017-10-17 20:42:502368const char kDialogTouchBarName[] = "Dialog Touch Bar";
2369const char kDialogTouchBarDescription[] =
Brett Wilson7b44537e2017-08-18 01:38:282370 "Shows Dialog buttons on the Touch Bar.";
2371
2372const char kHostedAppsInWindowsName[] =
2373 "Allow hosted apps to be opened in windows";
2374const char kHostedAppsInWindowsDescription[] =
2375 "Allows hosted apps to be opened in windows instead of being limited to "
2376 "tabs.";
2377
Lei Zhang2eca9082017-10-17 20:42:502378const char kMacRTLName[] = "Enable RTL";
2379const char kMacRTLDescription[] = "Mirrors the UI for RTL language users";
Brett Wilson7b44537e2017-08-18 01:38:282380
Lei Zhang2eca9082017-10-17 20:42:502381const char kMacSystemShareMenuName[] = "Enable System Share Menu";
2382const char kMacSystemShareMenuDescription[] =
Leonard Grey2bdd08f2017-10-03 18:40:522383 "Enables sharing via macOS share extensions.";
2384
Lei Zhang2eca9082017-10-17 20:42:502385const char kMacTouchBarName[] = "Hardware Touch Bar";
2386const char kMacTouchBarDescription[] = "Control the use of the Touch Bar.";
Brett Wilson7b44537e2017-08-18 01:38:282387
2388const char kMacV2SandboxName[] = "Mac V2 Sandbox";
2389const char kMacV2SandboxDescription[] =
2390 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
2391 "entire life cycle.";
2392
2393const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2394const char kMacViewsNativeAppWindowsDescription[] =
2395 "Controls whether to use Toolkit-Views based Chrome App windows.";
2396
Jérôme Lebelff683d42017-11-10 10:24:022397const char kMacViewsProfileChooserName[] =
2398 "Profile chooser menu with toolkit-views on Mac";
2399const char kMacViewsProfileChooserDescription[] =
2400 "Enables profile chooser menu based on toolkit-views, on Mac";
2401
Brett Wilson7b44537e2017-08-18 01:38:282402const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2403const char kMacViewsTaskManagerDescription[] =
2404 "Controls whether to use the Toolkit-Views based Task Manager.";
2405
2406const char kTabDetachingInFullscreenName[] =
2407 "Allow tab detaching in fullscreen";
2408const char kTabDetachingInFullscreenDescription[] =
2409 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
2410
2411const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
2412const char kTabStripKeyboardFocusDescription[] =
2413 "Enable keyboard focus for the tabs in the tab strip.";
2414
2415const char kTranslateNewUxName[] = "New Translate UX";
2416const char kTranslateNewUxDescription[] =
2417 "Enable the new Translate bubble UX is offered instead of the infobar.";
2418
Brett Wilson7b44537e2017-08-18 01:38:282419#endif
2420
2421// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342422
2423#if defined(OS_CHROMEOS)
2424
Brett Wilson7b44537e2017-08-18 01:38:282425const char kAcceleratedMjpegDecodeName[] =
2426 "Hardware-accelerated mjpeg decode for captured frame";
2427const char kAcceleratedMjpegDecodeDescription[] =
2428 "Enable hardware-accelerated mjpeg decode for captured frame where "
2429 "available.";
vabr0215a8e2017-03-28 12:47:342430
Brett Wilson7b44537e2017-08-18 01:38:282431const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2432const char kAllowTouchpadThreeFingerClickDescription[] =
2433 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342434
Brett Wilson7b44537e2017-08-18 01:38:282435const char kArcBootCompleted[] = "Load Android apps automatically";
2436const char kArcBootCompletedDescription[] =
2437 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:342438
Lev Rumyantsev7a8544312017-08-18 19:26:512439const char kArcNativeBridgeExperimentName[] =
2440 "Enable native bridge experiment for ARC";
2441const char kArcNativeBridgeExperimentDescription[] =
2442 "Enables experimental native bridge feature.";
2443
lgchengecd1c1a62018-01-09 02:59:462444const char kArcUsbHostName[] = "Enable ARC USB host integration";
2445const char kArcUsbHostDescription[] =
2446 "Allow Android apps to use USB host feature on ChromeOS devices.";
2447
Kevin Cernekeeb7f96a52017-10-25 17:40:182448const char kArcVpnName[] = "Enable ARC VPN integration";
2449const char kArcVpnDescription[] =
2450 "Allow Android VPN clients to tunnel Chrome traffic.";
2451
Mitsuru Oshima304ec7f2018-01-12 21:41:472452const char kAshDisableV1AppBackButtonName[] =
2453 "Disable BackButton on V1 app window";
2454const char kAshDisableV1AppBackButtonDescription[] =
2455 "Enable this flag to disable back button on V1 app window.";
2456
Brett Wilson7b44537e2017-08-18 01:38:282457const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
2458const char kAshEnableUnifiedDesktopDescription[] =
2459 "Enable unified desktop mode which allows a window to span multiple "
2460 "displays.";
vabr0215a8e2017-03-28 12:47:342461
Sean Kau5e956192017-10-06 22:25:172462const char kBulkPrintersName[] = "Bulk Printers Policy";
2463const char kBulkPrintersDescription[] = "Enables the new bulk printers policy";
2464
Brett Wilson7b44537e2017-08-18 01:38:282465const char kCaptivePortalBypassProxyName[] =
2466 "Bypass proxy for Captive Portal Authorization";
2467const char kCaptivePortalBypassProxyDescription[] =
2468 "If proxy is configured, it usually prevents from authorization on "
2469 "different captive portals. This enables opening captive portal "
2470 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:342471
Brett Wilson7b44537e2017-08-18 01:38:282472const char kCrOSComponentName[] = "Chrome OS Component";
2473const char kCrOSComponentDescription[] =
Xiaochu Liu4c1b75d2017-12-18 23:52:082474 "Disable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:342475
Xiaochu Liu51d03fd2017-09-08 23:51:022476const char kCrOSContainerName[] = "Chrome OS Container";
2477const char kCrOSContainerDescription[] =
2478 "Enable the use of Chrome OS Container utility.";
2479
Brett Wilson7b44537e2017-08-18 01:38:282480const char kCrosRegionsModeName[] = "Cros-regions load mode";
2481const char kCrosRegionsModeDescription[] =
2482 "This flag controls cros-regions load mode";
2483const char kCrosRegionsModeDefault[] = "Default";
2484const char kCrosRegionsModeOverride[] = "Override VPD values.";
2485const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:342486
Jacob Dufault2becbc482017-08-25 00:36:352487const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
2488const char kDisableLockScreenAppsDescription[] =
2489 "Disable new-note action handler apps on the lock screen. The user will "
2490 "not be able to launch the preferred note-taking action from the lock "
2491 "screen, provided that the app supports lock screen note taking.";
2492
Sammie Quonef6b4882017-09-14 16:50:052493const char kDisableTabletAutohideTitlebarsName[] =
2494 "Disable autohide titlebars in tablet mode";
2495const char kDisableTabletAutohideTitlebarsDescription[] =
2496 "Disable tablet mode autohide titlebars functionality. The user will be "
2497 "able to see the titlebar in tablet mode.";
2498
Brett Wilson7b44537e2017-08-18 01:38:282499const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
2500const char kEnablePerUserTimezoneDescription[] =
2501 "Chrome OS system timezone preference is stored and handled for each user "
2502 "individually.";
vabr0215a8e2017-03-28 12:47:342503
Brett Wilson7b44537e2017-08-18 01:38:282504const char kDisableSystemTimezoneAutomaticDetectionName[] =
2505 "SystemTimezoneAutomaticDetection policy support";
2506const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
2507 "Disable system timezone automatic detection device policy.";
vabr0215a8e2017-03-28 12:47:342508
Lei Zhang2eca9082017-10-17 20:42:502509const char kEnableBackgroundBlurName[] = "Enable background blur.";
2510const char kEnableBackgroundBlurDescription[] =
Wenzhao Zang50fb0b22017-11-07 01:38:422511 "Enables background blur for the Peeking Launcher and Tab Switcher.";
Alex Newcomer43cb7f12017-07-28 17:37:392512
Brett Wilson7b44537e2017-08-18 01:38:282513const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2514const char kEnableAndroidWallpapersAppDescription[] =
2515 "Enables the Android Wallpapers App as the default Wallpaper App on Chrome "
2516 "OS.";
vabr0215a8e2017-03-28 12:47:342517
Brett Wilson7b44537e2017-08-18 01:38:282518const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2519const char kEnableChromevoxArcSupportDescription[] =
2520 "Enable ChromeVox screen reader features in ARC";
vabr0215a8e2017-03-28 12:47:342521
Brett Wilson7b44537e2017-08-18 01:38:282522const char kEnableEhvInputName[] =
2523 "Emoji, handwriting and voice input on opt-in IME menu";
2524const char kEnableEhvInputDescription[] =
2525 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:342526
Brett Wilson7b44537e2017-08-18 01:38:282527const char kEnableEncryptionMigrationName[] =
2528 "Enable encryption migration of user data";
2529const char kEnableEncryptionMigrationDescription[] =
2530 "If enabled and the device supports ARC, the user will be asked to update "
2531 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:342532
Blake O'Hare9e9317b22017-10-24 02:49:352533const char kEnableFloatingVirtualKeyboardName[] =
2534 "Enable floating virtual keyboard";
2535const char kEnableFloatingVirtualKeyboardDescription[] =
2536 "If enabled, the keyboard will use floating behavior by default.";
2537
Brett Wilson7b44537e2017-08-18 01:38:282538const char kEnableImeMenuName[] = "Enable opt-in IME menu";
2539const char kEnableImeMenuDescription[] =
2540 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:342541
xdaiddccd3f2018-01-17 22:34:162542const char kEnableTabletSplitViewName[] = "Split view in Tablet mode";
2543const char kEnableTabletSplitViewDescription[] =
2544 "Enable split view for Chrome OS tablet mode.";
2545
Klemen Kozjek05fc4512017-10-18 12:51:102546const char kEnableZipArchiverPackerName[] = "ZIP archiver - Packer";
2547const char kEnableZipArchiverPackerDescription[] =
2548 "Enable the ability to archive files on Drive in the Files app";
2549
Tatsuhisa Yamaguchi5c07d2532017-11-10 03:52:412550const char kZipArchiverUnpackerName[] = "ZIP archiver - Unpacker";
2551const char kZipArchiverUnpackerDescription[] =
2552 "Enable or disable the ability to unpack archives in incognito mode";
Brett Wilson7b44537e2017-08-18 01:38:282553
2554const char kEolNotificationName[] = "Disable Device End of Life notification.";
2555const char kEolNotificationDescription[] =
2556 "Disable Notifcation when Device is End of Life.";
2557
2558const char kExperimentalAccessibilityFeaturesName[] =
2559 "Experimental accessibility features";
2560const char kExperimentalAccessibilityFeaturesDescription[] =
2561 "Enable additional accessibility features in the Settings page.";
2562
2563const char kExperimentalInputViewFeaturesName[] =
2564 "Experimental input view features";
2565const char kExperimentalInputViewFeaturesDescription[] =
2566 "Enable experimental features for IME input views.";
2567
2568const char kFileManagerTouchModeName[] = "Files App. touch mode";
2569const char kFileManagerTouchModeDescription[] =
2570 "Touchscreen-specific interactions of the Files app.";
2571
2572const char kFirstRunUiTransitionsName[] =
2573 "Animated transitions in the first-run tutorial";
2574const char kFirstRunUiTransitionsDescription[] =
2575 "Transitions during first-run tutorial are animated.";
2576
Brett Wilson7b44537e2017-08-18 01:38:282577const char kForceEnableStylusToolsName[] = "Force enable stylus features";
2578const char kForceEnableStylusToolsDescription[] =
2579 "Forces display of the stylus tools menu in the shelf and the stylus "
2580 "section in settings, even if there is no attached stylus device.";
2581
2582const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
2583const char kGestureEditingDescription[] =
2584 "Enable/Disable gesture editing option in the settings page for the "
2585 "virtual keyboard.";
2586
2587const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
2588const char kGestureTypingDescription[] =
2589 "Enable/Disable gesture typing option in the settings page for the virtual "
2590 "keyboard.";
2591
2592const char kInputViewName[] = "Input views";
2593const char kInputViewDescription[] =
2594 "Enable IME extensions to supply custom views for user input such as "
2595 "virtual keyboards.";
2596
2597const char kMemoryPressureThresholdName[] =
2598 "Memory discard strategy for advanced pressure handling";
2599const char kMemoryPressureThresholdDescription[] =
2600 "Memory discarding strategy to use";
2601const char kConservativeThresholds[] =
2602 "Conservative memory pressure release strategy";
2603const char kAggressiveCacheDiscardThresholds[] =
2604 "Aggressive cache release strategy";
2605const char kAggressiveTabDiscardThresholds[] =
2606 "Aggressive tab release strategy";
2607const char kAggressiveThresholds[] =
2608 "Aggressive tab and cache release strategy";
2609
2610const char kMtpWriteSupportName[] = "MTP write support";
2611const char kMtpWriteSupportDescription[] =
2612 "MTP write support in File System API (and file manager). In-place editing "
2613 "operations are not supported.";
2614
2615const char kMultideviceName[] = "Enable multidevice features";
2616const char kMultideviceDescription[] =
2617 "Enables UI for controlling multidevice features.";
vabr0215a8e2017-03-28 12:47:342618
Bailey Berrodca8eeca02017-11-18 00:49:122619const char kNativeSmbName[] = "Native Smb Client";
2620const char kNativeSmbDescription[] =
2621 "If enabled, allows connections to an smb filesystem via Files app";
Bailey Berrofc0da1b2017-11-02 11:02:302622
vabr0215a8e2017-03-28 12:47:342623const char kNetworkPortalNotificationName[] =
2624 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:342625const char kNetworkPortalNotificationDescription[] =
2626 "If enabled, notification is displayed when device is connected to a "
2627 "network behind captive portal.";
2628
Steven Bennetts77b67972017-12-14 19:38:322629const char kDisableNetworkSettingsConfigName[] =
2630 "Disable Settings based Network Configuration";
2631const char kDisableNetworkSettingsConfigDescription[] =
2632 "Disables the Settings based network configuration UI and restores the "
2633 "Views based configuration dialog.";
stevenjbe1d457382017-05-24 22:37:242634
Brett Wilson7b44537e2017-08-18 01:38:282635const char kNewKoreanImeName[] = "New Korean IME";
2636const char kNewKoreanImeDescription[] =
2637 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:342638
Brett Wilson7b44537e2017-08-18 01:38:282639const char kNewZipUnpackerName[] = "New ZIP unpacker";
2640const char kNewZipUnpackerDescription[] =
2641 "New ZIP unpacker flow, based on the File System Provider API.";
vabr0215a8e2017-03-28 12:47:342642
Brett Wilson7b44537e2017-08-18 01:38:282643const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
2644const char kPhysicalKeyboardAutocorrectDescription[] =
2645 "Enable physical keyboard autocorrect for US keyboard, which can provide "
2646 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:342647
2648const char kPrinterProviderSearchAppName[] =
2649 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:342650const char kPrinterProviderSearchAppDescription[] =
2651 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:192652 "searches Chrome Web Store for extensions that support printing to a USB "
2653 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:342654
Brett Wilson7b44537e2017-08-18 01:38:282655const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
2656const char kQuickUnlockPinDescription[] =
2657 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2658 "device on the lock screen after you have signed into your device.";
2659const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2660const char kQuickUnlockPinSigninDescription[] =
2661 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2662 "device. After changing this flag PIN needs to be set up again.";
2663const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2664const char kQuickUnlockFingerprintDescription[] =
2665 "Enabling fingerprint quick unlock allows you to setup and use a "
2666 "fingerprint to unlock your Chromebook on the lock screen after you have "
2667 "signed into your device.";
vabr0215a8e2017-03-28 12:47:342668
Brett Wilson7b44537e2017-08-18 01:38:282669const char kOfficeEditingComponentAppName[] =
2670 "Office Editing for Docs, Sheets & Slides";
2671const char kOfficeEditingComponentAppDescription[] =
2672 "Office Editing for Docs, Sheets & Slides for testing purposes.";
Daniel Erat33054b22017-06-27 16:18:072673
James Cook0ba192bf2017-12-01 20:53:112674const char kShowTapsName[] = "Show taps";
2675const char kShowTapsDescription[] =
2676 "Draws a circle at each touch point, which makes touch points more obvious "
2677 "when projecting or mirroring the display. Similar to the Android OS "
2678 "developer option.";
2679
2680const char kShowTouchHudName[] = "Show HUD for touch points";
2681const char kShowTouchHudDescription[] =
2682 "Shows a trail of colored dots for the last few touch points. Pressing "
2683 "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps "
2684 "debug hardware issues that generate spurious touch events.";
2685
Chung-Sheng Wu468b0b32017-09-01 14:41:572686const char kSysInternalsName[] = "Enable Sys-Internals";
2687const char kSysInternalsDescription[] =
2688 "If enabled, user can monitor system information at "
2689 "chrome://sys-internals.";
2690
Brett Wilson7b44537e2017-08-18 01:38:282691const char kTeamDrivesName[] = "Enable Team Drives Integration";
2692const char kTeamDrivesDescription[] =
2693 "If enabled, files under Team Drives will appear in the Files app.";
vabr0215a8e2017-03-28 12:47:342694
Brett Wilson7b44537e2017-08-18 01:38:282695const char kTetherName[] = "Instant Tethering";
2696const char kTetherDescription[] =
2697 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
2698 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:372699
Brett Wilson7b44537e2017-08-18 01:38:282700const char kTouchscreenCalibrationName[] =
2701 "Enable/disable touchscreen calibration option in material design settings";
2702const char kTouchscreenCalibrationDescription[] =
2703 "If enabled, the user can calibrate the touch screen displays in "
2704 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:092705
Mitsuru Oshima63d3f2a2017-08-23 00:12:112706// Force UI Mode
2707const char kUiModeName[] = "Force Ui Mode";
2708const char kUiModeDescription[] =
2709 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
2710 R"*(despite its current orientation. "Tablet" means that the )*"
2711 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
2712 R"*(means that the chromebook will act as if it were in clamshell )*"
2713 R"*(mode . "Auto" means that the chromebook will alternate between )*"
2714 R"*(the two, based on its orientation.)*";
2715const char kUiModeTablet[] = "TouchView";
2716const char kUiModeClamshell[] = "Clamshell";
2717const char kUiModeAuto[] = "Auto (default)";
2718
bruthigeafb0c02017-06-09 13:11:532719const char kUiDevToolsName[] = "Enable native UI inspection";
2720const char kUiDevToolsDescription[] =
2721 "Enables inspection of native UI elements. For local inspection use "
2722 "chrome://inspect#other";
2723
Brett Wilson7b44537e2017-08-18 01:38:282724const char kUseMusName[] = "Mus";
2725const char kUseMusDescription[] = "Enable the Mojo UI service.";
2726const char kEnableMashDescription[] =
2727 "Mash (UI, Chrome and ash in separate services)";
2728const char kEnableMusDescription[] =
2729 "Mus (UI in separate service, Chrome and ash in same service)";
2730
Miguel Casas-Sanchez8ba32f92017-11-07 05:03:342731// TODO(mcasas): remove after https://crbug.com/771345.
2732const char kUseMonitorColorSpaceName[] = "Use monitor color space";
2733const char kUseMonitorColorSpaceDescription[] =
2734 "Enables Chrome to use the color space information provided by the monitor"
2735 " instead of the default sRGB color space.";
2736
Brett Wilson7b44537e2017-08-18 01:38:282737const char kVideoPlayerChromecastSupportName[] =
2738 "Experimental Chromecast support for Video Player";
2739const char kVideoPlayerChromecastSupportDescription[] =
2740 "This option enables experimental Chromecast support for Video Player app "
2741 "on ChromeOS.";
2742
2743const char kVirtualKeyboardName[] = "Virtual Keyboard";
2744const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
2745
2746const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
2747const char kVirtualKeyboardOverscrollDescription[] =
2748 "Enables virtual keyboard overscroll support.";
2749
2750const char kVoiceInputName[] = "Voice input on virtual keyboard";
2751const char kVoiceInputDescription[] =
2752 "Enables voice input on virtual keyboard.";
2753
2754const char kWakeOnPacketsName[] = "Wake On Packets";
2755const char kWakeOnPacketsDescription[] =
2756 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:202757
yhanadac5bff5b2017-05-18 06:37:092758#endif // defined(OS_CHROMEOS)
2759
Brett Wilson7b44537e2017-08-18 01:38:282760// Random platform combinations -----------------------------------------------
2761
2762#if defined(OS_WIN) || defined(OS_LINUX)
2763
2764const char kEnableInputImeApiName[] = "Enable Input IME API";
2765const char kEnableInputImeApiDescription[] =
2766 "Enable the use of chrome.input.ime API.";
2767
2768#endif // defined(OS_WIN) || defined(OS_LINUX)
2769
2770#if defined(OS_WIN) || defined(OS_MACOSX)
2771
2772const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2773const char kAutomaticTabDiscardingDescription[] =
2774 "If enabled, tabs get automatically discarded from memory when the system "
2775 "memory is low. Discarded tabs are still visible on the tab strip and get "
2776 "reloaded when clicked on. Info about discarded tabs can be found at "
2777 "chrome://discards.";
2778
2779#endif // defined(OS_WIN) || defined(OS_MACOSX)
2780
2781// Feature flags --------------------------------------------------------------
2782
2783#if BUILDFLAG(ENABLE_VR)
2784
David Dorwin5a496c32017-11-17 01:45:052785const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing";
2786const char kWebVrVsyncAlignDescription[] =
2787 "Align WebVR application rendering with VSync for smoother animations.";
2788
Brett Wilson7b44537e2017-08-18 01:38:282789#if defined(OS_ANDROID)
2790
David Dorwin5a496c32017-11-17 01:45:052791const char kVrBrowsingName[] = "VR browsing";
2792const char kVrBrowsingDescription[] =
2793 "Browsing within a VR headset if available for this device.";
Brett Wilson7b44537e2017-08-18 01:38:282794
Yash Malik50bcfc12017-11-18 00:47:592795const char kVrBrowserKeyboardName[] = "Chrome VR virtual keyboard.";
2796const char kVrBrowserKeyboardDescription[] =
2797 "Enable a virtual keyboard for Chrome VR.";
2798
David Dorwin5a496c32017-11-17 01:45:052799const char kVrBrowsingExperimentalFeaturesName[] =
2800 "VR browsing experimental features";
2801const char kVrBrowsingExperimentalFeaturesDescription[] =
2802 "Experimental VR browsing features that are under development.";
Brett Wilson7b44537e2017-08-18 01:38:282803
David Dorwin5a496c32017-11-17 01:45:052804const char kVrBrowsingExperimentalRenderingName[] =
2805 "VR browsing experimental rendering features";
2806const char kVrBrowsingExperimentalRenderingDescription[] =
2807 "Experimental rendering features for VR browsing (e.g. power-saving "
2808 "rendering modes).";
Michael Thiessenb480fe92017-10-26 16:25:102809
David Dorwin5a496c32017-11-17 01:45:052810const char kVrBrowsingInCustomTabName[] = "VR browsing in Custom Tabs";
2811const char kVrBrowsingInCustomTabDescription[] =
2812 "Allow browsing within a VR headset while in a Custom Tab.";
2813
2814const char kVrLaunchIntentsName[] = "VR intents";
2815const char kVrLaunchIntentsDescription[] =
Yash Malik812aebe2017-10-31 18:17:262816 "Allow intents to launch Chrome in VR mode.";
2817
David Dorwin5a496c32017-11-17 01:45:052818const char kWebVrAutopresentFromIntentName[] =
2819 "WebVR auto presentation from intents";
2820const char kWebVrAutopresentFromIntentDescription[] =
2821 "Allow auto presentation of WebVR content from trusted first-party apps.";
Brett Wilson7b44537e2017-08-18 01:38:282822
2823#endif // OS_ANDROID
2824
Bill Orr49527562017-11-22 16:58:482825#if BUILDFLAG(ENABLE_OPENVR)
2826const char kOpenVRName[] = "OpenVR hardware support";
2827const char kOpenVRDescription[] =
Bill Orr5056e692018-01-17 02:08:072828 "If enabled, Chrome will use OpenVR devices for VR (supported only on "
2829 "Windows 10 or later).";
Bill Orr49527562017-11-22 16:58:482830#endif // ENABLE_OPENVR
2831
Brett Wilson7b44537e2017-08-18 01:38:282832#endif // ENABLE_VR
2833
Nico Weberaf3b00b2017-09-11 17:58:172834#if BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282835
2836const char kNaclDebugMaskName[] =
2837 "Restrict Native Client GDB-based debugging by pattern";
2838const char kNaclDebugMaskDescription[] =
2839 "Restricts Native Client application GDB-based debugging by URL of "
2840 "manifest file. Native Client GDB-based debugging must be enabled for this "
2841 "option to work.";
2842const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
2843const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
2844 "Debug everything except secure shell and the PNaCl translator.";
2845const char kNaclDebugMaskChoiceIncludeDebug[] =
2846 "Debug only if manifest URL ends with debug.nmf.";
2847
2848const char kNaclDebugName[] = "Native Client GDB-based debugging";
2849const char kNaclDebugDescription[] =
2850 "Enable GDB debug stub. This will stop a Native Client application on "
2851 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
2852
2853const char kNaclName[] = "Native Client";
2854const char kNaclDescription[] =
2855 "Support Native Client for all web applications, even those that were not "
2856 "installed from the Chrome Web Store.";
2857
2858const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
2859const char kPnaclSubzeroDescription[] =
2860 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
2861
Nico Weberaf3b00b2017-09-11 17:58:172862#endif // BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282863
Brett Wilson7b44537e2017-08-18 01:38:282864#if BUILDFLAG(ENABLE_WEBRTC)
2865
2866const char kWebrtcH264WithOpenh264FfmpegName[] =
2867 "WebRTC H.264 software video encoder/decoder";
2868const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2869 "When enabled, an H.264 software video encoder/decoder pair is included. "
2870 "If a hardware encoder/decoder is also available it may be used instead of "
2871 "this encoder/decoder.";
2872
2873#endif // BUILDFLAG(ENABLE_WEBRTC)
2874
James Cookf9d34d22017-10-04 16:39:352875#if defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:282876
Wenzhao Zang50fb0b22017-11-07 01:38:422877const char kAshDisableLoginDimAndBlurName[] =
2878 "Disable dimming and blur on login screen.";
2879const char kAshDisableLoginDimAndBlurDescription[] =
2880 "Disable dimming and blur on login screen.";
2881
Brett Wilson7b44537e2017-08-18 01:38:282882const char kAshDisableSmoothScreenRotationName[] =
2883 "Disable smooth rotation animations.";
2884const char kAshDisableSmoothScreenRotationDescription[] =
2885 "Disable smooth rotation animations.";
2886
Qiang Xub7e921072017-12-07 21:02:112887const char kAshEnableDisplayMoveWindowAccelsName[] =
2888 "Enable shortcuts for moving window between displays.";
2889const char kAshEnableDisplayMoveWindowAccelsDescription[] =
2890 "Enable shortcuts for moving window between displays.";
2891
wutaoc70d7b92017-11-01 08:06:012892const char kAshEnableKeyboardShortcutViewerName[] =
2893 "Enable keyboard shortcut viewer.";
2894const char kAshEnableKeyboardShortcutViewerDescription[] =
2895 "Enable keyboard shortcut viewer.";
2896
Brett Wilson7b44537e2017-08-18 01:38:282897const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
2898const char kAshEnableMirroredScreenDescription[] =
2899 "Enable the mirrored screen mode. This mode flips the screen image "
2900 "horizontally.";
2901
2902const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
2903const char kAshShelfColorDescription[] =
2904 "Enables/disables the shelf color to be a derived from the wallpaper. The "
2905 "--ash-shelf-color-scheme flag defines how that color is derived.";
2906
2907const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
2908const char kAshShelfColorSchemeDescription[] =
2909 "Specify how the color is derived from the wallpaper. This flag is only "
2910 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
2911const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
2912const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
2913const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
2914const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
2915const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
2916const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
2917
Mike Wassermana38a8a62017-10-02 03:04:272918const char kAshDisableShelfModelSynchronization[] =
2919 "Disable shelf model synchronization";
2920const char kAshDisableShelfModelSynchronizationDescription[] =
2921 "Use a single in-process shelf data model shared between Chrome and Ash. "
2922 "This only applies to the Classic Ash and Mus configs; synchronization "
2923 "between two models is required when running the Mash config via --mash.";
Mike Wasserman2115b162017-09-19 23:42:372924
Brett Wilson7b44537e2017-08-18 01:38:282925const char kMaterialDesignInkDropAnimationSpeedName[] =
Mike Wasserman2115b162017-09-19 23:42:372926 "Material design ink drop animation speed";
Brett Wilson7b44537e2017-08-18 01:38:282927const char kMaterialDesignInkDropAnimationSpeedDescription[] =
2928 "Sets the speed of the experimental visual feedback animations for "
2929 "material design.";
2930const char kMaterialDesignInkDropAnimationFast[] = "Fast";
2931const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
2932
2933const char kUiShowCompositedLayerBordersName[] =
2934 "Show UI composited layer borders";
2935const char kUiShowCompositedLayerBordersDescription[] =
2936 "Show border around composited layers created by UI.";
2937const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
2938const char kUiShowCompositedLayerBordersSurface[] = "Surface";
2939const char kUiShowCompositedLayerBordersLayer[] = "Layer";
2940const char kUiShowCompositedLayerBordersAll[] = "All";
2941
2942const char kUiSlowAnimationsName[] = "Slow UI animations";
2943const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
2944
James Cookf9d34d22017-10-04 16:39:352945#endif // defined(OS_CHROMEOS)
Brett Wilson7b44537e2017-08-18 01:38:282946
Brett Wilson7b44537e2017-08-18 01:38:282947#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2948
2949const char kAutofillCreditCardUploadName[] =
2950 "Enable offering upload of Autofilled credit cards";
2951const char kAutofillCreditCardUploadDescription[] =
2952 "Enables a new option to upload credit cards to Google Payments for sync "
2953 "to all Chrome devices.";
2954
2955#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2956
2957// ============================================================================
2958// Don't just add flags to the end, put them in the right section in
2959// alphabetical order just like the header file.
2960// ============================================================================
2961
vabr0215a8e2017-03-28 12:47:342962} // namespace flag_descriptions