blob: a9537090c870101e4dd58f1c57f1aa59f86ce2f6 [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
Anton Urusov47cd4932017-09-19 14:41:41399const char kEnablePolicyToolName[] = "Enable policy management page";
400const char kEnablePolicyToolDescription[] =
401 "If enabled, the chrome://policy-tool URL loads a page for managing "
402 "policies.";
403
Brett Wilsonf27ff602017-07-07 22:28:47404const char kEnableMidiManagerDynamicInstantiationName[] =
405 "MIDIManager dynamic instantiation for Web MIDI.";
406const char kEnableMidiManagerDynamicInstantiationDescription[] =
407 "Enable MIDIManager dynamic instantiation for Web MIDI.";
408
409const char kEnableNavigationTracingName[] = "Enable navigation tracing";
410const char kEnableNavigationTracingDescription[] =
411 "This is to be used in conjunction with the trace-upload-url flag. "
412 "WARNING: When enabled, Chrome will record performance data for every "
413 "navigation and upload it to the URL specified by the trace-upload-url "
414 "flag. The trace may include personally identifiable information (PII) "
415 "such as the titles and URLs of websites you visit.";
416
417const char kEnableNetworkServiceName[] = "Enable network service";
418const char kEnableNetworkServiceDescription[] =
419 "Enables the network service, which makes network requests through a "
420 "separate service. Note: most features don't work with this yet.";
421
Ahmed Fakhry2fd8fc82017-07-28 16:31:12422const char kEnableNightLightName[] = "Enable Night Light";
423const char kEnableNightLightDescription[] =
424 "Enable the Night Light feature which controls the color temperature of "
425 "the screen.";
426
Yutaka Hirano98be3272017-08-07 17:55:39427const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS";
428const char kEnableOutOfBlinkCORSDescription[] =
429 "CORS handling logic is moved out of blink.";
430
Erik Chen49bbfa22017-08-18 08:49:56431const char kEnableOutOfProcessHeapProfilingName[] =
432 "Out of process heap profiling.";
433const char kEnableOutOfProcessHeapProfilingDescription[] =
434 "Creates a profiling service that records stacktraces for all live, "
435 "malloced objects.";
erikchen1dff1812017-09-11 21:27:36436const char kEnableOutOfProcessHeapProfilingModeMinimal[] =
437 "Profile only the browser and GPU processes.";
Erik Chen49bbfa22017-08-18 08:49:56438const char kEnableOutOfProcessHeapProfilingModeAll[] = "Profile all processes.";
439
Brett Wilsonf27ff602017-07-07 22:28:47440const char kEnablePictureInPictureName[] = "Enable picture in picture.";
441const char kEnablePictureInPictureDescription[] =
442 "Enable the picture in picture feature for videos.";
443
F#m59d036e2017-09-13 07:22:17444const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording";
445const char kEnablePixelCanvasRecordingDescription[] =
446 "Pixel canvas recording allows the compositor to raster contents aligned "
447 "with the pixel and improves text rendering. This should be enabled when a "
448 "device is using fractional scale factor.";
449
Brett Wilsonf27ff602017-07-07 22:28:47450const char kEnableTokenBindingName[] = "Token Binding.";
451const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
452
Irmak Kavasoglu7e16af02017-07-19 09:52:47453const char kEnableUsernameCorrectionName[] = "Enable username correction";
454const char kEnableUsernameCorrectionDescription[] =
455 "While on the pending password state, add an edit button to the bubble so "
456 "that user can edit the username.";
457
Brett Wilsonf27ff602017-07-07 22:28:47458const char kEnableUseZoomForDsfName[] =
459 "Use Blink's zoom for device scale factor.";
460const char kEnableUseZoomForDsfDescription[] =
461 "If enabled, Blink uses its zooming mechanism to scale content for device "
462 "scale factor.";
463const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
464const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
465const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
466
467const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
468const char kEnableScrollAnchoringDescription[] =
469 "Adjusts scroll position to prevent visible jumps when offscreen content "
470 "changes.";
471
472const char kEnableSharedArrayBufferName[] =
473 "Experimental enabled SharedArrayBuffer support in JavaScript.";
474const char kEnableSharedArrayBufferDescription[] =
475 "Enable SharedArrayBuffer support in JavaScript.";
476
477const char kEnableWasmName[] = "WebAssembly structured cloning support.";
478const char kEnableWasmDescription[] =
479 "Enable web pages to use WebAssembly structured cloning.";
480
Brett Wilsonf27ff602017-07-07 22:28:47481const char kEnableImageCaptureAPIName[] = "Image Capture API";
482const char kEnableImageCaptureAPIDescription[] =
483 "Enables the Web Platform Image Capture API: takePhoto(), "
484 "getPhotoCapabilities(), etc.";
485
486const char kEnableZeroSuggestRedirectToChromeName[] =
487 "Experimental contextual omnibox suggestion";
488const char kEnableZeroSuggestRedirectToChromeDescription[] =
489 "Change omnibox contextual suggestions to an experimental source. Note "
490 "that this is not an on/off switch for contextual omnibox and it only "
491 "applies to suggestions provided before the user starts typing a URL or a "
492 "search query (i.e. zero suggest).";
493
494const char kEnableWasmStreamingName[] =
495 "WebAssembly streaming compile/instantiate support.";
496const char kEnableWasmStreamingDescription[] =
497 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
498
499const char kEnableWebfontsInterventionName[] =
500 "New version of User Agent Intervention for WebFonts loading.";
501const char kEnableWebfontsInterventionDescription[] =
502 "Enable New version of User Agent Intervention for WebFonts loading.";
503const char kEnableWebfontsInterventionV2ChoiceDefault[] = "Default";
504const char kEnableWebfontsInterventionV2ChoiceEnabledWith2g[] = "Enabled: 2G";
505const char kEnableWebfontsInterventionV2ChoiceEnabledWith3g[] = "Enabled: 3G";
506const char kEnableWebfontsInterventionV2ChoiceEnabledWithSlow2g[] =
507 "Enabled: Slow 2G";
508const char kEnableWebfontsInterventionV2ChoiceDisabled[] = "Disabled";
509
510const char kEnableWebfontsInterventionTriggerName[] =
511 "Trigger User Agent Intervention for WebFonts loading always.";
512const char kEnableWebfontsInterventionTriggerDescription[] =
513 "Enable to trigger User Agent Intervention for WebFonts loading always. "
514 "This flag affects only when the intervention is enabled.";
515
516const char kEnableWebNotificationCustomLayoutsName[] =
517 "Enable custom layouts for Web Notifications.";
518const char kEnableWebNotificationCustomLayoutsDescription[] =
519 "Enable custom layouts for Web Notifications. They will have subtle layout "
520 "improvements that are otherwise not possible.";
521
522const char kExpensiveBackgroundTimerThrottlingName[] =
523 "Throttle expensive background timers";
524const char kExpensiveBackgroundTimerThrottlingDescription[] =
525 "Enables intervention to limit CPU usage of background timers to 1%.";
526
527const char kExperimentalAppBannersName[] = "Experimental app banners";
528const char kExperimentalAppBannersDescription[] =
529 "Enables a new experimental app banner flow and UI";
530
531const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
532const char kExperimentalCanvasFeaturesDescription[] =
533 "Enables the use of experimental canvas features which are still in "
534 "development.";
535
536const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
537const char kExperimentalExtensionApisDescription[] =
538 "Enables experimental extension APIs. Note that the extension gallery "
539 "doesn't allow you to upload extensions that use experimental APIs.";
540
541const char kExperimentalFullscreenExitUIName[] =
542 "Experimental fullscreen exit UI";
543const char kExperimentalFullscreenExitUIDescription[] =
544 "Displays experimental UI to allow mouse and touch input methods to exit "
545 "fullscreen mode.";
546
547const char kExperimentalHotwordHardwareName[] =
548 "Simulated hardware 'Ok Google' features";
549const char kExperimentalHotwordHardwareDescription[] =
550 "Enables an experimental version of 'Ok Google' hotword detection features "
551 "that have a hardware dependency.";
552
553const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
554const char kExperimentalKeyboardLockUiDescription[] =
555 "An experimental full screen with keyboard lock mode requiring users to "
556 "hold Esc to exit.";
557
558const char kExperimentalSecurityFeaturesName[] =
559 "Potentially annoying security features";
560const char kExperimentalSecurityFeaturesDescription[] =
561 "Enables several security features that will likely break one or more "
562 "pages that you visit on a daily basis. Strict mixed content checking, for "
563 "example. And locking powerful features to secure contexts. This flag will "
564 "probably annoy you.";
565
566const char kExperimentalWebPlatformFeaturesName[] =
567 "Experimental Web Platform features";
568const char kExperimentalWebPlatformFeaturesDescription[] =
569 "Enables experimental Web Platform features that are in development.";
570
571const char kExtensionContentVerificationName[] =
572 "Extension Content Verification";
573const char kExtensionContentVerificationDescription[] =
574 "This flag can be used to turn on verification that the contents of the "
575 "files on disk for extensions from the webstore match what they're "
576 "expected to be. This can be used to turn on this feature if it would not "
577 "otherwise have been turned on, but cannot be used to turn it off (because "
578 "this setting can be tampered with by malware).";
579const char kExtensionContentVerificationBootstrap[] =
580 "Bootstrap (get expected hashes, but do not enforce them)";
581const char kExtensionContentVerificationEnforce[] =
582 "Enforce (try to get hashes, and enforce them if successful)";
583const char kExtensionContentVerificationEnforceStrict[] =
584 "Enforce strict (hard fail if we can't get hashes)";
585
586const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
587const char kExtensionsOnChromeUrlsDescription[] =
588 "Enables running extensions on chrome:// URLs, where extensions explicitly "
589 "request this permission.";
galinapae72e152017-05-12 13:12:28590
Brett Wilsonecb80982017-07-12 20:34:51591const char kFastUnloadName[] = "Fast tab/window close";
592const char kFastUnloadDescription[] =
593 "Enables fast tab/window closing - runs a tab's onunload js handler "
594 "independently of the GUI.";
vabr0215a8e2017-03-28 12:47:34595
Brett Wilsonecb80982017-07-12 20:34:51596const char kFeaturePolicyName[] = "Feature Policy";
597const char kFeaturePolicyDescription[] =
598 "Enables granting and removing access to features through the "
599 "Feature-Policy HTTP header.";
vabr0215a8e2017-03-28 12:47:34600
Brett Wilsonecb80982017-07-12 20:34:51601const char kFetchKeepaliveTimeoutSettingName[] =
602 "Fetch API keepalive timeout setting";
603const char kFetchKeepaliveTimeoutSettingDescription[] =
604 "This is for setting the timeout value for Fetch API with keepalive option "
605 "and SendBeacon";
606
607const char kFontCacheScalingName[] = "FontCache scaling";
608const char kFontCacheScalingDescription[] =
609 "Reuse a cached font in the renderer to serve different sizes of font for "
610 "faster layout.";
611
612const char kForceEffectiveConnectionTypeName[] =
613 "Override effective connection type";
614const char kForceEffectiveConnectionTypeDescription[] =
615 "Overrides the effective connection type of the current connection "
616 "returned by the network quality estimator.";
617const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
618const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
619const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
620const char kEffectiveConnectionType2GDescription[] = "2G";
621const char kEffectiveConnectionType3GDescription[] = "3G";
622const char kEffectiveConnectionType4GDescription[] = "4G";
623
624const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
625const char kFillOnAccountSelectDescription[] =
626 "Filling of passwords when an account is explicitly selected by the user "
627 "rather than autofilling credentials on page load.";
628
Brett Wilsonecb80982017-07-12 20:34:51629const char kForceTextDirectionName[] = "Force text direction";
630const char kForceTextDirectionDescription[] =
631 "Explicitly force the per-character directionality of UI text to "
632 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default "
633 "direction of the character language.";
634const char kForceDirectionLtr[] = "Left-to-right";
635const char kForceDirectionRtl[] = "Right-to-left";
636
637const char kForceUiDirectionName[] = "Force UI direction";
638const char kForceUiDirectionDescription[] =
639 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
640 "mode, overriding the default direction of the UI language.";
641
642const char kFramebustingName[] =
643 "Framebusting requires same-origin or a user gesture";
644const char kFramebustingDescription[] =
645 "Don't permit an iframe to navigate the top level browsing context unless "
646 "they are same-origin or the iframe is processing a user gesture.";
647
648const char kGamepadExtensionsName[] = "Gamepad Extensions";
649const char kGamepadExtensionsDescription[] =
650 "Enabling this option allows web applications to access experimental "
651 "extensions to the Gamepad APIs.";
652
sohan3f00ffc2017-07-14 22:28:08653const char kGlCompositedOverlayCandidateQuadBordersName[] =
654 "GL composited overlay candidate quad borders";
655const char kGlCompositedOverlayCandidateQuadBordersDescription[] =
Alex Newcomer43cb7f12017-07-28 17:37:39656 "Renders a border around GL composited overlay candidate quads to help "
657 "debug and study overlay support.";
Brett Wilsonecb80982017-07-12 20:34:51658
659const char kGpuRasterizationMsaaSampleCountName[] =
660 "GPU rasterization MSAA sample count.";
661const char kGpuRasterizationMsaaSampleCountDescription[] =
662 "Specify the number of MSAA samples for GPU rasterization.";
663const char kGpuRasterizationMsaaSampleCountZero[] = "0";
664const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
665const char kGpuRasterizationMsaaSampleCountFour[] = "4";
666const char kGpuRasterizationMsaaSampleCountEight[] = "8";
667const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
668
669const char kGpuRasterizationName[] = "GPU rasterization";
670const char kGpuRasterizationDescription[] =
671 "Use GPU to rasterize web content. Requires impl-side painting.";
Brett Wilson7b44537e2017-08-18 01:38:28672const char kForceGpuRasterization[] = "Force-enabled for all layers";
Brett Wilsonecb80982017-07-12 20:34:51673
674const char kGoogleProfileInfoName[] = "Google profile name and icon";
675const char kGoogleProfileInfoDescription[] =
676 "Enables using Google information to populate the profile name and icon in "
677 "the avatar menu.";
678
679const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
680const char kHarfbuzzRendertextDescription[] =
681 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect "
682 "web content.";
683
684const char kHistoryRequiresUserGestureName[] =
685 "New history entries require a user gesture.";
686const char kHistoryRequiresUserGestureDescription[] =
687 "Require a user gesture to add a history entry.";
688const char kHyperlinkAuditingName[] = "Hyperlink auditing";
689const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
690
691const char kHostedAppQuitNotificationName[] =
692 "Quit notification for hosted apps";
693const char kHostedAppQuitNotificationDescription[] =
694 "Display a notification when quitting Chrome if hosted apps are currently "
695 "running.";
696
697const char kHostedAppShimCreationName[] =
698 "Creation of app shims for hosted apps on Mac";
699const char kHostedAppShimCreationDescription[] =
700 "Create app shims on Mac when creating a hosted app.";
701
702const char kIconNtpName[] = "Large icons on the New Tab page";
703const char kIconNtpDescription[] =
704 "Enable the experimental New Tab page using large icons.";
705
706const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
707const char kIgnoreGpuBlacklistDescription[] =
708 "Overrides the built-in software rendering list and enables "
709 "GPU-acceleration on unsupported system configurations.";
710
711const char kImportantSitesInCbdName[] =
712 "Important sites options in clear browsing data dialog";
713const char kImportantSitesInCbdDescription[] =
714 "Include the option to whitelist important sites in the clear browsing "
715 "data dialog.";
716
717const char kInertVisualViewportName[] = "Inert visual viewport.";
718const char kInertVisualViewportDescription[] =
719 "Experiment to have all APIs reflect the layout viewport. This will make "
720 "window.scroll properties relative to the layout viewport.";
721
722const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
723const char kInProductHelpDemoModeChoiceDescription[] =
724 "Selects the In-Product Help demo mode.";
725
726const char kJavascriptHarmonyName[] = "Experimental JavaScript";
727const char kJavascriptHarmonyDescription[] =
728 "Enable web pages to use experimental JavaScript features.";
729
730const char kJavascriptHarmonyShippingName[] =
731 "Latest stable JavaScript features";
732const char kJavascriptHarmonyShippingDescription[] =
733 "Some web pages use legacy or non-standard JavaScript extensions that may "
734 "conflict with the latest JavaScript features. This flag allows disabling "
735 "support of those features for compatibility with such pages.";
736
Yutaka Hiranof7f2f632017-09-06 10:40:08737const char kKeepAliveRendererForKeepaliveRequestsName[] =
738 "Keep a renderer alive for keepalive fetch requests";
739const char kKeepAliveRendererForKeepaliveRequestsDescription[] =
740 "Keep a render process alive when the process has a pending fetch request "
741 "with `keepalive' specified.";
742
Brett Wilsonecb80982017-07-12 20:34:51743const char kLcdTextName[] = "LCD text antialiasing";
744const char kLcdTextDescription[] =
745 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
746 "(subpixel) when doing accelerated compositing.";
747
748const char kLoadMediaRouterComponentExtensionName[] =
749 "Load Media Router Component Extension";
750const char kLoadMediaRouterComponentExtensionDescription[] =
751 "Loads the Media Router component extension at startup.";
752
753const char kManualPasswordGenerationName[] = "Manual password generation.";
754const char kManualPasswordGenerationDescription[] =
755 "Show a 'Generate Password' option on the context menu for all password "
756 "fields.";
757
Dominic Battref27e8762017-08-23 11:16:25758const char kManualPasswordSavingName[] = "Manual password saving.";
759const char kManualPasswordSavingDescription[] =
760 "Show the password manager icon when typing into a password filed. "
761 "Clicking it allows to save the password without submitting the form.";
762
Brett Wilsonecb80982017-07-12 20:34:51763const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
764const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
765const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous";
766const char kMarkHttpAsNonSecureAfterEditing[] =
767 "Warn on HTTP after editing forms";
768const char kMarkHttpAsNonSecureWhileIncognito[] =
769 "Warn on HTTP while in Incognito mode";
770const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] =
771 "Warn on HTTP while in Incognito mode or after editing forms";
772
773extern const char kMaterialDesignIncognitoNTPName[] =
774 "Material Design Incognito NTP.";
775extern const char kMaterialDesignIncognitoNTPDescription[] =
776 "If enabled, the Incognito New Tab page uses the new material design with "
777 "a better readable text.";
778
779const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
780const char kMediaRemotingDescription[] =
781 "When Casting a tab to a remote device, enabling this turns on an "
782 "optimization that forwards the content bitstream directly to the remote "
783 "device when a video is fullscreened.";
784
785const char kMemoryAblationName[] = "Memory ablation experiment";
786const char kMemoryAblationDescription[] =
787 "Allocates extra memory in the browser process.";
788
789const char kMemoryCoordinatorName[] = "Memory coordinator";
790const char kMemoryCoordinatorDescription[] =
791 "Enable memory coordinator instead of memory pressure listeners.";
792
793const char kMessageCenterNewStyleNotificationName[] = "New style notification";
794const char kMessageCenterNewStyleNotificationDescription[] =
795 "Enables the experiment style of material-design notification";
796
797const char kMessageCenterAlwaysScrollUpUponRemovalName[] =
798 "Experiments that message center always scroll up upon notification "
799 "removal";
800const char kMessageCenterAlwaysScrollUpUponRemovalDescription[] =
801 "Enables experiment that message center always scroll up when a "
802 "notification is removed.";
803
804const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
805const char kMhtmlGeneratorOptionDescription[] =
806 "Provides experimental options for MHTML file generator.";
807const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
808const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
809
810const char kMojoLoadingName[] = "Use Mojo IPC for resource loading";
811const char kMojoLoadingDescription[] =
812 "Use Mojo IPC instead of traditional Chrome IPC for resource loading.";
813
Miguel Casas-Sanchez10769c82017-07-27 23:52:04814const char kMojoVideoEncodeAcceleratorName[] =
815 "Hardware-accelerated video encoder accessed using Mojo IPC";
816const char kMojoVideoEncodeAcceleratorDescription[] =
817 "Use new Mojo IPC to access hardware-accelerated video encoder, where "
818 "available.";
819
Brett Wilsonecb80982017-07-12 20:34:51820const char kModuleScriptsName[] = "Enable ECMAScript 6 modules";
821const char kModuleScriptsDescription[] =
822 "Enables ECMAScript 6 modules support in Blink.";
823
Kouhei Ueno08445c22017-09-05 03:58:30824const char kModuleScriptsDynamicImportName[] =
825 "Enable ECMAScript 6 modules dynamic import";
826const char kModuleScriptsDynamicImportDescription[] =
827 "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and "
828 "Blink.";
829
Brett Wilsonecb80982017-07-12 20:34:51830const char kNewAudioRenderingMixingStrategyName[] =
831 "New audio rendering mixing strategy";
832const char kNewAudioRenderingMixingStrategyDescription[] =
833 "Use the new audio rendering mixing strategy.";
834
835const char kNewBookmarkAppsName[] = "The new bookmark app system";
836const char kNewBookmarkAppsDescription[] =
837 "Enables the new system for creating bookmark apps.";
838
839const char kNewOmniboxAnswerTypesName[] =
840 "New omnibox answers in suggest types";
841const char kNewOmniboxAnswerTypesDescription[] =
842 "Enables new types of answers in the omnibox suggest drop-down: currency "
843 "conversions, dictionary definitions, sports scores, translations, and "
844 "when is.";
845
846const char kNewRemotePlaybackPipelineName[] =
847 "Enable the new remote playback pipeline.";
848const char kNewRemotePlaybackPipelineDescription[] =
849 "Enable the new pipeline for playing media element remotely via "
850 "RemotePlayback API or native controls.";
851
852const char kNewUsbBackendName[] = "Enable new USB backend";
853const char kNewUsbBackendDescription[] =
854 "Enables the new experimental USB backend for Windows.";
vabr0215a8e2017-03-28 12:47:34855
brettw5f9c1642017-05-14 17:12:48856const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:34857const char kNostatePrefetchDescription[] =
858 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
859 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
860 R"*(improve load times even more. "Simple Load" does nothing and is )*"
861 R"*(similar to disabling the feature, but collects more metrics for )*"
862 R"*(comparison purposes.)*";
863
Brett Wilsonecb80982017-07-12 20:34:51864const char kNotificationsNativeFlagName[] = "Enable native notifications.";
865const char kNotificationsNativeFlagDescription[] =
866 "Enable support for using the native notification toasts and notification "
867 "center on platforms where these are available.";
vabr0215a8e2017-03-28 12:47:34868
Brett Wilsonecb80982017-07-12 20:34:51869const char kNumRasterThreadsName[] = "Number of raster threads";
870const char kNumRasterThreadsDescription[] =
871 "Specify the number of raster threads.";
872const char kNumRasterThreadsOne[] = "1";
873const char kNumRasterThreadsTwo[] = "2";
874const char kNumRasterThreadsThree[] = "3";
875const char kNumRasterThreadsFour[] = "4";
876
877const char kOfferStoreUnmaskedWalletCardsName[] =
878 "Google Payments card saving checkbox";
879const char kOfferStoreUnmaskedWalletCardsDescription[] =
880 "Show the checkbox to offer local saving of a credit card downloaded from "
881 "the server.";
882
883const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
884const char kOfflineAutoReloadDescription[] =
885 "Pages that fail to load while the browser is offline will be "
886 "auto-reloaded when the browser is online again.";
887
888const char kOfflineAutoReloadVisibleOnlyName[] =
889 "Only Auto-Reload Visible Tabs";
890const char kOfflineAutoReloadVisibleOnlyDescription[] =
891 "Pages that fail to load while the browser is offline will only be "
892 "auto-reloaded if their tab is visible.";
893
894const char kOffMainThreadFetchName[] = "Off-main-thread fetch for Web Workers";
895const char kOffMainThreadFetchDescription[] =
896 "If enabled, the resource fetches from worker threads will not be blocked "
897 "by the busy main thread.";
898
899const char kOmniboxDisplayTitleForCurrentUrlName[] =
900 "Include title for the current URL in the omnibox";
901const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
902 "In the event that the omnibox provides suggestions on-focus, the URL of "
903 "the current page is provided as the first suggestion without a title. "
904 "Enabling this flag causes the title to be displayed.";
905
Benoit Lizeab08362c2017-07-19 14:50:54906const char kOmniboxSpareRendererName[] =
907 "Start spare renderer on omnibox focus";
908const char kOmniboxSpareRendererDescription[] =
909 "When the omnibox is focused, start an empty spare renderer. This can "
910 "speed up the load of the navigation from the omnibox.";
911
Tommy C. Li8875a442017-08-23 00:10:59912const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
913 "Omnibox UI Elide Suggestion URL After Host";
914const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
915 "Elides the path, query, and ref of suggested URLs in the Omnibox "
916 "dropdown.";
917
Brett Wilsonecb80982017-07-12 20:34:51918const char kOmniboxUIHideSuggestionUrlSchemeName[] =
919 "Omnibox UI Hide Suggestion URL Scheme";
920const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
921 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
922
923const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
924 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
925const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
926 "Elides trivially informative subdomains from suggested URLs in the "
927 "Omnibox dropdown (e.g. www. and m.).";
928
Tommy C. Li8875a442017-08-23 00:10:59929const char kOmniboxUIShowSuggestionFaviconsName[] =
930 "Omnibox UI Show Suggestion Favicons";
931const char kOmniboxUIShowSuggestionFaviconsDescription[] =
932 "Shows favicons instead of generic vector icons for URL suggestions in the "
933 "Omnibox dropdown.";
934
Brett Wilsonecb80982017-07-12 20:34:51935const char kOmniboxUIMaxAutocompleteMatchesName[] =
936 "Omnibox UI Max Autocomplete Matches";
937
938const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
939 "Changes the maximum number of autocomplete matches displayed in the "
940 "Omnibox UI.";
941
942const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
943const char kOmniboxUINarrowDropdownDescription[] =
944 "Makes the suggestions dropdown width match the omnibox width.";
945
946const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
947const char kOmniboxUIVerticalLayoutDescription[] =
948 "Displays Omnibox sugestions in 2 lines - title over origin.";
949
950const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
951const char kOmniboxUIVerticalMarginDescription[] =
952 "Changes the vertical margin in the Omnibox UI.";
953
954const char kOriginTrialsName[] = "Origin Trials";
955const char kOriginTrialsDescription[] =
956 "Enables origin trials for controlling access to feature/API experiments.";
957
958const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
959const char kOverlayScrollbarsDescription[] =
960 "Enable the experimental overlay scrollbars implementation. You must also "
961 "enable threaded compositing to have the scrollbars animate.";
962
chaopenge8aa016b2017-08-24 15:20:19963const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] =
964 "Flash Overlay Scrollbars After Any Scroll Update";
965const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] =
966 "Flash Overlay Scrollbars After any scroll update happends in page. You"
967 " must also enable Overlay Scrollbars.";
968
chaopeng343678022017-08-24 18:45:00969const char kOverlayScrollbarsFlashWhenMouseEnterName[] =
970 "Flash Overlay Scrollbars When Mouse Enter";
971const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] =
972 "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also"
973 " enable Overlay Scrollbars.";
974
Claudio Magni81326f92017-09-01 05:21:18975const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header";
976const char kUseNewAcceptLanguageHeaderDescription[] =
977 "Adds the base language code after other corresponding language+region "
978 "codes. This ensures that users receive content in their preferred "
979 "language.";
980
Brett Wilsonecb80982017-07-12 20:34:51981const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
982const char kOverscrollHistoryNavigationDescription[] =
983 "Experimental history navigation in response to horizontal overscroll.";
984const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
985
986const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
987const char kOverscrollStartThresholdDescription[] =
988 "Changes overscroll start threshold relative to the default value.";
989const char kOverscrollStartThreshold133Percent[] = "133%";
990const char kOverscrollStartThreshold166Percent[] = "166%";
991const char kOverscrollStartThreshold200Percent[] = "200%";
992
Xing Liu5400a002017-09-15 21:48:29993const char kParallelDownloadingName[] = "Parallel downloading";
994const char kParallelDownloadingDescription[] =
995 "Enable parallel downloading to"
996 "accelerate download speed.";
997
Brett Wilsonecb80982017-07-12 20:34:51998const char kPassiveEventListenerDefaultName[] =
999 "Passive Event Listener Override";
1000const char kPassiveEventListenerDefaultDescription[] =
1001 "Forces touchstart, touchmove, mousewheel and wheel event listeners (which "
1002 "haven't requested otherwise) to be treated as passive. This will break "
1003 "touch/wheel behavior on some websites but is useful for demonstrating the "
1004 "potential performance benefits of adopting passive event listeners.";
1005const char kPassiveEventListenerTrue[] = "True (when unspecified)";
1006const char kPassiveEventListenerForceAllTrue[] = "Force All True";
1007
1008const char kPassiveEventListenersDueToFlingName[] =
1009 "Touch Event Listeners Passive Default During Fling";
1010const char kPassiveEventListenersDueToFlingDescription[] =
1011 "Forces touchstart, and first touchmove per scroll event listeners during "
1012 "fling to be treated as passive.";
1013
1014const char kPassiveDocumentEventListenersName[] =
1015 "Document Level Event Listeners Passive Default";
1016const char kPassiveDocumentEventListenersDescription[] =
1017 "Forces touchstart, and touchmove event listeners on document level "
1018 "targets (which haven't requested otherwise) to be treated as passive.";
1019
1020const char kPasswordForceSavingName[] = "Force-saving of passwords";
1021const char kPasswordForceSavingDescription[] =
1022 "Allow the user to manually enforce password saving instead of relying on "
1023 "password manager's heuristics.";
1024
1025const char kPasswordGenerationName[] = "Password generation";
1026const char kPasswordGenerationDescription[] =
1027 "Allow the user to have Chrome generate passwords when it detects account "
1028 "creation pages.";
1029
1030const char kPasswordImportExportName[] = "Password import and export";
1031const char kPasswordImportExportDescription[] =
1032 "Import and Export functionality in password settings.";
1033
1034const char kPermissionActionReportingName[] = "Permission Action Reporting";
1035const char kPermissionActionReportingDescription[] =
1036 "Enables permission action reporting to Safe Browsing servers for opted in "
1037 "users.";
1038
1039const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1040const char kPermissionsBlacklistDescription[] =
1041 "Enables the Permissions Blacklist, which blocks permissions for "
1042 "blacklisted sites for Safe Browsing users.";
1043
1044const char kPinchScaleName[] = "Pinch scale";
1045const char kPinchScaleDescription[] =
1046 "Enables experimental support for scale using pinch.";
1047
Brett Wilsonecb80982017-07-12 20:34:511048const char kPrintPdfAsImageName[] = "Print Pdf as Image";
1049const char kPrintPdfAsImageDescription[] =
1050 "If enabled, an option to print PDF files as images will be available in "
1051 "print preview.";
1052
1053const char kPrintPreviewRegisterPromosName[] =
1054 "Print Preview Registration Promos";
1055const char kPrintPreviewRegisterPromosDescription[] =
1056 "Enable registering unregistered cloud printers from print preview.";
1057
1058const char kProtectSyncCredentialName[] = "Autofill sync credential";
1059const char kProtectSyncCredentialDescription[] =
1060 "How the password manager handles autofill for the sync credential.";
1061
1062const char kProtectSyncCredentialOnReauthName[] =
1063 "Autofill sync credential only for transactional reauth pages";
1064const char kProtectSyncCredentialOnReauthDescription[] =
1065 "How the password manager handles autofill for the sync credential only "
1066 "for transactional reauth pages.";
1067
Mohsen Izadi93faac12017-07-29 04:45:151068const char kPullToRefreshName[] = "Pull-to-refresh gesture";
1069const char kPullToRefreshDescription[] =
1070 "Pull-to-refresh gesture in response to vertical overscroll.";
1071
Brett Wilsonecb80982017-07-12 20:34:511072const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1073const char kPushApiBackgroundModeDescription[] =
1074 "Enable background mode for the Push API. This allows Chrome to continue "
1075 "running after the last window is closed, and to launch at OS startup, if "
1076 "the Push API needs it.";
1077
Piotr Swigon46929d12017-08-11 07:16:331078const char kPwaMinimalUiName[] = "Minimal-UI display mode for PWAs";
1079const char kPwaMinimalUiDescription[] =
1080 "Enables support for Minimal-UI display mode for installed PWAs";
1081
Brett Wilsonecb80982017-07-12 20:34:511082const char kQuicName[] = "Experimental QUIC protocol";
1083const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
1084
1085const char kReducedReferrerGranularityName[] =
1086 "Reduce default 'referer' header granularity.";
1087const char kReducedReferrerGranularityDescription[] =
1088 "If a page hasn't set an explicit referrer policy, setting this flag will "
1089 "reduce the amount of information in the 'referer' header for cross-origin "
1090 "requests.";
1091
1092const char kRequestTabletSiteName[] =
1093 "Request tablet site option in the settings menu";
1094const char kRequestTabletSiteDescription[] =
1095 "Allows the user to request tablet site. Web content is often optimized "
1096 "for tablet devices. When this option is selected the user agent string is "
1097 "changed to indicate a tablet device. Web content optimized for tablets is "
1098 "received there after for the current tab.";
1099
1100const char kResetAppListInstallStateName[] =
1101 "Reset the App Launcher install state on every restart.";
1102const char kResetAppListInstallStateDescription[] =
1103 "Reset the App Launcher install state on every restart. While this flag is "
1104 "set, Chrome will forget the launcher has been installed each time it "
1105 "starts. This is used for testing the App Launcher install flow.";
1106
1107const char kResourceLoadSchedulerName[] = "Use the resource load scheduler";
1108const char kResourceLoadSchedulerDescription[] =
1109 "Uses the resource load scheduler in blink to schedule and throttle "
1110 "resource load requests.";
1111
Brett Wilsonecb80982017-07-12 20:34:511112const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
1113const char kSafeSearchUrlReportingDescription[] =
1114 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
1115
1116const char kSaveasMenuLabelExperimentName[] =
1117 "Switch 'Save as' menu labels to 'Download'";
1118const char kSaveasMenuLabelExperimentDescription[] =
1119 "Enables an experiment to switch menu labels that use 'Save as...' to "
1120 "'Download'.";
1121
1122const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
1123const char kSavePageAsMhtmlDescription[] =
1124 "Enables saving pages as MHTML: a single text file containing HTML and all "
1125 "sub-resources.";
1126
Brett Wilsonecb80982017-07-12 20:34:511127const char kScrollPredictionName[] = "Scroll prediction";
1128const char kScrollPredictionDescription[] =
1129 "Predicts the finger's future position during scrolls allowing time to "
1130 "render the frame before the finger is there.";
1131
1132const char kSecondaryUiMd[] =
1133 "Material Design in the rest of the browser's native UI";
1134const char kSecondaryUiMdDescription[] =
1135 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
1136 "etc.). On Mac, this enables MacViews, which uses toolkit-views for native "
1137 "browser dialogs.";
1138
1139const char kServiceWorkerNavigationPreloadName[] =
1140 "Service worker navigation preload.";
1141const char kServiceWorkerNavigationPreloadDescription[] =
1142 "Enable web pages to use the experimental service worker navigation "
1143 "preload API.";
1144
gogeraldd5061b592017-09-06 23:39:551145const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
1146const char kServiceWorkerPaymentAppsDescription[] =
1147 "Enable Service Worker applications to integrate as payment apps";
1148
Makoto Shimazud9f333c2017-08-08 07:23:171149const char kServiceWorkerScriptStreamingName[] =
1150 "Service worker script streaming.";
1151const char kServiceWorkerScriptStreamingDescription[] =
1152 "Installed scripts for a service worker are sent over a dedicated "
1153 "message pipe and data pipes, and that is never be blocked on the main "
1154 "thread.";
1155
Brett Wilsonecb80982017-07-12 20:34:511156const char kSettingsWindowName[] = "Show settings in a window";
1157const char kSettingsWindowDescription[] =
1158 "Settings will be shown in a dedicated window instead of as a browser tab.";
1159
1160const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
1161const char kShowAutofillSignaturesDescription[] =
1162 "Annotates web forms with Autofill signatures as HTML attributes.";
1163
1164const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
1165const char kShowAutofillTypePredictionsDescription[] =
1166 "Annotates web forms with Autofill field type predictions as placeholder "
1167 "text.";
1168
1169const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
1170const char kShowOverdrawFeedbackDescription[] =
1171 "Visualize overdraw by color-coding elements based on if they have other "
1172 "elements drawn underneath.";
1173
1174const char kShowSavedCopyName[] = "Show Saved Copy Button";
1175const char kShowSavedCopyDescription[] =
1176 "When a page fails to load, if a stale copy of the page exists in the "
1177 "browser cache, a button will be presented to allow the user to load that "
1178 "stale copy. The primary enabling choice puts the button in the most "
1179 "salient position on the error page; the secondary enabling choice puts it "
1180 "secondary to the reload button.";
1181const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1182const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1183const char kDisableShowSavedCopy[] = "Disable";
1184
1185const char kShowTouchHudName[] = "Show HUD for touch points";
1186const char kShowTouchHudDescription[] =
1187 "Enables a heads-up display at the top-left corner of the screen that "
1188 "lists information about the touch-points on the screen.";
1189
1190const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
1191const char kSilentDebuggerExtensionApiDescription[] =
1192 "Do not show the infobar when an extension attaches to a page via "
1193 "chrome.debugger API. This is required to debug extension background "
1194 "pages.";
1195
1196const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1197const char kSimpleCacheBackendDescription[] =
1198 "The Simple Cache for HTTP is a new cache. It relies on the filesystem for "
1199 "disk space allocation.";
1200
1201const char kSimplifiedFullscreenUiName[] =
1202 "Simplified full screen / mouse lock UI.";
1203const char kSimplifiedFullscreenUiDescription[] =
1204 "A simplified new user experience when entering page-triggered full screen "
1205 "or mouse pointer lock states.";
1206
1207const char kSingleClickAutofillName[] = "Single-click autofill";
1208const char kSingleClickAutofillDescription[] =
1209 "Make autofill suggestions on initial mouse click on a form element.";
1210
1211const char kSiteDetails[] = "Site Details";
1212const char kSiteDetailsDescription[] =
1213 "Adds UI in MD Settings to view all content settings for a specific "
1214 "origin.";
1215
1216const char kSitePerProcessName[] = "Strict site isolation";
1217const char kSitePerProcessDescription[] =
1218 "Highly experimental security mode that ensures each renderer process "
1219 "contains pages from at most one site. In this mode, out-of-process "
1220 "iframes will be used whenever an iframe is cross-site.";
1221
1222const char kSiteSettings[] = "Site settings with All sites and Site details";
1223const char kSiteSettingsDescription[] =
1224 "Adds new ways of viewing Site settings.";
1225
1226const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
1227const char kSlimmingPaintInvalidationDescription[] =
1228 "Whether to enable a new paint invalidation system.";
1229
1230const char kSmoothScrollingName[] = "Smooth Scrolling";
1231const char kSmoothScrollingDescription[] =
1232 "Animate smoothly when scrolling page content.";
1233
1234const char kSoftwareRasterizerName[] = "3D software rasterizer";
1235const char kSoftwareRasterizerDescription[] =
1236 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
1237
Tommy Steimel77704be2017-08-28 22:14:401238const char kSoundContentSettingName[] = "Sound content setting";
1239const char kSoundContentSettingDescription[] =
1240 "Enable site-wide muting in content settings and tab strip context menu.";
1241
Brett Wilsonecb80982017-07-12 20:34:511242const char kSpeculativePrefetchName[] = "Speculative Prefetch";
vabr0215a8e2017-03-28 12:47:341243const char kSpeculativePrefetchDescription[] =
1244 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
1245 R"*(load times, based on a local database (see chrome://predictors). )*"
1246 R"*("Learning" means that only the database construction is enabled, )*"
1247 R"*("Prefetching" that learning and prefetching are enabled.)*";
1248
Justin Donnelly4e448cb2017-07-07 21:32:131249const char kSpeculativeServiceWorkerStartOnQueryInputName[] =
1250 "Enable speculative start of a service worker when a search is predicted.";
Justin Donnelly4e448cb2017-07-07 21:32:131251const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] =
1252 "If enabled, when the user enters text in the omnibox that looks like a "
1253 "a query, any service worker associated with the search engine the query "
1254 "will be sent to is started early.";
1255
Brett Wilsonecb80982017-07-12 20:34:511256const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1257const char kSpellingFeedbackFieldTrialDescription[] =
1258 "Enable the field trial for sending user feedback to spelling service.";
horo201d49492017-05-19 05:31:401259
Brett Wilsonecb80982017-07-12 20:34:511260const char kSuggestionsWithSubStringMatchName[] =
1261 "Substring matching for Autofill suggestions";
1262const char kSuggestionsWithSubStringMatchDescription[] =
1263 "Match Autofill suggestions based on substrings (token prefixes) rather "
1264 "than just prefixes.";
vabr0215a8e2017-03-28 12:47:341265
Brett Wilsonecb80982017-07-12 20:34:511266const char kSupervisedUserManagedBookmarksFolderName[] =
1267 "Managed bookmarks for supervised users";
1268const char kSupervisedUserManagedBookmarksFolderDescription[] =
1269 "Enable the managed bookmarks folder for supervised users.";
vabr0215a8e2017-03-28 12:47:341270
Brett Wilsonecb80982017-07-12 20:34:511271const char kSyncAppListName[] = "App Launcher sync";
1272const char kSyncAppListDescription[] =
1273 "Enable App Launcher sync. This also enables Folders where available (non "
1274 "OSX).";
vabr0215a8e2017-03-28 12:47:341275
Brett Wilsonecb80982017-07-12 20:34:511276const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1277const char kSyncSandboxDescription[] =
1278 "Connects to the testing server for Chrome Sync.";
vabr0215a8e2017-03-28 12:47:341279
Brett Wilsonecb80982017-07-12 20:34:511280const char kTabAudioMutingName[] = "Tab audio muting UI control";
1281const char kTabAudioMutingDescription[] =
1282 "When enabled, the audio indicators in the tab strip double as tab audio "
1283 "mute controls. This also adds commands in the tab context menu for "
1284 "quickly muting multiple selected tabs.";
vabr0215a8e2017-03-28 12:47:341285
Christian Dullweberd0d96f02017-09-13 09:22:511286const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1287const char kTabsInCbdDescription[] =
1288 "Enables a basic and an advanced tab for the Clear Browsing Data dialog.";
1289
Brett Wilsonecb80982017-07-12 20:34:511290const char kTcpFastOpenName[] = "TCP Fast Open";
1291const char kTcpFastOpenDescription[] =
1292 "Enable the option to send extra authentication information in the initial "
1293 "SYN packet for a previously connected client, allowing faster data send "
1294 "start.";
vabr0215a8e2017-03-28 12:47:341295
Brett Wilsonecb80982017-07-12 20:34:511296const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
1297const char kTopChromeMdDescription[] =
1298 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
1299const char kTopChromeMdMaterial[] = "Normal";
1300const char kTopChromeMdMaterialHybrid[] = "Touch";
vabr0215a8e2017-03-28 12:47:341301
Brett Wilsonecb80982017-07-12 20:34:511302const char kThreadedScrollingName[] = "Threaded scrolling";
1303const char kThreadedScrollingDescription[] =
1304 "Threaded handling of scroll-related input events. Disabling this will "
1305 "force all such scroll events to be handled on the main thread. Note that "
1306 "this can dramatically hurt scrolling performance of most websites and is "
1307 "intended for testing purposes only.";
1308
Steven Valdez4584b2482017-07-14 01:11:571309const char kTLS13VariantName[] = "TLS 1.3";
1310const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used.";
1311const char kTLS13VariantDisabled[] = "Disabled";
1312const char kTLS13VariantDraft[] = "Enabled (Draft)";
1313const char kTLS13VariantExperiment[] = "Enabled (Experiment)";
Steven Valdez2d7b4e82017-07-17 22:22:091314const char kTLS13VariantRecordTypeExperiment[] =
1315 "Enabled (Record Type Experiment)";
Steven Valdez2ee1c4a22017-07-19 20:39:311316const char kTLS13VariantNoSessionIDExperiment[] =
1317 "Enabled (No Session ID Experiment)";
Steven Valdezf00f8782017-09-13 18:05:281318const char kTLS13VariantExperiment2[] = "Enabled (Experiment 2)";
1319const char kTLS13VariantExperiment3[] = "Enabled (Experiment 3)";
Steven Valdez4584b2482017-07-14 01:11:571320
Brett Wilsonecb80982017-07-12 20:34:511321const char kTopDocumentIsolationName[] = "Top document isolation";
1322const char kTopDocumentIsolationDescription[] =
1323 "Highly experimental performance mode where cross-site iframes are kept in "
1324 "a separate process from the top document. In this mode, iframes from "
1325 "different third-party sites will be allowed to share a process.";
1326
1327const char kTouchAdjustmentName[] = "Touch adjustment";
1328const char kTouchAdjustmentDescription[] =
1329 "Refine the position of a touch gesture in order to compensate for touches "
1330 "having poor resolution compared to a mouse.";
1331
1332const char kTouchDragDropName[] = "Touch initiated drag and drop";
1333const char kTouchDragDropDescription[] =
1334 "Touch drag and drop can be initiated through long press on a draggable "
1335 "element.";
1336
1337const char kTouchEventsName[] = "Touch Events API";
1338const char kTouchEventsDescription[] =
1339 "Force Touch Events API feature detection to always be enabled or "
1340 "disabled, or to be enabled when a touchscreen is detected on startup "
1341 "(Automatic, the default).";
1342
1343const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
1344const char kTouchSelectionStrategyDescription[] =
1345 "Controls how text selection granularity changes when touch text selection "
1346 "handles are dragged. Non-default behavior is experimental.";
1347const char kTouchSelectionStrategyCharacter[] = "Character";
1348const char kTouchSelectionStrategyDirection[] = "Direction";
1349
1350const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1351const char kTraceUploadUrlDescription[] =
1352 "This is to be used in conjunction with the enable-navigation-tracing "
1353 "flag. Please select the label that best describes the recorded traces. "
1354 "This will choose the destination the traces are uploaded to. If you are "
1355 "not sure, select other. If left empty, no traces will be uploaded.";
1356const char kTraceUploadUrlChoiceOther[] = "Other";
1357const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1358const char kTraceUploadUrlChoiceQa[] = "QA";
1359const char kTraceUploadUrlChoiceTesting[] = "Testing";
1360
1361const char kTranslate2016q2UiName[] = "Translate 2016Q2 UI";
1362const char kTranslate2016q2UiDescription[] =
1363 "Improved triggering logic and look for Translate Bubble UI";
1364
1365const char kTranslateLanguageByUlpName[] = "Translate Language by ULP";
1366const char kTranslateLanguageByUlpDescription[] =
1367 "Improved translate target language and triggering logic by considering "
1368 "information from User Language Profile (ULP).";
1369
1370const char kTrySupportedChannelLayoutsName[] =
1371 "Causes audio output streams to check if channel layouts other than the "
1372 "default hardware layout are available.";
1373const char kTrySupportedChannelLayoutsDescription[] =
1374 "Causes audio output streams to check if channel layouts other than the "
1375 "default hardware layout are available. Turning this on will allow the OS "
1376 "to do stereo to surround expansion if supported. May expose third party "
1377 "driver bugs, use with caution.";
1378
1379const char kUiPartialSwapName[] = "Partial swap";
1380const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
1381
Chris Pickel3a227ae62017-08-24 10:47:261382const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles";
1383const char kUseDdljsonApiDescription[] =
1384 "Enables the new ddljson API to fetch Doodles for the NTP.";
1385
Brett Wilsonecb80982017-07-12 20:34:511386const char kUserConsentForExtensionScriptsName[] =
1387 "User consent for extension scripts";
1388const char kUserConsentForExtensionScriptsDescription[] =
1389 "Require user consent for an extension running a script on the page, if "
1390 "the extension requested permission to run on all urls.";
1391
1392const char kUseSuggestionsEvenIfFewFeatureName[] =
1393 "Disable minimum for server-side tile suggestions on NTP.";
1394const char kUseSuggestionsEvenIfFewFeatureDescription[] =
1395 "Request server-side suggestions even if there are only very few of them "
1396 "and use them for tiles on the New Tab Page.";
1397
1398const char kV8CacheOptionsName[] = "V8 caching mode.";
1399const char kV8CacheOptionsDescription[] =
1400 "Caching mode for the V8 JavaScript engine.";
1401const char kV8CacheOptionsParse[] = "Cache V8 parser data.";
1402const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1403
1404const char kV8CacheStrategiesForCacheStorageName[] =
1405 "V8 caching strategy for CacheStorage.";
1406const char kV8CacheStrategiesForCacheStorageDescription[] =
1407 "Caching strategy of scripts in CacheStorage for the V8 JavaScript engine.";
1408const char kV8CacheStrategiesForCacheStorageNormal[] = "Normal";
1409const char kV8CacheStrategiesForCacheStorageAggressive[] = "Aggressive";
1410
Hitoshi Yoshida3e5db562017-09-11 02:31:081411const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts.";
1412const char kV8ContextSnapshotDescription[] =
1413 "Sets to use a snapshot to create V8 contexts in frame creation.";
1414
Brett Wilsonecb80982017-07-12 20:34:511415const char kVibrateRequiresUserGestureName[] =
1416 "Requiring user gesture for the Vibration API";
1417const char kVibrateRequiresUserGestureDescription[] =
1418 "Block the Vibration API if no user gesture has been received on the frame "
1419 "or any embedded frame.";
1420
1421const char kVideoFullscreenOrientationLockName[] =
1422 "Lock screen orientation when playing a video fullscreen.";
1423const char kVideoFullscreenOrientationLockDescription[] =
1424 "Lock the screen orientation of the device to match video orientation when "
1425 "a video goes fullscreen. Only on phones.";
1426
1427const char kVideoRotateToFullscreenName[] =
1428 "Rotate-to-fullscreen gesture for videos.";
1429const char kVideoRotateToFullscreenDescription[] =
1430 "Enter/exit fullscreen when device is rotated to/from the orientation of "
1431 "the video. Only on phones.";
1432
1433const char kWalletServiceUseSandboxName[] =
1434 "Use Google Payments sandbox servers";
1435const char kWalletServiceUseSandboxDescription[] =
1436 "For developers: use the sandbox service for Google Payments API calls.";
1437
Brett Wilsonecb80982017-07-12 20:34:511438const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
1439const char kWebglDraftExtensionsDescription[] =
1440 "Enabling this option allows web applications to access the WebGL "
1441 "Extensions that are still in draft status.";
1442
1443const char kWebMidiName[] = "Web MIDI API";
1444const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1445
1446const char kWebPaymentsName[] = "Web Payments";
1447const char kWebPaymentsDescription[] =
1448 "Enable Web Payments API integration, a JavaScript API for merchants.";
1449
Mathieu Perreault51339b82017-07-20 17:06:051450const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
1451const char kWebPaymentsModifiersDescription[] =
1452 "If the website provides modifiers in the payment request, show the custom "
1453 "total for each payment instrument, update the shopping cart when "
1454 "instruments are switched, and send modified payment method specific data "
1455 "to the payment app.";
1456
Brett Wilsonecb80982017-07-12 20:34:511457const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
1458const char kWebrtcEchoCanceller3Description[] =
1459 "Experimental WebRTC echo canceller (AEC3).";
1460
1461const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
1462const char kWebrtcHwDecodingDescription[] =
1463 "Support in WebRTC for decoding video streams using platform hardware.";
1464
1465const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
1466const char kWebrtcHwEncodingDescription[] =
1467 "Support in WebRTC for encoding video streams using platform hardware.";
1468
1469const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
1470const char kWebrtcHwH264EncodingDescription[] =
1471 "Support in WebRTC for encoding h264 video streams using platform "
1472 "hardware.";
1473
1474const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
1475const char kWebrtcHwVP8EncodingDescription[] =
1476 "Support in WebRTC for encoding vp8 video streams using platform hardware.";
1477
1478const char kWebrtcSrtpAesGcmName[] =
1479 "Negotiation with GCM cipher suites for SRTP in WebRTC";
1480const char kWebrtcSrtpAesGcmDescription[] =
1481 "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP.";
1482
Joachim Bauch4a41d7512017-08-23 14:24:231483const char kWebrtcSrtpEncryptedHeadersName[] =
1484 "Negotiation with encrypted header extensions for SRTP in WebRTC";
1485const char kWebrtcSrtpEncryptedHeadersDescription[] =
1486 "When enabled, WebRTC will try to negotiate encrypted header extensions "
1487 "for SRTP.";
1488
Brett Wilsonecb80982017-07-12 20:34:511489const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
1490const char kWebrtcStunOriginDescription[] =
1491 "When enabled, Stun messages generated by WebRTC will contain the Origin "
1492 "header.";
1493
1494const char kWebvrName[] = "WebVR";
1495const char kWebvrDescription[] =
1496 "Enabling this option allows web applications to access experimental "
1497 "Virtual Reality APIs.";
1498
1499const char kWifiCredentialSyncName[] = "WiFi credential sync";
1500const char kWifiCredentialSyncDescription[] =
1501 "Enables synchronizing WiFi network settings across devices. When enabled, "
1502 "the WiFi credential datatype is registered with Chrome Sync, and WiFi "
1503 "credentials are synchronized subject to user preferences. (See also, "
1504 "chrome://settings/syncSetup.)";
1505
Tom Anderson5c3130ad2017-08-21 19:49:171506const char kWindowNavNativeFlagName[] =
1507 "Enable native window navigation buttons.";
1508const char kWindowNavNativeFlagDescription[] =
1509 "Whether the window frame buttons should be drawn using the system theme. "
1510 "Has no effect unless using the GTK3 theme.";
1511
Brett Wilsonecb80982017-07-12 20:34:511512const char kZeroCopyName[] = "Zero-copy rasterizer";
1513const char kZeroCopyDescription[] =
1514 "Raster threads write directly to GPU memory associated with tiles.";
vabr0215a8e2017-03-28 12:47:341515
Brett Wilsonff596952017-07-14 01:06:551516// Android ---------------------------------------------------------------------
1517
1518#if defined(OS_ANDROID)
1519
1520const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
1521const char kAiaFetchingDescription[] =
1522 "Enable intermediate certificate fetching when a server does not provide "
1523 "sufficient certificates to build a chain to a trusted root.";
1524
1525const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
1526const char kAccessibilityTabSwitcherDescription[] =
1527 "Enable the accessibility tab switcher for Android.";
1528
1529const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
1530const char kAndroidAutofillAccessibilityDescription[] =
1531 "Enable accessibility for autofill popup.";
1532
1533const char kAndroidPaymentAppsName[] = "Android payment apps";
1534const char kAndroidPaymentAppsDescription[] =
1535 "Enable third party Android apps to integrate as payment apps";
1536
Iulia Harasim0b5a4312017-07-21 16:20:501537const char kAndroidSigninPromosName[] = "Signin promos for Android.";
1538const char kAndroidSigninPromosDescription[] =
1539 "New signin promos for Android which will be displayed in content "
1540 "suggestions, Settings, Bookmarks and Recent Tabs.";
1541
Tatiana Gornak38ab3562017-07-28 11:04:181542const char kAndroidViewPasswordsName[] = "Copy and view passwords for Android";
1543const char kAndroidViewPasswordsDescription[] =
1544 "Enables copying and viewing passwords in settings.";
1545
Brett Wilsonff596952017-07-14 01:06:551546const char kAutofillAccessoryViewName[] =
1547 "Autofill suggestions as keyboard accessory view";
1548const char kAutofillAccessoryViewDescription[] =
1549 "Shows Autofill suggestions on top of the keyboard rather than in a "
1550 "dropdown.";
1551
1552const char kBackgroundLoaderForDownloadsName[] =
1553 "Enables background downloading of pages.";
1554const char kBackgroundLoaderForDownloadsDescription[] =
1555 "Enables downloading pages in the background in case page is not yet "
1556 "loaded in current tab.";
1557
Theresa Wellington37014d92017-08-23 02:09:201558const char kChromeHomeDoodleName[] = "Chrome Home Doodle.";
1559const char kChromeHomeDoodleDescription[] =
1560 "Enables showing the Doodle on the NTP for Chrome Home.";
1561
Brett Wilsonff596952017-07-14 01:06:551562const char kChromeHomeExpandButtonName[] = "Chrome Home Expand Button";
1563const char kChromeHomeExpandButtonDescription[] =
1564 "Enables the expand button for Chrome Home.";
1565
Michael van Ouwerkerk66e45322017-08-04 17:25:241566const char kChromeHomeModernLayoutName[] = "Modern layout for Chrome Home.";
1567const char kChromeHomeModernLayoutDescription[] =
1568 "Enables the modern layout for Chrome Home.";
1569
Brett Wilsonff596952017-07-14 01:06:551570const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1571const char kChromeHomeSwipeLogicDescription[] =
1572 "Various swipe logic options for Chrome Home for sheet expansion.";
1573const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
1574const char kChromeHomeSwipeLogicButtonOnly[] = "Swipe on expand button";
1575
1576const char kChromeHomeName[] = "Chrome Home";
1577const char kChromeHomeDescription[] =
1578 "Enables Chrome Home on Android. You must restart the browser"
1579 " twice for changes to take effect.";
1580
1581const char kContentSuggestionsCategoryOrderName[] =
1582 "Default content suggestions category order (e.g. on NTP)";
1583const char kContentSuggestionsCategoryOrderDescription[] =
1584 "Set default order of content suggestion categories (e.g. on the NTP).";
1585
1586const char kContentSuggestionsCategoryRankerName[] =
1587 "Content suggestions category ranker (e.g. on NTP)";
1588const char kContentSuggestionsCategoryRankerDescription[] =
1589 "Set category ranker to order categories of content suggestions (e.g. on "
1590 "the NTP).";
1591
Vitalii Iarkof52ff802017-09-14 12:34:241592const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log";
1593const char kContentSuggestionsDebugLogDescription[] =
1594 "Enable content suggestions debug log accessible through "
1595 "snippets-internals.";
1596
Brett Wilsonff596952017-07-14 01:06:551597const char kContextualSearchContextualCardsBarIntegration[] =
1598 "Contextual Search - Contextual Cards Integration";
1599const char kContextualSearchContextualCardsBarIntegrationDescription[] =
1600 "Whether or not integration of Contextual Cards data in the Contextual "
1601 "Search Bar is enabled.";
1602
1603const char kContextualSearchSingleActionsName[] =
1604 "Contextual Search - Single Actions";
1605const char kContextualSearchSingleActionsDescription[] =
1606 "Whether or not single actions using Contextual Cards data in the "
1607 "Contextual Search Bar is enabled.";
1608
1609const char kContextualSearchUrlActionsName[] =
1610 "Contextual Search - URL Actions";
1611const char kContextualSearchUrlActionsDescription[] =
1612 "Whether or not URL actions using Contextual Cards data in the Contextual "
1613 "Search Bar is enabled.";
1614
1615const char kContextualSearchName[] = "Contextual Search";
1616const char kContextualSearchDescription[] =
1617 "Whether or not Contextual Search is enabled.";
1618
Dmitry Skiba9c3efa72017-07-20 22:01:141619const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries";
1620const char kDontPrefetchLibrariesDescription[] =
1621 "Don't prefetch libraries after loading.";
1622
Brett Wilsonff596952017-07-14 01:06:551623const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
1624const char kEnableAndroidPayIntegrationV1Description[] =
1625 "Enable integration with Android Pay using the first version of the API";
1626
1627const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
1628const char kEnableAndroidPayIntegrationV2Description[] =
1629 "Enable integration with Android Pay using the second version of the API";
1630
1631const char kEnableAndroidSpellcheckerDescription[] =
1632 "Enables use of the Android spellchecker.";
1633const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
1634
Brett Wilsonff596952017-07-14 01:06:551635const char kEnableContentSuggestionsNewFaviconServerName[] =
1636 "Get favicons for content suggestions from a new server.";
1637const char kEnableContentSuggestionsNewFaviconServerDescription[] =
1638 "If enabled, the content suggestions (on the NTP) will get favicons from a "
1639 "new favicon server.";
1640
1641const char kEnableContentSuggestionsLargeThumbnailName[] =
1642 "Large thumbnails layout for content suggestions cards.";
1643const char kEnableContentSuggestionsLargeThumbnailDescription[] =
1644 "If enabled, the content suggestions cards will use large thumbnails and "
1645 "some related adjustments.";
1646
1647const char kEnableContentSuggestionsVideoOverlayName[] =
1648 "Video icon overlay on thumbnails for content suggestions cards.";
1649const char kEnableContentSuggestionsVideoOverlayDescription[] =
1650 "If enabled, the content suggestions cards for suggestions with a video "
1651 "will show a video play icon overlay on the thumbnail.";
1652
1653const char kEnableContentSuggestionsSettingsName[] =
1654 "Show content suggestions settings.";
1655const char kEnableContentSuggestionsSettingsDescription[] =
1656 "If enabled, the content suggestions settings will be available from the "
1657 "main settings menu.";
1658
1659const char kEnableContentSuggestionsShowSummaryName[] =
1660 "Show content suggestions summaries.";
1661const char kEnableContentSuggestionsShowSummaryDescription[] =
1662 "If enabled, the content suggestions summaries will be shown.";
1663
1664const char kEnableCopylessPasteName[] = "App Indexing (Copyless Paste)";
1665const char kEnableCopylessPasteDescription[] =
1666 "Provide suggestions for text input, based on your recent context. For "
1667 "example, if you looked at a restaurant website and switched to the Maps "
1668 "app, the keyboard would offer the name of that restaurant as a suggestion "
1669 "to enter into the search bar. The data is indexed locally, and never sent "
1670 "to the server. It's disabled in incognito mode.";
1671
1672const char kEnableCustomContextMenuName[] = "Enable custom context menu";
1673const char kEnableCustomContextMenuDescription[] =
1674 "Enables a new context menu when a link, image, or video is pressed within "
1675 "Chrome.";
1676
1677const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
1678const char kEnableCustomFeedbackUiDescription[] =
1679 "Enables a custom feedback UI when submitting feedback through Google "
1680 "Feedback. Works with Google Play Services v10.2+";
1681
1682const char kEnableDataReductionProxyMainMenuName[] =
1683 "Enable Data Saver main menu footer";
1684const char kEnableDataReductionProxyMainMenuDescription[] =
1685 "Enables the Data Saver footer in the main menu";
1686
1687const char kEnableDataReductionProxySiteBreakdownName[] =
1688 "Data Saver Site Breakdown";
1689const char kEnableDataReductionProxySiteBreakdownDescription[] =
1690 "Enable the site breakdown on the Data Saver settings page.";
1691
1692const char kEnableOmniboxClipboardProviderName[] =
1693 "Omnibox clipboard URL suggestions";
1694const char kEnableOmniboxClipboardProviderDescription[] =
1695 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
1696 "focus in the omnibox.";
1697
1698const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
1699 "Use expanded autofill credit card popup layout.";
1700const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
1701 "If enabled, displays autofill credit card popup using expanded layout.";
1702
1703const char kEnableFaviconsFromWebManifestName[] =
1704 "Load favicons from Web Manifests";
1705const char kEnableFaviconsFromWebManifestDescription[] =
1706 "Fetch Web Manifests on page load to read favicons from them.";
1707
1708const char kEnableNtpAssetDownloadSuggestionsName[] =
1709 "Show asset downloads on the New Tab page";
1710const char kEnableNtpAssetDownloadSuggestionsDescription[] =
1711 "If enabled, the list of content suggestions on the New Tab page will "
1712 "contain assets (e.g. books, pictures, audio) that the user downloaded for "
1713 "later use.";
1714
1715const char kEnableNtpBookmarkSuggestionsName[] =
1716 "Show recently visited bookmarks on the New Tab page";
1717const char kEnableNtpBookmarkSuggestionsDescription[] =
1718 "If enabled, the list of content suggestions on the New Tab page will "
1719 "contain recently visited bookmarks.";
1720
1721const char kEnableNtpForeignSessionsSuggestionsName[] =
1722 "Show recent foreign tabs on the New Tab page";
1723const char kEnableNtpForeignSessionsSuggestionsDescription[] =
1724 "If enabled, the list of content suggestions on the New Tab page will "
1725 "contain recent foreign tabs.";
1726
1727const char kEnableNtpMostLikelyFaviconsFromServerName[] =
1728 "Download favicons for NTP tiles from Google.";
1729const char kEnableNtpMostLikelyFaviconsFromServerDescription[] =
1730 "If enabled, missing favicons for NTP tiles get downloaded from Google. "
1731 "This only applies to tiles that originate from synced history.";
1732
Jan Krcal7fadbd32017-08-04 10:49:211733const char kNtpTilesLowerResolutionFaviconsName[] =
1734 "Show also lower resolution favicons in NTP tiles.";
1735const char kNtpTilesLowerResolutionFaviconsDescription[] =
1736 "If enabled, the size limit for a favicon to get displayed in an NTP tile "
1737 "decreases. Tiles where the largest available favicon is below this limit "
1738 "get displayed as colored tiles.";
1739
Brett Wilsonff596952017-07-14 01:06:551740const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
1741 "Show offline page downloads on the New Tab page";
1742const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
1743 "If enabled, the list of content suggestions on the New Tab page will "
1744 "contain pages that the user downloaded for later use.";
1745
1746const char kEnableNtpRemoteSuggestionsName[] =
1747 "Show server-side suggestions on the New Tab page";
1748const char kEnableNtpRemoteSuggestionsDescription[] =
1749 "If enabled, the list of content suggestions on the New Tab page will "
1750 "contain server-side suggestions (e.g., Articles for you). Furthermore, it "
1751 "allows to override the source used to retrieve these server-side "
1752 "suggestions.";
1753
1754const char kEnableNtpSnippetsVisibilityName[] =
1755 "Make New Tab Page Snippets more visible.";
1756const char kEnableNtpSnippetsVisibilityDescription[] =
1757 "If enabled, the NTP snippets will become more discoverable with a larger "
1758 "portion of the first card above the fold.";
1759
1760const char kEnableNtpSuggestionsNotificationsName[] =
1761 "Notify about new content suggestions available at the New Tab page";
1762const char kEnableNtpSuggestionsNotificationsDescription[] =
1763 "If enabled, notifications will inform about new content suggestions on "
1764 "the New Tab page.";
1765
1766const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
1767const char kEnablePhysicalWebDescription[] =
1768 "Enable scanning for URLs from Physical Web objects.";
1769
1770const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1771const char kEnableOfflinePreviewsDescription[] =
1772 "Enable showing offline page previews on slow networks.";
1773
1774const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
1775const char kEnableOskOverscrollDescription[] =
1776 "Enable OSK overscroll support. With this flag on, the OSK will only "
1777 "resize the visual viewport.";
1778
1779const char kEnableSpecialLocaleName[] =
1780 "Enable custom logic for special locales.";
1781const char kEnableSpecialLocaleDescription[] =
1782 "Enable custom logic for special locales. In this mode, Chrome might "
1783 "behave differently in some locales.";
1784
Brett Wilsonff596952017-07-14 01:06:551785const char kEnableWebNfcName[] = "WebNFC";
1786const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
1787
gogeraldf3cbb422017-07-26 14:37:121788const char kEnableWebPaymentsMethodSectionOrderV2Name[] =
1789 "Enable Web Payments method section order V2.";
1790const char kEnableWebPaymentsMethodSectionOrderV2Description[] =
1791 "Enable this option to display payment method section above address "
1792 "section instead of below it.";
1793
Brett Wilsonff596952017-07-14 01:06:551794const char kEnableWebPaymentsSingleAppUiSkipName[] =
1795 "Enable Web Payments single app UI skip";
1796const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
1797 "Enable Web Payments to skip showing its UI if the developer specifies a "
1798 "single app.";
1799
1800const char kHerbPrototypeChoicesName[] = "Switch preferred flavor of Herb";
1801const char kHerbPrototypeChoicesDescription[] =
1802 "Switching this option changes which tab management prototype is being "
1803 "tested.";
1804const char kHerbPrototypeFlavorElderberry[] =
1805 "ELDERBERRY: All View Intents in CCT v2";
1806
1807const char kKeepPrefetchedContentSuggestionsName[] =
1808 "Keep prefetched content suggestions";
1809const char kKeepPrefetchedContentSuggestionsDescription[] =
1810 "If enabled, some of prefetched content suggestions are not replaced by "
1811 "the new fetched suggestions.";
1812
1813const char kLsdPermissionPromptName[] =
1814 "Location Settings Dialog Permission Prompt";
1815const char kLsdPermissionPromptDescription[] =
1816 "Whether to use the Google Play Services Location Settings Dialog "
1817 "permission dialog.";
1818
Brett Wilsonff596952017-07-14 01:06:551819const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
1820const char kMediaScreenCaptureDescription[] =
1821 "Enable this option for experimental ScreenCapture feature on Android.";
1822
1823const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
1824const char kModalPermissionPromptsDescription[] =
1825 "Whether to use permission dialogs in place of permission infobars.";
1826
Brett Wilsonff596952017-07-14 01:06:551827const char kNewPhotoPickerName[] = "Enable new Photopicker";
1828const char kNewPhotoPickerDescription[] =
1829 "Activates the new picker for selecting photos.";
1830
1831const char kNoCreditCardAbort[] = "No Credit Card Abort";
1832const char kNoCreditCardAbortDescription[] =
1833 "Whether or not the No Credit Card Abort is enabled.";
1834
1835const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
1836const char kNtpCondensedLayoutDescription[] =
1837 "Show a condensed layout on the New Tab Page.";
1838
1839const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
1840const char kNtpCondensedTileLayoutDescription[] =
1841 "Show a condensed tile layout on the New Tab Page.";
1842
Nicolas Dossou-gbete56f37dc2017-08-10 16:14:041843const char kSiteExplorationUiName[] = "Site Exploration UI";
1844const char kSiteExplorationUiDescription[] =
1845 "Show site suggestions in the Exploration UI";
1846
Brett Wilsonff596952017-07-14 01:06:551847const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
1848const char kNtpGoogleGInOmniboxDescription[] =
1849 "Show a Google G in the omnibox on the New Tab Page.";
1850
1851const char kNtpOfflinePagesName[] = "Enable NTP offline pages";
1852const char kNtpOfflinePagesDescription[] =
1853 "Enables badging of offline pages on the New Tab page. Only relevant if "
1854 "offline pages are enabled.";
1855
1856const char kNtpPopularSitesName[] = "Show popular sites on the New Tab page";
1857const char kNtpPopularSitesDescription[] =
1858 "Pre-populate the New Tab page with popular sites.";
1859
Brett Wilsonff596952017-07-14 01:06:551860const char kOfflineBookmarksName[] = "Enable offline bookmarks";
1861const char kOfflineBookmarksDescription[] =
1862 "Enable saving bookmarked pages for offline viewing.";
1863
1864const char kOfflinePagesAsyncDownloadName[] =
1865 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages.)*";
1866const char kOfflinePagesAsyncDownloadDescription[] =
1867 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages such )*"
1868 R"*(that the user can click on it to download the page later.)*";
1869
1870const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
1871const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
1872
1873const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features.";
1874const char kOfflinePagesCtV2Description[] =
1875 "V2 features include attributing pages to the app that initiated the "
1876 "custom tabs, and being able to query for pages by page attribution.";
1877
1878const char kOfflinePagesLoadSignalCollectingName[] =
1879 "Enables collecting load timing data for offline page snapshots.";
1880const char kOfflinePagesLoadSignalCollectingDescription[] =
1881 "Enables loading completeness data collection while writing an offline "
1882 "page. This data is collected in the snapshotted offline page to allow "
1883 "data analysis to improve deciding when to make the offline snapshot.";
1884
1885const char kOfflinePagesPrefetchingName[] =
1886 "Enables suggested offline pages to be prefetched.";
1887const char kOfflinePagesPrefetchingDescription[] =
1888 "Enables suggested offline pages to be prefetched, so useful content is "
1889 "available while offline.";
1890
Cathy Li3d5379e2017-09-07 00:11:091891const char kOfflinePagesPrefetchingUIName[] =
1892 "Enables prefetched offline pages to be shown in UI.";
1893const char kOfflinePagesPrefetchingUIDescription[] =
1894 "Enables prefetched offline pages to raise notifications and be shown in "
1895 "download home UI.";
1896
Collin Baker17f92a52017-07-19 21:41:251897const char kOfflinePagesRenovationsName[] = "Enables offline page renovations.";
1898const char kOfflinePagesRenovationsDescription[] =
1899 "Enables offline page renovations which correct issues with dynamic "
1900 "content that occur when offlining pages that use JavaScript.";
1901
Brett Wilsonff596952017-07-14 01:06:551902const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
1903const char kOfflinePagesSharingDescription[] =
1904 "Enables the saved offline pages to be shared via other applications.";
1905
1906const char kOfflinePagesSvelteConcurrentLoadingName[] =
1907 "Enables concurrent background loading on svelte.";
1908const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
1909 "Enables concurrent background loading (or downloading) of pages on "
1910 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
1911 "happen when the svelte device is idle.";
1912
1913const char kOffliningRecentPagesName[] =
1914 "Enable offlining of recently visited pages";
1915const char kOffliningRecentPagesDescription[] =
1916 "Enable storing recently visited pages locally for offline use. Requires "
1917 "Offline Pages to be enabled.";
1918
1919extern const char kPayWithGoogleV1Name[] = "Pay with Google v1";
1920extern const char kPayWithGoogleV1Description[] =
1921 "Enable Pay with Google integration into Web Payments with API version "
1922 "'1'.";
1923
Matthew Jones7c37430cd2017-09-11 15:59:281924const char kProgressBarThrottleName[] = "Android progress update throttling.";
1925const char kProgressBarThrottleDescription[] =
1926 "Limit the maximum progress update to make progress appear smoother.";
1927
Brett Wilsonff596952017-07-14 01:06:551928const char kProgressBarCompletionName[] =
1929 "Android phone page load progress bar completion time.";
1930const char kProgressBarCompletionDescription[] =
1931 "Configures Android phone page loading progress bar completion time.";
1932const char kProgressBarCompletionLoadEvent[] =
1933 R"*(Top loading frame's onload event ("everything" is done in the )*"
1934 R"*(page, historical behavior).)*";
1935const char kProgressBarCompletionResourcesBeforeDcl[] =
1936 "Main frame's domContentLoaded and all resources loads started before "
1937 "domContentLoaded (iframes ignored).";
1938const char kProgressBarCompletionDomContentLoaded[] =
1939 "Main frame's domContentLoaded (iframes ignored).";
1940const char kProgressBarCompletionResourcesBeforeDclAndSameOriginIframes[] =
1941 "domContentLoaded and all resources loads started before domContentLoaded "
1942 "(main frame and same origin iframes).";
1943
1944const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
1945const char kPullToRefreshEffectDescription[] =
1946 "Page reloads triggered by vertically overscrolling content.";
1947
Piotr Swigon7c296ef2017-08-29 04:32:001948const char kPwaImprovedSplashScreenName[] =
1949 "Improved Splash Screen for standalone PWAs";
1950const char kPwaImprovedSplashScreenDescription[] =
1951 "Enables the Improved Splash Screen UX for standalone PWAs based on new "
1952 "Web App Manifest attributes";
Piotr Swigon9f630b32017-07-26 09:42:491953const char kPwaPersistentNotificationName[] =
1954 "Persistent notification in standalone PWA";
1955const char kPwaPersistentNotificationDescription[] =
1956 "Enables a persistent Android notification for standalone PWAs";
1957
Brett Wilsonff596952017-07-14 01:06:551958const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
1959const char kReaderModeHeuristicsDescription[] =
1960 "Determines what pages the Reader Mode infobar is shown on.";
1961const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
1962const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles";
1963const char kReaderModeHeuristicsAllArticles[] = "All articles";
1964const char kReaderModeHeuristicsAlwaysOff[] = "Never";
1965const char kReaderModeHeuristicsAlwaysOn[] = "Always";
1966
Wei-Yin Chen (陳威尹)41b22412017-07-21 02:51:181967const char kReaderModeInCCTName[] = "Reader Mode in CCT";
1968const char kReaderModeInCCTDescription[] =
1969 "Open Reader Mode in Chrome Custom Tabs.";
1970
Brett Wilsonff596952017-07-14 01:06:551971const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
1972const char kSetMarketUrlForTestingDescription[] =
1973 "When enabled, sets the market URL for use in testing the update menu "
1974 "item.";
1975
1976const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
1977const char kSpannableInlineAutocompleteDescription[] =
1978 "A new type of inline autocomplete for the omnibox that works with "
1979 "keyboards that compose text.";
1980
Brett Wilsonff596952017-07-14 01:06:551981const char kTranslateCompactUIName[] = "New Translate Infobar";
1982const char kTranslateCompactUIDescription[] =
1983 "Enable the new Translate compact infobar UI.";
1984
1985const char kUpdateMenuBadgeName[] = "Force show update menu badge";
1986const char kUpdateMenuBadgeDescription[] =
1987 "When enabled, an update badge will be shown on the app menu button.";
1988
1989const char kUpdateMenuItemCustomSummaryDescription[] =
1990 "When this flag and the force show update menu item flag are enabled, a "
1991 "custom summary string will be displayed below the update menu item.";
1992const char kUpdateMenuItemCustomSummaryName[] =
1993 "Update menu item custom summary";
1994
1995const char kUpdateMenuItemName[] = "Force show update menu item";
1996const char kUpdateMenuItemDescription[] =
1997 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
1998 R"*(menu.)*";
1999
2000const char kUseAndroidMidiApiName[] = "Use Android Midi API";
2001const char kUseAndroidMidiApiDescription[] =
2002 "Use Android Midi API for WebMIDI (effective only with Android M+ "
2003 "devices).";
2004
Marc Treib93af46a2017-08-23 13:30:002005const char kThirdPartyDoodlesName[] =
2006 "Enable Doodles for third-party search engines";
2007const char kThirdPartyDoodlesDescription[] =
2008 "Enables fetching and displaying Doodles on the NTP for third-party search "
2009 "engines.";
2010
Brett Wilsonff596952017-07-14 01:06:552011const char kXGEOVisibleNetworksName[] = "Enable XGEO Visible Networks";
2012const char kXGEOVisibleNetworksDescription[] =
2013 "If location permissions are granted, include visible networks in the XGEO "
2014 "Header for omnibox queries. This will only happen if location is not "
2015 "fresh or not available (for example, due to a cold start).";
2016
Brett Wilson7b44537e2017-08-18 01:38:282017// Non-Android -----------------------------------------------------------------
Brett Wilsonff596952017-07-14 01:06:552018
Brett Wilson7b44537e2017-08-18 01:38:282019#else // !defined(OS_ANDROID)
brettw5f9c1642017-05-14 17:12:482020
Brett Wilson7b44537e2017-08-18 01:38:282021const char kAccountConsistencyName[] =
2022 "Identity consistency between browser and cookie jar";
2023const char kAccountConsistencyDescription[] =
2024 "When enabled, the browser manages signing in and out of Google accounts.";
2025const char kAccountConsistencyChoiceMirror[] = "Mirror";
2026const char kAccountConsistencyChoiceDice[] = "Dice";
vabr0215a8e2017-03-28 12:47:342027
Chris Pickel3a227ae62017-08-24 10:47:262028const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP";
2029const char kDoodlesOnLocalNtpDescription[] =
2030 "Show doodles on the local New Tab page if Google is the default search "
2031 "engine.";
2032
mlamouriff56c092017-05-11 15:31:392033const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
mlamouriff56c092017-05-11 15:31:392034const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342035 "Manage audio focus across tabs to improve the audio mixing.";
mlamouriff56c092017-05-11 15:31:392036const char kEnableAudioFocusDisabled[] = "Disabled";
mlamouriff56c092017-05-11 15:31:392037const char kEnableAudioFocusEnabled[] = "Enabled";
mlamouriff56c092017-05-11 15:31:392038const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342039 "Enabled (Flash lowers volume when interrupted by other sound, "
2040 "experimental)";
2041
Brett Wilson7b44537e2017-08-18 01:38:282042const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2043const char kEnableNewAppMenuIconDescription[] =
2044 "Use the new app menu icon with update notification animations.";
vabr0215a8e2017-03-28 12:47:342045
2046const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342047const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282048 "Enable receiving entity suggestions - disambiguation descriptions - for "
2049 "Omnibox suggestions.";
2050
2051const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2052const char kOmniboxTailSuggestionsDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192053 "Enable receiving tail suggestions, a type of search suggestion based on "
2054 "the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342055
Brett Wilson7b44537e2017-08-18 01:38:282056const char kOneGoogleBarOnLocalNtpName[] =
2057 "Enable the OneGoogleBar on the local NTP";
2058const char kOneGoogleBarOnLocalNtpDescription[] =
2059 "Show a OneGoogleBar on the local New Tab page if Google is the default "
2060 "search engine.";
2061
ojan38c678352017-04-11 20:27:552062const char kPauseBackgroundTabsName[] = "Pause background tabs";
2063const char kPauseBackgroundTabsDescription[] =
2064 "Pause timers in background tabs after 5 minutes on desktop.";
2065
Brett Wilson7b44537e2017-08-18 01:38:282066const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
2067const char kUseGoogleLocalNtpDescription[] =
2068 "Use the local New Tab page if Google is the default search engine.";
spqchan064a8112017-04-18 16:46:322069
Brett Wilson7b44537e2017-08-18 01:38:282070const char kVoiceSearchOnLocalNtpName[] =
2071 "Enable Voice Search on the local NTP";
2072const char kVoiceSearchOnLocalNtpDescription[] =
2073 "Show a microphone for voice search on the local New Tab page "
2074 "if Google is the default search engine.";
2075
2076#if defined(GOOGLE_CHROME_BUILD)
2077
2078const char kGoogleBrandedContextMenuName[] =
2079 "Google branding in the context menu";
2080const char kGoogleBrandedContextMenuDescription[] =
2081 "Shows a Google icon next to context menu items powered by Google "
2082 "services.";
2083
2084#endif // !defined(GOOGLE_CHROME_BUILD)
2085
2086#endif // !defined(OS_ANDROID)
2087
2088// Windows ---------------------------------------------------------------------
2089
2090#if defined(OS_WIN)
2091
2092const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
2093const char kCloudPrintXpsDescription[] =
2094 "XPS enables advanced options for classic printers connected to the Cloud "
2095 "Print with Chrome. Printers must be re-connected after changing this "
2096 "flag.";
2097
Dave Tapuskadd43469d2017-08-22 22:15:532098const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus";
2099const char kDirectManipulationStylusDescription[] =
2100 "If enabled, Chrome will scroll web pages on stylus drag.";
2101
Brett Wilson7b44537e2017-08-18 01:38:282102const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
2103const char kDisablePostscriptPrintingDescription[] =
2104 "Disables PostScript generation when printing to PostScript capable "
2105 "printers, and uses EMF generation in its place.";
2106
2107const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
2108const char kEnableAppcontainerDescription[] =
2109 "Enables the use of an AppContainer on sandboxed processes to improve "
2110 "security.";
2111
2112const char kEnableD3DVsync[] = "D3D v-sync";
2113const char kEnableD3DVsyncDescription[] =
2114 "Produces v-sync signal by having D3D wait for vertical blanking interval "
2115 "to occur.";
2116
2117const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2118const char kEnableDesktopIosPromotionsDescription[] =
2119 "Enable Desktop to iOS promotions, and allow users to see them if they are "
2120 "eligible.";
2121
2122const char kGdiTextPrinting[] = "GDI Text Printing";
2123const char kGdiTextPrintingDescription[] =
2124 "Use GDI to print text as simply text";
2125
2126const char kMergeKeyCharEventsName[] =
2127 "Enable or disable merging merging the key event (WM_KEY*) with char event "
2128 "(WM_CHAR).";
2129const char kMergeKeyCharEventsDescription[] =
2130 "If disabled, Chrome will handle WM_KEY* and WM_CHAR separately.";
2131
2132const char kTraceExportEventsToEtwName[] =
2133 "Enable exporting of tracing events to ETW.";
2134const char kTraceExportEventsToEtwDesription[] =
2135 "If enabled, trace events will be exported to the Event Tracing for "
2136 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2137 "Xperf.";
2138
2139const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2140const char kUseWinrtMidiApiDescription[] =
2141 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or "
2142 "later).";
2143
2144const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2145const char kWindows10CustomTitlebarDescription[] =
2146 "If enabled, Chrome will draw the titlebar and caption buttons instead of "
2147 "deferring to Windows.";
2148
Wez6656c572017-08-29 22:29:582149#if DCHECK_IS_ON() && defined(SYZYASAN)
2150extern const char kSyzyAsanDcheckIsFatalName[] = "DCHECKs are fatal";
2151extern const char kSyzyAsanDcheckIsFatalDescription[] =
2152 "By default Chrome will evaluate DCHECKs in SyzyASAN builds, but only log "
2153 "failed DCHECKs. If enabled, DCHECKs will crash the calling process.";
2154#endif // DCHECK_IS_ON() && defined(SYZYASAN)
2155
Brett Wilson7b44537e2017-08-18 01:38:282156#endif // defined(OS_WIN)
2157
2158// Mac -------------------------------------------------------------------------
2159
2160#if defined(OS_MACOSX)
2161
2162const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
2163const char kAppInfoDialogDescription[] =
2164 "Makes the Toolkit-Views based App Info dialog accessible from "
2165 "chrome://apps or chrome://extensions in place of the native extension "
2166 "permissions dialog, or the details link (which is a link to the Web "
2167 "Store).";
2168
2169const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
2170const char kAppWindowCyclingDescription[] =
2171 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
2172 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
2173 "browser window, and browser windows will not be cycled when a Chrome App "
2174 "is active.";
2175
2176extern const char kCreditCardAutofillTouchBarName[] =
2177 "Credit Card Autofill Touch Bar";
2178extern const char kCreditCardAutofillTouchBarDescription[] =
2179 "Shows Credit Card Autofill Suggestions on the Touch Bar.";
2180
2181const char kFullscreenToolbarRevealName[] =
2182 "Enables the toolbar in fullscreen to reveal itself.";
2183const char kFullscreenToolbarRevealDescription[] =
2184 "Reveal the toolbar in fullscreen for a short period when the tab strip "
2185 "has changed.";
2186
2187const char kContentFullscreenName[] = "Improved Content Fullscreen";
2188const char kContentFullscreenDescription[] =
2189 "Fullscreen content window detaches from main browser window and goes to "
2190 "a new space without moving or changing the original browser window.";
2191
2192extern const char kDialogTouchBarName[] = "Dialog Touch Bar";
2193extern const char kDialogTouchBarDescription[] =
2194 "Shows Dialog buttons on the Touch Bar.";
2195
2196const char kHostedAppsInWindowsName[] =
2197 "Allow hosted apps to be opened in windows";
2198const char kHostedAppsInWindowsDescription[] =
2199 "Allows hosted apps to be opened in windows instead of being limited to "
2200 "tabs.";
2201
2202extern const char kMacRTLName[] = "Enable RTL";
2203extern const char kMacRTLDescription[] =
2204 "Mirrors the UI for RTL language users";
2205
2206extern const char kMacTouchBarName[] = "Hardware Touch Bar";
2207extern const char kMacTouchBarDescription[] =
2208 "Control the use of the Touch Bar.";
2209
2210const char kMacV2SandboxName[] = "Mac V2 Sandbox";
2211const char kMacV2SandboxDescription[] =
2212 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
2213 "entire life cycle.";
2214
2215const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
2216const char kMacViewsNativeAppWindowsDescription[] =
2217 "Controls whether to use Toolkit-Views based Chrome App windows.";
2218
2219const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
2220const char kMacViewsTaskManagerDescription[] =
2221 "Controls whether to use the Toolkit-Views based Task Manager.";
2222
2223const char kTabDetachingInFullscreenName[] =
2224 "Allow tab detaching in fullscreen";
2225const char kTabDetachingInFullscreenDescription[] =
2226 "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac.";
2227
2228const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
2229const char kTabStripKeyboardFocusDescription[] =
2230 "Enable keyboard focus for the tabs in the tab strip.";
2231
2232const char kTranslateNewUxName[] = "New Translate UX";
2233const char kTranslateNewUxDescription[] =
2234 "Enable the new Translate bubble UX is offered instead of the infobar.";
2235
2236// Non-Mac ---------------------------------------------------------------------
2237
2238#else // !defined(OS_MACOSX)
2239
2240const char kPermissionPromptPersistenceToggleName[] =
2241 "Persistence Toggle in Permission Prompts";
2242const char kPermissionPromptPersistenceToggleDescription[] =
2243 "Whether to display a persistence toggle in permission prompts.";
2244
2245#endif
2246
2247// Chrome OS -------------------------------------------------------------------
vabr0215a8e2017-03-28 12:47:342248
2249#if defined(OS_CHROMEOS)
2250
Brett Wilson7b44537e2017-08-18 01:38:282251const char kAcceleratedMjpegDecodeName[] =
2252 "Hardware-accelerated mjpeg decode for captured frame";
2253const char kAcceleratedMjpegDecodeDescription[] =
2254 "Enable hardware-accelerated mjpeg decode for captured frame where "
2255 "available.";
vabr0215a8e2017-03-28 12:47:342256
Brett Wilson7b44537e2017-08-18 01:38:282257const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
2258const char kAllowTouchpadThreeFingerClickDescription[] =
2259 "Enables touchpad three-finger-click as middle button.";
vabr0215a8e2017-03-28 12:47:342260
Brett Wilson7b44537e2017-08-18 01:38:282261const char kArcBootCompleted[] = "Load Android apps automatically";
2262const char kArcBootCompletedDescription[] =
2263 "Allow Android apps to start automatically after signing in.";
vabr0215a8e2017-03-28 12:47:342264
Lev Rumyantsev7a8544312017-08-18 19:26:512265const char kArcNativeBridgeExperimentName[] =
2266 "Enable native bridge experiment for ARC";
2267const char kArcNativeBridgeExperimentDescription[] =
2268 "Enables experimental native bridge feature.";
2269
Brett Wilson7b44537e2017-08-18 01:38:282270const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
2271const char kAshEnableUnifiedDesktopDescription[] =
2272 "Enable unified desktop mode which allows a window to span multiple "
2273 "displays.";
vabr0215a8e2017-03-28 12:47:342274
Brett Wilson7b44537e2017-08-18 01:38:282275const char kBootAnimationName[] = "Boot animation";
2276const char kBootAnimationDescription[] =
2277 "Wallpaper boot animation (except for OOBE case).";
vabr0215a8e2017-03-28 12:47:342278
Brett Wilson7b44537e2017-08-18 01:38:282279const char kCaptivePortalBypassProxyName[] =
2280 "Bypass proxy for Captive Portal Authorization";
2281const char kCaptivePortalBypassProxyDescription[] =
2282 "If proxy is configured, it usually prevents from authorization on "
2283 "different captive portals. This enables opening captive portal "
2284 "authorization dialog in a separate window, which ignores proxy settings.";
vabr0215a8e2017-03-28 12:47:342285
Brett Wilson7b44537e2017-08-18 01:38:282286const char kCrOSComponentName[] = "Chrome OS Component";
2287const char kCrOSComponentDescription[] =
2288 "Enable the use of componentized escpr CUPS filter.";
vabr0215a8e2017-03-28 12:47:342289
Xiaochu Liu51d03fd2017-09-08 23:51:022290const char kCrOSContainerName[] = "Chrome OS Container";
2291const char kCrOSContainerDescription[] =
2292 "Enable the use of Chrome OS Container utility.";
2293
Brett Wilson7b44537e2017-08-18 01:38:282294const char kCrosRegionsModeName[] = "Cros-regions load mode";
2295const char kCrosRegionsModeDescription[] =
2296 "This flag controls cros-regions load mode";
2297const char kCrosRegionsModeDefault[] = "Default";
2298const char kCrosRegionsModeOverride[] = "Override VPD values.";
2299const char kCrosRegionsModeHide[] = "Hide VPD values.";
vabr0215a8e2017-03-28 12:47:342300
Jacob Dufault2becbc482017-08-25 00:36:352301const char kDisableLockScreenAppsName[] = "Disable lock screen note taking";
2302const char kDisableLockScreenAppsDescription[] =
2303 "Disable new-note action handler apps on the lock screen. The user will "
2304 "not be able to launch the preferred note-taking action from the lock "
2305 "screen, provided that the app supports lock screen note taking.";
2306
Brett Wilson7b44537e2017-08-18 01:38:282307const char kDisableNewVirtualKeyboardBehaviorName[] =
2308 "New window behavior for the accessibility keyboard";
2309const char kDisableNewVirtualKeyboardBehaviorDescription[] =
2310 "Disable new window behavior for the accessibility keyboard in non-sticky "
2311 "mode (do not change work area in non-sticky mode).";
vabr0215a8e2017-03-28 12:47:342312
Sammie Quonef6b4882017-09-14 16:50:052313const char kDisableTabletAutohideTitlebarsName[] =
2314 "Disable autohide titlebars in tablet mode";
2315const char kDisableTabletAutohideTitlebarsDescription[] =
2316 "Disable tablet mode autohide titlebars functionality. The user will be "
2317 "able to see the titlebar in tablet mode.";
2318
Brett Wilson7b44537e2017-08-18 01:38:282319const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences.";
2320const char kEnablePerUserTimezoneDescription[] =
2321 "Chrome OS system timezone preference is stored and handled for each user "
2322 "individually.";
vabr0215a8e2017-03-28 12:47:342323
Brett Wilson7b44537e2017-08-18 01:38:282324const char kDisableSystemTimezoneAutomaticDetectionName[] =
2325 "SystemTimezoneAutomaticDetection policy support";
2326const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
2327 "Disable system timezone automatic detection device policy.";
vabr0215a8e2017-03-28 12:47:342328
newcomer403ac142017-07-05 18:26:302329const char kEnableFullscreenAppListName[] = "Enable The Peeking Launcher";
newcomer403ac142017-07-05 18:26:302330const char kEnableFullscreenAppListDescription[] =
Vitalii Iarko7df520142017-07-07 12:53:192331 "The peeking launcher UI supports touch and provides more space for "
2332 "upcoming features.";
newcomer403ac142017-07-05 18:26:302333
Alex Newcomer43cb7f12017-07-28 17:37:392334extern const char kEnableBackgroundBlurName[] = "Enable background blur.";
2335extern const char kEnableBackgroundBlurDescription[] =
2336 "Enables background blur for the Peeking Launcher, Lock Screen, and Tab "
2337 "Switcher.";
2338
Brett Wilson7b44537e2017-08-18 01:38:282339const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2340const char kEnableAndroidWallpapersAppDescription[] =
2341 "Enables the Android Wallpapers App as the default Wallpaper App on Chrome "
2342 "OS.";
vabr0215a8e2017-03-28 12:47:342343
Brett Wilson7b44537e2017-08-18 01:38:282344const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2345const char kEnableChromevoxArcSupportDescription[] =
2346 "Enable ChromeVox screen reader features in ARC";
vabr0215a8e2017-03-28 12:47:342347
Brett Wilson7b44537e2017-08-18 01:38:282348const char kEnableEhvInputName[] =
2349 "Emoji, handwriting and voice input on opt-in IME menu";
2350const char kEnableEhvInputDescription[] =
2351 "Enable access to emoji, handwriting and voice input form opt-in IME menu.";
vabr0215a8e2017-03-28 12:47:342352
Brett Wilson7b44537e2017-08-18 01:38:282353const char kEnableEncryptionMigrationName[] =
2354 "Enable encryption migration of user data";
2355const char kEnableEncryptionMigrationDescription[] =
2356 "If enabled and the device supports ARC, the user will be asked to update "
2357 "the encryption of user data when the user signs in.";
vabr0215a8e2017-03-28 12:47:342358
Klemen Kozjekf2b30e452017-09-01 05:04:512359const char kEnableExternalDriveRename[] = "Enable external drive rename";
2360const char kEnableExternalDriveRenameDescription[] =
2361 "If enabled, external removable drives will get 'Rename' action in the "
2362 "context menu";
2363
Brett Wilson7b44537e2017-08-18 01:38:282364const char kEnableImeMenuName[] = "Enable opt-in IME menu";
2365const char kEnableImeMenuDescription[] =
2366 "Enable access to the new IME menu in the Language Settings page.";
vabr0215a8e2017-03-28 12:47:342367
Brett Wilson7b44537e2017-08-18 01:38:282368const char kEnableZipArchiverOnFileManagerName[] = "ZIP archiver for Drive";
2369const char kEnableZipArchiverOnFileManagerDescription[] =
2370 "Enable the ability to archive and unpack files on Drive in the Files app";
2371
2372const char kEolNotificationName[] = "Disable Device End of Life notification.";
2373const char kEolNotificationDescription[] =
2374 "Disable Notifcation when Device is End of Life.";
2375
2376const char kExperimentalAccessibilityFeaturesName[] =
2377 "Experimental accessibility features";
2378const char kExperimentalAccessibilityFeaturesDescription[] =
2379 "Enable additional accessibility features in the Settings page.";
2380
2381const char kExperimentalInputViewFeaturesName[] =
2382 "Experimental input view features";
2383const char kExperimentalInputViewFeaturesDescription[] =
2384 "Enable experimental features for IME input views.";
2385
2386const char kFileManagerTouchModeName[] = "Files App. touch mode";
2387const char kFileManagerTouchModeDescription[] =
2388 "Touchscreen-specific interactions of the Files app.";
2389
2390const char kFirstRunUiTransitionsName[] =
2391 "Animated transitions in the first-run tutorial";
2392const char kFirstRunUiTransitionsDescription[] =
2393 "Transitions during first-run tutorial are animated.";
2394
2395const char kFloatingVirtualKeyboardName[] = "Floating virtual keyboard.";
2396const char kFloatingVirtualKeyboardDescription[] =
2397 "Enable/Disable floating virtual keyboard.";
2398
2399const char kForceEnableStylusToolsName[] = "Force enable stylus features";
2400const char kForceEnableStylusToolsDescription[] =
2401 "Forces display of the stylus tools menu in the shelf and the stylus "
2402 "section in settings, even if there is no attached stylus device.";
2403
2404const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
2405const char kGestureEditingDescription[] =
2406 "Enable/Disable gesture editing option in the settings page for the "
2407 "virtual keyboard.";
2408
2409const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
2410const char kGestureTypingDescription[] =
2411 "Enable/Disable gesture typing option in the settings page for the virtual "
2412 "keyboard.";
2413
2414const char kInputViewName[] = "Input views";
2415const char kInputViewDescription[] =
2416 "Enable IME extensions to supply custom views for user input such as "
2417 "virtual keyboards.";
2418
2419const char kMemoryPressureThresholdName[] =
2420 "Memory discard strategy for advanced pressure handling";
2421const char kMemoryPressureThresholdDescription[] =
2422 "Memory discarding strategy to use";
2423const char kConservativeThresholds[] =
2424 "Conservative memory pressure release strategy";
2425const char kAggressiveCacheDiscardThresholds[] =
2426 "Aggressive cache release strategy";
2427const char kAggressiveTabDiscardThresholds[] =
2428 "Aggressive tab release strategy";
2429const char kAggressiveThresholds[] =
2430 "Aggressive tab and cache release strategy";
2431
2432const char kMtpWriteSupportName[] = "MTP write support";
2433const char kMtpWriteSupportDescription[] =
2434 "MTP write support in File System API (and file manager). In-place editing "
2435 "operations are not supported.";
2436
2437const char kMultideviceName[] = "Enable multidevice features";
2438const char kMultideviceDescription[] =
2439 "Enables UI for controlling multidevice features.";
vabr0215a8e2017-03-28 12:47:342440
2441const char kNetworkPortalNotificationName[] =
2442 "Notifications about captive portals";
vabr0215a8e2017-03-28 12:47:342443const char kNetworkPortalNotificationDescription[] =
2444 "If enabled, notification is displayed when device is connected to a "
2445 "network behind captive portal.";
2446
stevenjbe1d457382017-05-24 22:37:242447const char kNetworkSettingsConfigName[] =
2448 "Settings based Network Configuration";
stevenjbe1d457382017-05-24 22:37:242449const char kNetworkSettingsConfigDescription[] =
2450 "Enables the Settings based network configuration UI instead of the Views "
2451 "based configuration dialog.";
2452
Brett Wilson7b44537e2017-08-18 01:38:282453const char kNewKoreanImeName[] = "New Korean IME";
2454const char kNewKoreanImeDescription[] =
2455 "New Korean IME, which is based on Google Input Tools' HMM engine.";
vabr0215a8e2017-03-28 12:47:342456
Brett Wilson7b44537e2017-08-18 01:38:282457const char kNewZipUnpackerName[] = "New ZIP unpacker";
2458const char kNewZipUnpackerDescription[] =
2459 "New ZIP unpacker flow, based on the File System Provider API.";
vabr0215a8e2017-03-28 12:47:342460
Brett Wilson7b44537e2017-08-18 01:38:282461const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
2462const char kPhysicalKeyboardAutocorrectDescription[] =
2463 "Enable physical keyboard autocorrect for US keyboard, which can provide "
2464 "suggestions as typing on physical keyboard.";
vabr0215a8e2017-03-28 12:47:342465
2466const char kPrinterProviderSearchAppName[] =
2467 "Chrome Web Store Gallery app for printer drivers";
vabr0215a8e2017-03-28 12:47:342468const char kPrinterProviderSearchAppDescription[] =
2469 "Enables Chrome Web Store Gallery app for printer drivers. The app "
Vitalii Iarko7df520142017-07-07 12:53:192470 "searches Chrome Web Store for extensions that support printing to a USB "
2471 "printer with specific USB ID.";
vabr0215a8e2017-03-28 12:47:342472
Brett Wilson7b44537e2017-08-18 01:38:282473const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
2474const char kQuickUnlockPinDescription[] =
2475 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2476 "device on the lock screen after you have signed into your device.";
2477const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2478const char kQuickUnlockPinSigninDescription[] =
2479 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2480 "device. After changing this flag PIN needs to be set up again.";
2481const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2482const char kQuickUnlockFingerprintDescription[] =
2483 "Enabling fingerprint quick unlock allows you to setup and use a "
2484 "fingerprint to unlock your Chromebook on the lock screen after you have "
2485 "signed into your device.";
vabr0215a8e2017-03-28 12:47:342486
Brett Wilson7b44537e2017-08-18 01:38:282487const char kOfficeEditingComponentAppName[] =
2488 "Office Editing for Docs, Sheets & Slides";
2489const char kOfficeEditingComponentAppDescription[] =
2490 "Office Editing for Docs, Sheets & Slides for testing purposes.";
Daniel Erat33054b22017-06-27 16:18:072491
2492const char kSpuriousPowerButtonWindowName[] = "Spurious power button window";
2493const char kSpuriousPowerButtonWindowDescription[] =
2494 "Number of recent accelerometer samples to examine to determine if a power "
2495 "button event was spurious.";
2496
2497const char kSpuriousPowerButtonAccelCountName[] =
2498 "Spurious power button acceleration count";
2499const char kSpuriousPowerButtonAccelCountDescription[] =
2500 "Number of recent acceleration samples that must meet or exceed exceed the "
2501 "threshold in order for a power button event to be considered spurious.";
2502
2503const char kSpuriousPowerButtonScreenAccelName[] =
2504 "Spurious power button screen acceleration threshold";
2505const char kSpuriousPowerButtonScreenAccelDescription[] =
2506 "Threshold (in m/s^2, disregarding gravity) that screen acceleration must "
2507 "meet or exceed for a power button event to be considered spurious.";
2508
2509const char kSpuriousPowerButtonKeyboardAccelName[] =
2510 "Spurious power button keyboard acceleration threshold";
2511const char kSpuriousPowerButtonKeyboardAccelDescription[] =
2512 "Threshold (in m/s^2, disregarding gravity) that keyboard acceleration "
2513 "must meet or exceed for a power button event to be considered spurious.";
2514
2515const char kSpuriousPowerButtonLidAngleChangeName[] =
2516 "Spurious power button lid angle change threshold";
2517const char kSpuriousPowerButtonLidAngleChangeDescription[] =
2518 "Change in lid angle (i.e. hinge between keyboard and screen) that must be "
2519 "met or exceeded for a power button event to be considered spurious.";
2520
Chung-Sheng Wu468b0b32017-09-01 14:41:572521const char kSysInternalsName[] = "Enable Sys-Internals";
2522const char kSysInternalsDescription[] =
2523 "If enabled, user can monitor system information at "
2524 "chrome://sys-internals.";
2525
Brett Wilson7b44537e2017-08-18 01:38:282526const char kTeamDrivesName[] = "Enable Team Drives Integration";
2527const char kTeamDrivesDescription[] =
2528 "If enabled, files under Team Drives will appear in the Files app.";
vabr0215a8e2017-03-28 12:47:342529
Brett Wilson7b44537e2017-08-18 01:38:282530const char kTetherName[] = "Instant Tethering";
2531const char kTetherDescription[] =
2532 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
2533 "phone to share its Internet connection with this device.";
stanisc14bed0b132017-05-10 17:46:372534
Brett Wilson7b44537e2017-08-18 01:38:282535const char kTouchscreenCalibrationName[] =
2536 "Enable/disable touchscreen calibration option in material design settings";
2537const char kTouchscreenCalibrationDescription[] =
2538 "If enabled, the user can calibrate the touch screen displays in "
2539 "chrome://settings/display.";
yhanadac5bff5b2017-05-18 06:37:092540
Mitsuru Oshima63d3f2a2017-08-23 00:12:112541// Force UI Mode
2542const char kUiModeName[] = "Force Ui Mode";
2543const char kUiModeDescription[] =
2544 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
2545 R"*(despite its current orientation. "Tablet" means that the )*"
2546 R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*"
2547 R"*(means that the chromebook will act as if it were in clamshell )*"
2548 R"*(mode . "Auto" means that the chromebook will alternate between )*"
2549 R"*(the two, based on its orientation.)*";
2550const char kUiModeTablet[] = "TouchView";
2551const char kUiModeClamshell[] = "Clamshell";
2552const char kUiModeAuto[] = "Auto (default)";
2553
bruthigeafb0c02017-06-09 13:11:532554const char kUiDevToolsName[] = "Enable native UI inspection";
2555const char kUiDevToolsDescription[] =
2556 "Enables inspection of native UI elements. For local inspection use "
2557 "chrome://inspect#other";
2558
Takashi Toyoshima14f64f562017-07-19 08:38:202559const char kUseCrosMidiServiceName[] = "Use Chrome OS MIDI Service";
2560const char kUseCrosMidiServiceNameDescription[] =
2561 "Use Chrome OS MIDI Service for Web MIDI and allow ARC to support Android "
2562 "MIDI.";
2563
Brett Wilson7b44537e2017-08-18 01:38:282564const char kUseMusName[] = "Mus";
2565const char kUseMusDescription[] = "Enable the Mojo UI service.";
2566const char kEnableMashDescription[] =
2567 "Mash (UI, Chrome and ash in separate services)";
2568const char kEnableMusDescription[] =
2569 "Mus (UI in separate service, Chrome and ash in same service)";
2570
2571const char kVideoPlayerChromecastSupportName[] =
2572 "Experimental Chromecast support for Video Player";
2573const char kVideoPlayerChromecastSupportDescription[] =
2574 "This option enables experimental Chromecast support for Video Player app "
2575 "on ChromeOS.";
2576
2577const char kVirtualKeyboardName[] = "Virtual Keyboard";
2578const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
2579
2580const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
2581const char kVirtualKeyboardOverscrollDescription[] =
2582 "Enables virtual keyboard overscroll support.";
2583
2584const char kVoiceInputName[] = "Voice input on virtual keyboard";
2585const char kVoiceInputDescription[] =
2586 "Enables voice input on virtual keyboard.";
2587
2588const char kWakeOnPacketsName[] = "Wake On Packets";
2589const char kWakeOnPacketsDescription[] =
2590 "Enables waking the device based on the receipt of some network packets.";
orenb21da031c2017-06-30 21:24:202591
yhanadac5bff5b2017-05-18 06:37:092592#endif // defined(OS_CHROMEOS)
2593
Brett Wilson7b44537e2017-08-18 01:38:282594// Random platform combinations -----------------------------------------------
2595
2596#if defined(OS_WIN) || defined(OS_LINUX)
2597
2598const char kEnableInputImeApiName[] = "Enable Input IME API";
2599const char kEnableInputImeApiDescription[] =
2600 "Enable the use of chrome.input.ime API.";
2601
2602#endif // defined(OS_WIN) || defined(OS_LINUX)
2603
2604#if defined(OS_WIN) || defined(OS_MACOSX)
2605
2606const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2607const char kAutomaticTabDiscardingDescription[] =
2608 "If enabled, tabs get automatically discarded from memory when the system "
2609 "memory is low. Discarded tabs are still visible on the tab strip and get "
2610 "reloaded when clicked on. Info about discarded tabs can be found at "
2611 "chrome://discards.";
2612
2613#endif // defined(OS_WIN) || defined(OS_MACOSX)
2614
2615// Feature flags --------------------------------------------------------------
2616
2617#if BUILDFLAG(ENABLE_VR)
2618
2619#if defined(OS_ANDROID)
2620
2621const char kEnableVrShellName[] = "Enable Chrome VR.";
2622const char kEnableVrShellDescription[] =
2623 "Allow browsing with a VR headset if available for this device.";
2624
2625const char kVrCustomTabBrowsingName[] = "Enable Custom Tab browsing in VR.";
2626const char kVrCustomTabBrowsingDescription[] =
2627 "Allow browsing with a VR headset in a Custom Tab if available for this "
2628 "device.";
2629
2630const char kWebVrAutopresentName[] = "Enable WebVr auto presentation";
2631const char kWebVrAutopresentDescription[] =
2632 "Allows auto presentation of WebVr content from trusted first-party apps";
2633
2634const char kWebVrVsyncAlignName[] = "Enable WebVR VSync-aligned timing";
2635const char kWebVrVsyncAlignDescription[] =
2636 "Enabling this option aligns WebVR application rendering with VSync "
2637 "for smoother animations.";
2638
2639#endif // OS_ANDROID
2640
2641const char kWebvrExperimentalRenderingName[] =
2642 "WebVR experimental rendering optimizations";
2643const char kWebvrExperimentalRenderingDescription[] =
2644 "Enabling this option activates experimental rendering path optimizations "
2645 "for WebVR.";
2646
2647#endif // ENABLE_VR
2648
Nico Weberaf3b00b2017-09-11 17:58:172649#if BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282650
2651const char kNaclDebugMaskName[] =
2652 "Restrict Native Client GDB-based debugging by pattern";
2653const char kNaclDebugMaskDescription[] =
2654 "Restricts Native Client application GDB-based debugging by URL of "
2655 "manifest file. Native Client GDB-based debugging must be enabled for this "
2656 "option to work.";
2657const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
2658const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
2659 "Debug everything except secure shell and the PNaCl translator.";
2660const char kNaclDebugMaskChoiceIncludeDebug[] =
2661 "Debug only if manifest URL ends with debug.nmf.";
2662
2663const char kNaclDebugName[] = "Native Client GDB-based debugging";
2664const char kNaclDebugDescription[] =
2665 "Enable GDB debug stub. This will stop a Native Client application on "
2666 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
2667
2668const char kNaclName[] = "Native Client";
2669const char kNaclDescription[] =
2670 "Support Native Client for all web applications, even those that were not "
2671 "installed from the Chrome Web Store.";
2672
2673const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
2674const char kPnaclSubzeroDescription[] =
2675 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
2676
Nico Weberaf3b00b2017-09-11 17:58:172677#endif // BUILDFLAG(ENABLE_NACL)
Brett Wilson7b44537e2017-08-18 01:38:282678
Brett Wilson7b44537e2017-08-18 01:38:282679#if BUILDFLAG(ENABLE_WEBRTC)
2680
2681const char kWebrtcH264WithOpenh264FfmpegName[] =
2682 "WebRTC H.264 software video encoder/decoder";
2683const char kWebrtcH264WithOpenh264FfmpegDescription[] =
2684 "When enabled, an H.264 software video encoder/decoder pair is included. "
2685 "If a hardware encoder/decoder is also available it may be used instead of "
2686 "this encoder/decoder.";
2687
2688#endif // BUILDFLAG(ENABLE_WEBRTC)
2689
2690#if defined(USE_ASH)
2691
2692const char kAshDisableSmoothScreenRotationName[] =
2693 "Disable smooth rotation animations.";
2694const char kAshDisableSmoothScreenRotationDescription[] =
2695 "Disable smooth rotation animations.";
2696
2697const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
2698const char kAshEnableMirroredScreenDescription[] =
2699 "Enable the mirrored screen mode. This mode flips the screen image "
2700 "horizontally.";
2701
2702const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
2703const char kAshShelfColorDescription[] =
2704 "Enables/disables the shelf color to be a derived from the wallpaper. The "
2705 "--ash-shelf-color-scheme flag defines how that color is derived.";
2706
2707const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
2708const char kAshShelfColorSchemeDescription[] =
2709 "Specify how the color is derived from the wallpaper. This flag is only "
2710 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
2711const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
2712const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
2713const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
2714const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
2715const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
2716const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
2717
2718const char kMaterialDesignInkDropAnimationSpeedName[] =
2719 "Material Design Ink Drop Animation Speed";
2720const char kMaterialDesignInkDropAnimationSpeedDescription[] =
2721 "Sets the speed of the experimental visual feedback animations for "
2722 "material design.";
2723const char kMaterialDesignInkDropAnimationFast[] = "Fast";
2724const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
2725
2726const char kUiShowCompositedLayerBordersName[] =
2727 "Show UI composited layer borders";
2728const char kUiShowCompositedLayerBordersDescription[] =
2729 "Show border around composited layers created by UI.";
2730const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
2731const char kUiShowCompositedLayerBordersSurface[] = "Surface";
2732const char kUiShowCompositedLayerBordersLayer[] = "Layer";
2733const char kUiShowCompositedLayerBordersAll[] = "All";
2734
2735const char kUiSlowAnimationsName[] = "Slow UI animations";
2736const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
2737
2738#endif // defined(USE_ASH)
2739
2740#if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
2741
2742const char kShowCertLinkOnPageInfoName[] = "Show certificate link";
2743const char kShowCertLinkOnPageInfoDescription[] =
2744 "Add a link from the Page Info bubble to the certificate viewer for HTTPS "
2745 "sites.";
2746
2747#endif // defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
2748
2749#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2750
2751const char kAutofillCreditCardUploadName[] =
2752 "Enable offering upload of Autofilled credit cards";
2753const char kAutofillCreditCardUploadDescription[] =
2754 "Enables a new option to upload credit cards to Google Payments for sync "
2755 "to all Chrome devices.";
2756
2757#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
2758
2759// ============================================================================
2760// Don't just add flags to the end, put them in the right section in
2761// alphabetical order just like the header file.
2762// ============================================================================
2763
vabr0215a8e2017-03-28 12:47:342764} // namespace flag_descriptions