blob: 43a156e7a889e67c19dbbccb49a57b0196c2fe6b [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
Khushalba202212017-07-12 19:53:4943const char kAsyncImageDecodingName[] = "AsyncImageDecoding";
44const char kAsyncImageDecodingDescription[] =
45 "Enables asynchronous decoding of images from raster for web content";
46
Brett Wilsonf27ff602017-07-07 22:28:4747const char kAutoplayPolicyName[] = "Autoplay policy";
48const char kAutoplayPolicyDescription[] =
49 "Policy used when deciding if audio or video is allowed to autoplay.";
50
51const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
52 "User gesture is required for cross-origin iframes.";
53const char kAutoplayPolicyNoUserGestureRequired[] =
54 "No user gesture is required.";
55const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
56const char kAutoplayPolicyDocumentUserActivation[] =
57 "Document user activation is required.";
58
59const char kBackgroundVideoTrackOptimizationName[] =
60 "Optimize background video playback.";
61const char kBackgroundVideoTrackOptimizationDescription[] =
62 "Disable video tracks when the video is played in the background to "
63 "optimize performance.";
64
65const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
66const char kBleAdvertisingInExtensionsDescription[] =
67 "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere "
68 "with regular use of Bluetooth Low Energy features.";
69
70const char kBrowserSideNavigationName[] = "Enable browser side navigation";
horodb71a5a2017-06-09 16:08:2471const char kBrowserSideNavigationDescription[] =
horo3beccfb2017-06-19 14:47:0172 "Enable browser side navigation (aka PlzNavigate).";
horodb71a5a2017-06-09 16:08:2473
Brett Wilsonf27ff602017-07-07 22:28:4774const char kBrowserTaskSchedulerName[] = "Task Scheduler";
75const char kBrowserTaskSchedulerDescription[] =
76 "Enables redirection of some task posting APIs to the task scheduler.";
77
78const char kBypassAppBannerEngagementChecksName[] =
79 "Bypass user engagement checks";
80const char kBypassAppBannerEngagementChecksDescription[] =
81 "Bypasses user engagement checks for displaying app banners, such as "
82 "requiring that users have visited the site before and that the banner "
83 "hasn't been shown recently. This allows developers to test that other "
84 "eligibility requirements for showing app banners, such as having a "
85 "manifest, are met.";
86
87const char kCaptureThumbnailOnLoadFinishedName[] =
88 "Capture page thumbnail on load finished";
89const char kCaptureThumbnailOnLoadFinishedDescription[] =
90 "Capture a page thumbnail (for use on the New Tab page) when the page load "
91 "finishes, in addition to other times a thumbnail may be captured.";
92
Marc Treibe3651be2017-07-14 11:05:4093const char kCaptureThumbnailOnNavigatingAwayName[] =
94 "Capture page thumbnail on navigating away";
95const char kCaptureThumbnailOnNavigatingAwayDescription[] =
96 "Capture a page thumbnail (for use on the New Tab page) when navigating "
97 "away from the current page, in addition to other times a thumbnail may be "
98 "captured.";
99
Brett Wilsonf27ff602017-07-07 22:28:47100const char kCastStreamingHwEncodingName[] =
101 "Cast Streaming hardware video encoding";
102const char kCastStreamingHwEncodingDescription[] =
103 "This option enables support in Cast Streaming for encoding video streams "
104 "using platform hardware.";
105
Amber Won478561d2017-08-19 01:02:59106const char kClickToOpenPDFName[] = "Click to open embedded PDFs";
107const char kClickToOpenPDFDescription[] =
108 "When the PDF plugin is unavailable, show a click-to-open placeholder for "
109 "embedded PDFs.";
110
Brett Wilsonf27ff602017-07-07 22:28:47111const char kCloudImportName[] = "Cloud Import";
112const char kCloudImportDescription[] = "Allows the cloud-import feature.";
113
114const char kColorCorrectRenderingName[] = "Color correct rendering";
115const char kColorCorrectRenderingDescription[] =
116 "Enables color correct rendering of web content.";
117
Christopher Cameronceb8727d2017-09-07 23:53:16118const char kForceColorProfileSRGB[] = "sRGB";
119const char kForceColorProfileP3[] = "Display P3 D65";
120const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4";
121const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)";
122
123const char kForceColorProfileName[] = "Force color profile";
124const char kForceColorProfileDescription[] =
125 "Forces Chrome to use a specific color profile instead of the color "
126 "of the window's current monitor, as specified by the operating system.";
127
Brett Wilsonf27ff602017-07-07 22:28:47128const char kCompositedLayerBordersName[] = "Composited render layer borders";
129const char kCompositedLayerBordersDescription[] =
130 "Renders a border around composited Render Layers to help debug and study "
131 "layer compositing.";
132
133const char kContextualSuggestionsCarouselName[] =
134 "Enable Contextual Suggestions";
135const char kContextualSuggestionsCarouselDescription[] =
136 "If enabled, shows contextual suggestions in a horizontal carousel in "
137 "bottom sheet content.";
138
139const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
140const char kCreditCardAssistDescription[] =
141 "Enable assisted credit card filling on certain sites.";
142
143const char kCrossProcessGuestViewIsolationName[] =
144 "Cross process frames for guests";
145const char kCrossProcessGuestViewIsolationDescription[] =
146 "Highly experimental where guests such as <webview> are implemented on "
147 "the out-of-process iframe infrastructure.";
148
Brett Wilsonf27ff602017-07-07 22:28:47149const char kDataReductionProxyLoFiName[] = "Data Saver Lo-Fi mode";
150const char kDataReductionProxyLoFiDescription[] =
151 "Forces Data Saver Lo-Fi mode to be always enabled, enabled only on "
152 "cellular connections, or disabled. Data Saver must be enabled for Lo-Fi "
153 "mode to be used.";
154const char kDataReductionProxyLoFiAlwaysOn[] = "Always on";
155const char kDataReductionProxyLoFiCellularOnly[] = "Cellular only";
156const char kDataReductionProxyLoFiDisabled[] = "Disable";
157const char kDataReductionProxyLoFiSlowConnectionsOnly[] =
158 "Slow connections only";
159
160const char kDatasaverPromptName[] = "Cellular Data Saver Prompt";
161const char kDatasaverPromptDescription[] =
162 "Enables a prompt, which appears when a cellular network connection is "
163 "detected, to take the user to the Data Saver extension page on Chrome Web "
164 "Store.";
165const char kDatasaverPromptDemoMode[] = "Demo mode";
166
167const char kDebugPackedAppName[] = "Debugging for packed apps";
168const char kDebugPackedAppDescription[] =
169 "Enables debugging context menu options such as Inspect Element for packed "
170 "applications.";
171
172const char kDefaultTileHeightName[] = "Default tile height";
173const char kDefaultTileHeightDescription[] = "Specify the default tile height.";
174const char kDefaultTileHeightShort[] = "128";
175const char kDefaultTileHeightTall[] = "256";
176const char kDefaultTileHeightGrande[] = "512";
177const char kDefaultTileHeightVenti[] = "1024";
178
179const char kDefaultTileWidthName[] = "Default tile width";
180const char kDefaultTileWidthDescription[] = "Specify the default tile width.";
181const char kDefaultTileWidthShort[] = "128";
182const char kDefaultTileWidthTall[] = "256";
183const char kDefaultTileWidthGrande[] = "512";
184const char kDefaultTileWidthVenti[] = "1024";
185
186const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
187const char kDebugShortcutsDescription[] =
188 "Enables additional keyboard shortcuts that are useful for debugging Ash.";
189
190const char kDeviceDiscoveryNotificationsName[] =
191 "Device Discovery Notifications";
192const char kDeviceDiscoveryNotificationsDescription[] =
193 "Device discovery notifications on local network.";
194
195const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
196const char kDevtoolsExperimentsDescription[] =
197 "Enables Developer Tools experiments. Use Settings panel in Developer "
198 "Tools to toggle individual experiments.";
199
200const char kDisableAudioForDesktopShareName[] =
201 "Disable Audio For Desktop Share";
202const char kDisableAudioForDesktopShareDescription[] =
203 "With this flag on, desktop share picker window will not let the user "
204 "choose whether to share audio.";
205
Brett Wilsonf27ff602017-07-07 22:28:47206const char kDisableTabForDesktopShareName[] =
207 "Disable Desktop Share with tab source";
208const char kDisableTabForDesktopShareDescription[] =
209 "This flag controls whether users can choose a tab for desktop share.";
210
211const char kDisallowDocWrittenScriptsUiName[] =
212 "Block scripts loaded via document.write";
213const char kDisallowDocWrittenScriptsUiDescription[] =
214 "Disallows fetches for third-party parser-blocking scripts inserted into "
215 "the main frame via document.write.";
216
217const char kDisplayList2dCanvasName[] = "Display list 2D canvas";
218const char kDisplayList2dCanvasDescription[] =
219 "Enables the use of display lists to record 2D canvas commands. This "
220 "allows 2D canvas rasterization to be performed on separate thread.";
221
222const char kDistanceFieldTextName[] = "Distance field text";
223const char kDistanceFieldTextDescription[] =
224 "Text is rendered with signed distance fields rather than bitmap alpha "
225 "masks.";
226
227const char kDriveSearchInChromeLauncherName[] =
228 "Drive Search in Chrome App Launcher";
229const char kDriveSearchInChromeLauncherDescription[] =
230 "Files from Drive will show up when searching the Chrome App Launcher.";
231
232const char kDropSyncCredentialName[] =
233 "Drop sync credentials from password manager";
234const char kDropSyncCredentialDescription[] =
235 "The password manager will not offer to save the credential used to sync.";
236
237const char kEasyUnlockBluetoothLowEnergyDiscoveryName[] =
238 "Smart Lock Bluetooth Low Energy Discovery";
239const char kEasyUnlockBluetoothLowEnergyDiscoveryDescription[] =
Tim Song52c142c62017-07-20 03:29:07240 "Disables a Smart Lock setting that allows Chromebook to discover phones "
Brett Wilsonf27ff602017-07-07 22:28:47241 "over Bluetooth Low Energy in order to unlock the Chromebook when the "
242 "phone is in its proximity.";
243
Gustavo Sacomotofb11164f2017-07-21 12:56:18244const char kEasyUnlockPromotionsName[] = "Smart Lock Promotions";
245const char kEasyUnlockPromotionsDescription[] =
246 "Enables Smart Lock promotions. Promotions will be periodically display "
247 "if the user is eligible.";
248
Brett Wilsonf27ff602017-07-07 22:28:47249const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
250const char kEmbeddedExtensionOptionsDescription[] =
251 "Display extension options as an embedded element in chrome://extensions "
252 "rather than opening a new tab.";
253
254const char kEnableAsmWasmName[] =
255 "Experimental Validate Asm.js and convert to WebAssembly when valid.";
256const char kEnableAsmWasmDescription[] =
257 R"*(Validate Asm.js when "use asm" is present and then convert to )*"
258 R"*(WebAssembly.)*";
259
260const char kEnableAutofillCreditCardBankNameDisplayName[] =
261 "Display the issuer bank name of a credit card in autofill.";
262const char kEnableAutofillCreditCardBankNameDisplayDescription[] =
263 "If enabled, displays the issuer bank name of a credit card in autofill.";
264
265const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
266 "Display the last used date of a credit card in autofill.";
267const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
268 "If enabled, display the last used date of a credit card in autofill.";
269
270const char kEnableAutofillCreditCardUploadCvcPromptName[] =
271 "Enable requesting missing CVC during Autofill credit card upload";
272const char kEnableAutofillCreditCardUploadCvcPromptDescription[] =
273 "If enabled, requests missing CVC when offering to upload credit cards to "
274 "Google Payments.";
275
Jared Saule4446d12017-08-15 20:01:13276const char kEnableAutofillCreditCardUploadGoogleLogoName[] =
277 "Show Google Logo for Autofill credit card upload";
278const char kEnableAutofillCreditCardUploadGoogleLogoDescription[] =
279 "If enabled, displays the Google logo in the save prompt when offering to "
280 "upload credit cards to Google Payments.";
281
jsaul19ef81c2017-08-09 18:53:40282const char kEnableAutofillCreditCardUploadNewUiName[] =
283 "Enable updated UI for Autofill credit card upload";
284const char kEnableAutofillCreditCardUploadNewUiDescription[] =
285 "If enabled, displays a new save card bubble/infobar design when offering "
286 "to upload credit cards to Google Payments.";
287
Vitalii Iarko4f9834ce2017-08-04 07:05:19288const char kEnableBreakingNewsPushName[] = "Breaking News Push";
289const char kEnableBreakingNewsPushDescription[] =
290 "Listen for breaking news content suggestions (e.g. for New Tab Page) "
291 "through Google Cloud Messaging.";
292
Brett Wilsonf27ff602017-07-07 22:28:47293const char kEnableBrotliName[] = "Brotli Content-Encoding.";
294const char kEnableBrotliDescription[] =
295 "Enable Brotli Content-Encoding support.";
296
297const char kEnableClearBrowsingDataCountersName[] =
298 "Enable Clear browsing data counters.";
299const char kEnableClearBrowsingDataCountersDescription[] =
300 "Shows data volume counters in the Clear browsing data dialog.";
301
sclittle50e4bb92017-07-08 02:23:03302const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
303
304const char kEnableClientLoFiDescription[] =
305 "Enable showing low fidelity images on some pages on slow networks.";
306
Brett Wilsonf27ff602017-07-07 22:28:47307const char kEnableDataReductionProxyLitePageName[] =
308 "Lite pages for Data Saver Lo-Fi mode";
309const char kEnableDataReductionProxyLitePageDescription[] =
310 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be "
311 "shown instead of image placeholders when Lo-Fi is on. Data Saver and "
312 "Lo-Fi must be enabled for lite pages to be shown.";
313
314const char kDataReductionProxyServerAlternative[] =
315 "Use alternative server configuration";
316const char kEnableDataReductionProxyServerExperimentName[] =
317 "Use an alternative Data Saver back end configuration.";
318const char kEnableDataReductionProxyServerExperimentDescription[] =
319 "Enable a different approach to saving data by configuring the back end "
320 "server";
321
322const char kEnableDataReductionProxySavingsPromoName[] =
323 "Data Saver 1 MB Savings Promo";
324const char kEnableDataReductionProxySavingsPromoDescription[] =
325 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already "
326 "saved 1 MB of data, then the promo will not be shown. Data Saver must be "
327 "enabled for the promo to be shown.";
328
Giovanni Ortuño Urquidi45020e232017-07-12 06:10:17329const char kEnableDesktopPWAWindowingName[] =
330 "Windowing related features for desktop PWAs.";
331const char kEnableDesktopPWAWindowingDescription[] =
332 "Enable experimental windowing features for desktop PWAs.";
333
Brett Wilsonf27ff602017-07-07 22:28:47334const char kEnableEnumeratingAudioDevicesName[] =
335 "Experimentally enable enumerating audio devices.";
336const char kEnableEnumeratingAudioDevicesDescription[] =
337 "Experimentally enable the use of enumerating audio devices.";
338
339const char kEnableGenericSensorName[] = "Generic Sensor";
340const char kEnableGenericSensorDescription[] =
Mikhail Pozdnyakov73373a62017-08-24 17:31:25341 "Enables motion sensor classes based on Generic Sensor API, i.e. "
342 "Accelerometer, LinearAccelerationSensor, Gyroscope, "
343 "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces.";
344
345const char kEnableGenericSensorExtraClassesName[] =
346 "Generic Sensor Extra Classes";
347const char kEnableGenericSensorExtraClassesDescription[] =
348 "Enables an extra set of sensor classes based on Generic Sensor API, which "
349 "expose previously unavailable platform features, i.e. AmbientLightSensor "
350 "and Magnetometer interfaces.";
Brett Wilsonf27ff602017-07-07 22:28:47351
Brett Wilsonf27ff602017-07-07 22:28:47352const char kEnableHDRName[] = "HDR mode";
353const char kEnableHDRDescription[] =
354 "Enables HDR support on compatible displays.";
355
356const char kEnableHeapProfilingName[] = "Heap profiling";
357const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
358const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
359const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
360const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
361
362const char kEnableHttpFormWarningName[] =
363 "Show in-form warnings for sensitive fields when the top-level page is not "
Eric Lawrenceed8fccf2017-09-08 21:27:15364 "HTTPS";
Brett Wilsonf27ff602017-07-07 22:28:47365const char kEnableHttpFormWarningDescription[] =
366 "Attaches a warning UI to any password or credit card fields detected when "
367 "the top-level page is not HTTPS";
368
Sidney San Martín9375b892017-09-09 00:29:54369const char kEnableMacMaterialDesignDownloadShelfName[] =
370 "Enable Material Design download shelf";
371
372const char kEnableMacMaterialDesignDownloadShelfDescription[] =
373 "If enabled, the download shelf uses Material Design.";
374
Tatiana Gornakafb40452017-07-31 13:50:04375const char kEnableManualFallbacksFillingName[] =
376 "Manual fallbacks for password manager forms filling";
377const char kEnableManualFallbacksFillingDescription[] =
378 "If enabled, then if user clicks on the password field on a form, popup "
379 "might contain generation fallbacks or 'Show all saved passwords' "
380 "fallback.";
381
vabr0215a8e2017-03-28 12:47:34382const char kEnableMaterialDesignBookmarksName[] =
383 "Enable Material Design bookmarks";
vabr0215a8e2017-03-28 12:47:34384const char kEnableMaterialDesignBookmarksDescription[] =
385 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
386 "bookmarks page.";
387
vabr0215a8e2017-03-28 12:47:34388const char kEnableMaterialDesignExtensionsName[] =
389 "Enable Material Design extensions";
vabr0215a8e2017-03-28 12:47:34390const char kEnableMaterialDesignExtensionsDescription[] =
391 "If enabled, the chrome://extensions/ URL loads the Material Design "
392 "extensions page.";
393
vabr0215a8e2017-03-28 12:47:34394const char kEnableMaterialDesignFeedbackName[] =
395 "Enable Material Design feedback";
vabr0215a8e2017-03-28 12:47:34396const char kEnableMaterialDesignFeedbackDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:19397 "If enabled, reporting an issue will load the Material Design feedback UI.";
vabr0215a8e2017-03-28 12:47:34398
Brett Wilsonf27ff602017-07-07 22:28:47399const char kEnableMidiManagerDynamicInstantiationName[] =
400 "MIDIManager dynamic instantiation for Web MIDI.";
401const char kEnableMidiManagerDynamicInstantiationDescription[] =
402 "Enable MIDIManager dynamic instantiation for Web MIDI.";
403
404const char kEnableNavigationTracingName[] = "Enable navigation tracing";
405const char kEnableNavigationTracingDescription[] =
406 "This is to be used in conjunction with the trace-upload-url flag. "
407 "WARNING: When enabled, Chrome will record performance data for every "
408 "navigation and upload it to the URL specified by the trace-upload-url "
409 "flag. The trace may include personally identifiable information (PII) "
410 "such as the titles and URLs of websites you visit.";
411
412const char kEnableNetworkServiceName[] = "Enable network service";
413const char kEnableNetworkServiceDescription[] =
414 "Enables the network service, which makes network requests through a "
415 "separate service. Note: most features don't work with this yet.";
416
Ahmed Fakhry2fd8fc82017-07-28 16:31:12417const char kEnableNightLightName[] = "Enable Night Light";
418const char kEnableNightLightDescription[] =
419 "Enable the Night Light feature which controls the color temperature of "
420 "the screen.";
421
Yutaka Hirano98be3272017-08-07 17:55:39422const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS";
423const char kEnableOutOfBlinkCORSDescription[] =
424 "CORS handling logic is moved out of blink.";
425
Erik Chen49bbfa22017-08-18 08:49:56426const char kEnableOutOfProcessHeapProfilingName[] =
427 "Out of process heap profiling.";
428const char kEnableOutOfProcessHeapProfilingDescription[] =
429 "Creates a profiling service that records stacktraces for all live, "
430 "malloced objects.";
431const char kEnableOutOfProcessHeapProfilingModeBrowser[] =
432 "Profile only the browser process.";
433const char kEnableOutOfProcessHeapProfilingModeAll[] = "Profile all processes.";
434
Brett Wilsonf27ff602017-07-07 22:28:47435const char kEnablePictureInPictureName[] = "Enable picture in picture.";
436const char kEnablePictureInPictureDescription[] =
437 "Enable the picture in picture feature for videos.";
438
439const char kEnableTokenBindingName[] = "Token Binding.";
440const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
441
Irmak Kavasoglu7e16af02017-07-19 09:52:47442const char kEnableUsernameCorrectionName[] = "Enable username correction";
443const char kEnableUsernameCorrectionDescription[] =
444 "While on the pending password state, add an edit button to the bubble so "
445 "that user can edit the username.";
446
Brett Wilsonf27ff602017-07-07 22:28:47447const char kEnableUseZoomForDsfName[] =
448 "Use Blink's zoom for device scale factor.";
449const char kEnableUseZoomForDsfDescription[] =
450 "If enabled, Blink uses its zooming mechanism to scale content for device "
451 "scale factor.";
452const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
453const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
454const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
455
456const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
457const char kEnableScrollAnchoringDescription[] =
458 "Adjusts scroll position to prevent visible jumps when offscreen content "
459 "changes.";
460
461const char kEnableSharedArrayBufferName[] =
462 "Experimental enabled SharedArrayBuffer support in JavaScript.";
463const char kEnableSharedArrayBufferDescription[] =
464 "Enable SharedArrayBuffer support in JavaScript.";
465
466const char kEnableWasmName[] = "WebAssembly structured cloning support.";
467const char kEnableWasmDescription[] =
468 "Enable web pages to use WebAssembly structured cloning.";
469
470const char kEnableWebUsbName[] = "WebUSB";
471const char kEnableWebUsbDescription[] = "Enable WebUSB support.";
472
473const char kEnableImageCaptureAPIName[] = "Image Capture API";
474const char kEnableImageCaptureAPIDescription[] =
475 "Enables the Web Platform Image Capture API: takePhoto(), "
476 "getPhotoCapabilities(), etc.";
477
478const char kEnableZeroSuggestRedirectToChromeName[] =
479 "Experimental contextual omnibox suggestion";
480const char kEnableZeroSuggestRedirectToChromeDescription[] =
481 "Change omnibox contextual suggestions to an experimental source. Note "
482 "that this is not an on/off switch for contextual omnibox and it only "
483 "applies to suggestions provided before the user starts typing a URL or a "
484 "search query (i.e. zero suggest).";
485
486const char kEnableWasmStreamingName[] =
487 "WebAssembly streaming compile/instantiate support.";
488const char kEnableWasmStreamingDescription[] =
489 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
490
491const char kEnableWebfontsInterventionName[] =
492 "New version of User Agent Intervention for WebFonts loading.";
493const char kEnableWebfontsInterventionDescription[] =
494 "Enable New version of User Agent Intervention for WebFonts loading.";
495const char kEnableWebfontsInterventionV2ChoiceDefault[] = "Default";
496const char kEnableWebfontsInterventionV2ChoiceEnabledWith2g[] = "Enabled: 2G";
497const char kEnableWebfontsInterventionV2ChoiceEnabledWith3g[] = "Enabled: 3G";
498const char kEnableWebfontsInterventionV2ChoiceEnabledWithSlow2g[] =
499 "Enabled: Slow 2G";
500const char kEnableWebfontsInterventionV2ChoiceDisabled[] = "Disabled";
501
502const char kEnableWebfontsInterventionTriggerName[] =
503 "Trigger User Agent Intervention for WebFonts loading always.";
504const char kEnableWebfontsInterventionTriggerDescription[] =
505 "Enable to trigger User Agent Intervention for WebFonts loading always. "
506 "This flag affects only when the intervention is enabled.";
507
508const char kEnableWebNotificationCustomLayoutsName[] =
509 "Enable custom layouts for Web Notifications.";
510const char kEnableWebNotificationCustomLayoutsDescription[] =
511 "Enable custom layouts for Web Notifications. They will have subtle layout "
512 "improvements that are otherwise not possible.";
513
514const char kExpensiveBackgroundTimerThrottlingName[] =
515 "Throttle expensive background timers";
516const char kExpensiveBackgroundTimerThrottlingDescription[] =
517 "Enables intervention to limit CPU usage of background timers to 1%.";
518
519const char kExperimentalAppBannersName[] = "Experimental app banners";
520const char kExperimentalAppBannersDescription[] =
521 "Enables a new experimental app banner flow and UI";
522
523const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
524const char kExperimentalCanvasFeaturesDescription[] =
525 "Enables the use of experimental canvas features which are still in "
526 "development.";
527
528const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
529const char kExperimentalExtensionApisDescription[] =
530 "Enables experimental extension APIs. Note that the extension gallery "
531 "doesn't allow you to upload extensions that use experimental APIs.";
532
533const char kExperimentalFullscreenExitUIName[] =
534 "Experimental fullscreen exit UI";
535const char kExperimentalFullscreenExitUIDescription[] =
536 "Displays experimental UI to allow mouse and touch input methods to exit "
537 "fullscreen mode.";
538
539const char kExperimentalHotwordHardwareName[] =
540 "Simulated hardware 'Ok Google' features";
541const char kExperimentalHotwordHardwareDescription[] =
542 "Enables an experimental version of 'Ok Google' hotword detection features "
543 "that have a hardware dependency.";
544
545const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
546const char kExperimentalKeyboardLockUiDescription[] =
547 "An experimental full screen with keyboard lock mode requiring users to "
548 "hold Esc to exit.";
549
550const char kExperimentalSecurityFeaturesName[] =
551 "Potentially annoying security features";
552const char kExperimentalSecurityFeaturesDescription[] =
553 "Enables several security features that will likely break one or more "
554 "pages that you visit on a daily basis. Strict mixed content checking, for "
555 "example. And locking powerful features to secure contexts. This flag will "
556 "probably annoy you.";
557
558const char kExperimentalWebPlatformFeaturesName[] =
559 "Experimental Web Platform features";
560const char kExperimentalWebPlatformFeaturesDescription[] =
561 "Enables experimental Web Platform features that are in development.";
562
563const char kExtensionContentVerificationName[] =
564 "Extension Content Verification";
565const char kExtensionContentVerificationDescription[] =
566 "This flag can be used to turn on verification that the contents of the "
567 "files on disk for extensions from the webstore match what they're "
568 "expected to be. This can be used to turn on this feature if it would not "
569 "otherwise have been turned on, but cannot be used to turn it off (because "
570 "this setting can be tampered with by malware).";
571const char kExtensionContentVerificationBootstrap[] =
572 "Bootstrap (get expected hashes, but do not enforce them)";
573const char kExtensionContentVerificationEnforce[] =
574 "Enforce (try to get hashes, and enforce them if successful)";
575const char kExtensionContentVerificationEnforceStrict[] =
576 "Enforce strict (hard fail if we can't get hashes)";
577
578const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
579const char kExtensionsOnChromeUrlsDescription[] =
580 "Enables running extensions on chrome:// URLs, where extensions explicitly "
581 "request this permission.";
galinapae72e152017-05-12 13:12:28582
Brett Wilsonecb80982017-07-12 20:34:51583const char kFastUnloadName[] = "Fast tab/window close";
584const char kFastUnloadDescription[] =
585 "Enables fast tab/window closing - runs a tab's onunload js handler "
586 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:34587
Brett Wilsonecb80982017-07-12 20:34:51588const char kFeaturePolicyName[] = "Feature Policy";
589const char kFeaturePolicyDescription[] =
590 "Enables granting and removing access to features through the "
591 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:34592
Brett Wilsonecb80982017-07-12 20:34:51593const char kFetchKeepaliveTimeoutSettingName[] =
594 "Fetch API keepalive timeout setting";
595const char kFetchKeepaliveTimeoutSettingDescription[] =
596 "This is for setting the timeout value for Fetch API with keepalive option "
597 "and SendBeacon";
598
599const char kFontCacheScalingName[] = "FontCache scaling";
600const char kFontCacheScalingDescription[] =
601 "Reuse a cached font in the renderer to serve different sizes of font for "
602 "faster layout.";
603
604const char kForceEffectiveConnectionTypeName[] =
605 "Override effective connection type";
606const char kForceEffectiveConnectionTypeDescription[] =
607 "Overrides the effective connection type of the current connection "
608 "returned by the network quality estimator.";
609const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
610const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
611const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
612const char kEffectiveConnectionType2GDescription[] = "2G";
613const char kEffectiveConnectionType3GDescription[] = "3G";
614const char kEffectiveConnectionType4GDescription[] = "4G";
615
616const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
617const char kFillOnAccountSelectDescription[] =
618 "Filling of passwords when an account is explicitly selected by the user "
619 "rather than autofilling credentials on page load.";
620
Brett Wilsonecb80982017-07-12 20:34:51621const char kForceTextDirectionName[] = "Force text direction";
622const char kForceTextDirectionDescription[] =
623 "Explicitly force the per-character directionality of UI text to "
624 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
625 "direction of the character language.";
626const char kForceDirectionLtr[] = "Left-to-right";
627const char kForceDirectionRtl[] = "Right-to-left";
628
629const char kForceUiDirectionName[] = "Force UI direction";
630const char kForceUiDirectionDescription[] =
631 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
632 "mode, overriding the default direction of the UI language.";
633
634const char kFramebustingName[] =
635 "Framebusting requires same-origin or a user gesture";
636const char kFramebustingDescription[] =
637 "Don't permit an iframe to navigate the top level browsing context unless "
638 "they are same-origin or the iframe is processing a user gesture.";
639
640const char kGamepadExtensionsName[] = "Gamepad Extensions";
641const char kGamepadExtensionsDescription[] =
642 "Enabling this option allows web applications to access experimental "
643 "extensions to the Gamepad APIs.";
644
sohan3f00ffc2017-07-14 22:28:08645const char kGlCompositedOverlayCandidateQuadBordersName[] =
646 "GL composited overlay candidate quad borders";
647const char kGlCompositedOverlayCandidateQuadBordersDescription[] =
Alex Newcomer43cb7f12017-07-28 17:37:39648 "Renders a border around GL composited overlay candidate quads to help "
649 "debug and study overlay support.";
Brett Wilsonecb80982017-07-12 20:34:51650
651const char kGpuRasterizationMsaaSampleCountName[] =
652 "GPU rasterization MSAA sample count.";
653const char kGpuRasterizationMsaaSampleCountDescription[] =
654 "Specify the number of MSAA samples for GPU rasterization.";
655const char kGpuRasterizationMsaaSampleCountZero[] = "0";
656const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
657const char kGpuRasterizationMsaaSampleCountFour[] = "4";
658const char kGpuRasterizationMsaaSampleCountEight[] = "8";
659const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
660
661const char kGpuRasterizationName[] = "GPU rasterization";
662const char kGpuRasterizationDescription[] =
663 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:28664const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:51665
666const char kGoogleProfileInfoName[] = "Google profile name and icon";
667const char kGoogleProfileInfoDescription[] =
668 "Enables using Google information to populate the profile name and icon in "
669 "the avatar menu.";
670
671const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
672const char kHarfbuzzRendertextDescription[] =
673 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect "
674 "web content.";
675
676const char kHistoryRequiresUserGestureName[] =
677 "New history entries require a user gesture.";
678const char kHistoryRequiresUserGestureDescription[] =
679 "Require a user gesture to add a history entry.";
680const char kHyperlinkAuditingName[] = "Hyperlink auditing";
681const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
682
683const char kHostedAppQuitNotificationName[] =
684 "Quit notification for hosted apps";
685const char kHostedAppQuitNotificationDescription[] =
686 "Display a notification when quitting Chrome if hosted apps are currently "
687 "running.";
688
689const char kHostedAppShimCreationName[] =
690 "Creation of app shims for hosted apps on Mac";
691const char kHostedAppShimCreationDescription[] =
692 "Create app shims on Mac when creating a hosted app.";
693
694const char kIconNtpName[] = "Large icons on the New Tab page";
695const char kIconNtpDescription[] =
696 "Enable the experimental New Tab page using large icons.";
697
698const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
699const char kIgnoreGpuBlacklistDescription[] =
700 "Overrides the built-in software rendering list and enables "
701 "GPU-acceleration on unsupported system configurations.";
702
703const char kImportantSitesInCbdName[] =
704 "Important sites options in clear browsing data dialog";
705const char kImportantSitesInCbdDescription[] =
706 "Include the option to whitelist important sites in the clear browsing "
707 "data dialog.";
708
709const char kInertVisualViewportName[] = "Inert visual viewport.";
710const char kInertVisualViewportDescription[] =
711 "Experiment to have all APIs reflect the layout viewport. This will make "
712 "window.scroll properties relative to the layout viewport.";
713
714const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
715const char kInProductHelpDemoModeChoiceDescription[] =
716 "Selects the In-Product Help demo mode.";
717
718const char kJavascriptHarmonyName[] = "Experimental JavaScript";
719const char kJavascriptHarmonyDescription[] =
720 "Enable web pages to use experimental JavaScript features.";
721
722const char kJavascriptHarmonyShippingName[] =
723 "Latest stable JavaScript features";
724const char kJavascriptHarmonyShippingDescription[] =
725 "Some web pages use legacy or non-standard JavaScript extensions that may "
726 "conflict with the latest JavaScript features. This flag allows disabling "
727 "support of those features for compatibility with such pages.";
728
Yutaka Hiranof7f2f632017-09-06 10:40:08729const char kKeepAliveRendererForKeepaliveRequestsName[] =
730 "Keep a renderer alive for keepalive fetch requests";
731const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
732 "Keep a render process alive when the process has a pending fetch request "
733 "with `keepalive' specified.";
734
Brett Wilsonecb80982017-07-12 20:34:51735const char kLcdTextName[] = "LCD text antialiasing";
736const char kLcdTextDescription[] =
737 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
738 "(subpixel) when doing accelerated compositing.";
739
740const char kLoadMediaRouterComponentExtensionName[] =
741 "Load Media Router Component Extension";
742const char kLoadMediaRouterComponentExtensionDescription[] =
743 "Loads the Media Router component extension at startup.";
744
745const char kManualPasswordGenerationName[] = "Manual password generation.";
746const char kManualPasswordGenerationDescription[] =
747 "Show a 'Generate Password' option on the context menu for all password "
748 "fields.";
749
Dominic Battref27e8762017-08-23 11:16:25750const char kManualPasswordSavingName[] = "Manual password saving.";
751const char kManualPasswordSavingDescription[] =
752 "Show the password manager icon when typing into a password filed. "
753 "Clicking it allows to save the password without submitting the form.";
754
Brett Wilsonecb80982017-07-12 20:34:51755const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
756const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
757const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous";
758const char kMarkHttpAsNonSecureAfterEditing[] =
759 "Warn on HTTP after editing forms";
760const char kMarkHttpAsNonSecureWhileIncognito[] =
761 "Warn on HTTP while in Incognito mode";
762const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] =
763 "Warn on HTTP while in Incognito mode or after editing forms";
764
765extern const char kMaterialDesignIncognitoNTPName[] =
766 "Material Design Incognito NTP.";
767extern const char kMaterialDesignIncognitoNTPDescription[] =
768 "If enabled, the Incognito New Tab page uses the new material design with "
769 "a better readable text.";
770
771const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
772const char kMediaRemotingDescription[] =
773 "When Casting a tab to a remote device, enabling this turns on an "
774 "optimization that forwards the content bitstream directly to the remote "
775 "device when a video is fullscreened.";
776
777const char kMemoryAblationName[] = "Memory ablation experiment";
778const char kMemoryAblationDescription[] =
779 "Allocates extra memory in the browser process.";
780
781const char kMemoryCoordinatorName[] = "Memory coordinator";
782const char kMemoryCoordinatorDescription[] =
783 "Enable memory coordinator instead of memory pressure listeners.";
784
785const char kMessageCenterNewStyleNotificationName[] = "New style notification";
786const char kMessageCenterNewStyleNotificationDescription[] =
787 "Enables the experiment style of material-design notification";
788
789const char kMessageCenterAlwaysScrollUpUponRemovalName[] =
790 "Experiments that message center always scroll up upon notification "
791 "removal";
792const char kMessageCenterAlwaysScrollUpUponRemovalDescription[] =
793 "Enables experiment that message center always scroll up when a "
794 "notification is removed.";
795
796const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
797const char kMhtmlGeneratorOptionDescription[] =
798 "Provides experimental options for MHTML file generator.";
799const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
800const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
801
802const char kMojoLoadingName[] = "Use Mojo IPC for resource loading";
803const char kMojoLoadingDescription[] =
804 "Use Mojo IPC instead of traditional Chrome IPC for resource loading.";
805
Miguel Casas-Sanchez10769c82017-07-27 23:52:04806const char kMojoVideoEncodeAcceleratorName[] =
807 "Hardware-accelerated video encoder accessed using Mojo IPC";
808const char kMojoVideoEncodeAcceleratorDescription[] =
809 "Use new Mojo IPC to access hardware-accelerated video encoder, where "
810 "available.";
811
Brett Wilsonecb80982017-07-12 20:34:51812const char kModuleScriptsName[] = "Enable ECMAScript 6 modules";
813const char kModuleScriptsDescription[] =
814 "Enables ECMAScript 6 modules support in Blink.";
815
Kouhei Ueno08445c22017-09-05 03:58:30816const char kModuleScriptsDynamicImportName[] =
817 "Enable ECMAScript 6 modules dynamic import";
818const char kModuleScriptsDynamicImportDescription[] =
819 "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and "
820 "Blink.";
821
Brett Wilsonecb80982017-07-12 20:34:51822const char kNewAudioRenderingMixingStrategyName[] =
823 "New audio rendering mixing strategy";
824const char kNewAudioRenderingMixingStrategyDescription[] =
825 "Use the new audio rendering mixing strategy.";
826
827const char kNewBookmarkAppsName[] = "The new bookmark app system";
828const char kNewBookmarkAppsDescription[] =
829 "Enables the new system for creating bookmark apps.";
830
831const char kNewOmniboxAnswerTypesName[] =
832 "New omnibox answers in suggest types";
833const char kNewOmniboxAnswerTypesDescription[] =
834 "Enables new types of answers in the omnibox suggest drop-down: currency "
835 "conversions, dictionary definitions, sports scores, translations, and "
836 "when is.";
837
838const char kNewRemotePlaybackPipelineName[] =
839 "Enable the new remote playback pipeline.";
840const char kNewRemotePlaybackPipelineDescription[] =
841 "Enable the new pipeline for playing media element remotely via "
842 "RemotePlayback API or native controls.";
843
844const char kNewUsbBackendName[] = "Enable new USB backend";
845const char kNewUsbBackendDescription[] =
846 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:34847
brettw5f9c1642017-05-14 17:12:48848const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:34849const char kNostatePrefetchDescription[] =
850 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
851 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
852 R"*(improve load times even more. "Simple Load" does nothing and is )*"
853 R"*(similar to disabling the feature, but collects more metrics for )*"
854 R"*(comparison purposes.)*";
855
Brett Wilsonecb80982017-07-12 20:34:51856const char kNotificationsNativeFlagName[] = "Enable native notifications.";
857const char kNotificationsNativeFlagDescription[] =
858 "Enable support for using the native notification toasts and notification "
859 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:34860
Brett Wilsonecb80982017-07-12 20:34:51861const char kNumRasterThreadsName[] = "Number of raster threads";
862const char kNumRasterThreadsDescription[] =
863 "Specify the number of raster threads.";
864const char kNumRasterThreadsOne[] = "1";
865const char kNumRasterThreadsTwo[] = "2";
866const char kNumRasterThreadsThree[] = "3";
867const char kNumRasterThreadsFour[] = "4";
868
869const char kOfferStoreUnmaskedWalletCardsName[] =
870 "Google Payments card saving checkbox";
871const char kOfferStoreUnmaskedWalletCardsDescription[] =
872 "Show the checkbox to offer local saving of a credit card downloaded from "
873 "the server.";
874
875const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
876const char kOfflineAutoReloadDescription[] =
877 "Pages that fail to load while the browser is offline will be "
878 "auto-reloaded when the browser is online again.";
879
880const char kOfflineAutoReloadVisibleOnlyName[] =
881 "Only Auto-Reload Visible Tabs";
882const char kOfflineAutoReloadVisibleOnlyDescription[] =
883 "Pages that fail to load while the browser is offline will only be "
884 "auto-reloaded if their tab is visible.";
885
886const char kOffMainThreadFetchName[] = "Off-main-thread fetch for Web Workers";
887const char kOffMainThreadFetchDescription[] =
888 "If enabled, the resource fetches from worker threads will not be blocked "
889 "by the busy main thread.";
890
891const char kOmniboxDisplayTitleForCurrentUrlName[] =
892 "Include title for the current URL in the omnibox";
893const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
894 "In the event that the omnibox provides suggestions on-focus, the URL of "
895 "the current page is provided as the first suggestion without a title. "
896 "Enabling this flag causes the title to be displayed.";
897
Benoit Lizeab08362c2017-07-19 14:50:54898const char kOmniboxSpareRendererName[] =
899 "Start spare renderer on omnibox focus";
900const char kOmniboxSpareRendererDescription[] =
901 "When the omnibox is focused, start an empty spare renderer. This can "
902 "speed up the load of the navigation from the omnibox.";
903
Tommy C. Li8875a442017-08-23 00:10:59904const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
905 "Omnibox UI Elide Suggestion URL After Host";
906const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
907 "Elides the path, query, and ref of suggested URLs in the Omnibox "
908 "dropdown.";
909
Brett Wilsonecb80982017-07-12 20:34:51910const char kOmniboxUIHideSuggestionUrlSchemeName[] =
911 "Omnibox UI Hide Suggestion URL Scheme";
912const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
913 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
914
915const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
916 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
917const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
918 "Elides trivially informative subdomains from suggested URLs in the "
919 "Omnibox dropdown (e.g. www. and m.).";
920
Tommy C. Li8875a442017-08-23 00:10:59921const char kOmniboxUIShowSuggestionFaviconsName[] =
922 "Omnibox UI Show Suggestion Favicons";
923const char kOmniboxUIShowSuggestionFaviconsDescription[] =
924 "Shows favicons instead of generic vector icons for URL suggestions in the "
925 "Omnibox dropdown.";
926
Brett Wilsonecb80982017-07-12 20:34:51927const char kOmniboxUIMaxAutocompleteMatchesName[] =
928 "Omnibox UI Max Autocomplete Matches";
929
930const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
931 "Changes the maximum number of autocomplete matches displayed in the "
932 "Omnibox UI.";
933
934const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
935const char kOmniboxUINarrowDropdownDescription[] =
936 "Makes the suggestions dropdown width match the omnibox width.";
937
938const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
939const char kOmniboxUIVerticalLayoutDescription[] =
940 "Displays Omnibox sugestions in 2 lines - title over origin.";
941
942const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
943const char kOmniboxUIVerticalMarginDescription[] =
944 "Changes the vertical margin in the Omnibox UI.";
945
946const char kOriginTrialsName[] = "Origin Trials";
947const char kOriginTrialsDescription[] =
948 "Enables origin trials for controlling access to feature/API experiments.";
949
950const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
951const char kOverlayScrollbarsDescription[] =
952 "Enable the experimental overlay scrollbars implementation. You must also "
953 "enable threaded compositing to have the scrollbars animate.";
954
chaopenge8aa016b2017-08-24 15:20:19955const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
956 "Flash Overlay Scrollbars After Any Scroll Update";
957const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
958 "Flash Overlay Scrollbars After any scroll update happends in page. You"
959 " must also enable Overlay Scrollbars.";
960
chaopeng343678022017-08-24 18:45:00961const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
962 "Flash Overlay Scrollbars When Mouse Enter";
963const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
964 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
965 " enable Overlay Scrollbars.";
966
Claudio Magni81326f92017-09-01 05:21:18967const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
968const char kUseNewAcceptLanguageHeaderDescription[] =
969 "Adds the base language code after other corresponding language+region "
970 "codes. This ensures that users receive content in their preferred "
971 "language.";
972
Brett Wilsonecb80982017-07-12 20:34:51973const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
974const char kOverscrollHistoryNavigationDescription[] =
975 "Experimental history navigation in response to horizontal overscroll.";
976const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
977
978const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
979const char kOverscrollStartThresholdDescription[] =
980 "Changes overscroll start threshold relative to the default value.";
981const char kOverscrollStartThreshold133Percent[] = "133%";
982const char kOverscrollStartThreshold166Percent[] = "166%";
983const char kOverscrollStartThreshold200Percent[] = "200%";
984
985const char kPassiveEventListenerDefaultName[] =
986 "Passive Event Listener Override";
987const char kPassiveEventListenerDefaultDescription[] =
988 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
989 "haven't requested otherwise) to be treated as passive. This will break "
990 "touch/wheel behavior on some websites but is useful for demonstrating the "
991 "potential performance benefits of adopting passive event listeners.";
992const char kPassiveEventListenerTrue[] = "True (when unspecified)";
993const char kPassiveEventListenerForceAllTrue[] = "Force All True";
994
995const char kPassiveEventListenersDueToFlingName[] =
996 "Touch Event Listeners Passive Default During Fling";
997const char kPassiveEventListenersDueToFlingDescription[] =
998 "Forces touchstart, and first touchmove per scroll event listeners during "
999 "fling to be treated as passive.";
1000
1001const char kPassiveDocumentEventListenersName[] =
1002 "Document Level Event Listeners Passive Default";
1003const char kPassiveDocumentEventListenersDescription[] =
1004 "Forces touchstart, and touchmove event listeners on document level "
1005 "targets (which haven't requested otherwise) to be treated as passive.";
1006
1007const char kPasswordForceSavingName[] = "Force-saving of passwords";
1008const char kPasswordForceSavingDescription[] =
1009 "Allow the user to manually enforce password saving instead of relying on "
1010 "password manager's heuristics.";
1011
1012const char kPasswordGenerationName[] = "Password generation";
1013const char kPasswordGenerationDescription[] =
1014 "Allow the user to have Chrome generate passwords when it detects account "
1015 "creation pages.";
1016
1017const char kPasswordImportExportName[] = "Password import and export";
1018const char kPasswordImportExportDescription[] =
1019 "Import and Export functionality in password settings.";
1020
1021const char kPermissionActionReportingName[] = "Permission Action Reporting";
1022const char kPermissionActionReportingDescription[] =
1023 "Enables permission action reporting to Safe Browsing servers for opted in "
1024 "users.";
1025
1026const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1027const char kPermissionsBlacklistDescription[] =
1028 "Enables the Permissions Blacklist, which blocks permissions for "
1029 "blacklisted sites for Safe Browsing users.";
1030
1031const char kPinchScaleName[] = "Pinch scale";
1032const char kPinchScaleDescription[] =
1033 "Enables experimental support for scale using pinch.";
1034
Brett Wilsonecb80982017-07-12 20:34:511035const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1036const char kPrintPdfAsImageDescription[] =
1037 "If enabled, an option to print PDF files as images will be available in "
1038 "print preview.";
1039
1040const char kPrintPreviewRegisterPromosName[] =
1041 "Print Preview Registration Promos";
1042const char kPrintPreviewRegisterPromosDescription[] =
1043 "Enable registering unregistered cloud printers from print preview.";
1044
1045const char kProtectSyncCredentialName[] = "Autofill sync credential";
1046const char kProtectSyncCredentialDescription[] =
1047 "How the password manager handles autofill for the sync credential.";
1048
1049const char kProtectSyncCredentialOnReauthName[] =
1050 "Autofill sync credential only for transactional reauth pages";
1051const char kProtectSyncCredentialOnReauthDescription[] =
1052 "How the password manager handles autofill for the sync credential only "
1053 "for transactional reauth pages.";
1054
Mohsen Izadi93faac12017-07-29 04:45:151055const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1056const char kPullToRefreshDescription[] =
1057 "Pull-to-refresh gesture in response to vertical overscroll.";
1058
Brett Wilsonecb80982017-07-12 20:34:511059const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1060const char kPushApiBackgroundModeDescription[] =
1061 "Enable background mode for the Push API. This allows Chrome to continue "
1062 "running after the last window is closed, and to launch at OS startup, if "
1063 "the Push API needs it.";
1064
Piotr Swigon46929d12017-08-11 07:16:331065const char kPwaMinimalUiName[] = "Minimal-UI display mode for PWAs";
1066const char kPwaMinimalUiDescription[] =
1067 "Enables support for Minimal-UI display mode for installed PWAs";
1068
Brett Wilsonecb80982017-07-12 20:34:511069const char kQuicName[] = "Experimental QUIC protocol";
1070const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1071
1072const char kReducedReferrerGranularityName[] =
1073 "Reduce default 'referer' header granularity.";
1074const char kReducedReferrerGranularityDescription[] =
1075 "If a page hasn't set an explicit referrer policy, setting this flag will "
1076 "reduce the amount of information in the 'referer' header for cross-origin "
1077 "requests.";
1078
1079const char kRequestTabletSiteName[] =
1080 "Request tablet site option in the settings menu";
1081const char kRequestTabletSiteDescription[] =
1082 "Allows the user to request tablet site. Web content is often optimized "
1083 "for tablet devices. When this option is selected the user agent string is "
1084 "changed to indicate a tablet device. Web content optimized for tablets is "
1085 "received there after for the current tab.";
1086
1087const char kResetAppListInstallStateName[] =
1088 "Reset the App Launcher install state on every restart.";
1089const char kResetAppListInstallStateDescription[] =
1090 "Reset the App Launcher install state on every restart. While this flag is "
1091 "set, Chrome will forget the launcher has been installed each time it "
1092 "starts. This is used for testing the App Launcher install flow.";
1093
1094const char kResourceLoadSchedulerName[] = "Use the resource load scheduler";
1095const char kResourceLoadSchedulerDescription[] =
1096 "Uses the resource load scheduler in blink to schedule and throttle "
1097 "resource load requests.";
1098
Brett Wilsonecb80982017-07-12 20:34:511099const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1100const char kSafeSearchUrlReportingDescription[] =
1101 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1102
1103const char kSaveasMenuLabelExperimentName[] =
1104 "Switch 'Save as' menu labels to 'Download'";
1105const char kSaveasMenuLabelExperimentDescription[] =
1106 "Enables an experiment to switch menu labels that use 'Save as...' to "
1107 "'Download'.";
1108
1109const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1110const char kSavePageAsMhtmlDescription[] =
1111 "Enables saving pages as MHTML: a single text file containing HTML and all "
1112 "sub-resources.";
1113
Brett Wilsonecb80982017-07-12 20:34:511114const char kScrollPredictionName[] = "Scroll prediction";
1115const char kScrollPredictionDescription[] =
1116 "Predicts the finger's future position during scrolls allowing time to "
1117 "render the frame before the finger is there.";
1118
1119const char kSecondaryUiMd[] =
1120 "Material Design in the rest of the browser's native UI";
1121const char kSecondaryUiMdDescription[] =
1122 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
1123 "etc.). On Mac, this enables MacViews, which uses toolkit-views for native "
1124 "browser dialogs.";
1125
1126const char kServiceWorkerNavigationPreloadName[] =
1127 "Service worker navigation preload.";
1128const char kServiceWorkerNavigationPreloadDescription[] =
1129 "Enable web pages to use the experimental service worker navigation "
1130 "preload API.";
1131
gogeraldd5061b592017-09-06 23:39:551132const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1133const char kServiceWorkerPaymentAppsDescription[] =
1134 "Enable Service Worker applications to integrate as payment apps";
1135
Makoto Shimazud9f333c2017-08-08 07:23:171136const char kServiceWorkerScriptStreamingName[] =
1137 "Service worker script streaming.";
1138const char kServiceWorkerScriptStreamingDescription[] =
1139 "Installed scripts for a service worker are sent over a dedicated "
1140 "message pipe and data pipes, and that is never be blocked on the main "
1141 "thread.";
1142
Brett Wilsonecb80982017-07-12 20:34:511143const char kSettingsWindowName[] = "Show settings in a window";
1144const char kSettingsWindowDescription[] =
1145 "Settings will be shown in a dedicated window instead of as a browser tab.";
1146
1147const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1148const char kShowAutofillSignaturesDescription[] =
1149 "Annotates web forms with Autofill signatures as HTML attributes.";
1150
1151const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1152const char kShowAutofillTypePredictionsDescription[] =
1153 "Annotates web forms with Autofill field type predictions as placeholder "
1154 "text.";
1155
1156const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1157const char kShowOverdrawFeedbackDescription[] =
1158 "Visualize overdraw by color-coding elements based on if they have other "
1159 "elements drawn underneath.";
1160
1161const char kShowSavedCopyName[] = "Show Saved Copy Button";
1162const char kShowSavedCopyDescription[] =
1163 "When a page fails to load, if a stale copy of the page exists in the "
1164 "browser cache, a button will be presented to allow the user to load that "
1165 "stale copy. The primary enabling choice puts the button in the most "
1166 "salient position on the error page; the secondary enabling choice puts it "
1167 "secondary to the reload button.";
1168const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1169const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1170const char kDisableShowSavedCopy[] = "Disable";
1171
1172const char kShowTouchHudName[] = "Show HUD for touch points";
1173const char kShowTouchHudDescription[] =
1174 "Enables a heads-up display at the top-left corner of the screen that "
1175 "lists information about the touch-points on the screen.";
1176
1177const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1178const char kSilentDebuggerExtensionApiDescription[] =
1179 "Do not show the infobar when an extension attaches to a page via "
1180 "chrome.debugger API. This is required to debug extension background "
1181 "pages.";
1182
1183const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1184const char kSimpleCacheBackendDescription[] =
1185 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1186 "disk space allocation.";
1187
1188const char kSimplifiedFullscreenUiName[] =
1189 "Simplified full screen / mouse lock UI.";
1190const char kSimplifiedFullscreenUiDescription[] =
1191 "A simplified new user experience when entering page-triggered full screen "
1192 "or mouse pointer lock states.";
1193
1194const char kSingleClickAutofillName[] = "Single-click autofill";
1195const char kSingleClickAutofillDescription[] =
1196 "Make autofill suggestions on initial mouse click on a form element.";
1197
1198const char kSiteDetails[] = "Site Details";
1199const char kSiteDetailsDescription[] =
1200 "Adds UI in MD Settings to view all content settings for a specific "
1201 "origin.";
1202
1203const char kSitePerProcessName[] = "Strict site isolation";
1204const char kSitePerProcessDescription[] =
1205 "Highly experimental security mode that ensures each renderer process "
1206 "contains pages from at most one site. In this mode, out-of-process "
1207 "iframes will be used whenever an iframe is cross-site.";
1208
1209const char kSiteSettings[] = "Site settings with All sites and Site details";
1210const char kSiteSettingsDescription[] =
1211 "Adds new ways of viewing Site settings.";
1212
1213const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
1214const char kSlimmingPaintInvalidationDescription[] =
1215 "Whether to enable a new paint invalidation system.";
1216
1217const char kSmoothScrollingName[] = "Smooth Scrolling";
1218const char kSmoothScrollingDescription[] =
1219 "Animate smoothly when scrolling page content.";
1220
1221const char kSoftwareRasterizerName[] = "3D software rasterizer";
1222const char kSoftwareRasterizerDescription[] =
1223 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1224
Tommy Steimel77704be2017-08-28 22:14:401225const char kSoundContentSettingName[] = "Sound content setting";
1226const char kSoundContentSettingDescription[] =
1227 "Enable site-wide muting in content settings and tab strip context menu.";
1228
Brett Wilsonecb80982017-07-12 20:34:511229const char kSpeculativePrefetchName[] = "Speculative Prefetch";
vabr0215a8e2017-03-28 12:47:341230const char kSpeculativePrefetchDescription[] =
1231 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
1232 R"*(load times, based on a local database (see chrome://predictors). )*"
1233 R"*("Learning" means that only the database construction is enabled, )*"
1234 R"*("Prefetching" that learning and prefetching are enabled.)*";
1235
Justin Donnelly4e448cb2017-07-07 21:32:131236const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1237 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131238const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1239 "If enabled, when the user enters text in the omnibox that looks like a "
1240 "a query, any service worker associated with the search engine the query "
1241 "will be sent to is started early.";
1242
Brett Wilsonecb80982017-07-12 20:34:511243const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1244const char kSpellingFeedbackFieldTrialDescription[] =
1245 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401246
Brett Wilsonecb80982017-07-12 20:34:511247const char kSuggestionsWithSubStringMatchName[] =
1248 "Substring matching for Autofill suggestions";
1249const char kSuggestionsWithSubStringMatchDescription[] =
1250 "Match Autofill suggestions based on substrings (token prefixes) rather "
1251 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341252
Brett Wilsonecb80982017-07-12 20:34:511253const char kSupervisedUserManagedBookmarksFolderName[] =
1254 "Managed bookmarks for supervised users";
1255const char kSupervisedUserManagedBookmarksFolderDescription[] =
1256 "Enable the managed bookmarks folder for supervised users.";
vabr0215a8e2017-03-28 12:47:341257
Brett Wilsonecb80982017-07-12 20:34:511258const char kSyncAppListName[] = "App Launcher sync";
1259const char kSyncAppListDescription[] =
1260 "Enable App Launcher sync. This also enables Folders where available (non "
1261 "OSX).";
vabr0215a8e2017-03-28 12:47:341262
Brett Wilsonecb80982017-07-12 20:34:511263const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1264const char kSyncSandboxDescription[] =
1265 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341266
Brett Wilsonecb80982017-07-12 20:34:511267const char kTabAudioMutingName[] = "Tab audio muting UI control";
1268const char kTabAudioMutingDescription[] =
1269 "When enabled, the audio indicators in the tab strip double as tab audio "
1270 "mute controls. This also adds commands in the tab context menu for "
1271 "quickly muting multiple selected tabs.";
vabr0215a8e2017-03-28 12:47:341272
Brett Wilsonecb80982017-07-12 20:34:511273const char kTcpFastOpenName[] = "TCP Fast Open";
1274const char kTcpFastOpenDescription[] =
1275 "Enable the option to send extra authentication information in the initial "
1276 "SYN packet for a previously connected client, allowing faster data send "
1277 "start.";
vabr0215a8e2017-03-28 12:47:341278
Brett Wilsonecb80982017-07-12 20:34:511279const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
1280const char kTopChromeMdDescription[] =
1281 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
1282const char kTopChromeMdMaterial[] = "Normal";
1283const char kTopChromeMdMaterialHybrid[] = "Touch";
vabr0215a8e2017-03-28 12:47:341284
Brett Wilsonecb80982017-07-12 20:34:511285const char kThreadedScrollingName[] = "Threaded scrolling";
1286const char kThreadedScrollingDescription[] =
1287 "Threaded handling of scroll-related input events. Disabling this will "
1288 "force all such scroll events to be handled on the main thread. Note that "
1289 "this can dramatically hurt scrolling performance of most websites and is "
1290 "intended for testing purposes only.";
1291
Steven Valdez4584b2482017-07-14 01:11:571292const char kTLS13VariantName[] = "TLS 1.3";
1293const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1294const char kTLS13VariantDisabled[] = "Disabled";
1295const char kTLS13VariantDraft[] = "Enabled (Draft)";
1296const char kTLS13VariantExperiment[] = "Enabled (Experiment)";
Steven Valdez2d7b4e82017-07-17 22:22:091297const char kTLS13VariantRecordTypeExperiment[] =
1298 "Enabled (Record Type Experiment)";
Steven Valdez2ee1c4a22017-07-19 20:39:311299const char kTLS13VariantNoSessionIDExperiment[] =
1300 "Enabled (No Session ID Experiment)";
Steven Valdez4584b2482017-07-14 01:11:571301
Brett Wilsonecb80982017-07-12 20:34:511302const char kTopDocumentIsolationName[] = "Top document isolation";
1303const char kTopDocumentIsolationDescription[] =
1304 "Highly experimental performance mode where cross-site iframes are kept in "
1305 "a separate process from the top document. In this mode, iframes from "
1306 "different third-party sites will be allowed to share a process.";
1307
1308const char kTouchAdjustmentName[] = "Touch adjustment";
1309const char kTouchAdjustmentDescription[] =
1310 "Refine the position of a touch gesture in order to compensate for touches "
1311 "having poor resolution compared to a mouse.";
1312
1313const char kTouchDragDropName[] = "Touch initiated drag and drop";
1314const char kTouchDragDropDescription[] =
1315 "Touch drag and drop can be initiated through long press on a draggable "
1316 "element.";
1317
1318const char kTouchEventsName[] = "Touch Events API";
1319const char kTouchEventsDescription[] =
1320 "Force Touch Events API feature detection to always be enabled or "
1321 "disabled, or to be enabled when a touchscreen is detected on startup "
1322 "(Automatic, the default).";
1323
1324const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1325const char kTouchSelectionStrategyDescription[] =
1326 "Controls how text selection granularity changes when touch text selection "
1327 "handles are dragged. Non-default behavior is experimental.";
1328const char kTouchSelectionStrategyCharacter[] = "Character";
1329const char kTouchSelectionStrategyDirection[] = "Direction";
1330
1331const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1332const char kTraceUploadUrlDescription[] =
1333 "This is to be used in conjunction with the enable-navigation-tracing "
1334 "flag. Please select the label that best describes the recorded traces. "
1335 "This will choose the destination the traces are uploaded to. If you are "
1336 "not sure, select other. If left empty, no traces will be uploaded.";
1337const char kTraceUploadUrlChoiceOther[] = "Other";
1338const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1339const char kTraceUploadUrlChoiceQa[] = "QA";
1340const char kTraceUploadUrlChoiceTesting[] = "Testing";
1341
1342const char kTranslate2016q2UiName[] = "Translate 2016Q2 UI";
1343const char kTranslate2016q2UiDescription[] =
1344 "Improved triggering logic and look for Translate Bubble UI";
1345
1346const char kTranslateLanguageByUlpName[] = "Translate Language by ULP";
1347const char kTranslateLanguageByUlpDescription[] =
1348 "Improved translate target language and triggering logic by considering "
1349 "information from User Language Profile (ULP).";
1350
1351const char kTrySupportedChannelLayoutsName[] =
1352 "Causes audio output streams to check if channel layouts other than the "
1353 "default hardware layout are available.";
1354const char kTrySupportedChannelLayoutsDescription[] =
1355 "Causes audio output streams to check if channel layouts other than the "
1356 "default hardware layout are available. Turning this on will allow the OS "
1357 "to do stereo to surround expansion if supported. May expose third party "
1358 "driver bugs, use with caution.";
1359
1360const char kUiPartialSwapName[] = "Partial swap";
1361const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1362
Chris Pickel3a227ae62017-08-24 10:47:261363const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1364const char kUseDdljsonApiDescription[] =
1365 "Enables the new ddljson API to fetch Doodles for the NTP.";
1366
Brett Wilsonecb80982017-07-12 20:34:511367const char kUserConsentForExtensionScriptsName[] =
1368 "User consent for extension scripts";
1369const char kUserConsentForExtensionScriptsDescription[] =
1370 "Require user consent for an extension running a script on the page, if "
1371 "the extension requested permission to run on all urls.";
1372
1373const char kUseSuggestionsEvenIfFewFeatureName[] =
1374 "Disable minimum for server-side tile suggestions on NTP.";
1375const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1376 "Request server-side suggestions even if there are only very few of them "
1377 "and use them for tiles on the New Tab Page.";
1378
1379const char kV8CacheOptionsName[] = "V8 caching mode.";
1380const char kV8CacheOptionsDescription[] =
1381 "Caching mode for the V8 JavaScript engine.";
1382const char kV8CacheOptionsParse[] = "Cache V8 parser data.";
1383const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1384
1385const char kV8CacheStrategiesForCacheStorageName[] =
1386 "V8 caching strategy for CacheStorage.";
1387const char kV8CacheStrategiesForCacheStorageDescription[] =
1388 "Caching strategy of scripts in CacheStorage for the V8 JavaScript engine.";
1389const char kV8CacheStrategiesForCacheStorageNormal[] = "Normal";
1390const char kV8CacheStrategiesForCacheStorageAggressive[] = "Aggressive";
1391
1392const char kVibrateRequiresUserGestureName[] =
1393 "Requiring user gesture for the Vibration API";
1394const char kVibrateRequiresUserGestureDescription[] =
1395 "Block the Vibration API if no user gesture has been received on the frame "
1396 "or any embedded frame.";
1397
1398const char kVideoFullscreenOrientationLockName[] =
1399 "Lock screen orientation when playing a video fullscreen.";
1400const char kVideoFullscreenOrientationLockDescription[] =
1401 "Lock the screen orientation of the device to match video orientation when "
1402 "a video goes fullscreen. Only on phones.";
1403
1404const char kVideoRotateToFullscreenName[] =
1405 "Rotate-to-fullscreen gesture for videos.";
1406const char kVideoRotateToFullscreenDescription[] =
1407 "Enter/exit fullscreen when device is rotated to/from the orientation of "
1408 "the video. Only on phones.";
1409
1410const char kWalletServiceUseSandboxName[] =
1411 "Use Google Payments sandbox servers";
1412const char kWalletServiceUseSandboxDescription[] =
1413 "For developers: use the sandbox service for Google Payments API calls.";
1414
1415const char kWebgl2Name[] = "WebGL 2.0";
1416const char kWebgl2Description[] = "Allow web applications to access WebGL 2.0.";
1417
1418const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
1419const char kWebglDraftExtensionsDescription[] =
1420 "Enabling this option allows web applications to access the WebGL "
1421 "Extensions that are still in draft status.";
1422
1423const char kWebMidiName[] = "Web MIDI API";
1424const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1425
1426const char kWebPaymentsName[] = "Web Payments";
1427const char kWebPaymentsDescription[] =
1428 "Enable Web Payments API integration, a JavaScript API for merchants.";
1429
Mathieu Perreault51339b82017-07-20 17:06:051430const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
1431const char kWebPaymentsModifiersDescription[] =
1432 "If the website provides modifiers in the payment request, show the custom "
1433 "total for each payment instrument, update the shopping cart when "
1434 "instruments are switched, and send modified payment method specific data "
1435 "to the payment app.";
1436
Brett Wilsonecb80982017-07-12 20:34:511437const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
1438const char kWebrtcEchoCanceller3Description[] =
1439 "Experimental WebRTC echo canceller (AEC3).";
1440
1441const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
1442const char kWebrtcHwDecodingDescription[] =
1443 "Support in WebRTC for decoding video streams using platform hardware.";
1444
1445const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
1446const char kWebrtcHwEncodingDescription[] =
1447 "Support in WebRTC for encoding video streams using platform hardware.";
1448
1449const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
1450const char kWebrtcHwH264EncodingDescription[] =
1451 "Support in WebRTC for encoding h264 video streams using platform "
1452 "hardware.";
1453
1454const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
1455const char kWebrtcHwVP8EncodingDescription[] =
1456 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
1457
1458const char kWebrtcSrtpAesGcmName[] =
1459 "Negotiation with GCM cipher suites for SRTP in WebRTC";
1460const char kWebrtcSrtpAesGcmDescription[] =
1461 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
1462
Joachim Bauch4a41d7512017-08-23 14:24:231463const char kWebrtcSrtpEncryptedHeadersName[] =
1464 "Negotiation with encrypted header extensions for SRTP in WebRTC";
1465const char kWebrtcSrtpEncryptedHeadersDescription[] =
1466 "When enabled, WebRTC will try to negotiate encrypted header extensions "
1467 "for SRTP.";
1468
Brett Wilsonecb80982017-07-12 20:34:511469const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
1470const char kWebrtcStunOriginDescription[] =
1471 "When enabled, Stun messages generated by WebRTC will contain the Origin "
1472 "header.";
1473
1474const char kWebvrName[] = "WebVR";
1475const char kWebvrDescription[] =
1476 "Enabling this option allows web applications to access experimental "
1477 "Virtual Reality APIs.";
1478
1479const char kWifiCredentialSyncName[] = "WiFi credential sync";
1480const char kWifiCredentialSyncDescription[] =
1481 "Enables synchronizing WiFi network settings across devices. When enabled, "
1482 "the WiFi credential datatype is registered with Chrome Sync, and WiFi "
1483 "credentials are synchronized subject to user preferences. (See also, "
1484 "chrome://settings/syncSetup.)";
1485
Tom Anderson5c3130ad2017-08-21 19:49:171486const char kWindowNavNativeFlagName[] =
1487 "Enable native window navigation buttons.";
1488const char kWindowNavNativeFlagDescription[] =
1489 "Whether the window frame buttons should be drawn using the system theme. "
1490 "Has no effect unless using the GTK3 theme.";
1491
Brett Wilsonecb80982017-07-12 20:34:511492const char kZeroCopyName[] = "Zero-copy rasterizer";
1493const char kZeroCopyDescription[] =
1494 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:341495
Brett Wilsonff596952017-07-14 01:06:551496// Android ---------------------------------------------------------------------
1497
1498#if defined(OS_ANDROID)
1499
1500const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
1501const char kAiaFetchingDescription[] =
1502 "Enable intermediate certificate fetching when a server does not provide "
1503 "sufficient certificates to build a chain to a trusted root.";
1504
1505const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
1506const char kAccessibilityTabSwitcherDescription[] =
1507 "Enable the accessibility tab switcher for Android.";
1508
1509const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
1510const char kAndroidAutofillAccessibilityDescription[] =
1511 "Enable accessibility for autofill popup.";
1512
1513const char kAndroidPaymentAppsName[] = "Android payment apps";
1514const char kAndroidPaymentAppsDescription[] =
1515 "Enable third party Android apps to integrate as payment apps";
1516
Iulia Harasim0b5a4312017-07-21 16:20:501517const char kAndroidSigninPromosName[] = "Signin promos for Android.";
1518const char kAndroidSigninPromosDescription[] =
1519 "New signin promos for Android which will be displayed in content "
1520 "suggestions, Settings, Bookmarks and Recent Tabs.";
1521
Tatiana Gornak38ab3562017-07-28 11:04:181522const char kAndroidViewPasswordsName[] = "Copy and view passwords for Android";
1523const char kAndroidViewPasswordsDescription[] =
1524 "Enables copying and viewing passwords in settings.";
1525
Brett Wilsonff596952017-07-14 01:06:551526const char kAutofillAccessoryViewName[] =
1527 "Autofill suggestions as keyboard accessory view";
1528const char kAutofillAccessoryViewDescription[] =
1529 "Shows Autofill suggestions on top of the keyboard rather than in a "
1530 "dropdown.";
1531
1532const char kBackgroundLoaderForDownloadsName[] =
1533 "Enables background downloading of pages.";
1534const char kBackgroundLoaderForDownloadsDescription[] =
1535 "Enables downloading pages in the background in case page is not yet "
1536 "loaded in current tab.";
1537
Theresa Wellington37014d92017-08-23 02:09:201538const char kChromeHomeDoodleName[] = "Chrome Home Doodle.";
1539const char kChromeHomeDoodleDescription[] =
1540 "Enables showing the Doodle on the NTP for Chrome Home.";
1541
Brett Wilsonff596952017-07-14 01:06:551542const char kChromeHomeExpandButtonName[] = "Chrome Home Expand Button";
1543const char kChromeHomeExpandButtonDescription[] =
1544 "Enables the expand button for Chrome Home.";
1545
Michael van Ouwerkerk66e45322017-08-04 17:25:241546const char kChromeHomeModernLayoutName[] = "Modern layout for Chrome Home.";
1547const char kChromeHomeModernLayoutDescription[] =
1548 "Enables the modern layout for Chrome Home.";
1549
Brett Wilsonff596952017-07-14 01:06:551550const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1551const char kChromeHomeSwipeLogicDescription[] =
1552 "Various swipe logic options for Chrome Home for sheet expansion.";
1553const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
1554const char kChromeHomeSwipeLogicButtonOnly[] = "Swipe on expand button";
1555
1556const char kChromeHomeName[] = "Chrome Home";
1557const char kChromeHomeDescription[] =
1558 "Enables Chrome Home on Android. You must restart the browser"
1559 " twice for changes to take effect.";
1560
1561const char kContentSuggestionsCategoryOrderName[] =
1562 "Default content suggestions category order (e.g. on NTP)";
1563const char kContentSuggestionsCategoryOrderDescription[] =
1564 "Set default order of content suggestion categories (e.g. on the NTP).";
1565
1566const char kContentSuggestionsCategoryRankerName[] =
1567 "Content suggestions category ranker (e.g. on NTP)";
1568const char kContentSuggestionsCategoryRankerDescription[] =
1569 "Set category ranker to order categories of content suggestions (e.g. on "
1570 "the NTP).";
1571
1572const char kContextualSearchContextualCardsBarIntegration[] =
1573 "Contextual Search - Contextual Cards Integration";
1574const char kContextualSearchContextualCardsBarIntegrationDescription[] =
1575 "Whether or not integration of Contextual Cards data in the Contextual "
1576 "Search Bar is enabled.";
1577
1578const char kContextualSearchSingleActionsName[] =
1579 "Contextual Search - Single Actions";
1580const char kContextualSearchSingleActionsDescription[] =
1581 "Whether or not single actions using Contextual Cards data in the "
1582 "Contextual Search Bar is enabled.";
1583
1584const char kContextualSearchUrlActionsName[] =
1585 "Contextual Search - URL Actions";
1586const char kContextualSearchUrlActionsDescription[] =
1587 "Whether or not URL actions using Contextual Cards data in the Contextual "
1588 "Search Bar is enabled.";
1589
1590const char kContextualSearchName[] = "Contextual Search";
1591const char kContextualSearchDescription[] =
1592 "Whether or not Contextual Search is enabled.";
1593
Dmitry Skiba9c3efa72017-07-20 22:01:141594const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
1595const char kDontPrefetchLibrariesDescription[] =
1596 "Don't prefetch libraries after loading.";
1597
Brett Wilsonff596952017-07-14 01:06:551598const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
1599const char kEnableAndroidPayIntegrationV1Description[] =
1600 "Enable integration with Android Pay using the first version of the API";
1601
1602const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
1603const char kEnableAndroidPayIntegrationV2Description[] =
1604 "Enable integration with Android Pay using the second version of the API";
1605
1606const char kEnableAndroidSpellcheckerDescription[] =
1607 "Enables use of the Android spellchecker.";
1608const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
1609
Brett Wilsonff596952017-07-14 01:06:551610const char kEnableContentSuggestionsNewFaviconServerName[] =
1611 "Get favicons for content suggestions from a new server.";
1612const char kEnableContentSuggestionsNewFaviconServerDescription[] =
1613 "If enabled, the content suggestions (on the NTP) will get favicons from a "
1614 "new favicon server.";
1615
1616const char kEnableContentSuggestionsLargeThumbnailName[] =
1617 "Large thumbnails layout for content suggestions cards.";
1618const char kEnableContentSuggestionsLargeThumbnailDescription[] =
1619 "If enabled, the content suggestions cards will use large thumbnails and "
1620 "some related adjustments.";
1621
1622const char kEnableContentSuggestionsVideoOverlayName[] =
1623 "Video icon overlay on thumbnails for content suggestions cards.";
1624const char kEnableContentSuggestionsVideoOverlayDescription[] =
1625 "If enabled, the content suggestions cards for suggestions with a video "
1626 "will show a video play icon overlay on the thumbnail.";
1627
1628const char kEnableContentSuggestionsSettingsName[] =
1629 "Show content suggestions settings.";
1630const char kEnableContentSuggestionsSettingsDescription[] =
1631 "If enabled, the content suggestions settings will be available from the "
1632 "main settings menu.";
1633
1634const char kEnableContentSuggestionsShowSummaryName[] =
1635 "Show content suggestions summaries.";
1636const char kEnableContentSuggestionsShowSummaryDescription[] =
1637 "If enabled, the content suggestions summaries will be shown.";
1638
1639const char kEnableCopylessPasteName[] = "App Indexing (Copyless Paste)";
1640const char kEnableCopylessPasteDescription[] =
1641 "Provide suggestions for text input, based on your recent context. For "
1642 "example, if you looked at a restaurant website and switched to the Maps "
1643 "app, the keyboard would offer the name of that restaurant as a suggestion "
1644 "to enter into the search bar. The data is indexed locally, and never sent "
1645 "to the server. It's disabled in incognito mode.";
1646
1647const char kEnableCustomContextMenuName[] = "Enable custom context menu";
1648const char kEnableCustomContextMenuDescription[] =
1649 "Enables a new context menu when a link, image, or video is pressed within "
1650 "Chrome.";
1651
1652const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
1653const char kEnableCustomFeedbackUiDescription[] =
1654 "Enables a custom feedback UI when submitting feedback through Google "
1655 "Feedback. Works with Google Play Services v10.2+";
1656
1657const char kEnableDataReductionProxyMainMenuName[] =
1658 "Enable Data Saver main menu footer";
1659const char kEnableDataReductionProxyMainMenuDescription[] =
1660 "Enables the Data Saver footer in the main menu";
1661
1662const char kEnableDataReductionProxySiteBreakdownName[] =
1663 "Data Saver Site Breakdown";
1664const char kEnableDataReductionProxySiteBreakdownDescription[] =
1665 "Enable the site breakdown on the Data Saver settings page.";
1666
1667const char kEnableOmniboxClipboardProviderName[] =
1668 "Omnibox clipboard URL suggestions";
1669const char kEnableOmniboxClipboardProviderDescription[] =
1670 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
1671 "focus in the omnibox.";
1672
1673const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
1674 "Use expanded autofill credit card popup layout.";
1675const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
1676 "If enabled, displays autofill credit card popup using expanded layout.";
1677
1678const char kEnableFaviconsFromWebManifestName[] =
1679 "Load favicons from Web Manifests";
1680const char kEnableFaviconsFromWebManifestDescription[] =
1681 "Fetch Web Manifests on page load to read favicons from them.";
1682
1683const char kEnableNtpAssetDownloadSuggestionsName[] =
1684 "Show asset downloads on the New Tab page";
1685const char kEnableNtpAssetDownloadSuggestionsDescription[] =
1686 "If enabled, the list of content suggestions on the New Tab page will "
1687 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
1688 "later use.";
1689
1690const char kEnableNtpBookmarkSuggestionsName[] =
1691 "Show recently visited bookmarks on the New Tab page";
1692const char kEnableNtpBookmarkSuggestionsDescription[] =
1693 "If enabled, the list of content suggestions on the New Tab page will "
1694 "contain recently visited bookmarks.";
1695
1696const char kEnableNtpForeignSessionsSuggestionsName[] =
1697 "Show recent foreign tabs on the New Tab page";
1698const char kEnableNtpForeignSessionsSuggestionsDescription[] =
1699 "If enabled, the list of content suggestions on the New Tab page will "
1700 "contain recent foreign tabs.";
1701
1702const char kEnableNtpMostLikelyFaviconsFromServerName[] =
1703 "Download favicons for NTP tiles from Google.";
1704const char kEnableNtpMostLikelyFaviconsFromServerDescription[] =
1705 "If enabled, missing favicons for NTP tiles get downloaded from Google. "
1706 "This only applies to tiles that originate from synced history.";
1707
Jan Krcal7fadbd32017-08-04 10:49:211708const char kNtpTilesLowerResolutionFaviconsName[] =
1709 "Show also lower resolution favicons in NTP tiles.";
1710const char kNtpTilesLowerResolutionFaviconsDescription[] =
1711 "If enabled, the size limit for a favicon to get displayed in an NTP tile "
1712 "decreases. Tiles where the largest available favicon is below this limit "
1713 "get displayed as colored tiles.";
1714
Brett Wilsonff596952017-07-14 01:06:551715const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
1716 "Show offline page downloads on the New Tab page";
1717const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
1718 "If enabled, the list of content suggestions on the New Tab page will "
1719 "contain pages that the user downloaded for later use.";
1720
1721const char kEnableNtpRemoteSuggestionsName[] =
1722 "Show server-side suggestions on the New Tab page";
1723const char kEnableNtpRemoteSuggestionsDescription[] =
1724 "If enabled, the list of content suggestions on the New Tab page will "
1725 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
1726 "allows to override the source used to retrieve these server-side "
1727 "suggestions.";
1728
1729const char kEnableNtpSnippetsVisibilityName[] =
1730 "Make New Tab Page Snippets more visible.";
1731const char kEnableNtpSnippetsVisibilityDescription[] =
1732 "If enabled, the NTP snippets will become more discoverable with a larger "
1733 "portion of the first card above the fold.";
1734
1735const char kEnableNtpSuggestionsNotificationsName[] =
1736 "Notify about new content suggestions available at the New Tab page";
1737const char kEnableNtpSuggestionsNotificationsDescription[] =
1738 "If enabled, notifications will inform about new content suggestions on "
1739 "the New Tab page.";
1740
1741const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
1742const char kEnablePhysicalWebDescription[] =
1743 "Enable scanning for URLs from Physical Web objects.";
1744
1745const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1746const char kEnableOfflinePreviewsDescription[] =
1747 "Enable showing offline page previews on slow networks.";
1748
1749const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
1750const char kEnableOskOverscrollDescription[] =
1751 "Enable OSK overscroll support. With this flag on, the OSK will only "
1752 "resize the visual viewport.";
1753
1754const char kEnableSpecialLocaleName[] =
1755 "Enable custom logic for special locales.";
1756const char kEnableSpecialLocaleDescription[] =
1757 "Enable custom logic for special locales. In this mode, Chrome might "
1758 "behave differently in some locales.";
1759
Brett Wilsonff596952017-07-14 01:06:551760const char kEnableWebNfcName[] = "WebNFC";
1761const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
1762
gogeraldf3cbb422017-07-26 14:37:121763const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
1764 "Enable Web Payments method section order V2.";
1765const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
1766 "Enable this option to display payment method section above address "
1767 "section instead of below it.";
1768
Brett Wilsonff596952017-07-14 01:06:551769const char kEnableWebPaymentsSingleAppUiSkipName[] =
1770 "Enable Web Payments single app UI skip";
1771const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
1772 "Enable Web Payments to skip showing its UI if the developer specifies a "
1773 "single app.";
1774
1775const char kHerbPrototypeChoicesName[] = "Switch preferred flavor of Herb";
1776const char kHerbPrototypeChoicesDescription[] =
1777 "Switching this option changes which tab management prototype is being "
1778 "tested.";
1779const char kHerbPrototypeFlavorElderberry[] =
1780 "ELDERBERRY: All View Intents in CCT v2";
1781
1782const char kKeepPrefetchedContentSuggestionsName[] =
1783 "Keep prefetched content suggestions";
1784const char kKeepPrefetchedContentSuggestionsDescription[] =
1785 "If enabled, some of prefetched content suggestions are not replaced by "
1786 "the new fetched suggestions.";
1787
1788const char kLsdPermissionPromptName[] =
1789 "Location Settings Dialog Permission Prompt";
1790const char kLsdPermissionPromptDescription[] =
1791 "Whether to use the Google Play Services Location Settings Dialog "
1792 "permission dialog.";
1793
Brett Wilsonff596952017-07-14 01:06:551794const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
1795const char kMediaScreenCaptureDescription[] =
1796 "Enable this option for experimental ScreenCapture feature on Android.";
1797
1798const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
1799const char kModalPermissionPromptsDescription[] =
1800 "Whether to use permission dialogs in place of permission infobars.";
1801
Brett Wilsonff596952017-07-14 01:06:551802const char kNewPhotoPickerName[] = "Enable new Photopicker";
1803const char kNewPhotoPickerDescription[] =
1804 "Activates the new picker for selecting photos.";
1805
1806const char kNoCreditCardAbort[] = "No Credit Card Abort";
1807const char kNoCreditCardAbortDescription[] =
1808 "Whether or not the No Credit Card Abort is enabled.";
1809
1810const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
1811const char kNtpCondensedLayoutDescription[] =
1812 "Show a condensed layout on the New Tab Page.";
1813
1814const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
1815const char kNtpCondensedTileLayoutDescription[] =
1816 "Show a condensed tile layout on the New Tab Page.";
1817
Nicolas Dossou-gbete56f37dc2017-08-10 16:14:041818const char kSiteExplorationUiName[] = "Site Exploration UI";
1819const char kSiteExplorationUiDescription[] =
1820 "Show site suggestions in the Exploration UI";
1821
Brett Wilsonff596952017-07-14 01:06:551822const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
1823const char kNtpGoogleGInOmniboxDescription[] =
1824 "Show a Google G in the omnibox on the New Tab Page.";
1825
1826const char kNtpOfflinePagesName[] = "Enable NTP offline pages";
1827const char kNtpOfflinePagesDescription[] =
1828 "Enables badging of offline pages on the New Tab page. Only relevant if "
1829 "offline pages are enabled.";
1830
1831const char kNtpPopularSitesName[] = "Show popular sites on the New Tab page";
1832const char kNtpPopularSitesDescription[] =
1833 "Pre-populate the New Tab page with popular sites.";
1834
Brett Wilsonff596952017-07-14 01:06:551835const char kOfflineBookmarksName[] = "Enable offline bookmarks";
1836const char kOfflineBookmarksDescription[] =
1837 "Enable saving bookmarked pages for offline viewing.";
1838
1839const char kOfflinePagesAsyncDownloadName[] =
1840 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages.)*";
1841const char kOfflinePagesAsyncDownloadDescription[] =
1842 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages such )*"
1843 R"*(that the user can click on it to download the page later.)*";
1844
1845const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
1846const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
1847
1848const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
1849const char kOfflinePagesCtV2Description[] =
1850 "V2 features include attributing pages to the app that initiated the "
1851 "custom tabs, and being able to query for pages by page attribution.";
1852
1853const char kOfflinePagesLoadSignalCollectingName[] =
1854 "Enables collecting load timing data for offline page snapshots.";
1855const char kOfflinePagesLoadSignalCollectingDescription[] =
1856 "Enables loading completeness data collection while writing an offline "
1857 "page. This data is collected in the snapshotted offline page to allow "
1858 "data analysis to improve deciding when to make the offline snapshot.";
1859
1860const char kOfflinePagesPrefetchingName[] =
1861 "Enables suggested offline pages to be prefetched.";
1862const char kOfflinePagesPrefetchingDescription[] =
1863 "Enables suggested offline pages to be prefetched, so useful content is "
1864 "available while offline.";
1865
Cathy Li3d5379e2017-09-07 00:11:091866const char kOfflinePagesPrefetchingUIName[] =
1867 "Enables prefetched offline pages to be shown in UI.";
1868const char kOfflinePagesPrefetchingUIDescription[] =
1869 "Enables prefetched offline pages to raise notifications and be shown in "
1870 "download home UI.";
1871
Collin Baker17f92a52017-07-19 21:41:251872const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
1873const char kOfflinePagesRenovationsDescription[] =
1874 "Enables offline page renovations which correct issues with dynamic "
1875 "content that occur when offlining pages that use JavaScript.";
1876
Brett Wilsonff596952017-07-14 01:06:551877const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
1878const char kOfflinePagesSharingDescription[] =
1879 "Enables the saved offline pages to be shared via other applications.";
1880
1881const char kOfflinePagesSvelteConcurrentLoadingName[] =
1882 "Enables concurrent background loading on svelte.";
1883const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
1884 "Enables concurrent background loading (or downloading) of pages on "
1885 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
1886 "happen when the svelte device is idle.";
1887
1888const char kOffliningRecentPagesName[] =
1889 "Enable offlining of recently visited pages";
1890const char kOffliningRecentPagesDescription[] =
1891 "Enable storing recently visited pages locally for offline use. Requires "
1892 "Offline Pages to be enabled.";
1893
1894extern const char kPayWithGoogleV1Name[] = "Pay with Google v1";
1895extern const char kPayWithGoogleV1Description[] =
1896 "Enable Pay with Google integration into Web Payments with API version "
1897 "'1'.";
1898
Brett Wilsonff596952017-07-14 01:06:551899const char kProgressBarCompletionName[] =
1900 "Android phone page load progress bar completion time.";
1901const char kProgressBarCompletionDescription[] =
1902 "Configures Android phone page loading progress bar completion time.";
1903const char kProgressBarCompletionLoadEvent[] =
1904 R"*(Top loading frame's onload event ("everything" is done in the )*"
1905 R"*(page, historical behavior).)*";
1906const char kProgressBarCompletionResourcesBeforeDcl[] =
1907 "Main frame's domContentLoaded and all resources loads started before "
1908 "domContentLoaded (iframes ignored).";
1909const char kProgressBarCompletionDomContentLoaded[] =
1910 "Main frame's domContentLoaded (iframes ignored).";
1911const char kProgressBarCompletionResourcesBeforeDclAndSameOriginIframes[] =
1912 "domContentLoaded and all resources loads started before domContentLoaded "
1913 "(main frame and same origin iframes).";
1914
1915const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
1916const char kPullToRefreshEffectDescription[] =
1917 "Page reloads triggered by vertically overscrolling content.";
1918
Piotr Swigon7c296ef2017-08-29 04:32:001919const char kPwaImprovedSplashScreenName[] =
1920 "Improved Splash Screen for standalone PWAs";
1921const char kPwaImprovedSplashScreenDescription[] =
1922 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
1923 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:491924const char kPwaPersistentNotificationName[] =
1925 "Persistent notification in standalone PWA";
1926const char kPwaPersistentNotificationDescription[] =
1927 "Enables a persistent Android notification for standalone PWAs";
1928
Brett Wilsonff596952017-07-14 01:06:551929const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
1930const char kReaderModeHeuristicsDescription[] =
1931 "Determines what pages the Reader Mode infobar is shown on.";
1932const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
1933const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
1934const char kReaderModeHeuristicsAllArticles[] = "All articles";
1935const char kReaderModeHeuristicsAlwaysOff[] = "Never";
1936const char kReaderModeHeuristicsAlwaysOn[] = "Always";
1937
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:181938const char kReaderModeInCCTName[] = "Reader Mode in CCT";
1939const char kReaderModeInCCTDescription[] =
1940 "Open Reader Mode in Chrome Custom Tabs.";
1941
Brett Wilsonff596952017-07-14 01:06:551942const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
1943const char kSetMarketUrlForTestingDescription[] =
1944 "When enabled, sets the market URL for use in testing the update menu "
1945 "item.";
1946
1947const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
1948const char kSpannableInlineAutocompleteDescription[] =
1949 "A new type of inline autocomplete for the omnibox that works with "
1950 "keyboards that compose text.";
1951
1952const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1953const char kTabsInCbdDescription[] =
1954 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1955
1956const char kTranslateCompactUIName[] = "New Translate Infobar";
1957const char kTranslateCompactUIDescription[] =
1958 "Enable the new Translate compact infobar UI.";
1959
1960const char kUpdateMenuBadgeName[] = "Force show update menu badge";
1961const char kUpdateMenuBadgeDescription[] =
1962 "When enabled, an update badge will be shown on the app menu button.";
1963
1964const char kUpdateMenuItemCustomSummaryDescription[] =
1965 "When this flag and the force show update menu item flag are enabled, a "
1966 "custom summary string will be displayed below the update menu item.";
1967const char kUpdateMenuItemCustomSummaryName[] =
1968 "Update menu item custom summary";
1969
1970const char kUpdateMenuItemName[] = "Force show update menu item";
1971const char kUpdateMenuItemDescription[] =
1972 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
1973 R"*(menu.)*";
1974
1975const char kUseAndroidMidiApiName[] = "Use Android Midi API";
1976const char kUseAndroidMidiApiDescription[] =
1977 "Use Android Midi API for WebMIDI (effective only with Android M+ "
1978 "devices).";
1979
Marc Treib93af46a2017-08-23 13:30:001980const char kThirdPartyDoodlesName[] =
1981 "Enable Doodles for third-party search engines";
1982const char kThirdPartyDoodlesDescription[] =
1983 "Enables fetching and displaying Doodles on the NTP for third-party search "
1984 "engines.";
1985
Brett Wilsonff596952017-07-14 01:06:551986const char kXGEOVisibleNetworksName[] = "Enable XGEO Visible Networks";
1987const char kXGEOVisibleNetworksDescription[] =
1988 "If location permissions are granted, include visible networks in the XGEO "
1989 "Header for omnibox queries. This will only happen if location is not "
1990 "fresh or not available (for example, due to a cold start).";
1991
Brett Wilson7b44537e2017-08-18 01:38:281992// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:551993
Brett Wilson7b44537e2017-08-18 01:38:281994#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:481995
Brett Wilson7b44537e2017-08-18 01:38:281996const char kAccountConsistencyName[] =
1997 "Identity consistency between browser and cookie jar";
1998const char kAccountConsistencyDescription[] =
1999 "When enabled, the browser manages signing in and out of Google accounts.";
2000const char kAccountConsistencyChoiceMirror[] = "Mirror";
2001const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342002
Chris Pickel3a227ae62017-08-24 10:47:262003const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2004const char kDoodlesOnLocalNtpDescription[] =
2005 "Show doodles on the local New Tab page if Google is the default search "
2006 "engine.";
2007
mlamouriff56c092017-05-11 15:31:392008const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392009const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342010 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392011const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392012const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392013const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342014 "Enabled (Flash lowers volume when interrupted by other sound, "
2015 "experimental)";
2016
Brett Wilson7b44537e2017-08-18 01:38:282017const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2018const char kEnableNewAppMenuIconDescription[] =
2019 "Use the new app menu icon with update notification animations.";
vabr0215a8e2017-03-28 12:47:342020
2021const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342022const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282023 "Enable receiving entity suggestions - disambiguation descriptions - for "
2024 "Omnibox suggestions.";
2025
2026const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2027const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192028 "Enable receiving tail suggestions, a type of search suggestion based on "
2029 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342030
Brett Wilson7b44537e2017-08-18 01:38:282031const char kOneGoogleBarOnLocalNtpName[] =
2032 "Enable the OneGoogleBar on the local NTP";
2033const char kOneGoogleBarOnLocalNtpDescription[] =
2034 "Show a OneGoogleBar on the local New Tab page if Google is the default "
2035 "search engine.";
2036
ojan38c678352017-04-11 20:27:552037const char kPauseBackgroundTabsName[] = "Pause background tabs";
2038const char kPauseBackgroundTabsDescription[] =
2039 "Pause timers in background tabs after 5 minutes on desktop.";
2040
Brett Wilson7b44537e2017-08-18 01:38:282041const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2042const char kUseGoogleLocalNtpDescription[] =
2043 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322044
Brett Wilson7b44537e2017-08-18 01:38:282045const char kVoiceSearchOnLocalNtpName[] =
2046 "Enable Voice Search on the local NTP";
2047const char kVoiceSearchOnLocalNtpDescription[] =
2048 "Show a microphone for voice search on the local New Tab page "
2049 "if Google is the default search engine.";
2050
2051#if defined(GOOGLE_CHROME_BUILD)
2052
2053const char kGoogleBrandedContextMenuName[] =
2054 "Google branding in the context menu";
2055const char kGoogleBrandedContextMenuDescription[] =
2056 "Shows a Google icon next to context menu items powered by Google "
2057 "services.";
2058
2059#endif // !defined(GOOGLE_CHROME_BUILD)
2060
2061#endif // !defined(OS_ANDROID)
2062
2063// Windows ---------------------------------------------------------------------
2064
2065#if defined(OS_WIN)
2066
2067const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2068const char kCloudPrintXpsDescription[] =
2069 "XPS enables advanced options for classic printers connected to the Cloud "
2070 "Print with Chrome. Printers must be re-connected after changing this "
2071 "flag.";
2072
Dave Tapuskadd43469d2017-08-22 22:15:532073const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
2074const char kDirectManipulationStylusDescription[] =
2075 "If enabled, Chrome will scroll web pages on stylus drag.";
2076
Brett Wilson7b44537e2017-08-18 01:38:282077const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2078const char kDisablePostscriptPrintingDescription[] =
2079 "Disables PostScript generation when printing to PostScript capable "
2080 "printers, and uses EMF generation in its place.";
2081
2082const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2083const char kEnableAppcontainerDescription[] =
2084 "Enables the use of an AppContainer on sandboxed processes to improve "
2085 "security.";
2086
2087const char kEnableD3DVsync[] = "D3D v-sync";
2088const char kEnableD3DVsyncDescription[] =
2089 "Produces v-sync signal by having D3D wait for vertical blanking interval "
2090 "to occur.";
2091
2092const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2093const char kEnableDesktopIosPromotionsDescription[] =
2094 "Enable Desktop to iOS promotions, and allow users to see them if they are "
2095 "eligible.";
2096
2097const char kGdiTextPrinting[] = "GDI Text Printing";
2098const char kGdiTextPrintingDescription[] =
2099 "Use GDI to print text as simply text";
2100
2101const char kMergeKeyCharEventsName[] =
2102 "Enable or disable merging merging the key event (WM_KEY*) with char event "
2103 "(WM_CHAR).";
2104const char kMergeKeyCharEventsDescription[] =
2105 "If disabled, Chrome will handle WM_KEY* and WM_CHAR separately.";
2106
2107const char kTraceExportEventsToEtwName[] =
2108 "Enable exporting of tracing events to ETW.";
2109const char kTraceExportEventsToEtwDesription[] =
2110 "If enabled, trace events will be exported to the Event Tracing for "
2111 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2112 "Xperf.";
2113
2114const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2115const char kUseWinrtMidiApiDescription[] =
2116 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2117 "later).";
2118
2119const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2120const char kWindows10CustomTitlebarDescription[] =
2121 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2122 "deferring to Windows.";
2123
Wez6656c572017-08-29 22:29:582124#if DCHECK_IS_ON() && defined(SYZYASAN)
2125extern const char kSyzyAsanDcheckIsFatalName[] = "DCHECKs are fatal";
2126extern const char kSyzyAsanDcheckIsFatalDescription[] =
2127 "By default Chrome will evaluate DCHECKs in SyzyASAN builds, but only log "
2128 "failed DCHECKs. If enabled, DCHECKs will crash the calling process.";
2129#endif // DCHECK_IS_ON() && defined(SYZYASAN)
2130
Brett Wilson7b44537e2017-08-18 01:38:282131#endif // defined(OS_WIN)
2132
2133// Mac -------------------------------------------------------------------------
2134
2135#if defined(OS_MACOSX)
2136
2137const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
2138const char kAppInfoDialogDescription[] =
2139 "Makes the Toolkit-Views based App Info dialog accessible from "
2140 "chrome://apps or chrome://extensions in place of the native extension "
2141 "permissions dialog, or the details link (which is a link to the Web "
2142 "Store).";
2143
2144const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
2145const char kAppWindowCyclingDescription[] =
2146 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
2147 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
2148 "browser window, and browser windows will not be cycled when a Chrome App "
2149 "is active.";
2150
2151extern const char kCreditCardAutofillTouchBarName[] =
2152 "Credit Card Autofill Touch Bar";
2153extern const char kCreditCardAutofillTouchBarDescription[] =
2154 "Shows Credit Card Autofill Suggestions on the Touch Bar.";
2155
2156const char kFullscreenToolbarRevealName[] =
2157 "Enables the toolbar in fullscreen to reveal itself.";
2158const char kFullscreenToolbarRevealDescription[] =
2159 "Reveal the toolbar in fullscreen for a short period when the tab strip "
2160 "has changed.";
2161
2162const char kContentFullscreenName[] = "Improved Content Fullscreen";
2163const char kContentFullscreenDescription[] =
2164 "Fullscreen content window detaches from main browser window and goes to "
2165 "a new space without moving or changing the original browser window.";
2166
2167extern const char kDialogTouchBarName[] = "Dialog Touch Bar";
2168extern const char kDialogTouchBarDescription[] =
2169 "Shows Dialog buttons on the Touch Bar.";
2170
2171const char kHostedAppsInWindowsName[] =
2172 "Allow hosted apps to be opened in windows";
2173const char kHostedAppsInWindowsDescription[] =
2174 "Allows hosted apps to be opened in windows instead of being limited to "
2175 "tabs.";
2176
2177extern const char kMacRTLName[] = "Enable RTL";
2178extern const char kMacRTLDescription[] =
2179 "Mirrors the UI for RTL language users";
2180
2181extern const char kMacTouchBarName[] = "Hardware Touch Bar";
2182extern const char kMacTouchBarDescription[] =
2183 "Control the use of the Touch Bar.";
2184
2185const char kMacV2SandboxName[] = "Mac V2 Sandbox";
2186const char kMacV2SandboxDescription[] =
2187 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
2188 "entire life cycle.";
2189
2190const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2191const char kMacViewsNativeAppWindowsDescription[] =
2192 "Controls whether to use Toolkit-Views based Chrome App windows.";
2193
2194const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2195const char kMacViewsTaskManagerDescription[] =
2196 "Controls whether to use the Toolkit-Views based Task Manager.";
2197
2198const char kTabDetachingInFullscreenName[] =
2199 "Allow tab detaching in fullscreen";
2200const char kTabDetachingInFullscreenDescription[] =
2201 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
2202
2203const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
2204const char kTabStripKeyboardFocusDescription[] =
2205 "Enable keyboard focus for the tabs in the tab strip.";
2206
2207const char kTranslateNewUxName[] = "New Translate UX";
2208const char kTranslateNewUxDescription[] =
2209 "Enable the new Translate bubble UX is offered instead of the infobar.";
2210
2211// Non-Mac ---------------------------------------------------------------------
2212
2213#else // !defined(OS_MACOSX)
2214
2215const char kPermissionPromptPersistenceToggleName[] =
2216 "Persistence Toggle in Permission Prompts";
2217const char kPermissionPromptPersistenceToggleDescription[] =
2218 "Whether to display a persistence toggle in permission prompts.";
2219
2220#endif
2221
2222// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342223
2224#if defined(OS_CHROMEOS)
2225
Brett Wilson7b44537e2017-08-18 01:38:282226const char kAcceleratedMjpegDecodeName[] =
2227 "Hardware-accelerated mjpeg decode for captured frame";
2228const char kAcceleratedMjpegDecodeDescription[] =
2229 "Enable hardware-accelerated mjpeg decode for captured frame where "
2230 "available.";
vabr0215a8e2017-03-28 12:47:342231
Brett Wilson7b44537e2017-08-18 01:38:282232const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2233const char kAllowTouchpadThreeFingerClickDescription[] =
2234 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342235
Brett Wilson7b44537e2017-08-18 01:38:282236const char kArcBootCompleted[] = "Load Android apps automatically";
2237const char kArcBootCompletedDescription[] =
2238 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:342239
Lev Rumyantsev7a8544312017-08-18 19:26:512240const char kArcNativeBridgeExperimentName[] =
2241 "Enable native bridge experiment for ARC";
2242const char kArcNativeBridgeExperimentDescription[] =
2243 "Enables experimental native bridge feature.";
2244
Brett Wilson7b44537e2017-08-18 01:38:282245const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
2246const char kAshEnableUnifiedDesktopDescription[] =
2247 "Enable unified desktop mode which allows a window to span multiple "
2248 "displays.";
vabr0215a8e2017-03-28 12:47:342249
Brett Wilson7b44537e2017-08-18 01:38:282250const char kBootAnimationName[] = "Boot animation";
2251const char kBootAnimationDescription[] =
2252 "Wallpaper boot animation (except for OOBE case).";
vabr0215a8e2017-03-28 12:47:342253
Brett Wilson7b44537e2017-08-18 01:38:282254const char kCaptivePortalBypassProxyName[] =
2255 "Bypass proxy for Captive Portal Authorization";
2256const char kCaptivePortalBypassProxyDescription[] =
2257 "If proxy is configured, it usually prevents from authorization on "
2258 "different captive portals. This enables opening captive portal "
2259 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:342260
Brett Wilson7b44537e2017-08-18 01:38:282261const char kCrOSComponentName[] = "Chrome OS Component";
2262const char kCrOSComponentDescription[] =
2263 "Enable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:342264
Xiaochu Liu51d03fd2017-09-08 23:51:022265const char kCrOSContainerName[] = "Chrome OS Container";
2266const char kCrOSContainerDescription[] =
2267 "Enable the use of Chrome OS Container utility.";
2268
Brett Wilson7b44537e2017-08-18 01:38:282269const char kCrosRegionsModeName[] = "Cros-regions load mode";
2270const char kCrosRegionsModeDescription[] =
2271 "This flag controls cros-regions load mode";
2272const char kCrosRegionsModeDefault[] = "Default";
2273const char kCrosRegionsModeOverride[] = "Override VPD values.";
2274const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:342275
Jacob Dufault2becbc482017-08-25 00:36:352276const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
2277const char kDisableLockScreenAppsDescription[] =
2278 "Disable new-note action handler apps on the lock screen. The user will "
2279 "not be able to launch the preferred note-taking action from the lock "
2280 "screen, provided that the app supports lock screen note taking.";
2281
Brett Wilson7b44537e2017-08-18 01:38:282282const char kDisableNewVirtualKeyboardBehaviorName[] =
2283 "New window behavior for the accessibility keyboard";
2284const char kDisableNewVirtualKeyboardBehaviorDescription[] =
2285 "Disable new window behavior for the accessibility keyboard in non-sticky "
2286 "mode (do not change work area in non-sticky mode).";
vabr0215a8e2017-03-28 12:47:342287
Brett Wilson7b44537e2017-08-18 01:38:282288const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
2289const char kEnablePerUserTimezoneDescription[] =
2290 "Chrome OS system timezone preference is stored and handled for each user "
2291 "individually.";
vabr0215a8e2017-03-28 12:47:342292
Brett Wilson7b44537e2017-08-18 01:38:282293const char kDisableSystemTimezoneAutomaticDetectionName[] =
2294 "SystemTimezoneAutomaticDetection policy support";
2295const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
2296 "Disable system timezone automatic detection device policy.";
vabr0215a8e2017-03-28 12:47:342297
newcomer403ac142017-07-05 18:26:302298const char kEnableFullscreenAppListName[] = "Enable The Peeking Launcher";
newcomer403ac142017-07-05 18:26:302299const char kEnableFullscreenAppListDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192300 "The peeking launcher UI supports touch and provides more space for "
2301 "upcoming features.";
newcomer403ac142017-07-05 18:26:302302
Alex Newcomer43cb7f12017-07-28 17:37:392303extern const char kEnableBackgroundBlurName[] = "Enable background blur.";
2304extern const char kEnableBackgroundBlurDescription[] =
2305 "Enables background blur for the Peeking Launcher, Lock Screen, and Tab "
2306 "Switcher.";
2307
Brett Wilson7b44537e2017-08-18 01:38:282308const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2309const char kEnableAndroidWallpapersAppDescription[] =
2310 "Enables the Android Wallpapers App as the default Wallpaper App on Chrome "
2311 "OS.";
vabr0215a8e2017-03-28 12:47:342312
Brett Wilson7b44537e2017-08-18 01:38:282313const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2314const char kEnableChromevoxArcSupportDescription[] =
2315 "Enable ChromeVox screen reader features in ARC";
vabr0215a8e2017-03-28 12:47:342316
Brett Wilson7b44537e2017-08-18 01:38:282317const char kEnableEhvInputName[] =
2318 "Emoji, handwriting and voice input on opt-in IME menu";
2319const char kEnableEhvInputDescription[] =
2320 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:342321
Brett Wilson7b44537e2017-08-18 01:38:282322const char kEnableEncryptionMigrationName[] =
2323 "Enable encryption migration of user data";
2324const char kEnableEncryptionMigrationDescription[] =
2325 "If enabled and the device supports ARC, the user will be asked to update "
2326 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:342327
Klemen Kozjekf2b30e452017-09-01 05:04:512328const char kEnableExternalDriveRename[] = "Enable external drive rename";
2329const char kEnableExternalDriveRenameDescription[] =
2330 "If enabled, external removable drives will get 'Rename' action in the "
2331 "context menu";
2332
Brett Wilson7b44537e2017-08-18 01:38:282333const char kEnableImeMenuName[] = "Enable opt-in IME menu";
2334const char kEnableImeMenuDescription[] =
2335 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:342336
Brett Wilson7b44537e2017-08-18 01:38:282337const char kEnableZipArchiverOnFileManagerName[] = "ZIP archiver for Drive";
2338const char kEnableZipArchiverOnFileManagerDescription[] =
2339 "Enable the ability to archive and unpack files on Drive in the Files app";
2340
2341const char kEolNotificationName[] = "Disable Device End of Life notification.";
2342const char kEolNotificationDescription[] =
2343 "Disable Notifcation when Device is End of Life.";
2344
2345const char kExperimentalAccessibilityFeaturesName[] =
2346 "Experimental accessibility features";
2347const char kExperimentalAccessibilityFeaturesDescription[] =
2348 "Enable additional accessibility features in the Settings page.";
2349
2350const char kExperimentalInputViewFeaturesName[] =
2351 "Experimental input view features";
2352const char kExperimentalInputViewFeaturesDescription[] =
2353 "Enable experimental features for IME input views.";
2354
2355const char kFileManagerTouchModeName[] = "Files App. touch mode";
2356const char kFileManagerTouchModeDescription[] =
2357 "Touchscreen-specific interactions of the Files app.";
2358
2359const char kFirstRunUiTransitionsName[] =
2360 "Animated transitions in the first-run tutorial";
2361const char kFirstRunUiTransitionsDescription[] =
2362 "Transitions during first-run tutorial are animated.";
2363
2364const char kFloatingVirtualKeyboardName[] = "Floating virtual keyboard.";
2365const char kFloatingVirtualKeyboardDescription[] =
2366 "Enable/Disable floating virtual keyboard.";
2367
2368const char kForceEnableStylusToolsName[] = "Force enable stylus features";
2369const char kForceEnableStylusToolsDescription[] =
2370 "Forces display of the stylus tools menu in the shelf and the stylus "
2371 "section in settings, even if there is no attached stylus device.";
2372
2373const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
2374const char kGestureEditingDescription[] =
2375 "Enable/Disable gesture editing option in the settings page for the "
2376 "virtual keyboard.";
2377
2378const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
2379const char kGestureTypingDescription[] =
2380 "Enable/Disable gesture typing option in the settings page for the virtual "
2381 "keyboard.";
2382
2383const char kInputViewName[] = "Input views";
2384const char kInputViewDescription[] =
2385 "Enable IME extensions to supply custom views for user input such as "
2386 "virtual keyboards.";
2387
2388const char kMemoryPressureThresholdName[] =
2389 "Memory discard strategy for advanced pressure handling";
2390const char kMemoryPressureThresholdDescription[] =
2391 "Memory discarding strategy to use";
2392const char kConservativeThresholds[] =
2393 "Conservative memory pressure release strategy";
2394const char kAggressiveCacheDiscardThresholds[] =
2395 "Aggressive cache release strategy";
2396const char kAggressiveTabDiscardThresholds[] =
2397 "Aggressive tab release strategy";
2398const char kAggressiveThresholds[] =
2399 "Aggressive tab and cache release strategy";
2400
2401const char kMtpWriteSupportName[] = "MTP write support";
2402const char kMtpWriteSupportDescription[] =
2403 "MTP write support in File System API (and file manager). In-place editing "
2404 "operations are not supported.";
2405
2406const char kMultideviceName[] = "Enable multidevice features";
2407const char kMultideviceDescription[] =
2408 "Enables UI for controlling multidevice features.";
vabr0215a8e2017-03-28 12:47:342409
2410const char kNetworkPortalNotificationName[] =
2411 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:342412const char kNetworkPortalNotificationDescription[] =
2413 "If enabled, notification is displayed when device is connected to a "
2414 "network behind captive portal.";
2415
stevenjbe1d457382017-05-24 22:37:242416const char kNetworkSettingsConfigName[] =
2417 "Settings based Network Configuration";
stevenjbe1d457382017-05-24 22:37:242418const char kNetworkSettingsConfigDescription[] =
2419 "Enables the Settings based network configuration UI instead of the Views "
2420 "based configuration dialog.";
2421
Brett Wilson7b44537e2017-08-18 01:38:282422const char kNewKoreanImeName[] = "New Korean IME";
2423const char kNewKoreanImeDescription[] =
2424 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:342425
Brett Wilson7b44537e2017-08-18 01:38:282426const char kNewZipUnpackerName[] = "New ZIP unpacker";
2427const char kNewZipUnpackerDescription[] =
2428 "New ZIP unpacker flow, based on the File System Provider API.";
vabr0215a8e2017-03-28 12:47:342429
Brett Wilson7b44537e2017-08-18 01:38:282430const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
2431const char kPhysicalKeyboardAutocorrectDescription[] =
2432 "Enable physical keyboard autocorrect for US keyboard, which can provide "
2433 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:342434
2435const char kPrinterProviderSearchAppName[] =
2436 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:342437const char kPrinterProviderSearchAppDescription[] =
2438 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:192439 "searches Chrome Web Store for extensions that support printing to a USB "
2440 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:342441
Brett Wilson7b44537e2017-08-18 01:38:282442const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
2443const char kQuickUnlockPinDescription[] =
2444 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2445 "device on the lock screen after you have signed into your device.";
2446const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2447const char kQuickUnlockPinSigninDescription[] =
2448 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2449 "device. After changing this flag PIN needs to be set up again.";
2450const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2451const char kQuickUnlockFingerprintDescription[] =
2452 "Enabling fingerprint quick unlock allows you to setup and use a "
2453 "fingerprint to unlock your Chromebook on the lock screen after you have "
2454 "signed into your device.";
vabr0215a8e2017-03-28 12:47:342455
Brett Wilson7b44537e2017-08-18 01:38:282456const char kOfficeEditingComponentAppName[] =
2457 "Office Editing for Docs, Sheets & Slides";
2458const char kOfficeEditingComponentAppDescription[] =
2459 "Office Editing for Docs, Sheets & Slides for testing purposes.";
Daniel Erat33054b22017-06-27 16:18:072460
2461const char kSpuriousPowerButtonWindowName[] = "Spurious power button window";
2462const char kSpuriousPowerButtonWindowDescription[] =
2463 "Number of recent accelerometer samples to examine to determine if a power "
2464 "button event was spurious.";
2465
2466const char kSpuriousPowerButtonAccelCountName[] =
2467 "Spurious power button acceleration count";
2468const char kSpuriousPowerButtonAccelCountDescription[] =
2469 "Number of recent acceleration samples that must meet or exceed exceed the "
2470 "threshold in order for a power button event to be considered spurious.";
2471
2472const char kSpuriousPowerButtonScreenAccelName[] =
2473 "Spurious power button screen acceleration threshold";
2474const char kSpuriousPowerButtonScreenAccelDescription[] =
2475 "Threshold (in m/s^2, disregarding gravity) that screen acceleration must "
2476 "meet or exceed for a power button event to be considered spurious.";
2477
2478const char kSpuriousPowerButtonKeyboardAccelName[] =
2479 "Spurious power button keyboard acceleration threshold";
2480const char kSpuriousPowerButtonKeyboardAccelDescription[] =
2481 "Threshold (in m/s^2, disregarding gravity) that keyboard acceleration "
2482 "must meet or exceed for a power button event to be considered spurious.";
2483
2484const char kSpuriousPowerButtonLidAngleChangeName[] =
2485 "Spurious power button lid angle change threshold";
2486const char kSpuriousPowerButtonLidAngleChangeDescription[] =
2487 "Change in lid angle (i.e. hinge between keyboard and screen) that must be "
2488 "met or exceeded for a power button event to be considered spurious.";
2489
Chung-Sheng Wu468b0b32017-09-01 14:41:572490const char kSysInternalsName[] = "Enable Sys-Internals";
2491const char kSysInternalsDescription[] =
2492 "If enabled, user can monitor system information at "
2493 "chrome://sys-internals.";
2494
Brett Wilson7b44537e2017-08-18 01:38:282495const char kTeamDrivesName[] = "Enable Team Drives Integration";
2496const char kTeamDrivesDescription[] =
2497 "If enabled, files under Team Drives will appear in the Files app.";
vabr0215a8e2017-03-28 12:47:342498
Brett Wilson7b44537e2017-08-18 01:38:282499const char kTetherName[] = "Instant Tethering";
2500const char kTetherDescription[] =
2501 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
2502 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:372503
Brett Wilson7b44537e2017-08-18 01:38:282504const char kTouchscreenCalibrationName[] =
2505 "Enable/disable touchscreen calibration option in material design settings";
2506const char kTouchscreenCalibrationDescription[] =
2507 "If enabled, the user can calibrate the touch screen displays in "
2508 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:092509
Mitsuru Oshima63d3f2a2017-08-23 00:12:112510// Force UI Mode
2511const char kUiModeName[] = "Force Ui Mode";
2512const char kUiModeDescription[] =
2513 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
2514 R"*(despite its current orientation. "Tablet" means that the )*"
2515 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
2516 R"*(means that the chromebook will act as if it were in clamshell )*"
2517 R"*(mode . "Auto" means that the chromebook will alternate between )*"
2518 R"*(the two, based on its orientation.)*";
2519const char kUiModeTablet[] = "TouchView";
2520const char kUiModeClamshell[] = "Clamshell";
2521const char kUiModeAuto[] = "Auto (default)";
2522
bruthigeafb0c02017-06-09 13:11:532523const char kUiDevToolsName[] = "Enable native UI inspection";
2524const char kUiDevToolsDescription[] =
2525 "Enables inspection of native UI elements. For local inspection use "
2526 "chrome://inspect#other";
2527
Takashi Toyoshima14f64f562017-07-19 08:38:202528const char kUseCrosMidiServiceName[] = "Use Chrome OS MIDI Service";
2529const char kUseCrosMidiServiceNameDescription[] =
2530 "Use Chrome OS MIDI Service for Web MIDI and allow ARC to support Android "
2531 "MIDI.";
2532
Brett Wilson7b44537e2017-08-18 01:38:282533const char kUseMusName[] = "Mus";
2534const char kUseMusDescription[] = "Enable the Mojo UI service.";
2535const char kEnableMashDescription[] =
2536 "Mash (UI, Chrome and ash in separate services)";
2537const char kEnableMusDescription[] =
2538 "Mus (UI in separate service, Chrome and ash in same service)";
2539
2540const char kVideoPlayerChromecastSupportName[] =
2541 "Experimental Chromecast support for Video Player";
2542const char kVideoPlayerChromecastSupportDescription[] =
2543 "This option enables experimental Chromecast support for Video Player app "
2544 "on ChromeOS.";
2545
2546const char kVirtualKeyboardName[] = "Virtual Keyboard";
2547const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
2548
2549const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
2550const char kVirtualKeyboardOverscrollDescription[] =
2551 "Enables virtual keyboard overscroll support.";
2552
2553const char kVoiceInputName[] = "Voice input on virtual keyboard";
2554const char kVoiceInputDescription[] =
2555 "Enables voice input on virtual keyboard.";
2556
2557const char kWakeOnPacketsName[] = "Wake On Packets";
2558const char kWakeOnPacketsDescription[] =
2559 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:202560
yhanadac5bff5b2017-05-18 06:37:092561#endif // defined(OS_CHROMEOS)
2562
Brett Wilson7b44537e2017-08-18 01:38:282563// Random platform combinations -----------------------------------------------
2564
2565#if defined(OS_WIN) || defined(OS_LINUX)
2566
2567const char kEnableInputImeApiName[] = "Enable Input IME API";
2568const char kEnableInputImeApiDescription[] =
2569 "Enable the use of chrome.input.ime API.";
2570
2571#endif // defined(OS_WIN) || defined(OS_LINUX)
2572
2573#if defined(OS_WIN) || defined(OS_MACOSX)
2574
2575const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2576const char kAutomaticTabDiscardingDescription[] =
2577 "If enabled, tabs get automatically discarded from memory when the system "
2578 "memory is low. Discarded tabs are still visible on the tab strip and get "
2579 "reloaded when clicked on. Info about discarded tabs can be found at "
2580 "chrome://discards.";
2581
2582#endif // defined(OS_WIN) || defined(OS_MACOSX)
2583
2584// Feature flags --------------------------------------------------------------
2585
2586#if BUILDFLAG(ENABLE_VR)
2587
2588#if defined(OS_ANDROID)
2589
2590const char kEnableVrShellName[] = "Enable Chrome VR.";
2591const char kEnableVrShellDescription[] =
2592 "Allow browsing with a VR headset if available for this device.";
2593
2594const char kVrCustomTabBrowsingName[] = "Enable Custom Tab browsing in VR.";
2595const char kVrCustomTabBrowsingDescription[] =
2596 "Allow browsing with a VR headset in a Custom Tab if available for this "
2597 "device.";
2598
2599const char kWebVrAutopresentName[] = "Enable WebVr auto presentation";
2600const char kWebVrAutopresentDescription[] =
2601 "Allows auto presentation of WebVr content from trusted first-party apps";
2602
2603const char kWebVrVsyncAlignName[] = "Enable WebVR VSync-aligned timing";
2604const char kWebVrVsyncAlignDescription[] =
2605 "Enabling this option aligns WebVR application rendering with VSync "
2606 "for smoother animations.";
2607
2608#endif // OS_ANDROID
2609
2610const char kWebvrExperimentalRenderingName[] =
2611 "WebVR experimental rendering optimizations";
2612const char kWebvrExperimentalRenderingDescription[] =
2613 "Enabling this option activates experimental rendering path optimizations "
2614 "for WebVR.";
2615
2616#endif // ENABLE_VR
2617
2618#if !defined(DISABLE_NACL)
2619
2620const char kNaclDebugMaskName[] =
2621 "Restrict Native Client GDB-based debugging by pattern";
2622const char kNaclDebugMaskDescription[] =
2623 "Restricts Native Client application GDB-based debugging by URL of "
2624 "manifest file. Native Client GDB-based debugging must be enabled for this "
2625 "option to work.";
2626const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
2627const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
2628 "Debug everything except secure shell and the PNaCl translator.";
2629const char kNaclDebugMaskChoiceIncludeDebug[] =
2630 "Debug only if manifest URL ends with debug.nmf.";
2631
2632const char kNaclDebugName[] = "Native Client GDB-based debugging";
2633const char kNaclDebugDescription[] =
2634 "Enable GDB debug stub. This will stop a Native Client application on "
2635 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
2636
2637const char kNaclName[] = "Native Client";
2638const char kNaclDescription[] =
2639 "Support Native Client for all web applications, even those that were not "
2640 "installed from the Chrome Web Store.";
2641
2642const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
2643const char kPnaclSubzeroDescription[] =
2644 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
2645
2646#endif // !defined(DISABLE_NACL)
2647
Brett Wilson7b44537e2017-08-18 01:38:282648#if BUILDFLAG(ENABLE_WEBRTC)
2649
2650const char kWebrtcH264WithOpenh264FfmpegName[] =
2651 "WebRTC H.264 software video encoder/decoder";
2652const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2653 "When enabled, an H.264 software video encoder/decoder pair is included. "
2654 "If a hardware encoder/decoder is also available it may be used instead of "
2655 "this encoder/decoder.";
2656
2657#endif // BUILDFLAG(ENABLE_WEBRTC)
2658
2659#if defined(USE_ASH)
2660
2661const char kAshDisableSmoothScreenRotationName[] =
2662 "Disable smooth rotation animations.";
2663const char kAshDisableSmoothScreenRotationDescription[] =
2664 "Disable smooth rotation animations.";
2665
2666const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
2667const char kAshEnableMirroredScreenDescription[] =
2668 "Enable the mirrored screen mode. This mode flips the screen image "
2669 "horizontally.";
2670
2671const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
2672const char kAshShelfColorDescription[] =
2673 "Enables/disables the shelf color to be a derived from the wallpaper. The "
2674 "--ash-shelf-color-scheme flag defines how that color is derived.";
2675
2676const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
2677const char kAshShelfColorSchemeDescription[] =
2678 "Specify how the color is derived from the wallpaper. This flag is only "
2679 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
2680const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
2681const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
2682const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
2683const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
2684const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
2685const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
2686
2687const char kMaterialDesignInkDropAnimationSpeedName[] =
2688 "Material Design Ink Drop Animation Speed";
2689const char kMaterialDesignInkDropAnimationSpeedDescription[] =
2690 "Sets the speed of the experimental visual feedback animations for "
2691 "material design.";
2692const char kMaterialDesignInkDropAnimationFast[] = "Fast";
2693const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
2694
2695const char kUiShowCompositedLayerBordersName[] =
2696 "Show UI composited layer borders";
2697const char kUiShowCompositedLayerBordersDescription[] =
2698 "Show border around composited layers created by UI.";
2699const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
2700const char kUiShowCompositedLayerBordersSurface[] = "Surface";
2701const char kUiShowCompositedLayerBordersLayer[] = "Layer";
2702const char kUiShowCompositedLayerBordersAll[] = "All";
2703
2704const char kUiSlowAnimationsName[] = "Slow UI animations";
2705const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
2706
2707#endif // defined(USE_ASH)
2708
2709#if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
2710
2711const char kShowCertLinkOnPageInfoName[] = "Show certificate link";
2712const char kShowCertLinkOnPageInfoDescription[] =
2713 "Add a link from the Page Info bubble to the certificate viewer for HTTPS "
2714 "sites.";
2715
2716#endif // defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
2717
2718#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2719
2720const char kAutofillCreditCardUploadName[] =
2721 "Enable offering upload of Autofilled credit cards";
2722const char kAutofillCreditCardUploadDescription[] =
2723 "Enables a new option to upload credit cards to Google Payments for sync "
2724 "to all Chrome devices.";
2725
2726#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2727
2728// ============================================================================
2729// Don't just add flags to the end, put them in the right section in
2730// alphabetical order just like the header file.
2731// ============================================================================
2732
vabr0215a8e2017-03-28 12:47:342733} // namespace flag_descriptions