vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1 | // 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 Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 7 | // Keep in identical order as the header file, see the comment at the top |
| 8 | // for formatting rules. |
| 9 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 10 | namespace flag_descriptions { |
| 11 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 12 | const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; |
| 13 | const char kAccelerated2dCanvasDescription[] = |
| 14 | "Enables the use of the GPU to perform 2d canvas rendering instead of " |
| 15 | "using software rendering."; |
horo | db71a5a | 2017-06-09 16:08:24 | [diff] [blame] | 16 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 17 | const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode"; |
| 18 | const char kAcceleratedVideoDecodeDescription[] = |
| 19 | "Hardware-accelerated video decode where available."; |
| 20 | |
Hirokazu Honda | 732d3e62 | 2019-06-12 01:13:44 | [diff] [blame] | 21 | const char kAcceleratedVideoEncodeName[] = "Hardware-accelerated video encode"; |
| 22 | const char kAcceleratedVideoEncodeDescription[] = |
| 23 | "Hardware-accelerated video encode where available."; |
| 24 | |
Aaron Leventhal | 3576a1e | 2019-10-08 20:17:29 | [diff] [blame] | 25 | const char kAccessibilityExposeARIAAnnotationsName[] = |
| 26 | "Expose ARIA Annotation roles"; |
| 27 | const char kAccessibilityExposeARIAAnnotationsDescription[] = |
| 28 | "Expose annotation- prefixed roles from ARIA Annotations draft " |
| 29 | "specification at https://w3c.github.io/annotation-aria/."; |
| 30 | |
Adam Ettenberger | dcf51b4 | 2019-09-23 19:33:41 | [diff] [blame] | 31 | const char kAccessibilityExposeDisplayNoneName[] = |
| 32 | "Expose 'display: none' nodes for accessibility"; |
| 33 | const char kAccessibilityExposeDisplayNoneDescription[] = |
| 34 | "Expose 'display: none' nodes that have an HTML ID to the browser process " |
| 35 | "accessibility tree."; |
| 36 | |
Mihai Sardarescu | a6919374 | 2019-12-06 17:31:33 | [diff] [blame] | 37 | const char kAccountIdMigrationName[] = "Account ID migration"; |
| 38 | const char kAccountIdMigrationDescription[] = |
| 39 | "Migrate to use Gaia ID instead of the email as the account identifer for " |
| 40 | "the Identity Manager."; |
| 41 | |
Xiaocheng Hu | f7ed9cd | 2020-04-18 00:41:10 | [diff] [blame] | 42 | const char kAlignFontDisplayAutoTimeoutWithLCPGoalName[] = |
| 43 | "Align 'font-display: auto' timeout with LCP goal"; |
| 44 | const char kAlignFontDisplayAutoTimeoutWithLCPGoalDescription[] = |
Xiaocheng Hu | 66795f0 | 2020-04-25 00:26:47 | [diff] [blame] | 45 | "Make pending 'display: auto' web fonts enter the swap or failure period " |
Xiaocheng Hu | f7ed9cd | 2020-04-18 00:41:10 | [diff] [blame] | 46 | "immediately before reaching the LCP time limit (~2500ms), so that web " |
| 47 | "fonts do not become a source of bad LCP (Largest Contentful Paint)."; |
| 48 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 49 | const char kAllowInsecureLocalhostName[] = |
| 50 | "Allow invalid certificates for resources loaded from localhost."; |
| 51 | const char kAllowInsecureLocalhostDescription[] = |
| 52 | "Allows requests to localhost over HTTPS even when an invalid certificate " |
| 53 | "is presented."; |
| 54 | |
Julian Pastarmov | 885e8ed | 2019-05-03 14:24:24 | [diff] [blame] | 55 | const char kAllowPopupsDuringPageUnloadName[] = |
| 56 | "Allows a page to show popups during its unloading"; |
| 57 | const char kAllowPopupsDuringPageUnloadDescription[] = |
| 58 | "When the flag is set to enabled, pages are allowed to show popups while " |
| 59 | "they are being unloaded."; |
| 60 | |
Kunihiko Sakamoto | 4d40798 | 2018-07-10 04:56:29 | [diff] [blame] | 61 | const char kAllowSignedHTTPExchangeCertsWithoutExtensionName[] = |
| 62 | "Allow Signed HTTP Exchange certificates without extension"; |
| 63 | const char kAllowSignedHTTPExchangeCertsWithoutExtensionDescription[] = |
| 64 | "Accepts Origin-Signed HTTP Exchanges to be signed with certificates " |
Tsuyoshi Horo | 13d7e2d | 2019-04-18 07:32:43 | [diff] [blame] | 65 | "that do not have CanSignHttpExchangesDraft extension. Warning: Enabling " |
| 66 | "this may pose a security risk."; |
Kunihiko Sakamoto | 4d40798 | 2018-07-10 04:56:29 | [diff] [blame] | 67 | |
Katie Dillon | 8b35731 | 2019-09-19 13:23:23 | [diff] [blame] | 68 | const char kAllowSyncXHRInPageDismissalName[] = |
| 69 | "Allows synchronous XHR requests in page dismissal"; |
| 70 | const char kAllowSyncXHRInPageDismissalDescription[] = |
| 71 | "Allows synchronous XHR requests during page dismissal when the page is " |
| 72 | "being navigated away or closed by the user."; |
| 73 | |
Yue Zhang | b4d92327 | 2020-05-01 03:42:53 | [diff] [blame] | 74 | const char kConditionalTabStripAndroidName[] = "Conditional Tab Strip"; |
| 75 | const char kConditionalTabStripAndroidDescription[] = |
| 76 | "Allows users to access conditional tab strip."; |
| 77 | |
John Delaney | cd1a54d4 | 2020-05-13 23:06:33 | [diff] [blame] | 78 | const char kConversionMeasurementApiName[] = "Conversion Measurement API"; |
| 79 | const char kConversionMeasurementApiDescription[] = |
| 80 | "Enables usage of the Conversion Measurement API."; |
| 81 | |
| 82 | const char kConversionMeasurementDebugModeName[] = |
| 83 | "Conversion Measurement Debug Mode"; |
| 84 | const char kConversionMeasurementDebugModeDescription[] = |
| 85 | "Enables debug mode for the Conversion Measurement API. This removes all " |
| 86 | "reporting delays and noise. Only works if the Conversion Measurement API " |
| 87 | "is already enabled."; |
| 88 | |
Gang Wu | 77cb111 | 2020-04-06 23:21:43 | [diff] [blame] | 89 | const char kEnableClipboardProviderImageSuggestionsName[] = |
| 90 | "Omnibox clipboard image search suggestions"; |
| 91 | const char kEnableClipboardProviderImageSuggestionsDescription[] = |
| 92 | "Enables image search suggestions in the Omnibox."; |
| 93 | |
Asanka Herath | d37426e | 2019-10-29 22:11:10 | [diff] [blame] | 94 | const char kEnableFtpName[] = "Enable support for FTP URLs"; |
| 95 | const char kEnableFtpDescription[] = |
| 96 | "When enabled, the browser will handle navigations to ftp:// URLs by " |
| 97 | "either showing a directory listing or downloading the resource over FTP. " |
| 98 | "When disabled, the browser has no special handling for ftp:// URLs and " |
| 99 | "by default defer handling of the URL to the underlying platform."; |
| 100 | |
Andrew Xu | 5db072c | 2020-05-01 00:14:01 | [diff] [blame] | 101 | const char kShelfAppScalingName[] = "Enable shelf app scaling"; |
| 102 | const char kShelfAppScalingDescription[] = |
| 103 | "Reduce the app icon size from standard to dense when the user exceeds the " |
| 104 | "available space to add an additional app icon in tablet mode"; |
| 105 | |
Tsuyoshi Horo | 3bab99c | 2019-05-20 11:05:14 | [diff] [blame] | 106 | const char kEnableSignedExchangeSubresourcePrefetchName[] = |
| 107 | "Enable Signed Exchange subresource prefetching"; |
| 108 | const char kEnableSignedExchangeSubresourcePrefetchDescription[] = |
| 109 | "When enabled, the distributors of signed exchanges can let Chrome know " |
| 110 | "alternative signed exchange subresources by setting \"alternate\" link " |
| 111 | "header. Chrome will prefetch the alternate signed exchange subresources " |
| 112 | "and will load them if the publisher of the main signed exchange has set " |
Tsuyoshi Horo | 5e61f16 | 2019-05-20 12:24:12 | [diff] [blame] | 113 | "\"allowed-alt-sxg\" link header in the signed inner response of the " |
Tsuyoshi Horo | 3bab99c | 2019-05-20 11:05:14 | [diff] [blame] | 114 | "main signed exchange."; |
| 115 | |
Tsuyoshi Horo | 636e865 | 2019-05-31 03:34:08 | [diff] [blame] | 116 | const char kEnableSignedExchangePrefetchCacheForNavigationsName[] = |
| 117 | "Enable Signed Exchange prefetch cache for navigations"; |
| 118 | const char kEnableSignedExchangePrefetchCacheForNavigationsDescription[] = |
| 119 | "When enabled, the prefetched signed exchanges is stored to a prefetch " |
| 120 | "cache attached to the frame. The body of the inner response is stored as " |
| 121 | "a blob and the verification process of the signed exchange is skipped for " |
| 122 | "the succeeding navigation."; |
| 123 | |
Hongchan Choi | 370d3af | 2019-05-20 20:56:58 | [diff] [blame] | 124 | const char kAudioWorkletRealtimeThreadName[] = |
| 125 | "Use realtime priority thread for Audio Worklet"; |
| 126 | const char kAudioWorkletRealtimeThreadDescription[] = |
| 127 | "Run Audio Worklet operation on a realtime priority thread for better " |
| 128 | "audio stream stability."; |
| 129 | |
Kyle Horimoto | 7854a03 | 2019-04-03 02:51:07 | [diff] [blame] | 130 | const char kUpdatedCellularActivationUiName[] = |
| 131 | "Updated Cellular Activation UI"; |
| 132 | const char kUpdatedCellularActivationUiDescription[] = |
| 133 | "Enables the updated cellular activation UI."; |
| 134 | |
Kyle Horimoto | 874554a | 2019-01-31 00:52:09 | [diff] [blame] | 135 | const char kUseMessagesStagingUrlName[] = "Use Messages staging URL"; |
| 136 | const char kUseMessagesStagingUrlDescription[] = |
| 137 | "Use the staging server as part of the \"Messages\" feature under " |
| 138 | "\"Connected Devices\" settings."; |
| 139 | |
Jon Mann | 5ebbd153 | 2020-04-17 22:12:05 | [diff] [blame] | 140 | const char kUseCustomMessagesDomainName[] = "Use custom Messages domain"; |
| 141 | const char kUseCustomMessagesDomainDescription[] = |
| 142 | "Use a custom URL as part of the \"Messages\" feature under " |
| 143 | "\"Connected Devices\" settings."; |
| 144 | |
Jazz Xu | 32261b54 | 2019-06-13 20:11:27 | [diff] [blame] | 145 | const char kAndroidPictureInPictureAPIName[] = |
| 146 | "Picture-in-Picture Web API for Android"; |
| 147 | const char kAndroidPictureInPictureAPIDescription[] = |
| 148 | "Enable Picture-in-Picture Web API for Android"; |
| 149 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 150 | const char kAppCacheName[] = "AppCache web API and browser backend"; |
| 151 | const char kAppCacheDescription[] = |
Adrienne Walker | b44bdc90 | 2020-04-09 03:09:07 | [diff] [blame] | 152 | "When disabled, turns off all AppCache code so that developers " |
| 153 | "can test that their code works properly in the future when AppCache " |
| 154 | "has been removed."; |
| 155 | |
Daniel McArdle | b87dd009 | 2020-02-10 20:23:46 | [diff] [blame] | 156 | const char kDnsHttpssvcName[] = "Support for HTTPSSVC records in DNS."; |
| 157 | const char kDnsHttpssvcDescription[] = |
| 158 | "When enabled, Chrome may query a configured DoH server for HTTPSSVC " |
| 159 | "records. If any HTTPSSVC records are returned, Chrome may upgrade the URL " |
| 160 | "to HTTPS. If the records indicate support for QUIC, Chrome may attempt " |
| 161 | "QUIC on the first connection."; |
| 162 | |
dalyk | c936eb61 | 2019-08-14 11:46:47 | [diff] [blame] | 163 | const char kDnsOverHttpsName[] = "Secure DNS lookups"; |
| 164 | const char kDnsOverHttpsDescription[] = |
| 165 | "Enables DNS over HTTPS. When this feature is enabled, your browser may " |
| 166 | "try to use a secure HTTPS connection to look up the addresses of websites " |
| 167 | "and other web resources."; |
| 168 | |
Jinsuk Kim | 00e52be | 2019-03-21 02:26:40 | [diff] [blame] | 169 | const char kDrawVerticallyEdgeToEdgeName[] = |
| 170 | "Draw contents vertically from edge to edge."; |
| 171 | const char kDrawVerticallyEdgeToEdgeDescription[] = |
| 172 | "Draw contents vertically from edge to edge."; |
| 173 | |
Anne Lim | 24031e9d | 2019-09-12 23:03:19 | [diff] [blame] | 174 | const char kAutofillAlwaysReturnCloudTokenizedCardName[] = |
| 175 | "Return cloud token details for server credit cards when possible"; |
| 176 | const char kAutofillAlwaysReturnCloudTokenizedCardDescription[] = |
| 177 | "When enabled and where available, forms filled using Google Payments " |
| 178 | "server cards are populated with cloud token details, including CPAN " |
| 179 | "(cloud tokenized version of the Primary Account Number) and dCVV (dynamic " |
| 180 | "CVV)."; |
| 181 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 182 | const char kAutofillAssistantChromeEntryName[] = "AutofillAssistantChromeEntry"; |
| 183 | const char kAutofillAssistantChromeEntryDescription[] = |
Hui(Andy) Wu | fbebf91d2 | 2019-02-01 01:23:54 | [diff] [blame] | 184 | "Initiate autofill assistant from within Chrome."; |
| 185 | |
Roger McFarlane | 2eceba98 | 2018-05-18 01:37:11 | [diff] [blame] | 186 | const char kAutofillCacheQueryResponsesName[] = |
| 187 | "Cache Autofill Query Responses"; |
| 188 | const char kAutofillCacheQueryResponsesDescription[] = |
| 189 | "When enabled, autofill will cache the responses it receives from the " |
| 190 | "crowd-sourced field type prediction server."; |
| 191 | |
Siyu An | d1f86e2 | 2020-05-13 20:35:16 | [diff] [blame] | 192 | const char kAutofillEnableCardNicknameManagementName[] = |
| 193 | "Enable Autofill card nickname management"; |
| 194 | const char kAutofillEnableCardNicknameManagementDescription[] = |
| 195 | "When enabled, nicknames for credit cards will be able to be uploaded to " |
| 196 | "Payments or modified locally."; |
| 197 | |
Jeffrey Cohen | 05cdafa39 | 2018-08-15 20:49:17 | [diff] [blame] | 198 | const char kAutofillEnableCompanyNameName[] = |
| 199 | "Enable Autofill Company Name field"; |
| 200 | const char kAutofillEnableCompanyNameDescription[] = |
| 201 | "When enabled, Company Name fields will be auto filled"; |
| 202 | |
siashah | 0a38622 | 2020-04-23 03:31:35 | [diff] [blame] | 203 | const char kAutofillEnableGoogleIssuedCardName[] = |
| 204 | "Enable Autofill Google-issued card"; |
| 205 | const char kAutofillEnableGoogleIssuedCardDescription[] = |
| 206 | "When enabled, Google-issued cards will be available in the autofill " |
| 207 | "suggestions."; |
| 208 | |
Siyu An | 0558f75 | 2020-04-15 19:59:41 | [diff] [blame] | 209 | const char kAutofillEnableStickyPaymentsBubbleName[] = |
| 210 | "Enable Autofill payments sticky bubbles"; |
| 211 | const char kAutofillEnableStickyPaymentsBubbleDescription[] = |
| 212 | "When enabled, all Autofill payments bubbles will not be dismissed upon " |
| 213 | "navigation."; |
| 214 | |
Sujie Zhu | 2b17c00a | 2020-04-08 21:09:41 | [diff] [blame] | 215 | const char kAutofillEnableSurfacingServerCardNicknameName[] = |
| 216 | "Enable surfacing masked server card nicknames"; |
| 217 | const char kAutofillEnableSurfacingServerCardNicknameDescription[] = |
| 218 | "When enabled, if Google Payments cards were given nicknames in a Google " |
| 219 | "Pay app, Autofill will surface these nicknames in suggestions."; |
| 220 | |
siyua | 1d49261 | 2019-03-14 09:27:45 | [diff] [blame] | 221 | const char kAutofillEnableToolbarStatusChipName[] = |
| 222 | "Move Autofill omnibox icons next to the profile avatar icon"; |
| 223 | const char kAutofillEnableToolbarStatusChipDescription[] = |
| 224 | "When enabled, Autofill data related icon will be shown in the status " |
| 225 | "chip next to the profile avatar icon in the toolbar."; |
sebsg | e35b762c | 2018-03-29 20:33:27 | [diff] [blame] | 226 | |
siyua | 1959322 | 2019-12-04 22:27:06 | [diff] [blame] | 227 | const char kAutofillEnableVirtualCardName[] = |
| 228 | "Offer to use cloud token virtual card in Autofill"; |
| 229 | const char kAutofillEnableVirtualCardDescription[] = |
| 230 | "When enabled, if all requirements are met, Autofill will offer to use " |
| 231 | "virtual credit cards in form filling."; |
| 232 | |
Caitlin Fischer | 43edd90a | 2019-05-01 13:24:30 | [diff] [blame] | 233 | const char kAutofillEnforceMinRequiredFieldsForHeuristicsName[] = |
| 234 | "Autofill Enforce Min Required Fields For Heuristics"; |
| 235 | const char kAutofillEnforceMinRequiredFieldsForHeuristicsDescription[] = |
| 236 | "When enabled, autofill will generally require a form to have at least 3 " |
| 237 | "fields before allowing heuristic field-type prediction to occur."; |
| 238 | |
| 239 | const char kAutofillEnforceMinRequiredFieldsForQueryName[] = |
| 240 | "Autofill Enforce Min Required Fields For Query"; |
| 241 | const char kAutofillEnforceMinRequiredFieldsForQueryDescription[] = |
| 242 | "When enabled, autofill will generally require a form to have at least 3 " |
| 243 | "fields before querying the autofill server for field-type predictions."; |
| 244 | |
| 245 | const char kAutofillEnforceMinRequiredFieldsForUploadName[] = |
| 246 | "Autofill Enforce Min Required Fields For Upload"; |
| 247 | const char kAutofillEnforceMinRequiredFieldsForUploadDescription[] = |
| 248 | "When enabled, autofill will generally require a form to have at least 3 " |
| 249 | "fillable fields before uploading field-type votes for that form."; |
| 250 | |
Sebastien Lalancette | 1545950b | 2019-04-08 14:43:11 | [diff] [blame] | 251 | const char kAutofillOffNoServerDataName[] = "Autofill Off No Server Data"; |
| 252 | const char kAutofillOffNoServerDataDescription[] = |
| 253 | "Disables Autofill for fields with autocomplete off that have no " |
| 254 | "crowd-sourced evidence that Autofill would be helpful."; |
| 255 | |
Parastoo Geranmayeh | 0f5ebbc | 2019-01-21 21:01:09 | [diff] [blame] | 256 | const char kAutofillProfileClientValidationName[] = |
| 257 | "Autofill Validates Profiles By Client"; |
| 258 | const char kAutofillProfileClientValidationDescription[] = |
| 259 | "Allows autofill to validate profiles on the client side"; |
| 260 | |
Parastoo Geranmayeh | 25fccec2 | 2019-01-29 18:38:13 | [diff] [blame] | 261 | const char kAutofillProfileServerValidationName[] = |
| 262 | "Autofill Uses Server Validation"; |
| 263 | const char kAutofillProfileServerValidationDescription[] = |
| 264 | "Allows autofill to use server side validation"; |
| 265 | |
Caitlin Fischer | 6d60954 | 2019-05-01 21:59:21 | [diff] [blame] | 266 | const char kAutofillPruneSuggestionsName[] = "Autofill Prune Suggestions"; |
| 267 | const char kAutofillPruneSuggestionsDescription[] = |
| 268 | "Further limits the number of suggestions in the Autofill dropdown."; |
| 269 | |
Parastoo Geranmayeh | a1895c1 | 2019-04-25 16:43:38 | [diff] [blame] | 270 | const char kAutofillRejectCompanyBirthyearName[] = |
| 271 | "Autofill Rejects Invalid Company Names"; |
| 272 | const char kAutofillRejectCompanyBirthyearDescription[] = |
| 273 | "Autofill rejects using non-verified company names that are in the " |
| 274 | "format of a birthyear."; |
| 275 | |
Moe Ahmadi | d3ddfcb | 2018-04-20 19:51:08 | [diff] [blame] | 276 | const char kAutofillRestrictUnownedFieldsToFormlessCheckoutName[] = |
| 277 | "Restrict formless form extraction"; |
| 278 | const char kAutofillRestrictUnownedFieldsToFormlessCheckoutDescription[] = |
| 279 | "Restrict extraction of formless forms to checkout flows"; |
| 280 | |
Roger McFarlane | e193ab12 | 2018-11-22 20:55:07 | [diff] [blame] | 281 | const char kAutofillRichMetadataQueriesName[] = |
| 282 | "Autofill - Rich metadata queries (Canary/Dev only)"; |
| 283 | const char kAutofillRichMetadataQueriesDescription[] = |
| 284 | "Transmit rich form/field metadata when querying the autofill server. " |
| 285 | "This feature only works on the Canary and Dev channels."; |
| 286 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 287 | const char kAutofillSaveAndFillVPAName[] = |
Christos Froussios | 13b412df | 2019-09-19 19:12:47 | [diff] [blame] | 288 | "Offer save and autofill of UPI/VPA values"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 289 | const char kAutofillSaveAndFillVPADescription[] = |
Christos Froussios | 13b412df | 2019-09-19 19:12:47 | [diff] [blame] | 290 | "If enabled, when autofill recognizes a UPI/VPA value in a payment form, " |
| 291 | "it will offer to save it. If saved, it will be offered for filling in " |
| 292 | "fields which expect a VPA."; |
| 293 | |
Caitlin Fischer | 43edd90a | 2019-05-01 13:24:30 | [diff] [blame] | 294 | const char kAutofillUseImprovedLabelDisambiguationName[] = |
| 295 | "Autofill Uses Improved Label Disambiguation"; |
| 296 | const char kAutofillUseImprovedLabelDisambiguationDescription[] = |
| 297 | "When enabled, the Autofill dropdown's suggestions' labels are displayed " |
| 298 | "using the improved disambiguation format."; |
| 299 | |
Jia | 0175adae | 2019-05-15 00:21:25 | [diff] [blame] | 300 | const char kAutoScreenBrightnessName[] = "Auto Screen Brightness model"; |
| 301 | const char kAutoScreenBrightnessDescription[] = |
| 302 | "Uses Auto Screen Brightness model to adjust screen brightness based on " |
| 303 | "ambient light"; |
| 304 | |
David Roger | 306b5cd8 | 2020-03-16 13:05:13 | [diff] [blame] | 305 | const char kAvatarToolbarButtonName[] = "Avatar Toolbar Button"; |
| 306 | const char kAvatarToolbarButtonDescription[] = |
| 307 | "Enables the avatar toolbar button and the associated menu"; |
| 308 | |
Alexander Timin | 6ae060b6 | 2019-09-17 11:21:37 | [diff] [blame] | 309 | const char kBackForwardCacheName[] = "Back-forward cache"; |
| 310 | const char kBackForwardCacheDescription[] = |
| 311 | "Enables back-forward cache. NOTE: this feature is highly experimental and " |
| 312 | "will lead to various breakages, up to and including user data loss. " |
| 313 | "Do not enable unless you work on this feature"; |
| 314 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 315 | const char kBypassAppBannerEngagementChecksName[] = |
| 316 | "Bypass user engagement checks"; |
| 317 | const char kBypassAppBannerEngagementChecksDescription[] = |
| 318 | "Bypasses user engagement checks for displaying app banners, such as " |
| 319 | "requiring that users have visited the site before and that the banner " |
| 320 | "hasn't been shown recently. This allows developers to test that other " |
| 321 | "eligibility requirements for showing app banners, such as having a " |
| 322 | "manifest, are met."; |
| 323 | |
Nandhini | 11a6a87b | 2019-08-22 22:45:24 | [diff] [blame] | 324 | const char kContextMenuSearchWithGoogleLensName[] = |
| 325 | "Google Lens powered image search in the context menu."; |
| 326 | const char kContextMenuSearchWithGoogleLensDescription[] = |
| 327 | "Replaces default image search with an intent to Google Lens when " |
| 328 | "supported."; |
| 329 | |
Livvie Lin | 30a9f9d | 2020-03-17 19:45:19 | [diff] [blame] | 330 | const char kOmniboxContextMenuShowFullUrlsName[] = |
| 331 | "Context menu show full URLs"; |
| 332 | const char kOmniboxContextMenuShowFullUrlsDescription[] = |
| 333 | "Provides an omnibox context menu option that prevents URL elisions."; |
| 334 | |
Amber Won | 478561d | 2017-08-19 01:02:59 | [diff] [blame] | 335 | const char kClickToOpenPDFName[] = "Click to open embedded PDFs"; |
| 336 | const char kClickToOpenPDFDescription[] = |
| 337 | "When the PDF plugin is unavailable, show a click-to-open placeholder for " |
| 338 | "embedded PDFs."; |
| 339 | |
sauski | 8fa237c | 2020-05-18 12:04:24 | [diff] [blame] | 340 | const char kClientStorageAccessContextAuditingName[] = |
| 341 | "Access contexts for client-side storage"; |
| 342 | const char kClientStorageAccessContextAuditingDescription[] = |
| 343 | "Record the first-party contexts in which client-side storage was accessed"; |
| 344 | |
Sasha McIntosh | e889f9f | 2019-09-03 21:01:57 | [diff] [blame] | 345 | const char kDecodeJpeg420ImagesToYUVName[] = "YUV decoding for JPEG"; |
| 346 | const char kDecodeJpeg420ImagesToYUVDescription[] = |
| 347 | "Decode and render 4:2:0 formatted jpeg images from YUV instead of RGB." |
| 348 | "This feature requires GPU or OOP rasterization to also be enabled."; |
| 349 | |
Madeleine Barowsky | 266406d9 | 2019-08-12 19:20:15 | [diff] [blame] | 350 | const char kDecodeLossyWebPImagesToYUVName[] = "YUV Decoding for WebP"; |
| 351 | const char kDecodeLossyWebPImagesToYUVDescription[] = |
| 352 | "Decode and render lossy WebP images from YUV instead of RGB. " |
| 353 | "You must also have GPU rasterization or OOP rasterization."; |
| 354 | |
Daniele Castagna | 6a5cbdeb6 | 2020-02-18 22:48:14 | [diff] [blame] | 355 | const char kDoubleBufferCompositingName[] = "Double buffered compositing"; |
| 356 | const char kDoubleBufferCompositingDescription[] = |
| 357 | "Use double buffer for compositing (instead of triple-buffering). " |
| 358 | "Latency should be reduced in some cases. On the other hand, more skipped " |
| 359 | "frames are expected."; |
| 360 | |
Marc Treib | 7c27a50 | 2019-08-28 12:37:03 | [diff] [blame] | 361 | const char kEnablePasswordsAccountStorageName[] = |
| 362 | "Enable the account data storage for passwords"; |
| 363 | const char kEnablePasswordsAccountStorageDescription[] = |
| 364 | "Enables storing passwords in a second, Gaia-account-scoped storage for " |
| 365 | "signed-in but not syncing users"; |
| 366 | |
Dominic Mazzoni | 380f04f | 2020-02-18 18:49:27 | [diff] [blame] | 367 | const char kExportTaggedPDFName[] = "Export Tagged PDF"; |
| 368 | const char kExportTaggedPDFDescription[] = |
| 369 | "When printing to a PDF file, generated a tagged (accessible) PDF."; |
| 370 | |
Yining Wang | dedf076 | 2019-02-19 20:20:29 | [diff] [blame] | 371 | const char kFocusMode[] = "Focus Mode"; |
| 372 | const char kFocusModeDescription[] = |
| 373 | "If enabled, allows the user to switch to Focus Mode"; |
| 374 | |
Olivier Yiptong | b60d2c4 | 2020-01-10 22:47:15 | [diff] [blame] | 375 | const char kFontAccessAPIName[] = "Font Access APIs"; |
| 376 | const char kFontAccessAPIDescription[] = |
| 377 | "Enables the experimental Font Access APIs, giving websites access " |
| 378 | "to enumerate local fonts and access their table data."; |
| 379 | |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 380 | const char kForceColorProfileSRGB[] = "sRGB"; |
| 381 | const char kForceColorProfileP3[] = "Display P3 D65"; |
| 382 | const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4"; |
Sunny Sachanandani | 71e474a | 2019-06-11 02:32:03 | [diff] [blame] | 383 | const char kForceColorProfileSCRGBLinear[] = |
| 384 | "scRGB linear (HDR where available)"; |
| 385 | const char kForceColorProfileHDR10[] = "HDR10 (HDR where available)"; |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 386 | |
| 387 | const char kForceColorProfileName[] = "Force color profile"; |
| 388 | const char kForceColorProfileDescription[] = |
| 389 | "Forces Chrome to use a specific color profile instead of the color " |
| 390 | "of the window's current monitor, as specified by the operating system."; |
| 391 | |
Chris Blume | b504da1f2 | 2020-04-27 00:21:44 | [diff] [blame] | 392 | const char kDynamicColorGamutName[] = "Dynamic color gamut"; |
| 393 | const char kDynamicColorGamutDescription[] = |
| 394 | "Displays in wide color when the content is wide. When the content is " |
| 395 | "not wide, displays sRGB"; |
| 396 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 397 | const char kCompositedLayerBordersName[] = "Composited render layer borders"; |
| 398 | const char kCompositedLayerBordersDescription[] = |
| 399 | "Renders a border around composited Render Layers to help debug and study " |
| 400 | "layer compositing."; |
| 401 | |
Lily Chen | b22952e | 2019-06-06 18:56:23 | [diff] [blame] | 402 | const char kCookieDeprecationMessagesName[] = "Cookie deprecation messages"; |
| 403 | const char kCookieDeprecationMessagesDescription[] = |
Steven Bingler | fe28fcd0 | 2020-05-13 17:01:24 | [diff] [blame] | 404 | "Show messages in DevTools about upcoming deprecations that would affect " |
| 405 | "sent/received cookies."; |
Lily Chen | b22952e | 2019-06-06 18:56:23 | [diff] [blame] | 406 | |
| 407 | const char kCookiesWithoutSameSiteMustBeSecureName[] = |
Lily Chen | eb304c8f | 2019-04-25 23:37:45 | [diff] [blame] | 408 | "Cookies without SameSite must be secure"; |
Lily Chen | b22952e | 2019-06-06 18:56:23 | [diff] [blame] | 409 | const char kCookiesWithoutSameSiteMustBeSecureDescription[] = |
Lily Chen | eb304c8f | 2019-04-25 23:37:45 | [diff] [blame] | 410 | "If enabled, cookies without SameSite restrictions must also be Secure. If " |
| 411 | "a cookie without SameSite restrictions is set without the Secure " |
Lily Chen | d3bf638d | 2019-05-03 16:54:25 | [diff] [blame] | 412 | "attribute, it will be rejected. This flag only has an effect if " |
Lily Chen | eb304c8f | 2019-04-25 23:37:45 | [diff] [blame] | 413 | "\"SameSite by default cookies\" is also enabled."; |
| 414 | |
Keishi Hattori | 1529974 | 2020-04-20 04:00:09 | [diff] [blame] | 415 | const char kCooperativeSchedulingName[] = "Cooperative Scheduling"; |
| 416 | const char kCooperativeSchedulingDescription[] = |
| 417 | "Enables cooperative scheduling in Blink."; |
| 418 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 419 | const char kCreditCardAssistName[] = "Credit Card Assisted Filling"; |
| 420 | const char kCreditCardAssistDescription[] = |
| 421 | "Enable assisted credit card filling on certain sites."; |
| 422 | |
Lijin Shen | 5feade6 | 2019-09-17 03:01:01 | [diff] [blame] | 423 | const char kDarkenWebsitesCheckboxInThemesSettingName[] = |
| 424 | "Darken websites checkbox in themes setting"; |
| 425 | const char kDarkenWebsitesCheckboxInThemesSettingDescription[] = |
| 426 | "Show a darken websites checkbox in themes settings when system default or " |
| 427 | "dark is selected. The checkbox can toggle the auto-darkening web contents " |
| 428 | "feature"; |
| 429 | |
Thanh Le | 659cb10 | 2017-12-20 22:00:19 | [diff] [blame] | 430 | const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews"; |
| 431 | const char kDataSaverServerPreviewsDescription[] = |
| 432 | "Allow the Data Reduction Proxy to serve previews."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 433 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 434 | const char kDebugPackedAppName[] = "Debugging for packed apps"; |
| 435 | const char kDebugPackedAppDescription[] = |
| 436 | "Enables debugging context menu options such as Inspect Element for packed " |
| 437 | "applications."; |
| 438 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 439 | const char kDebugShortcutsName[] = "Debugging keyboard shortcuts"; |
| 440 | const char kDebugShortcutsDescription[] = |
| 441 | "Enables additional keyboard shortcuts that are useful for debugging Ash."; |
| 442 | |
Behnood Momenzadeh | 7411ae9 | 2020-04-29 16:54:18 | [diff] [blame] | 443 | const char kDetectTargetEmbeddingLookalikesName[] = |
| 444 | "Detect target embedding domains as lookalikes."; |
| 445 | const char kDetectTargetEmbeddingLookalikesDescription[] = |
| 446 | "Shows a lookalike interstitial when navigating to target embedding domains" |
| 447 | "(e.g. google.com.example.com)."; |
| 448 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 449 | const char kDeviceDiscoveryNotificationsName[] = |
| 450 | "Device Discovery Notifications"; |
| 451 | const char kDeviceDiscoveryNotificationsDescription[] = |
| 452 | "Device discovery notifications on local network."; |
| 453 | |
Yue Ru Sun | a50a80f | 2019-02-08 05:02:58 | [diff] [blame] | 454 | const char kDisableBestEffortTasksName[] = "Skip best effort tasks"; |
| 455 | const char kDisableBestEffortTasksDescription[] = |
| 456 | "With this flag on, tasks of the lowest priority will not be executed " |
| 457 | "until shutdown. The queue of low priority tasks can increase memory usage." |
| 458 | "Also, while it should be possible to use Chrome almost normally with this " |
| 459 | "flag, it is expected that some non-visible operations such as writing " |
| 460 | "user data to disk, cleaning caches, reporting metrics or updating " |
| 461 | "components won't be performed until shutdown."; |
| 462 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 463 | const char kDisallowDocWrittenScriptsUiName[] = |
| 464 | "Block scripts loaded via document.write"; |
| 465 | const char kDisallowDocWrittenScriptsUiDescription[] = |
| 466 | "Disallows fetches for third-party parser-blocking scripts inserted into " |
| 467 | "the main frame via document.write."; |
| 468 | |
Anastasia Helfinstein | a3d1715 | 2019-10-21 20:53:59 | [diff] [blame] | 469 | const char kEnableAccessibilityObjectModelName[] = |
| 470 | "Accessibility Object Model v0 (deprecated)"; |
Dominic Mazzoni | 8ac9896 | 2018-05-25 05:44:55 | [diff] [blame] | 471 | const char kEnableAccessibilityObjectModelDescription[] = |
Anastasia Helfinstein | a3d1715 | 2019-10-21 20:53:59 | [diff] [blame] | 472 | "Enables experimental support for an earlier version of Accessibility" |
| 473 | "Object Model APIs that are now deprecated."; |
Dominic Mazzoni | 8ac9896 | 2018-05-25 05:44:55 | [diff] [blame] | 474 | |
Ramin Halavati | 8aad5b2 | 2019-07-22 12:52:21 | [diff] [blame] | 475 | const char kEnableAmbientAuthenticationInIncognitoName[] = |
| 476 | "Enable Ambient Authentication in Incognito mode"; |
| 477 | const char kEnableAmbientAuthenticationInIncognitoDescription[] = |
| 478 | "Enables ambient authentication in Incognito mode. This flag may be " |
| 479 | "overriden by policies."; |
| 480 | |
| 481 | const char kEnableAmbientAuthenticationInGuestSessionName[] = |
| 482 | "Enable Ambient Authentication in Guest session."; |
| 483 | const char kEnableAmbientAuthenticationInGuestSessionDescription[] = |
| 484 | "Enables ambient authentication in Guest session. This flag may be " |
| 485 | "overriden by policies."; |
| 486 | |
Becca Hughes | ac86cd44 | 2019-01-09 23:49:54 | [diff] [blame] | 487 | const char kEnableAudioFocusEnforcementName[] = "Audio Focus Enforcement"; |
| 488 | const char kEnableAudioFocusEnforcementDescription[] = |
| 489 | "Enables enforcement of a single media session having audio focus at " |
| 490 | "any one time. Requires #enable-media-session-service to be enabled too."; |
| 491 | |
Florian Uunk | 8c428ea | 2018-07-18 11:12:52 | [diff] [blame] | 492 | const char kEnableAutofillAccountWalletStorageName[] = |
| 493 | "Enable the account data storage for autofill"; |
| 494 | const char kEnableAutofillAccountWalletStorageDescription[] = |
| 495 | "Enable the ephemeral storage for account data for autofill."; |
| 496 | |
Anne Lim | e49c5cb | 2020-04-15 03:20:59 | [diff] [blame] | 497 | const char kEnableAutofillCacheServerCardInfoName[] = |
| 498 | "Enable Autofill to cache unmasked server card info"; |
| 499 | const char kEnableAutofillCacheServerCardInfoDescription[] = |
| 500 | "If enabled, when a server card is unmasked, its info will be cached until " |
| 501 | "page navigation to simplify consecutive fills on the same page."; |
| 502 | |
Shanfeng Zhang | 19c1656 | 2017-10-17 02:30:40 | [diff] [blame] | 503 | const char kEnableAutofillCreditCardAblationExperimentDisplayName[] = |
| 504 | "Credit card autofill ablation experiment."; |
| 505 | const char kEnableAutofillCreditCardAblationExperimentDescription[] = |
| 506 | "If enabled, credit card autofill suggestions will not display."; |
| 507 | |
Manas Verma | 7e5b391b | 2019-04-09 02:08:53 | [diff] [blame] | 508 | const char kEnableAutofillCreditCardAuthenticationName[] = |
| 509 | "Allow using platform authenticators to retrieve server cards"; |
| 510 | const char kEnableAutofillCreditCardAuthenticationDescription[] = |
| 511 | "When enabled, users will be given the option to use a platform " |
| 512 | "authenticator (if available) to verify card ownership when retrieving " |
| 513 | "credit cards from Google Payments."; |
| 514 | |
siyua | 2989983 | 2019-06-07 19:42:12 | [diff] [blame] | 515 | const char kEnableAutofillCreditCardUploadFeedbackName[] = |
| 516 | "Enable feedback for credit card upload flow"; |
| 517 | const char kEnableAutofillCreditCardUploadFeedbackDescription[] = |
| 518 | "When enabled, if credit card upload succeeds, the avatar button will " |
| 519 | "show a highlight, otherwise the icon will be updated and if it is " |
| 520 | "clicked, the save card failure bubble will be shown."; |
| 521 | |
Lily Chen | 17c5797 | 2020-04-22 19:27:44 | [diff] [blame] | 522 | const char kEnableExperimentalCookieFeaturesName[] = |
| 523 | "Enable experimental cookie features"; |
| 524 | const char kEnableExperimentalCookieFeaturesDescription[] = |
| 525 | "Enable new features that affect setting, sending, and managing cookies. " |
| 526 | "The enabled features are subject to change at any time."; |
| 527 | |
Doug Arnett | 32e3e01 | 2019-07-11 16:45:17 | [diff] [blame] | 528 | const char kEnableDeferAllScriptName[] = "DeferAllScript previews"; |
| 529 | const char kEnableDeferAllScriptDescription[] = |
| 530 | "Enable deferring synchronous script on slow pages."; |
| 531 | |
Tarun Bansal | fb3069d3 | 2019-07-19 03:28:04 | [diff] [blame] | 532 | const char kEnableDeferAllScriptWithoutOptimizationHintsName[] = |
| 533 | "Skip checking optimization hints for Defer Script previews"; |
| 534 | const char kEnableDeferAllScriptWithoutOptimizationHintsDescription[] = |
| 535 | "Skips checking optimization hints for Defer Script previews and assumes " |
| 536 | "that the ECT trigger threshold is set to 4G (which is otherwise provided " |
| 537 | "by the optimization hints). Rest of the checks are still executed."; |
| 538 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 539 | const char kEnableEduCoexistenceName[] = |
Anastasiia Nikolaienko | d78e4226 | 2019-10-21 16:36:51 | [diff] [blame] | 540 | "Enable Family Link managed accounts and EDU accounts coexistence"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 541 | const char kEnableEduCoexistenceDescription[] = |
Anastasiia Nikolaienko | d78e4226 | 2019-10-21 16:36:51 | [diff] [blame] | 542 | "Allows Family Link managed users to add secondary EDU accounts."; |
| 543 | |
Anastasiia Nikolaienko | db506ed | 2020-04-14 15:46:13 | [diff] [blame] | 544 | const char kEnableEduCoexistenceConsentLogName[] = |
| 545 | "Enable parent consent logging in EDU account addition flow"; |
| 546 | const char kEnableEduCoexistenceConsentLogDescription[] = |
| 547 | "If enabled, parent consent gets logged to ARI before adding the account " |
| 548 | "to the device."; |
| 549 | |
Tarun Bansal | 56c9293 | 2019-04-01 17:58:36 | [diff] [blame] | 550 | const char kEnableSaveDataName[] = "Enables save data feature"; |
| 551 | const char kEnableSaveDataDescription[] = |
| 552 | "Enables save data feature. May cause user's traffic to be proxied via " |
| 553 | "Google's data reduction proxy."; |
| 554 | |
Tarun Bansal | 0c4a7d4 | 2020-05-11 19:19:33 | [diff] [blame] | 555 | const char kEnableNavigationPredictorName[] = "Enables navigation predictor"; |
| 556 | const char kEnableNavigationPredictorDescription[] = |
| 557 | "Enables navigation predictor feature that predicts the next likely " |
| 558 | "navigation using a set of heuristics."; |
| 559 | |
| 560 | const char kEnablePreconnectToSearchName[] = |
| 561 | "Enables preconnections to default search engine"; |
| 562 | const char kEnablePreconnectToSearchDescription[] = |
| 563 | "Enables the feature that preconnects to the user's default search engine."; |
| 564 | |
Doug Arnett | 08b4067b | 2017-10-12 20:14:44 | [diff] [blame] | 565 | const char kEnableNoScriptPreviewsName[] = "NoScript previews"; |
| 566 | |
| 567 | const char kEnableNoScriptPreviewsDescription[] = |
| 568 | "Enable disabling JavaScript on some pages on slow networks."; |
| 569 | |
Jenny Blessing | 45326bf | 2019-08-29 23:50:37 | [diff] [blame] | 570 | const char kEnableRemovingAllThirdPartyCookiesName[] = |
| 571 | "Enable removing SameSite=None cookies"; |
| 572 | const char kEnableRemovingAllThirdPartyCookiesDescription[] = |
| 573 | "Enables UI on chrome://settings/siteData to remove all third-party " |
| 574 | "cookies and site data."; |
| 575 | |
Robert Liao | 5c75610 | 2020-03-20 19:46:43 | [diff] [blame] | 576 | const char kColorProviderRedirectionName[] = "Color Provider Redirection"; |
| 577 | const char kColorProviderRedirectionDescription[] = |
| 578 | "Redirects color requests to the color provider where possible."; |
| 579 | |
Thanh Le | 2c279fbc | 2017-11-21 01:25:40 | [diff] [blame] | 580 | const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1"; |
| 581 | const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2"; |
| 582 | const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3"; |
| 583 | const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4"; |
| 584 | const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5"; |
| 585 | const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6"; |
| 586 | const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7"; |
| 587 | const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8"; |
| 588 | const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9"; |
| 589 | const char kDataReductionProxyServerAlternative10[] = |
| 590 | "Use alt. server config 10"; |
rajendrant | cfa60ba | 2018-10-30 09:16:54 | [diff] [blame] | 591 | const char kEnableDataReductionProxyNetworkServiceName[] = |
| 592 | "Data reduction proxy with network service"; |
| 593 | const char kEnableDataReductionProxyNetworkServiceDescription[] = |
| 594 | "Enable data reduction proxy when network service is enabled"; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 595 | const char kEnableDataReductionProxyServerExperimentName[] = |
| 596 | "Use an alternative Data Saver back end configuration."; |
| 597 | const char kEnableDataReductionProxyServerExperimentDescription[] = |
| 598 | "Enable a different approach to saving data by configuring the back end " |
| 599 | "server"; |
| 600 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 601 | const char kDesktopPWAsLocalUpdatingName[] = "Desktop PWAs local updating"; |
| 602 | const char kDesktopPWAsLocalUpdatingDescription[] = |
Alan Cutter | e50ce41 | 2019-07-12 05:26:08 | [diff] [blame] | 603 | "Enable installed PWAs to update their app manifest data when the site " |
| 604 | "manifest data has changed."; |
| 605 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 606 | const char kDesktopPWAsLocalUpdatingThrottlePersistenceName[] = |
Alan Cutter | 7e3ba0b | 2020-01-14 23:46:34 | [diff] [blame] | 607 | "Desktop PWAs local updating throttle persistence"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 608 | const char kDesktopPWAsLocalUpdatingThrottlePersistenceDescription[] = |
Alan Cutter | 7e3ba0b | 2020-01-14 23:46:34 | [diff] [blame] | 609 | "Persist the throttling of local PWA manifest update checks across browser " |
| 610 | "restarts."; |
| 611 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 612 | const char kDesktopPWAsAppIconShortcutsMenuName[] = |
Rahul Singh | 4eabd6d | 2020-05-01 23:43:19 | [diff] [blame] | 613 | "Desktop PWAs app icon shortcuts menu"; |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 614 | const char kDesktopPWAsAppIconShortcutsMenuDescription[] = |
Rahul Singh | 4eabd6d | 2020-05-01 23:43:19 | [diff] [blame] | 615 | "Enable installed PWAs to include a menu of shortcuts associated with the " |
| 616 | "app icon in the taskbar on Windows, or the dock on macOS or Linux."; |
| 617 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 618 | const char kDesktopPWAsTabStripName[] = "Desktop PWA tab strips"; |
| 619 | const char kDesktopPWAsTabStripDescription[] = |
Alan Cutter | 121812d | 2020-01-09 05:03:37 | [diff] [blame] | 620 | "Experimental UI for exploring what PWA windows would look like with a tab " |
| 621 | "strip."; |
| 622 | |
Alan Cutter | 8a7d3ed | 2020-05-12 01:29:34 | [diff] [blame] | 623 | const char kDesktopPWAsTabStripLinkCapturingName[] = |
| 624 | "Desktop PWA tab strip link capturing"; |
| 625 | const char kDesktopPWAsTabStripLinkCapturingDescription[] = |
| 626 | "Experimental behaviour for \"Desktop PWA tab strips\" to capture link " |
| 627 | "navigations within the app scope and bring them into the app's tabbed " |
| 628 | "window."; |
| 629 | |
Alexey Baskakov | 1d533167 | 2020-02-27 07:49:17 | [diff] [blame] | 630 | const char kDesktopPWAsWithoutExtensionsName[] = |
| 631 | "Desktop PWAs without Extensions"; |
| 632 | const char kDesktopPWAsWithoutExtensionsDescription[] = |
| 633 | "New platform to manage Web Applications metadata. Warning: this feature " |
| 634 | "is incomplete and may corrupt your synced Chrome profile. Test accounts " |
| 635 | "only are advised."; |
| 636 | |
Christopher Lam | e66b781 | 2018-09-26 01:49:24 | [diff] [blame] | 637 | const char kEnableSystemWebAppsName[] = "System Web Apps"; |
| 638 | const char kEnableSystemWebAppsDescription[] = |
| 639 | "Experimental system for using the Desktop PWA framework for running System" |
| 640 | "Apps (e.g Settings, Discover)."; |
| 641 | |
Steven Valdez | 89a44ea9 | 2019-05-01 15:18:49 | [diff] [blame] | 642 | const char kEnableTLS13EarlyDataName[] = "TLS 1.3 Early Data"; |
| 643 | const char kEnableTLS13EarlyDataDescription[] = |
| 644 | "This option enables TLS 1.3 Early Data, allowing GET requests to be sent " |
| 645 | "during the handshake when resuming a connection to a compatible TLS 1.3 " |
| 646 | "server."; |
| 647 | |
Adam Langley | f66f28d2 | 2020-02-05 18:10:38 | [diff] [blame] | 648 | const char kPostQuantumCECPQ2Name[] = "TLS Post-Quantum Confidentiality"; |
| 649 | const char kPostQuantumCECPQ2Description[] = |
| 650 | "This option enables a post-quantum (i.e. resistent to quantum computers) " |
| 651 | "key exchange algorithm in TLS (CECPQ2)."; |
| 652 | |
James Hollyer | 070f60a | 2020-05-05 06:13:15 | [diff] [blame] | 653 | const char kMacCoreLocationImplementationName[] = |
| 654 | "Core Location Implementation"; |
| 655 | const char kMacCoreLocationImplementationDescription[] = |
| 656 | "Enables usage of the Core Location APIs on macOS for geolocation"; |
| 657 | |
Pete Lavallee | 2d4415c7 | 2019-10-07 20:43:56 | [diff] [blame] | 658 | const char kWinrtGeolocationImplementationName[] = |
| 659 | "WinRT Geolocation Implementation"; |
| 660 | const char kWinrtGeolocationImplementationDescription[] = |
| 661 | "Enables usage of the Windows.Devices.Geolocation WinRT APIs on Windows " |
| 662 | "for geolocation"; |
| 663 | |
Wenjie Shi | d3824519 | 2019-07-11 16:20:50 | [diff] [blame] | 664 | const char kWinrtSensorsImplementationName[] = "WinRT Sensor Implementation"; |
| 665 | const char kWinrtSensorsImplementationDescription[] = |
| 666 | "Enables usage of the Windows.Devices.Sensors WinRT APIs on Windows for " |
| 667 | "sensors"; |
| 668 | |
Mikhail Pozdnyakov | 73373a6 | 2017-08-24 17:31:25 | [diff] [blame] | 669 | const char kEnableGenericSensorExtraClassesName[] = |
| 670 | "Generic Sensor Extra Classes"; |
| 671 | const char kEnableGenericSensorExtraClassesDescription[] = |
| 672 | "Enables an extra set of sensor classes based on Generic Sensor API, which " |
| 673 | "expose previously unavailable platform features, i.e. AmbientLightSensor " |
| 674 | "and Magnetometer interfaces."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 675 | |
Vikas Soni | 78daa63 | 2019-01-12 01:32:52 | [diff] [blame] | 676 | const char kEnableGpuServiceLoggingName[] = "Enable gpu service logging"; |
| 677 | const char kEnableGpuServiceLoggingDescription[] = |
| 678 | "Enable printing the actual GL driver calls."; |
| 679 | |
David Bokan | 911bded | 2018-11-27 23:23:32 | [diff] [blame] | 680 | const char kEnableImplicitRootScrollerName[] = "Implicit Root Scroller"; |
| 681 | const char kEnableImplicitRootScrollerDescription[] = |
| 682 | "Enables implicitly choosing which scroller on a page is the 'root " |
| 683 | "scroller'. i.e. The one that gets special features like URL bar movement, " |
| 684 | "overscroll glow, rotation anchoring, etc."; |
| 685 | |
Cathie Chen | eac7060 | 2019-10-10 02:55:29 | [diff] [blame] | 686 | const char kEnableCSSOMViewScrollCoordinatesName[] = |
| 687 | "CSSOM View Scroll Coordinates"; |
| 688 | const char kEnableCSSOMViewScrollCoordinatesDescription[] = |
| 689 | "Enables CSSOM View Scroll Coordinates, this affects to box scroll " |
| 690 | "coordinates in scrollTop / scrollLeft / scrollTo' when ScrollOrigin isn't " |
| 691 | "at the left top corner. i.e. For leftwards overflow direction box " |
| 692 | "the X coordinate will start from 0 to negative value. For upwards box the " |
| 693 | "Y coordinate will start from 0 to negative value. And for other directions" |
| 694 | "(rightwards and downwards) the value will start from 0 to positive"; |
| 695 | |
Robert Ogden | e976feb | 2019-09-03 22:20:29 | [diff] [blame] | 696 | const char kEnablePreviewsCoinFlipName[] = "Enable Previews Coin Flip"; |
| 697 | const char kEnablePreviewsCoinFlipDescription[] = |
| 698 | "Enable coin flip experimentation of Previews."; |
| 699 | |
Robert Ogden | e7bbbcb | 2020-03-24 22:37:33 | [diff] [blame] | 700 | const char kEnableSRPIsolatedPrerendersName[] = |
| 701 | "Enable Navigation Predictor Isolated Prerenders"; |
| 702 | const char kEnableSRPIsolatedPrerendersDescription[] = |
| 703 | "Enable Navigation Predictions on the Google SRP to be fully isolated."; |
| 704 | |
Robert Ogden | 26de997 | 2020-03-27 21:00:25 | [diff] [blame] | 705 | const char kEnableSRPIsolatedPrerenderProbingName[] = |
| 706 | "Enable Probing on Navigation Predictor Isolated Prerenders"; |
| 707 | const char kEnableSRPIsolatedPrerenderProbingDescription[] = |
| 708 | "Enable probing checks for Isolated Prerenders which will block commit."; |
| 709 | |
Charlene Yan | e75ce25 | 2019-05-22 17:56:32 | [diff] [blame] | 710 | const char kDownloadAutoResumptionNativeName[] = |
| 711 | "Enable download auto-resumption in native"; |
| 712 | const char kDownloadAutoResumptionNativeDescription[] = |
| 713 | "Enables download auto-resumption in native"; |
| 714 | |
Xing Liu | 13e5ec1 | 2020-05-08 17:32:34 | [diff] [blame] | 715 | const char kDownloadLaterName[] = "Enable download later"; |
| 716 | const char kDownloadLaterDescription[] = "Enables download later feature."; |
| 717 | |
Ian Kilpatrick | e68ef11a | 2018-07-04 03:52:10 | [diff] [blame] | 718 | const char kEnableLayoutNGName[] = "Enable LayoutNG"; |
| 719 | const char kEnableLayoutNGDescription[] = |
| 720 | "Enable Blink's next generation layout engine."; |
| 721 | |
Scott Little | d0fd2d00 | 2018-04-13 03:37:26 | [diff] [blame] | 722 | const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading"; |
| 723 | const char kEnableLazyFrameLoadingDescription[] = |
Scott Little | df79081b | 2019-05-29 23:03:39 | [diff] [blame] | 724 | "Defers the loading of iframes marked with the attribute 'loading=lazy' " |
| 725 | "until the page is scrolled down near them."; |
Scott Little | d0fd2d00 | 2018-04-13 03:37:26 | [diff] [blame] | 726 | |
rajendrant | 793ff51 | 2018-08-10 17:07:59 | [diff] [blame] | 727 | const char kEnableLazyImageLoadingName[] = "Enable lazy image loading"; |
| 728 | const char kEnableLazyImageLoadingDescription[] = |
Scott Little | df79081b | 2019-05-29 23:03:39 | [diff] [blame] | 729 | "Defers the loading of images marked with the attribute 'loading=lazy' " |
| 730 | "until the page is scrolled down near them."; |
rajendrant | 793ff51 | 2018-08-10 17:07:59 | [diff] [blame] | 731 | |
Becca Hughes | ac86cd44 | 2019-01-09 23:49:54 | [diff] [blame] | 732 | const char kEnableMediaSessionServiceName[] = "Media Session Service"; |
| 733 | const char kEnableMediaSessionServiceDescription[] = |
| 734 | "Enables the media session mojo service and internal media session " |
| 735 | "support."; |
| 736 | |
Bernhard Bauer | 5533f991 | 2017-11-06 17:56:02 | [diff] [blame] | 737 | const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file"; |
| 738 | const char kEnableNetworkLoggingToFileDescription[] = |
| 739 | "Enables network logging to a file named netlog.json in the user data " |
| 740 | "directory. The file can be imported into chrome://net-internals."; |
| 741 | |
John Abd-El-Malek | 8067cc0 | 2017-12-04 23:23:20 | [diff] [blame] | 742 | const char kEnableNetworkServiceInProcessName[] = |
| 743 | "Runs network service in-process"; |
| 744 | const char kEnableNetworkServiceInProcessDescription[] = |
| 745 | "Runs the network service in the browser process."; |
| 746 | |
Shakti Sahu | 5a046f6 | 2019-03-12 19:25:34 | [diff] [blame] | 747 | const char kEnableNewDownloadBackendName[] = "Enable new download backend"; |
| 748 | const char kEnableNewDownloadBackendDescription[] = |
| 749 | "Enables the new download backend that uses offline content provider"; |
| 750 | |
Lucas Furukawa Gadani | 9f57e19 | 2019-04-05 14:56:10 | [diff] [blame] | 751 | const char kEnablePortalsName[] = "Enable Portals."; |
| 752 | const char kEnablePortalsDescription[] = |
| 753 | "Portals are an experimental web platform feature that allows embedding" |
| 754 | " and seamless transitions between pages." |
| 755 | " See https://github.com/WICG/portals and https://wicg.github.io/portals/"; |
| 756 | |
Jeremy Roman | 30e81e8 | 2020-01-29 22:56:47 | [diff] [blame] | 757 | const char kEnablePortalsCrossOriginName[] = "Enable cross-origin Portals."; |
| 758 | const char kEnablePortalsCrossOriginDescription[] = |
| 759 | "Allows portals to load cross-origin URLs in addition to same-origin ones." |
| 760 | " Has no effect if Portals are not enabled."; |
| 761 | |
Doug Arnett | c52291a | 2020-05-07 18:52:30 | [diff] [blame] | 762 | const char kEnableTranslateSubFramesName[] = "Translate sub frames"; |
| 763 | const char kEnableTranslateSubFramesDescription[] = |
| 764 | "Enable the translation of sub frames (as well as the main frame)"; |
| 765 | |
Lukasz Anforowicz | 846d790 | 2020-03-11 21:04:40 | [diff] [blame] | 766 | const char kCorsForContentScriptsName[] = "CORS for content scripts"; |
| 767 | const char kCorsForContentScriptsDescription[] = |
| 768 | "Prevent content scripts of Chrome Extensions from bypassing CORS."; |
| 769 | |
clamy | c73d9bbf | 2020-03-12 11:48:56 | [diff] [blame] | 770 | const char kCrossOriginOpenerPolicyName[] = "Cross Origin Opener Policy"; |
| 771 | const char kCrossOriginOpenerPolicyDescription[] = |
| 772 | "Enables Cross Origin Opener Policy."; |
Yutaka Hirano | 4903cf9 | 2019-07-17 04:30:31 | [diff] [blame] | 773 | |
Arthur Hemery | 9e065b0 | 2020-05-12 13:30:32 | [diff] [blame] | 774 | const char kCrossOriginOpenerPolicyReportingName[] = |
| 775 | "Cross Origin Opener Policy reporting"; |
| 776 | const char kCrossOriginOpenerPolicyReportingDescription[] = |
| 777 | "Enables Cross Origin Opener Policy reporting."; |
| 778 | |
Yutaka Hirano | aa0e62e | 2019-09-05 11:01:04 | [diff] [blame] | 779 | const char kDisableKeepaliveFetchName[] = "Disable fetch with keepalive set"; |
| 780 | const char kDisableKeepaliveFetchDescription[] = |
| 781 | "Disable fetch with keepalive set " |
| 782 | "(https://fetch.spec.whatwg.org/#request-keepalive-flag)."; |
| 783 | |
Chris Hall | 4a4225f6 | 2019-01-18 03:07:16 | [diff] [blame] | 784 | const char kExperimentalAccessibilityLanguageDetectionName[] = |
| 785 | "Experimental accessibility language detection"; |
| 786 | const char kExperimentalAccessibilityLanguageDetectionDescription[] = |
| 787 | "Enable language detection for in-page content which is then exposed to " |
Chris Hall | 31e92b2 | 2019-11-15 05:57:22 | [diff] [blame] | 788 | "assistive technologies such as screen readers."; |
Chris Hall | 4a4225f6 | 2019-01-18 03:07:16 | [diff] [blame] | 789 | |
Chris Hall | 4f3ca558 | 2019-11-19 02:55:49 | [diff] [blame] | 790 | const char kExperimentalAccessibilityLanguageDetectionDynamicName[] = |
| 791 | "Experimental accessibility language detection for dynamic content"; |
| 792 | const char kExperimentalAccessibilityLanguageDetectionDynamicDescription[] = |
| 793 | "Enable language detection for dynamic content which is then exposed to " |
| 794 | "assistive technologies such as screen readers."; |
| 795 | |
Rahul Arakeri | 61a2ad27 | 2019-03-19 22:55:08 | [diff] [blame] | 796 | const char kCompositorThreadedScrollbarScrollingName[] = |
Rahul Arakeri | ac87fb1 | 2019-05-14 00:07:22 | [diff] [blame] | 797 | "Compositor threaded scrollbar scrolling"; |
Rahul Arakeri | 61a2ad27 | 2019-03-19 22:55:08 | [diff] [blame] | 798 | const char kCompositorThreadedScrollbarScrollingDescription[] = |
| 799 | "Enables pointer-based scrollbar scrolling on the compositor thread " |
| 800 | "instead of the main thread"; |
| 801 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 802 | const char kMemlogName[] = "Chrome heap profiler start mode."; |
| 803 | const char kMemlogDescription[] = |
| 804 | "Starts heap profiling service that records sampled memory allocation " |
| 805 | "profile having each sample attributed with a callstack. " |
| 806 | "The sampling resolution is controlled with --memlog-sampling-rate flag. " |
| 807 | "Recorded heap dumps can be obtained at chrome://tracing " |
| 808 | "[category:memory-infra] and chrome://memory-internals. This setting " |
| 809 | "controls which processes will be profiled since their start. To profile " |
| 810 | "any given process at a later time use chrome://memory-internals page."; |
| 811 | const char kMemlogModeMinimal[] = "Browser and GPU"; |
| 812 | const char kMemlogModeAll[] = "All processes"; |
| 813 | const char kMemlogModeAllRenderers[] = "All renderers"; |
| 814 | const char kMemlogModeRendererSampling[] = "Single renderer"; |
| 815 | const char kMemlogModeBrowser[] = "Browser only"; |
| 816 | const char kMemlogModeGpu[] = "GPU only"; |
Alexei Filippov | 2e8bfee | 2019-03-07 21:51:27 | [diff] [blame] | 817 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 818 | const char kMemlogSamplingRateName[] = |
| 819 | "Heap profiling sampling interval (in bytes)."; |
| 820 | const char kMemlogSamplingRateDescription[] = |
| 821 | "Heap profiling service uses Poisson process to sample allocations. " |
| 822 | "Default value for the interval between samples is 100000 (100KB). " |
| 823 | "This results in low noise for large and/or frequent allocations " |
Alexei Filippov | 2e8bfee | 2019-03-07 21:51:27 | [diff] [blame] | 824 | "[size * frequency >> 100KB]. This means that aggregate numbers [e.g. " |
erikchen | 99bfce0 | 2018-02-14 20:29:22 | [diff] [blame] | 825 | "total size of malloc-ed objects] and large and/or frequent allocations " |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 826 | "can be trusted with high fidelity. " |
| 827 | "Lower intervals produce higher samples resolution, but come at a cost of " |
| 828 | "higher performance overhead."; |
| 829 | const char kMemlogSamplingRate10KB[] = "10KB"; |
| 830 | const char kMemlogSamplingRate50KB[] = "50KB"; |
| 831 | const char kMemlogSamplingRate100KB[] = "100KB"; |
| 832 | const char kMemlogSamplingRate500KB[] = "500KB"; |
| 833 | const char kMemlogSamplingRate1MB[] = "1MB"; |
| 834 | const char kMemlogSamplingRate5MB[] = "5MB"; |
erikchen | 8bc20d8 | 2018-02-14 03:21:51 | [diff] [blame] | 835 | |
Alexei Filippov | 522a522 | 2019-03-29 03:33:18 | [diff] [blame] | 836 | const char kMemlogStackModeName[] = "Heap profiling stack traces type."; |
| 837 | const char kMemlogStackModeDescription[] = |
| 838 | "By default heap profiling service records native stacks. " |
| 839 | "A post-processing step is required to symbolize the stacks. " |
| 840 | "'Native with thread names' adds the thread name as the first frame of " |
| 841 | "each native stack. It's also possible to record a pseudo stack using " |
| 842 | "trace events as identifiers. It's also possible to do a mix of both."; |
| 843 | const char kMemlogStackModeMixed[] = "Mixed"; |
| 844 | const char kMemlogStackModeNative[] = "Native"; |
| 845 | const char kMemlogStackModeNativeWithThreadNames[] = "Native with thread names"; |
| 846 | const char kMemlogStackModePseudo[] = "Trace events"; |
Erik Chen | 3303fd023 | 2018-01-11 20:29:05 | [diff] [blame] | 847 | |
F#m | 59d036e | 2017-09-13 07:22:17 | [diff] [blame] | 848 | const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording"; |
| 849 | const char kEnablePixelCanvasRecordingDescription[] = |
| 850 | "Pixel canvas recording allows the compositor to raster contents aligned " |
| 851 | "with the pixel and improves text rendering. This should be enabled when a " |
| 852 | "device is using fractional scale factor."; |
| 853 | |
Ella Ge | bee81c9 | 2018-08-14 15:51:09 | [diff] [blame] | 854 | const char kEnableResamplingInputEventsName[] = |
| 855 | "Enable resampling input events"; |
| 856 | const char kEnableResamplingInputEventsDescription[] = |
| 857 | "Predicts mouse and touch inputs position at rAF time based on previous " |
| 858 | "input"; |
| 859 | const char kEnableResamplingScrollEventsName[] = |
| 860 | "Enable resampling scroll events"; |
| 861 | const char kEnableResamplingScrollEventsDescription[] = |
| 862 | "Predicts the scroll amount at vsync time based on previous input"; |
| 863 | |
Doug Arnett | aa0bf20 | 2018-08-27 19:42:11 | [diff] [blame] | 864 | const char kEnableResourceLoadingHintsName[] = "Enable resource loading hints"; |
| 865 | const char kEnableResourceLoadingHintsDescription[] = |
| 866 | "Enable using server-provided resource loading hints to provide a preview " |
| 867 | "over slow network connections."; |
| 868 | |
Mikel Astiz | e2678da2 | 2020-04-02 20:55:04 | [diff] [blame] | 869 | const char kEnableSyncTrustedVaultName[] = |
| 870 | "Enable trusted vault sync passphrase type"; |
| 871 | const char kEnableSyncTrustedVaultDescription[] = |
| 872 | "Enables the new, experimental passphrase type for sync data"; |
| 873 | |
Maksim Moskvitin | 35b09c1bf | 2019-06-28 17:29:48 | [diff] [blame] | 874 | const char kEnableSyncUSSNigoriName[] = "Enable USS for sync encryption keys"; |
| 875 | const char kEnableSyncUSSNigoriDescription[] = |
| 876 | "Enables the new, experimental implementation of sync encryption keys"; |
| 877 | |
David Bokan | e9370c2 | 2019-02-14 15:19:58 | [diff] [blame] | 878 | const char kEnableTextFragmentAnchorName[] = "Enable Text Fragment Anchor."; |
| 879 | const char kEnableTextFragmentAnchorDescription[] = |
| 880 | "Enables scrolling to text specified in URL's fragment."; |
| 881 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 882 | const char kEnableUseZoomForDsfName[] = |
| 883 | "Use Blink's zoom for device scale factor."; |
| 884 | const char kEnableUseZoomForDsfDescription[] = |
| 885 | "If enabled, Blink uses its zooming mechanism to scale content for device " |
| 886 | "scale factor."; |
| 887 | const char kEnableUseZoomForDsfChoiceDefault[] = "Default"; |
| 888 | const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled"; |
| 889 | const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled"; |
| 890 | |
Sean Harrison | 9dc405a5 | 2019-08-27 18:23:10 | [diff] [blame] | 891 | const char kEnableSubresourceRedirectName[] = |
| 892 | "Enable Render Level Data Use Optimization"; |
| 893 | const char kEnableSubresourceRedirectDescription[] = |
| 894 | "Allow Render Level Data Use Optimization"; |
| 895 | |
Adam Langley | 7542a7b | 2019-10-04 02:00:55 | [diff] [blame] | 896 | const char kEnableWebAuthenticationCableV2SupportName[] = |
| 897 | "Web Authentication caBLE v2 support"; |
| 898 | const char kEnableWebAuthenticationCableV2SupportDescription[] = |
| 899 | "Enable the QR-based pairingless BLE protocol for use with the Web " |
| 900 | "Authentication API. (This will also enable the cloud-based protocol " |
| 901 | "on platforms where it is not already enabled.)"; |
Kim Paulhamus | ae635a3 | 2018-06-27 07:30:54 | [diff] [blame] | 902 | |
Andreas Haas | b400d91 | 2019-08-28 18:54:10 | [diff] [blame] | 903 | const char kExperimentalWebAssemblyFeaturesName[] = "Experimental WebAssembly"; |
| 904 | const char kExperimentalWebAssemblyFeaturesDescription[] = |
| 905 | "Enable web pages to use experimental WebAssembly features."; |
| 906 | |
Clemens Hammacher | 0c8a15a | 2018-04-27 13:45:32 | [diff] [blame] | 907 | const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler"; |
| 908 | const char kEnableWasmBaselineDescription[] = |
| 909 | "Enables WebAssembly baseline compilation and tier up."; |
| 910 | |
Clemens Backes | 50e0ecd | 2020-01-20 10:43:24 | [diff] [blame] | 911 | const char kEnableWasmLazyCompilationName[] = "WebAssembly lazy compilation"; |
| 912 | const char kEnableWasmLazyCompilationDescription[] = |
| 913 | "Enables lazy (JIT on first call) compilation of WebAssembly modules."; |
| 914 | |
Deepti Gandluri | 11734cc4 | 2019-05-02 18:00:20 | [diff] [blame] | 915 | const char kEnableWasmSimdName[] = "WebAssembly SIMD support."; |
| 916 | const char kEnableWasmSimdDescription[] = |
| 917 | "Enables support for the WebAssembly SIMD proposal."; |
| 918 | |
Andreas Haas | b400d91 | 2019-08-28 18:54:10 | [diff] [blame] | 919 | const char kEnableWasmThreadsName[] = "WebAssembly threads support"; |
Ben Smith | 24c1e5c | 2018-06-20 01:09:02 | [diff] [blame] | 920 | const char kEnableWasmThreadsDescription[] = |
Ben Smith | 8ed20cd | 2020-01-23 19:06:56 | [diff] [blame] | 921 | "Enables support for the WebAssembly Threads proposal."; |
Ben Smith | 24c1e5c | 2018-06-20 01:09:02 | [diff] [blame] | 922 | |
Clemens Backes | 963eb37be | 2020-01-10 11:56:49 | [diff] [blame] | 923 | const char kEnableWasmTieringName[] = "WebAssembly tiering"; |
| 924 | const char kEnableWasmTieringDescription[] = |
| 925 | "Enables tiered compilation of WebAssembly (will tier up to TurboFan if " |
Clemens Backes | 50e0ecd | 2020-01-20 10:43:24 | [diff] [blame] | 926 | "#enable-webassembly-baseline is enabled)."; |
Clemens Backes | 963eb37be | 2020-01-10 11:56:49 | [diff] [blame] | 927 | |
Christopher Thompson | f3ba2012 | 2019-06-06 22:01:01 | [diff] [blame] | 928 | const char kEvDetailsInPageInfoName[] = "EV certificate details in Page Info."; |
| 929 | const char kEvDetailsInPageInfoDescription[] = |
| 930 | "Shows the EV certificate details in the Page Info bubble."; |
| 931 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 932 | const char kExpensiveBackgroundTimerThrottlingName[] = |
| 933 | "Throttle expensive background timers"; |
| 934 | const char kExpensiveBackgroundTimerThrottlingDescription[] = |
| 935 | "Enables intervention to limit CPU usage of background timers to 1%."; |
| 936 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 937 | const char kExperimentalExtensionApisName[] = "Experimental Extension APIs"; |
| 938 | const char kExperimentalExtensionApisDescription[] = |
| 939 | "Enables experimental extension APIs. Note that the extension gallery " |
| 940 | "doesn't allow you to upload extensions that use experimental APIs."; |
| 941 | |
Sarthak Shah | 364c198 | 2019-11-26 23:49:38 | [diff] [blame] | 942 | const char kExperimentalFlingAnimationName[] = |
| 943 | "Enable experimental fling animation"; |
| 944 | const char kExperimentalFlingAnimationDescription[] = |
| 945 | "Enables the use of a touch fling curve that is based on the behavior of " |
| 946 | "native apps on Windows."; |
| 947 | |
Ian Clelland | 37a985d | 2018-05-04 02:43:13 | [diff] [blame] | 948 | const char kExperimentalProductivityFeaturesName[] = |
| 949 | "Experimental Productivity Features"; |
| 950 | const char kExperimentalProductivityFeaturesDescription[] = |
| 951 | "Enable support for experimental developer productivity features, such as " |
Hiroshige Hayashizaki | 7796400 | 2020-03-12 13:54:06 | [diff] [blame] | 952 | "import maps and policies for avoiding slow rendering."; |
Ian Clelland | 37a985d | 2018-05-04 02:43:13 | [diff] [blame] | 953 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 954 | const char kExperimentalWebPlatformFeaturesName[] = |
| 955 | "Experimental Web Platform features"; |
| 956 | const char kExperimentalWebPlatformFeaturesDescription[] = |
| 957 | "Enables experimental Web Platform features that are in development."; |
| 958 | |
| 959 | const char kExtensionContentVerificationName[] = |
| 960 | "Extension Content Verification"; |
| 961 | const char kExtensionContentVerificationDescription[] = |
| 962 | "This flag can be used to turn on verification that the contents of the " |
| 963 | "files on disk for extensions from the webstore match what they're " |
| 964 | "expected to be. This can be used to turn on this feature if it would not " |
| 965 | "otherwise have been turned on, but cannot be used to turn it off (because " |
| 966 | "this setting can be tampered with by malware)."; |
| 967 | const char kExtensionContentVerificationBootstrap[] = |
| 968 | "Bootstrap (get expected hashes, but do not enforce them)"; |
| 969 | const char kExtensionContentVerificationEnforce[] = |
| 970 | "Enforce (try to get hashes, and enforce them if successful)"; |
| 971 | const char kExtensionContentVerificationEnforceStrict[] = |
| 972 | "Enforce strict (hard fail if we can't get hashes)"; |
| 973 | |
Archana Simha | 6e7503db | 2019-12-10 03:52:58 | [diff] [blame] | 974 | const char kExtensionsCheckupName[] = "Extensions Checkup"; |
| 975 | const char kExtensionsCheckupDescription[] = |
| 976 | "Enable the extensions checkup experiment"; |
| 977 | |
Peter Boström | a445353a | 2019-03-21 02:58:15 | [diff] [blame] | 978 | const char kExtensionsToolbarMenuName[] = "Extensions Toolbar Menu"; |
| 979 | const char kExtensionsToolbarMenuDescription[] = |
| 980 | "Enable a separate toolbar button and menu for extensions"; |
| 981 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 982 | const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs"; |
| 983 | const char kExtensionsOnChromeUrlsDescription[] = |
| 984 | "Enables running extensions on chrome:// URLs, where extensions explicitly " |
| 985 | "request this permission."; |
galinap | ae72e15 | 2017-05-12 13:12:28 | [diff] [blame] | 986 | |
Axel Antoine | 12df7118 | 2019-07-25 18:11:21 | [diff] [blame] | 987 | const char kFilteringScrollPredictionName[] = "Filtering scroll prediction"; |
| 988 | const char kFilteringScrollPredictionDescription[] = |
| 989 | "Enable filtering of predicted scroll events"; |
| 990 | |
Tom McKee | d47f7ed6 | 2020-04-06 13:53:40 | [diff] [blame] | 991 | const char kFirstScrollLatencyMeasurementName[] = |
| 992 | "First Scroll Latency Measurement"; |
| 993 | const char kFirstScrollLatencyMeasurementDescription[] = |
| 994 | "Enables measurement of the latency between user input events and visual " |
| 995 | "updates for the first scroll of a navigation."; |
| 996 | |
David Bokan | 432978d | 2019-08-15 18:18:52 | [diff] [blame] | 997 | const char kFractionalScrollOffsetsName[] = "Fractional Scroll Offsets"; |
| 998 | const char kFractionalScrollOffsetsDescription[] = |
| 999 | "Enables fractional scroll offsets inside Blink, exposing non-integer " |
| 1000 | "offsets to web APIs."; |
| 1001 | |
Aaron Tagliaboschi | dbd80d22 | 2020-01-24 14:07:42 | [diff] [blame] | 1002 | const char kFreezeUserAgentName[] = "Freeze User-Agent request header"; |
| 1003 | const char kFreezeUserAgentDescription[] = |
| 1004 | "Set the User-Agent request header to a static string that conforms to the " |
| 1005 | "current User-Agent string format but only reveals desktop vs Android and " |
| 1006 | "if the 'mobile' flag is set"; |
| 1007 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1008 | const char kForceEffectiveConnectionTypeName[] = |
| 1009 | "Override effective connection type"; |
| 1010 | const char kForceEffectiveConnectionTypeDescription[] = |
| 1011 | "Overrides the effective connection type of the current connection " |
Thanh Le | a98f12f | 2017-12-18 19:35:30 | [diff] [blame] | 1012 | "returned by the network quality estimator. Slow 2G on Cellular returns " |
| 1013 | "Slow 2G when connected to a cellular network, and the actual estimate " |
| 1014 | "effective connection type when not on a cellular network. Previews are " |
| 1015 | "usually served on 2G networks."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1016 | const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown"; |
| 1017 | const char kEffectiveConnectionTypeOfflineDescription[] = "Offline"; |
| 1018 | const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G"; |
Thanh Le | a98f12f | 2017-12-18 19:35:30 | [diff] [blame] | 1019 | const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] = |
| 1020 | "Slow 2G On Cellular"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1021 | const char kEffectiveConnectionType2GDescription[] = "2G"; |
| 1022 | const char kEffectiveConnectionType3GDescription[] = "3G"; |
| 1023 | const char kEffectiveConnectionType4GDescription[] = "4G"; |
| 1024 | |
Jay Harris | 583f4892 | 2019-05-06 05:55:24 | [diff] [blame] | 1025 | const char kFileHandlingAPIName[] = "File Handling API"; |
| 1026 | const char kFileHandlingAPIDescription[] = |
| 1027 | "Enables the file handling API, allowing websites to register as file " |
| 1028 | "handlers. This depends on native-file-system"; |
| 1029 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1030 | const char kFillOnAccountSelectName[] = "Fill passwords on account selection"; |
| 1031 | const char kFillOnAccountSelectDescription[] = |
| 1032 | "Filling of passwords when an account is explicitly selected by the user " |
| 1033 | "rather than autofilling credentials on page load."; |
| 1034 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1035 | const char kForceTextDirectionName[] = "Force text direction"; |
| 1036 | const char kForceTextDirectionDescription[] = |
| 1037 | "Explicitly force the per-character directionality of UI text to " |
| 1038 | "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default " |
| 1039 | "direction of the character language."; |
| 1040 | const char kForceDirectionLtr[] = "Left-to-right"; |
| 1041 | const char kForceDirectionRtl[] = "Right-to-left"; |
| 1042 | |
| 1043 | const char kForceUiDirectionName[] = "Force UI direction"; |
| 1044 | const char kForceUiDirectionDescription[] = |
| 1045 | "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " |
| 1046 | "mode, overriding the default direction of the UI language."; |
| 1047 | |
Ionel Popescu | 4ba2a093 | 2019-05-07 20:10:27 | [diff] [blame] | 1048 | const char kFormControlsRefreshName[] = "Web Platform Controls updated UI"; |
| 1049 | const char kFormControlsRefreshDescription[] = |
| 1050 | "If enabled, HTML forms elements will be rendered using an updated style."; |
| 1051 | |
Tommy Steimel | 863e6cf | 2019-07-01 19:07:36 | [diff] [blame] | 1052 | const char kGlobalMediaControlsName[] = "Global Media Controls"; |
| 1053 | const char kGlobalMediaControlsDescription[] = |
| 1054 | "Enables the Global Media Controls UI in the toolbar."; |
| 1055 | |
Takumi Fujimoto | d25d2b7 | 2019-12-19 00:36:18 | [diff] [blame] | 1056 | const char kGlobalMediaControlsForCastName[] = "Global Media Controls for Cast"; |
| 1057 | const char kGlobalMediaControlsForCastDescription[] = |
| 1058 | "Shows Cast sessions in the Global Media Controls UI. Requires " |
| 1059 | "#global-media-controls and #cast-media-route-provider to also be enabled."; |
| 1060 | |
Tommy Steimel | e5c5c12 | 2020-02-06 23:22:35 | [diff] [blame] | 1061 | const char kGlobalMediaControlsPictureInPictureName[] = |
| 1062 | "Global Media Controls Picture-in-Picture"; |
| 1063 | const char kGlobalMediaControlsPictureInPictureDescription[] = |
| 1064 | "Enables Picture-in-Picture controls in the Global Media Controls UI. " |
| 1065 | "Requires " |
| 1066 | "#global-media-controls to also be enabled."; |
| 1067 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1068 | const char kGpuRasterizationName[] = "GPU rasterization"; |
danakj | 51faabd | 2020-03-31 17:25:05 | [diff] [blame] | 1069 | const char kGpuRasterizationDescription[] = "Use GPU to rasterize web content."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1070 | |
Ioana Pandele | 1ed7ef7 | 2018-11-21 15:22:03 | [diff] [blame] | 1071 | const char kGooglePasswordManagerName[] = "Google Password Manager UI"; |
| 1072 | const char kGooglePasswordManagerDescription[] = |
| 1073 | "Enables access to the Google Password Manager UI from Chrome."; |
| 1074 | |
Gabrielle Palado | aebf7ca | 2019-01-16 07:07:06 | [diff] [blame] | 1075 | const char kHandwritingGestureName[] = "Handwriting Gestures"; |
| 1076 | const char kHandwritingGestureDescription[] = |
Darren Shen | a494b6c4 | 2020-03-11 00:38:14 | [diff] [blame] | 1077 | "Enables handwriting gestures within the virtual keyboard. This will send " |
| 1078 | "handwriting you write inside the virtual keyboard to Google servers for " |
| 1079 | "recognition but will not be associated with your Google account."; |
Gabrielle Palado | aebf7ca | 2019-01-16 07:07:06 | [diff] [blame] | 1080 | |
Tommy Steimel | 1aadd7b | 2019-01-18 19:39:42 | [diff] [blame] | 1081 | const char kHardwareMediaKeyHandling[] = "Hardware Media Key Handling"; |
| 1082 | const char kHardwareMediaKeyHandlingDescription[] = |
| 1083 | "Enables using media keys to control the active media session. This " |
| 1084 | "requires MediaSessionService to be enabled too"; |
| 1085 | |
John Delaney | 521fe9f | 2020-04-29 22:18:19 | [diff] [blame] | 1086 | const char kHeavyAdPrivacyMitigationsName[] = "Heavy ad privacy mitigations"; |
| 1087 | const char kHeavyAdPrivacyMitigationsDescription[] = |
| 1088 | "Enables privacy mitigations for the heavy ad intervention. Disabling " |
| 1089 | "this makes the intervention deterministic. Defaults to enabled."; |
John Delaney | 782c7776 | 2019-10-28 15:53:56 | [diff] [blame] | 1090 | |
| 1091 | const char kHeavyAdInterventionName[] = "Heavy Ad Intervention"; |
| 1092 | const char kHeavyAdInterventionDescription[] = |
| 1093 | "Unloads ads that use too many device resources."; |
| 1094 | |
Toni Barzic | 7e93fa5 | 2020-01-29 01:35:47 | [diff] [blame] | 1095 | const char kHideShelfControlsInTabletModeName[] = |
| 1096 | "Hide shelf control buttons in tablet mode."; |
| 1097 | |
| 1098 | const char kHideShelfControlsInTabletModeDescription[] = |
| 1099 | "Hides home, back, and overview button from the shelf while the device is " |
| 1100 | "in tablet mode. Predicated on shelf-hotseat feature being enabled."; |
| 1101 | |
Ryan Landay | 4242dbc2 | 2018-04-04 01:47:33 | [diff] [blame] | 1102 | const char kHorizontalTabSwitcherAndroidName[] = |
| 1103 | "Enable horizontal tab switcher"; |
| 1104 | const char kHorizontalTabSwitcherAndroidDescription[] = |
| 1105 | "Changes the layout of the Android tab switcher so tabs scroll " |
| 1106 | "horizontally instead of vertically."; |
| 1107 | |
Matt Simmons | 2048b2a | 2018-12-20 20:12:56 | [diff] [blame] | 1108 | const char kTabSwitcherOnReturnName[] = "Enable tab switcher on return"; |
| 1109 | const char kTabSwitcherOnReturnDescription[] = |
| 1110 | "Enable tab switcher on return after specified time has elapsed"; |
| 1111 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1112 | const char kHostedAppQuitNotificationName[] = |
| 1113 | "Quit notification for hosted apps"; |
| 1114 | const char kHostedAppQuitNotificationDescription[] = |
| 1115 | "Display a notification when quitting Chrome if hosted apps are currently " |
| 1116 | "running."; |
| 1117 | |
| 1118 | const char kHostedAppShimCreationName[] = |
| 1119 | "Creation of app shims for hosted apps on Mac"; |
| 1120 | const char kHostedAppShimCreationDescription[] = |
| 1121 | "Create app shims on Mac when creating a hosted app."; |
| 1122 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1123 | const char kIgnoreGpuBlacklistName[] = "Override software rendering list"; |
| 1124 | const char kIgnoreGpuBlacklistDescription[] = |
| 1125 | "Overrides the built-in software rendering list and enables " |
| 1126 | "GPU-acceleration on unsupported system configurations."; |
| 1127 | |
Ryan Sturm | 8c3dbc9 | 2018-06-26 19:22:37 | [diff] [blame] | 1128 | const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blocklist"; |
Thanh Le | 5f090efa5 | 2017-12-27 22:39:44 | [diff] [blame] | 1129 | const char kIgnorePreviewsBlacklistDescription[] = |
Ryan Sturm | 8c3dbc9 | 2018-06-26 19:22:37 | [diff] [blame] | 1130 | "Ignore decisions made by the PreviewsBlockList"; |
Thanh Le | 5f090efa5 | 2017-12-27 22:39:44 | [diff] [blame] | 1131 | |
Ehimare Okoyomon | 9b090d42 | 2020-01-17 09:52:45 | [diff] [blame] | 1132 | const char kImprovedCookieControlsName[] = |
| 1133 | "Enable improved cookie controls UI in incognito mode"; |
| 1134 | const char kImprovedCookieControlsDescription[] = |
| 1135 | "Improved UI in Incognito mode for third-party cookie blocking."; |
| 1136 | |
Ehimare Okoyomon | 504c195 | 2019-12-16 18:05:02 | [diff] [blame] | 1137 | const char kImprovedCookieControlsForThirdPartyCookieBlockingName[] = |
| 1138 | "Enable improved UI for third-party cookie blocking"; |
| 1139 | const char kImprovedCookieControlsForThirdPartyCookieBlockingDescription[] = |
| 1140 | "Enables an improved UI for existing third-party cookie blocking users."; |
| 1141 | |
Matt Amert | 2df4f145 | 2019-12-09 04:59:49 | [diff] [blame] | 1142 | const char kImpulseScrollAnimationsName[] = "Impulse-style scroll animations"; |
| 1143 | const char kImpulseScrollAnimationsDescription[] = |
| 1144 | "Replaces the default scroll animation with Impulse-style scroll " |
| 1145 | "animations."; |
| 1146 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1147 | const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode"; |
| 1148 | const char kInProductHelpDemoModeChoiceDescription[] = |
| 1149 | "Selects the In-Product Help demo mode."; |
| 1150 | |
Jarryd | c3639ac | 2020-04-09 17:05:39 | [diff] [blame] | 1151 | const char kInstalledAppsInCbdName[] = "Installed Apps in Clear Browsing Data"; |
| 1152 | const char kInstalledAppsInCbdDescription[] = |
| 1153 | "Adds the installed apps warning dialog to the clear browsing data flow " |
| 1154 | "which allows users to protect installed apps' data from being deleted."; |
| 1155 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1156 | const char kJavascriptHarmonyName[] = "Experimental JavaScript"; |
| 1157 | const char kJavascriptHarmonyDescription[] = |
| 1158 | "Enable web pages to use experimental JavaScript features."; |
| 1159 | |
| 1160 | const char kJavascriptHarmonyShippingName[] = |
| 1161 | "Latest stable JavaScript features"; |
| 1162 | const char kJavascriptHarmonyShippingDescription[] = |
| 1163 | "Some web pages use legacy or non-standard JavaScript extensions that may " |
| 1164 | "conflict with the latest JavaScript features. This flag allows disabling " |
| 1165 | "support of those features for compatibility with such pages."; |
| 1166 | |
tby | 0e3e5819 | 2020-04-08 23:14:22 | [diff] [blame] | 1167 | const char kLauncherSettingsSearchName[] = "Launcher settings search"; |
| 1168 | const char kLauncherSettingsSearchDescription[] = |
| 1169 | "Enable search results for OS settings in the launcher."; |
| 1170 | |
Christopher Thompson | 493f106 | 2020-01-28 23:16:43 | [diff] [blame] | 1171 | const char kLegacyTLSEnforcedName[] = |
| 1172 | "Enforce deprecation of legacy TLS versions"; |
| 1173 | const char kLegacyTLSEnforcedDescription[] = |
| 1174 | "Enable connection errors and interstitials for sites that use legacy TLS " |
| 1175 | "versions (TLS 1.0 and TLS 1.1), which are deprecated and will be removed " |
| 1176 | " in the future."; |
| 1177 | |
Christopher Thompson | b89e7f9 | 2019-09-26 22:31:42 | [diff] [blame] | 1178 | const char kLegacyTLSWarningsName[] = |
| 1179 | "Show security warnings for sites using legacy TLS versions"; |
| 1180 | const char kLegacyTLSWarningsDescription[] = |
| 1181 | "Show security warnings for sites that use legacy TLS versions (TLS 1.0 " |
| 1182 | "and TLS 1.1), which are deprecated and will be removed in the future."; |
| 1183 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1184 | const char kLoadMediaRouterComponentExtensionName[] = |
| 1185 | "Load Media Router Component Extension"; |
| 1186 | const char kLoadMediaRouterComponentExtensionDescription[] = |
| 1187 | "Loads the Media Router component extension at startup."; |
| 1188 | |
Hazem Ashmawy | f1cd7e4 | 2019-03-25 18:17:32 | [diff] [blame] | 1189 | const char kLogJsConsoleMessagesName[] = |
| 1190 | "Log JS console messages in system logs"; |
| 1191 | const char kLogJsConsoleMessagesDescription[] = |
| 1192 | "Enable logging JS console messages in system logs, please note that they " |
| 1193 | "may contain PII."; |
| 1194 | |
Mustafa Emre Acer | 137dc8b | 2018-08-29 20:38:13 | [diff] [blame] | 1195 | const char kLookalikeUrlNavigationSuggestionsName[] = |
| 1196 | "Navigation suggestions for lookalike URLs"; |
| 1197 | const char kLookalikeUrlNavigationSuggestionsDescription[] = |
| 1198 | "Enable navigation suggestions for URLs that are visually similar to " |
| 1199 | "popular domains or to domains with a site engagement score."; |
| 1200 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1201 | const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure"; |
| 1202 | const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1203 | |
Becca Hughes | 71e8ceb | 2020-03-31 22:23:40 | [diff] [blame] | 1204 | const char kMediaHistoryName[] = "Enable Media History"; |
| 1205 | const char kMediaHistoryDescription[] = |
| 1206 | "Enables Media History which records data around media playbacks on " |
| 1207 | "websites."; |
| 1208 | |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 1209 | const char kMediaRouterCastAllowAllIPsName[] = |
| 1210 | "Connect to Cast devices on all IP addresses"; |
| 1211 | const char kMediaRouterCastAllowAllIPsDescription[] = |
| 1212 | "Have the Media Router connect to Cast devices on all IP addresses, not " |
Nick Harper | d30507ca | 2018-08-16 20:24:31 | [diff] [blame] | 1213 | "just RFC1918/RFC4193 private addresses."; |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 1214 | |
Joel Hockey | 73bc712 | 2019-10-20 21:41:11 | [diff] [blame] | 1215 | const char kMixBrowserTypeTabsName[] = "Mix browser type tabs"; |
| 1216 | const char kMixBrowserTypeTabsDescription[] = |
| 1217 | "Allows tabs to be dragged between any browsers that support tabs, " |
| 1218 | "including apps"; |
| 1219 | |
David Roger | 2183afb | 2019-02-21 14:19:15 | [diff] [blame] | 1220 | const char kMobileIdentityConsistencyName[] = "Mobile identity consistency"; |
| 1221 | const char kMobileIdentityConsistencyDescription[] = |
| 1222 | "Enables stronger identity consistency on mobile"; |
| 1223 | |
Ella Ge | 1282f55 | 2019-06-24 20:06:03 | [diff] [blame] | 1224 | const char kMouseSubframeNoImplicitCaptureName[] = |
| 1225 | "Disable mouse implicit capture for iframe"; |
| 1226 | const char kMouseSubframeNoImplicitCaptureDescription[] = |
| 1227 | "When enable, mouse down does not implicit capture for iframe."; |
| 1228 | |
Marijn Kruisselbrink | ca4bb5e | 2019-04-22 18:19:42 | [diff] [blame] | 1229 | const char kNativeFileSystemAPIName[] = "Native File System API"; |
| 1230 | const char kNativeFileSystemAPIDescription[] = |
| 1231 | "Enables the experimental Native File System API, giving websites access " |
| 1232 | "to the native file system"; |
Marijn Kruisselbrink | fa0e105 | 2019-03-05 22:32:55 | [diff] [blame] | 1233 | |
James Vecore | 30f589c2 | 2020-04-03 23:16:17 | [diff] [blame] | 1234 | const char kNearbySharingName[] = "Nearby Sharing"; |
| 1235 | const char kNearbySharingDescription[] = |
| 1236 | "Enables Nearby Sharing for sharing content between devices."; |
| 1237 | |
Aaron Krajeski | 229cffd | 2020-05-11 22:30:33 | [diff] [blame] | 1238 | const char kNewCanvas2DAPIName[] = "Experimental canvas 2D API features"; |
| 1239 | const char kNewCanvas2DAPIDescription[] = |
| 1240 | "Enables in-progress features for the canvas 2D API. See " |
| 1241 | "https://github.com/fserb/canvas2d."; |
| 1242 | |
Monica Basta | e233141 | 2020-04-10 14:07:30 | [diff] [blame] | 1243 | const char kNewProfilePickerName[] = "New profile picker"; |
| 1244 | const char kNewProfilePickerDescription[] = |
| 1245 | "Enables new profile picker implementation."; |
| 1246 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1247 | const char kNewUsbBackendName[] = "Enable new USB backend"; |
| 1248 | const char kNewUsbBackendDescription[] = |
| 1249 | "Enables the new experimental USB backend for Windows."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1250 | |
Taylor Bergquist | 187a9f9 | 2019-08-12 22:13:15 | [diff] [blame] | 1251 | const char kNewTabstripAnimationName[] = "New tabstrip animations"; |
| 1252 | const char kNewTabstripAnimationDescription[] = |
| 1253 | "New implementation of tabstrip animations."; |
| 1254 | |
Regan Hsu | c72a611 | 2020-02-28 19:10:02 | [diff] [blame] | 1255 | const char kNewOsSettingsSearchName[] = "New OS Settings Search"; |
| 1256 | const char kNewOsSettingsSearchDescription[] = |
| 1257 | "Enables New OS Settings search with fuzzy matching, and disables the old " |
| 1258 | "OS settings search using exact string matching."; |
| 1259 | |
Regan Hsu | b31b601 | 2020-04-23 22:18:47 | [diff] [blame] | 1260 | const char kDlcSettingsUiName[] = "DLC Settings UI"; |
| 1261 | const char kDlcSettingsUiDescription[] = |
| 1262 | "Enables DLC (Downloadable Content) Settings subpage in the Device section " |
| 1263 | "of OS Settings."; |
| 1264 | |
Aaron Krajeski | 7df4f93c | 2020-02-20 18:07:45 | [diff] [blame] | 1265 | const char kTextureLayerSkipWaitForActivationName[] = "Parallelize layers"; |
| 1266 | const char kTextureLayerSkipWaitForActivationDescription[] = |
| 1267 | "Don't wait for layer activation before beginning new frame."; |
| 1268 | |
Alex Newcomer | d7b0cc4 | 2018-05-25 22:58:48 | [diff] [blame] | 1269 | const char kNotificationIndicatorName[] = "Notification Indicators"; |
| 1270 | const char kNotificationIndicatorDescription[] = |
| 1271 | "Enable notification indicators, which appear on app icons when a " |
| 1272 | "notification is active. This will also enable notifications in context " |
| 1273 | "menus."; |
| 1274 | |
Xing Liu | 1919ec23 | 2019-07-22 20:38:04 | [diff] [blame] | 1275 | const char kNotificationSchedulerDebugOptionName[] = |
| 1276 | "Notification scheduler debug options"; |
| 1277 | const char kNotificationSchedulerDebugOptionDescription[] = |
| 1278 | "Enable debugging mode to override certain behavior of notification " |
| 1279 | "scheduler system for easier manual testing."; |
| 1280 | const char kNotificationSchedulerImmediateBackgroundTaskDescription[] = |
| 1281 | "Show scheduled notification right away."; |
| 1282 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1283 | const char kNotificationsNativeFlagName[] = "Enable native notifications."; |
| 1284 | const char kNotificationsNativeFlagDescription[] = |
| 1285 | "Enable support for using the native notification toasts and notification " |
| 1286 | "center on platforms where these are available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1287 | |
Lan Wei | 97ee4b1f | 2019-07-25 21:02:39 | [diff] [blame] | 1288 | const char kUpdateHoverAtBeginFrameName[] = "Update hover at the begin frame"; |
| 1289 | const char kUpdateHoverAtBeginFrameDescription[] = |
| 1290 | "Recompute hover state at BeginFrame for layout and scroll based mouse " |
| 1291 | "moves, rather than old timing-based mechanism."; |
| 1292 | |
Valeriya Sinevich | 972ac12 | 2018-09-05 07:33:19 | [diff] [blame] | 1293 | const char kUseMultiloginEndpointName[] = "Use Multilogin endpoint."; |
| 1294 | const char kUseMultiloginEndpointDescription[] = |
| 1295 | "Use Gaia OAuth multilogin for identity consistency."; |
| 1296 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1297 | const char kOfferStoreUnmaskedWalletCardsName[] = |
| 1298 | "Google Payments card saving checkbox"; |
| 1299 | const char kOfferStoreUnmaskedWalletCardsDescription[] = |
| 1300 | "Show the checkbox to offer local saving of a credit card downloaded from " |
| 1301 | "the server."; |
| 1302 | |
Tomasz Wiszkowski | 8a0e0dc4 | 2020-02-19 00:06:37 | [diff] [blame] | 1303 | const char kOmniboxAdaptiveSuggestionsCountName[] = |
| 1304 | "Adaptive Omnibox Suggestions count"; |
| 1305 | const char kOmniboxAdaptiveSuggestionsCountDescription[] = |
| 1306 | "Dynamically adjust number of presented Omnibox suggestions depending on " |
| 1307 | "available space. When enabled, this feature will increase (or decrease) " |
| 1308 | "amount of offered Omnibox suggestions to fill in the space between the " |
| 1309 | "Omnibox and soft keyboard (if any). See also Max Autocomplete Matches " |
| 1310 | "flag to adjust the limit of offered suggestions. The number of shown " |
| 1311 | "suggestions will be no less than the platform default limit."; |
| 1312 | |
Brandon Wylie | 1299ff8 | 2020-01-23 02:13:37 | [diff] [blame] | 1313 | const char kOmniboxAssistantVoiceSearchName[] = |
| 1314 | "Omnibox Assistant Voice Search"; |
| 1315 | const char kOmniboxAssistantVoiceSearchDescription[] = |
| 1316 | "When enabled, use Assistant for omnibox voice query recognition instead of" |
| 1317 | " Android's built-in voice recognition service. Only works on Android."; |
| 1318 | |
manuk | 4542e23 | 2019-09-11 19:27:35 | [diff] [blame] | 1319 | const char kOmniboxAutocompleteTitlesName[] = "Omnibox Autocomplete Titles"; |
| 1320 | const char kOmniboxAutocompleteTitlesDescription[] = |
| 1321 | "Allows autocompleting bookmark, history, and document suggestions when the" |
| 1322 | " user input is a prefix of their titles, as opposed to their URLs."; |
| 1323 | |
Tomasz Wiszkowski | 70fb35f | 2020-02-27 00:39:19 | [diff] [blame] | 1324 | const char kOmniboxCompactSuggestionsName[] = "Omnibox: Compact suggestions"; |
| 1325 | const char kOmniboxCompactSuggestionsDescription[] = |
| 1326 | "Conserve the space for Omnibox Suggestions by slightly reducing their " |
| 1327 | "size."; |
| 1328 | |
| 1329 | const char kOmniboxDeferredKeyboardPopupName[] = |
| 1330 | "Omnibox: Defer keyboard popup"; |
| 1331 | const char kOmniboxDeferredKeyboardPopupDescription[] = |
| 1332 | "Defer keyboard popup when user selects the Omnibox to allow presenting " |
| 1333 | "more instant/zero-prefix suggestions. The soft keyboard will only be " |
| 1334 | "shown when user taps the Omnibox again, or if there's no suggestions to " |
| 1335 | "show to the user."; |
| 1336 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1337 | const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 1338 | "Include title for the current URL in the omnibox"; |
| 1339 | const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 1340 | "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 1341 | "the current page is provided as the first suggestion without a title. " |
| 1342 | "Enabling this flag causes the title to be displayed."; |
| 1343 | |
Patrick Noland | 9e1fc505 | 2019-07-31 00:24:11 | [diff] [blame] | 1344 | const char kOmniboxDisableInstantExtendedLimitName[] = |
| 1345 | "Disable the 'instant extended' limit on search suggestions"; |
| 1346 | const char kOmniboxDisableInstantExtendedLimitDescription[] = |
| 1347 | "Effectively doubles the max number of Google-provided search suggestions " |
| 1348 | "on Android by disabling the 'Instant Extended' check."; |
Justin Donnelly | f270348 | 2019-10-24 21:42:15 | [diff] [blame] | 1349 | |
| 1350 | const char kOmniboxExperimentalSuggestScoringName[] = |
| 1351 | "Omnibox Experimental Suggest Scoring"; |
| 1352 | const char kOmniboxExperimentalSuggestScoringDescription[] = |
| 1353 | "Enables an experimental scoring mode for suggestions when Google is the " |
| 1354 | "default search engine."; |
| 1355 | |
manukh | 5ff0f58 | 2020-01-14 03:54:13 | [diff] [blame] | 1356 | const char kOmniboxHistoryQuickProviderAllowButDoNotScoreMidwordTermsName[] = |
| 1357 | "Omnibox History Quick Provider Allow but Do Not Score Midword Terms"; |
| 1358 | const char |
| 1359 | kOmniboxHistoryQuickProviderAllowButDoNotScoreMidwordTermsDescription[] = |
| 1360 | "Midword terms are allowed but not scored."; |
| 1361 | const char kOmniboxHistoryQuickProviderAllowMidwordContinuationsName[] = |
| 1362 | "Omnibox History Quick Provider Allow Midword Continuations"; |
| 1363 | const char kOmniboxHistoryQuickProviderAllowMidwordContinuationsDescription[] = |
| 1364 | "Midword matches are allowed and scored when the match begins immediately " |
| 1365 | "after the previous match ends."; |
| 1366 | |
manuk | addd3c4 | 2019-04-09 21:20:59 | [diff] [blame] | 1367 | const char kOmniboxLocalEntitySuggestionsName[] = |
| 1368 | "Omnibox Local Entity Suggestions"; |
| 1369 | const char kOmniboxLocalEntitySuggestionsDescription[] = |
| 1370 | "Enables location specific suggestions displayed with images and enhanced " |
| 1371 | "layout, similar to #omnibox-rich-entity-suggestions. Enabling this feature" |
| 1372 | "will also enable #omnibox-rich-entity-suggestions."; |
| 1373 | |
manuk | 695f9d453 | 2020-03-18 19:22:08 | [diff] [blame] | 1374 | const char kOmniboxRichAutocompletionName[] = "Omnibox Rich Autocompletion"; |
| 1375 | const char kOmniboxRichAutocompletionDescription[] = |
| 1376 | "Allow autocompletion for titles and non-prefixes. I.e. suggestions whose " |
| 1377 | "titles or URLs contain the user input as a continuous chunk, but not " |
| 1378 | "necessarily a prefix, can be the default suggestion. Typically, only " |
| 1379 | "suggestions whose URLs are prefixed by the user input can be. The " |
| 1380 | "potential variations toggle 4 params: 1) 'Title UI' displays titles, 2) " |
| 1381 | "'2-Line UI' includes titles (and URLs when autocompleting titles) on a " |
| 1382 | "2nd line, 3) 'Title AC' autocompletes titles, and 4) 'Non-Prefix AC' " |
| 1383 | "autocompletes non-prefixes."; |
| 1384 | |
Moe Ahmadi | d0ce5de | 2019-08-30 21:55:02 | [diff] [blame] | 1385 | const char kOmniboxOnFocusSuggestionsName[] = "Omnibox on-focus suggestions"; |
| 1386 | const char kOmniboxOnFocusSuggestionsDescription[] = |
| 1387 | "Configures Omnibox on-focus suggestions - suggestions displayed on-focus " |
| 1388 | "before the user has typed any input"; |
| 1389 | |
Tommy Li | 5578402 | 2020-04-28 20:58:18 | [diff] [blame] | 1390 | const char kOmniboxOnFocusSuggestionsContextualWebName[] = |
| 1391 | "Omnibox on-focus suggestions for the contextual Web"; |
| 1392 | const char kOmniboxOnFocusSuggestionsContextualWebDescription[] = |
| 1393 | "Enables on-focus suggestions on the Open Web, that are contextual to the " |
| 1394 | "current URL. Will only work if user is signed-in and syncing, or is " |
| 1395 | "otherwise eligible to send the current page URL to the suggest server."; |
| 1396 | |
Brandon Wylie | f8dd4e8 | 2019-07-11 16:39:57 | [diff] [blame] | 1397 | const char kOmniboxSearchEngineLogoName[] = "Omnibox search engine logo"; |
| 1398 | const char kOmniboxSearchEngineLogoDescription[] = |
| 1399 | "Display the current default search engine's logo in the omnibox"; |
| 1400 | |
Benoit Lize | ab08362c | 2017-07-19 14:50:54 | [diff] [blame] | 1401 | const char kOmniboxSpareRendererName[] = |
| 1402 | "Start spare renderer on omnibox focus"; |
| 1403 | const char kOmniboxSpareRendererDescription[] = |
| 1404 | "When the omnibox is focused, start an empty spare renderer. This can " |
| 1405 | "speed up the load of the navigation from the omnibox."; |
| 1406 | |
Filip Gorski | 927709ea | 2020-04-30 15:58:37 | [diff] [blame] | 1407 | const char kOmniboxSuggestionsRecyclerViewName[] = |
| 1408 | "Omnibox Suggestions using a recycler view"; |
| 1409 | const char kOmniboxSuggestionsRecyclerViewDescription[] = |
| 1410 | "Use an Android RecyclerView to render the Omnibox Suggestions drop down."; |
| 1411 | |
Tomasz Wiszkowski | 5ec4f53 | 2020-05-19 21:28:10 | [diff] [blame] | 1412 | const char kOmniboxSuggestionsWrapAroundName[] = |
| 1413 | "Omnibox Suggestions Wrap-Around"; |
| 1414 | const char kOmniboxSuggestionsWrapAroundDescription[] = |
| 1415 | "Allow long search suggestions to wrap around to reveal their content"; |
| 1416 | |
Tommy C. Li | e4194b73 | 2018-09-28 22:21:51 | [diff] [blame] | 1417 | const char kOmniboxUIHideSteadyStateUrlSchemeName[] = |
| 1418 | "Omnibox UI Hide Steady-State URL Scheme"; |
| 1419 | const char kOmniboxUIHideSteadyStateUrlSchemeDescription[] = |
| 1420 | "In the omnibox, hide the scheme from steady state displayed URLs. It is " |
Tommy C. Li | bef94ee0 | 2018-10-17 19:56:36 | [diff] [blame] | 1421 | "restored during editing."; |
Tommy C. Li | e4194b73 | 2018-09-28 22:21:51 | [diff] [blame] | 1422 | |
| 1423 | const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsName[] = |
| 1424 | "Omnibox UI Hide Steady-State URL Trivial Subdomains"; |
| 1425 | const char kOmniboxUIHideSteadyStateUrlTrivialSubdomainsDescription[] = |
| 1426 | "In the omnibox, hide trivial subdomains from steady state displayed URLs. " |
Tommy C. Li | bef94ee0 | 2018-10-17 19:56:36 | [diff] [blame] | 1427 | "Hidden portions are restored during editing."; |
| 1428 | |
| 1429 | const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefName[] = |
| 1430 | "Omnibox UI Hide Steady-State URL Path, Query, and Ref"; |
| 1431 | const char kOmniboxUIHideSteadyStateUrlPathQueryAndRefDescription[] = |
| 1432 | "In the omnibox, hide the path, query and ref from steady state displayed " |
| 1433 | "URLs. Hidden portions are restored during editing."; |
Tommy C. Li | d79d440 | 2017-12-22 22:49:12 | [diff] [blame] | 1434 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1435 | const char kOmniboxUIMaxAutocompleteMatchesName[] = |
| 1436 | "Omnibox UI Max Autocomplete Matches"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1437 | const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
| 1438 | "Changes the maximum number of autocomplete matches displayed in the " |
| 1439 | "Omnibox UI."; |
| 1440 | |
Kevin Bailey | cd688992 | 2019-05-30 17:22:55 | [diff] [blame] | 1441 | const char kOmniboxMaxURLMatchesName[] = "Omnibox Max URL Matches"; |
| 1442 | const char kOmniboxMaxURLMatchesDescription[] = |
| 1443 | "The maximum number of URL matches to show, unless there are no " |
| 1444 | "replacements."; |
| 1445 | |
Ce Chen | c8d803a | 2020-04-27 09:31:33 | [diff] [blame] | 1446 | const char kOmniboxOnDeviceHeadSuggestionsIncognitoName[] = |
| 1447 | "Omnibox on device head suggestions (incognito only)"; |
| 1448 | const char kOmniboxOnDeviceHeadSuggestionsIncognitoDescription[] = |
Ce Chen | 20af01c | 2019-07-02 19:16:36 | [diff] [blame] | 1449 | "Google head non personalized search suggestions provided by a compact on " |
Ce Chen | c8d803a | 2020-04-27 09:31:33 | [diff] [blame] | 1450 | "device model for incognito"; |
| 1451 | |
| 1452 | const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoName[] = |
| 1453 | "Omnibox on device head suggestions (non-incognito only)"; |
| 1454 | const char kOmniboxOnDeviceHeadSuggestionsNonIncognitoDescription[] = |
| 1455 | "Google head non personalized search suggestions provided by a compact on " |
| 1456 | "device model for non-incognito"; |
Ce Chen | 20af01c | 2019-07-02 19:16:36 | [diff] [blame] | 1457 | |
Tommy Li | 7d1a68b | 2019-09-06 23:12:52 | [diff] [blame] | 1458 | const char kOmniboxPreserveDefaultMatchAgainstAsyncUpdateName[] = |
| 1459 | "Omnibox Preserve Default Match Against Async Update"; |
| 1460 | const char kOmniboxPreserveDefaultMatchAgainstAsyncUpdateDescription[] = |
| 1461 | "Preserves the default match against change when providers return results " |
| 1462 | "asynchronously. This prevents the default match from changing after the " |
| 1463 | "user finishes typing. Without this feature, if the default match is " |
| 1464 | "updated right when the user presses Enter, the user may go to a " |
| 1465 | "surprising destination."; |
| 1466 | |
Justin Donnelly | 65c9e8b | 2017-10-01 05:15:01 | [diff] [blame] | 1467 | const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL"; |
| 1468 | const char kOmniboxUISwapTitleAndUrlDescription[] = |
| 1469 | "In the omnibox dropdown, shows titles before URLs when both are " |
| 1470 | "available."; |
| 1471 | |
Tomasz Wiszkowski | 947f6d0d | 2019-03-15 22:27:25 | [diff] [blame] | 1472 | const char kOmniboxZeroSuggestionsOnNTPName[] = |
| 1473 | "Omnibox Zero Suggestions on New Tab Page"; |
| 1474 | const char kOmniboxZeroSuggestionsOnNTPDescription[] = |
| 1475 | "Offer suggestions when URL bar (omnibox) is focused."; |
| 1476 | |
Moe Ahmadi | 4005ec9 | 2019-09-09 16:55:53 | [diff] [blame] | 1477 | const char kOmniboxZeroSuggestionsOnNTPRealboxName[] = |
| 1478 | "Zero Suggestions in real search box on New Tab Page"; |
| 1479 | const char kOmniboxZeroSuggestionsOnNTPRealboxDescription[] = |
| 1480 | "Offer suggestions when the real search box on New Tab Page is focused."; |
| 1481 | |
Tommy Li | 1d03b9bf | 2019-09-23 23:46:34 | [diff] [blame] | 1482 | const char kOmniboxZeroSuggestionsOnSERPName[] = |
| 1483 | "Omnibox Zero Suggestions on SERP / On-Focus Query Refinement"; |
| 1484 | const char kOmniboxZeroSuggestionsOnSERPDescription[] = |
| 1485 | "Offer query refinement suggestions when the URL bar (omnibox) is focused " |
| 1486 | "on the default search provider's search results page (SERP)."; |
| 1487 | |
Mark Lieu | faa1b76 | 2019-01-08 19:37:28 | [diff] [blame] | 1488 | const char kOnTheFlyMhtmlHashComputationName[] = |
| 1489 | "On-The-Fly MHTML Hash Computation"; |
| 1490 | const char kOnTheFlyMhtmlHashComputationDescription[] = |
| 1491 | "Save MHTML files to the target location and calculate their content " |
| 1492 | "digests in one step."; |
| 1493 | |
Adrienne Walker | c87477e | 2018-06-06 22:28:21 | [diff] [blame] | 1494 | const char kOopRasterizationName[] = "Out of process rasterization"; |
| 1495 | const char kOopRasterizationDescription[] = |
| 1496 | "Perform Ganesh raster in the GPU Process instead of the renderer. " |
| 1497 | "Must also enable GPU rasterization"; |
| 1498 | |
Eric Karl | 34c4838 | 2019-10-15 02:04:17 | [diff] [blame] | 1499 | const char kEnableDeJellyName[] = "Experimental de-jelly effect"; |
| 1500 | const char kEnableDeJellyDescription[] = |
| 1501 | "Enables an experimental effect which attempts to mitigate " |
| 1502 | "\"jelly-scrolling\". This is an experimental implementation with known " |
| 1503 | "bugs, visual artifacts, and performance cost. This implementation may be " |
| 1504 | "removed at any time."; |
| 1505 | |
Donn Denman | 43baac6 | 2019-05-22 17:31:05 | [diff] [blame] | 1506 | const char kOverlayNewLayoutName[] = "Overlay new layout"; |
| 1507 | const char kOverlayNewLayoutDescription[] = |
| 1508 | "Enables a new layout for the " |
| 1509 | "Overlay panels including Contextual Search and Preview Tab."; |
| 1510 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1511 | const char kOverlayScrollbarsName[] = "Overlay Scrollbars"; |
| 1512 | const char kOverlayScrollbarsDescription[] = |
| 1513 | "Enable the experimental overlay scrollbars implementation. You must also " |
| 1514 | "enable threaded compositing to have the scrollbars animate."; |
| 1515 | |
chaopeng | e8aa016b | 2017-08-24 15:20:19 | [diff] [blame] | 1516 | const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] = |
| 1517 | "Flash Overlay Scrollbars After Any Scroll Update"; |
| 1518 | const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] = |
| 1519 | "Flash Overlay Scrollbars After any scroll update happends in page. You" |
| 1520 | " must also enable Overlay Scrollbars."; |
| 1521 | |
chaopeng | 34367802 | 2017-08-24 18:45:00 | [diff] [blame] | 1522 | const char kOverlayScrollbarsFlashWhenMouseEnterName[] = |
| 1523 | "Flash Overlay Scrollbars When Mouse Enter"; |
| 1524 | const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] = |
| 1525 | "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also" |
| 1526 | " enable Overlay Scrollbars."; |
| 1527 | |
Daniele Castagna | 74ddb9c | 2018-06-21 22:59:02 | [diff] [blame] | 1528 | const char kOverlayStrategiesName[] = "Select HW overlay strategies"; |
| 1529 | const char kOverlayStrategiesDescription[] = |
| 1530 | "Select strategies used to promote quads to HW overlays."; |
| 1531 | const char kOverlayStrategiesDefault[] = "Default"; |
| 1532 | const char kOverlayStrategiesNone[] = "None"; |
| 1533 | const char kOverlayStrategiesUnoccludedFullscreen[] = |
| 1534 | "Unoccluded fullscreen buffers (single-fullscreen)"; |
| 1535 | const char kOverlayStrategiesUnoccluded[] = |
| 1536 | "Unoccluded buffers (single-fullscreen,single-on-top)"; |
| 1537 | const char kOverlayStrategiesOccludedAndUnoccluded[] = |
| 1538 | "Occluded and unoccluded buffers " |
| 1539 | "(single-fullscreen,single-on-top,underlay)"; |
| 1540 | |
Claudio Magni | 81326f9 | 2017-09-01 05:21:18 | [diff] [blame] | 1541 | const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header"; |
| 1542 | const char kUseNewAcceptLanguageHeaderDescription[] = |
| 1543 | "Adds the base language code after other corresponding language+region " |
| 1544 | "codes. This ensures that users receive content in their preferred " |
| 1545 | "language."; |
| 1546 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1547 | const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation"; |
| 1548 | const char kOverscrollHistoryNavigationDescription[] = |
Mohsen Izadi | 88b392a | 2018-02-15 06:57:48 | [diff] [blame] | 1549 | "History navigation in response to horizontal overscroll."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1550 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 1551 | const char kPaintHoldingName[] = |
| 1552 | "Delay the commit to screen for same-origin navigations"; |
| 1553 | const char kPaintHoldingDescription[] = |
| 1554 | "Enables a delay before commiting the page to screen when navigating " |
| 1555 | "between pages in the same origin. This may help avoid a flash of unstyled " |
| 1556 | "content for same-origin navigations"; |
chaopeng | e2b6e5f | 2018-05-08 16:40:45 | [diff] [blame] | 1557 | |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 1558 | const char kParallelDownloadingName[] = "Parallel downloading"; |
| 1559 | const char kParallelDownloadingDescription[] = |
Yannic Bonenberger | a32f990 | 2017-11-20 18:47:06 | [diff] [blame] | 1560 | "Enable parallel downloading to accelerate download speed."; |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 1561 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1562 | const char kPassiveEventListenerDefaultName[] = |
| 1563 | "Passive Event Listener Override"; |
| 1564 | const char kPassiveEventListenerDefaultDescription[] = |
| 1565 | "Forces touchstart, touchmove, mousewheel and wheel event listeners (which " |
| 1566 | "haven't requested otherwise) to be treated as passive. This will break " |
| 1567 | "touch/wheel behavior on some websites but is useful for demonstrating the " |
| 1568 | "potential performance benefits of adopting passive event listeners."; |
| 1569 | const char kPassiveEventListenerTrue[] = "True (when unspecified)"; |
| 1570 | const char kPassiveEventListenerForceAllTrue[] = "Force All True"; |
| 1571 | |
| 1572 | const char kPassiveEventListenersDueToFlingName[] = |
| 1573 | "Touch Event Listeners Passive Default During Fling"; |
| 1574 | const char kPassiveEventListenersDueToFlingDescription[] = |
| 1575 | "Forces touchstart, and first touchmove per scroll event listeners during " |
| 1576 | "fling to be treated as passive."; |
| 1577 | |
| 1578 | const char kPassiveDocumentEventListenersName[] = |
| 1579 | "Document Level Event Listeners Passive Default"; |
| 1580 | const char kPassiveDocumentEventListenersDescription[] = |
| 1581 | "Forces touchstart, and touchmove event listeners on document level " |
| 1582 | "targets (which haven't requested otherwise) to be treated as passive."; |
| 1583 | |
Sahel Sharify | 7400e88 | 2018-08-13 17:13:21 | [diff] [blame] | 1584 | const char kPassiveDocumentWheelEventListenersName[] = |
| 1585 | "Document Level Wheel Event Listeners Passive Default"; |
| 1586 | const char kPassiveDocumentWheelEventListenersDescription[] = |
| 1587 | "Forces wheel, and mousewheel event listeners on document level targets " |
| 1588 | "(which haven't requested otherwise) to be treated as passive."; |
| 1589 | |
Carlos IL | 1d3ef05 | 2019-11-20 19:36:10 | [diff] [blame] | 1590 | const char kPassiveMixedContentWarningName[] = |
| 1591 | "Warning for Passive Mixed Content"; |
| 1592 | const char kPassiveMixedContentWarningDescription[] = |
| 1593 | "Causes a 'Not Secure' chip to be shown in the omnibox if a site contains " |
| 1594 | "passive (aka optionally blockable) mixed content."; |
| 1595 | |
Milica Selakovic | e8bdde61 | 2020-02-19 11:48:36 | [diff] [blame] | 1596 | const char kPasswordChangeName[] = "Rework password change flow"; |
| 1597 | const char kPasswordChangeDescription[] = |
| 1598 | "Change password when password leak is detected."; |
| 1599 | |
Ivana Zuzic | a4cf480 | 2019-07-10 19:02:32 | [diff] [blame] | 1600 | const char kPasswordEditingAndroidName[] = "Password editing for Android"; |
| 1601 | const char kPasswordEditingAndroidDescription[] = |
| 1602 | "Adds the editing option for saved passwords."; |
| 1603 | |
Vaclav Brozek | d8a3f54 | 2017-11-16 14:21:13 | [diff] [blame] | 1604 | const char kPasswordImportName[] = "Password import"; |
| 1605 | const char kPasswordImportDescription[] = |
| 1606 | "Import functionality in password settings."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1607 | |
Aran Gilman | 5e9672bed | 2019-08-02 19:07:49 | [diff] [blame] | 1608 | const char kForceWebContentsDarkModeName[] = "Force Dark Mode for Web Contents"; |
| 1609 | const char kForceWebContentsDarkModeDescription[] = |
| 1610 | "Automatically render all web contents using a dark theme."; |
| 1611 | |
Alison Maher | c07a3fb | 2019-10-07 21:25:03 | [diff] [blame] | 1612 | const char kForcedColorsName[] = "Forced Colors"; |
| 1613 | const char kForcedColorsDescription[] = |
| 1614 | "Enables forced colors mode for web content."; |
| 1615 | |
Matt Amert | ecf4bf3 | 2019-09-25 19:50:39 | [diff] [blame] | 1616 | const char kPercentBasedScrollingName[] = "Percent-based Scrolling"; |
| 1617 | const char kPercentBasedScrollingDescription[] = |
| 1618 | "If enabled, mousewheel and keyboard scrolls will scroll by a percentage " |
| 1619 | "of the scroller size."; |
| 1620 | |
Rouslan Solomakhin | ded84011 | 2018-11-02 13:27:10 | [diff] [blame] | 1621 | const char kPerMethodCanMakePaymentQuotaName[] = |
| 1622 | "Per-method canMakePayment() quota."; |
| 1623 | const char kPerMethodCanMakePaymentQuotaDescription[] = |
| 1624 | "Allow calling canMakePayment() for different payment methods, as long as " |
| 1625 | "method-specific parameters remain unchanged."; |
| 1626 | |
Olesia Marukhno | 16fdd647a | 2020-05-04 09:34:00 | [diff] [blame] | 1627 | const char kPermissionChipName[] = "Permissions Chip Experiment"; |
| 1628 | const char kPermissionChipDescription[] = |
| 1629 | "Enables an experimental permission prompt that uses a chip in the location" |
| 1630 | " bar."; |
| 1631 | |
Ella Ge | b58eed1 | 2019-09-05 23:37:01 | [diff] [blame] | 1632 | const char kPointerLockOptionsName[] = "Enables pointer lock options"; |
| 1633 | const char kPointerLockOptionsDescription[] = |
| 1634 | "Enables pointer lock unadjustedMovement. When unadjustedMovement is set " |
| 1635 | "to true, pointer movements wil not be affected by the underlying platform " |
| 1636 | "modications such as mouse accelaration."; |
| 1637 | |
Yann Dago | 70afb65d | 2019-08-06 15:50:53 | [diff] [blame] | 1638 | const char kPolicyAtomicGroupsEnabledName[] = "Policy Atomic Groups Enabled"; |
| 1639 | const char kPolicyAtomicGroupsEnabledDescription[] = |
| 1640 | "Enables the concept of policy atomic groups that makes policies of an " |
| 1641 | "atomic group that do not share the highest priority source from that group" |
| 1642 | "ignored."; |
| 1643 | |
Doug Arnett | 620ff54 | 2018-02-06 17:54:22 | [diff] [blame] | 1644 | const char kPreviewsAllowedName[] = "Previews Allowed"; |
| 1645 | const char kPreviewsAllowedDescription[] = |
| 1646 | "Allows previews to be shown subject to specific preview types being " |
| 1647 | "enabled and the client experiencing specific triggering conditions. " |
| 1648 | "May be used as a kill-switch to turn off all potential preview types."; |
| 1649 | |
Jimmy Gong | 9859f39 | 2020-02-21 21:10:27 | [diff] [blame] | 1650 | const char kPrintJobManagementAppName[] = "Print Management App"; |
| 1651 | const char kPrintJobManagementAppDescription[] = |
| 1652 | "Enables the print management app that allows Chrome OS users to view " |
| 1653 | "and manage their native print jobs."; |
| 1654 | |
Sean Harrison | b65269e | 2019-10-15 14:44:17 | [diff] [blame] | 1655 | const char kPrivacySettingsRedesignName[] = "Privacy Settings Redesign"; |
| 1656 | const char kPrivacySettingsRedesignDescription[] = |
| 1657 | "Redesign of the privacy settings card to make it more prominent and " |
| 1658 | "and easier to use."; |
| 1659 | |
Andrey Zaytsev | 4b522fd | 2020-05-04 08:34:38 | [diff] [blame] | 1660 | const char kSafetyCheckAndroidName[] = "Safety Check on Android"; |
| 1661 | const char kSafetyCheckAndroidDescription[] = |
| 1662 | "A settings component for checking multiple areas of browser safety."; |
| 1663 | |
Dana Fried | ac7b8ff | 2019-09-18 21:27:57 | [diff] [blame] | 1664 | const char kProminentDarkModeActiveTabTitleName[] = |
| 1665 | "Prominent Dark Mode Active Tab Titles"; |
| 1666 | const char kProminentDarkModeActiveTabTitleDescription[] = |
| 1667 | "Makes the active tab title in dark mode bolder so the active tab is " |
| 1668 | "easier " |
| 1669 | "to identify."; |
| 1670 | |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 1671 | const char kPullToRefreshName[] = "Pull-to-refresh gesture"; |
| 1672 | const char kPullToRefreshDescription[] = |
| 1673 | "Pull-to-refresh gesture in response to vertical overscroll."; |
Mohsen Izadi | 8c59ba5 | 2018-04-12 18:52:01 | [diff] [blame] | 1674 | const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only"; |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 1675 | |
Troy Hildebrandt | 7228ad1 | 2018-02-23 21:18:24 | [diff] [blame] | 1676 | const char kQueryInOmniboxName[] = "Query in Omnibox"; |
| 1677 | const char kQueryInOmniboxDescription[] = |
| 1678 | "Only display query terms in the omnibox when viewing a search results " |
| 1679 | "page."; |
| 1680 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1681 | const char kQuicName[] = "Experimental QUIC protocol"; |
| 1682 | const char kQuicDescription[] = "Enable experimental QUIC protocol support."; |
| 1683 | |
Kamila | 2724bd70 | 2019-09-10 16:08:58 | [diff] [blame] | 1684 | const char kQuietNotificationPromptsName[] = |
| 1685 | "Quieter notification permission prompts"; |
| 1686 | const char kQuietNotificationPromptsDescription[] = |
| 1687 | "Enables quieter permission prompts for notification permission requests. " |
| 1688 | "When a site wishes to show notifications, the usual modal dialog is " |
| 1689 | "replaced with a quieter version."; |
| 1690 | |
Darwin Huang | f588cc8e | 2019-12-13 22:24:56 | [diff] [blame] | 1691 | const char kRawClipboardName[] = "Raw Clipboard"; |
| 1692 | const char kRawClipboardDescription[] = |
| 1693 | "Allows raw / unsanitized clipboard content to be read and written. " |
| 1694 | "See https://github.com/WICG/raw-clipboard-access."; |
| 1695 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1696 | const char kReducedReferrerGranularityName[] = |
| 1697 | "Reduce default 'referer' header granularity."; |
| 1698 | const char kReducedReferrerGranularityDescription[] = |
| 1699 | "If a page hasn't set an explicit referrer policy, setting this flag will " |
| 1700 | "reduce the amount of information in the 'referer' header for cross-origin " |
| 1701 | "requests."; |
| 1702 | |
Christian Dullweber | 3cc579a2 | 2018-09-11 10:54:44 | [diff] [blame] | 1703 | const char kRewriteLevelDBOnDeletionName[] = |
| 1704 | "Rewrite LevelDB instances after full deletions"; |
| 1705 | const char kRewriteLevelDBOnDeletionDescription[] = |
| 1706 | "Rewrite LevelDB instances to remove traces of deleted data from disk."; |
| 1707 | |
David Bokan | 5a32e4d | 2019-08-14 15:37:46 | [diff] [blame] | 1708 | const char kRequestUnbufferedDispatchName[] = "Use RequestUnbufferedDispatch"; |
| 1709 | const char kRequestUnbufferedDispatchDescription[] = |
| 1710 | "Calls RequestUnbufferedDispatch in the Android API to disable buffering " |
| 1711 | "of input by the OS."; |
| 1712 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1713 | const char kRequestTabletSiteName[] = |
| 1714 | "Request tablet site option in the settings menu"; |
| 1715 | const char kRequestTabletSiteDescription[] = |
| 1716 | "Allows the user to request tablet site. Web content is often optimized " |
| 1717 | "for tablet devices. When this option is selected the user agent string is " |
| 1718 | "changed to indicate a tablet device. Web content optimized for tablets is " |
| 1719 | "received there after for the current tab."; |
| 1720 | |
Dominic Farolino | 780df94 | 2019-09-04 06:49:44 | [diff] [blame] | 1721 | const char kPrefetchPrivacyChangesName[] = |
| 1722 | "Prefetch request properties are updated to be privacy-preserving"; |
| 1723 | const char kPrefetchPrivacyChangesDescription[] = |
| 1724 | "Prefetch requests will not follow redirects, not send a Referer header, " |
| 1725 | "not send credentials for cross-origin requests, and do not pass through " |
| 1726 | "service workers."; |
Dominic Farolino | 693fd72d | 2019-08-05 11:09:44 | [diff] [blame] | 1727 | |
Gavin Williams | dfdb239 | 2020-02-20 21:07:06 | [diff] [blame] | 1728 | const char kPrinterStatusName[] = "Show printer Status"; |
| 1729 | const char kPrinterStatusDescription[] = |
| 1730 | "Enables printer status icons and labels for saved and nearby printers"; |
| 1731 | |
Joe DeBlasio | fb27709 | 2019-07-03 23:46:36 | [diff] [blame] | 1732 | const char kSafetyTipName[] = |
| 1733 | "Show Safety Tip UI when visiting low-reputation websites"; |
| 1734 | const char kSafetyTipDescription[] = |
| 1735 | "If enabled, a Safety Tip UI may be displayed when visiting or interacting " |
| 1736 | "with a site Chrome believes may be suspicious."; |
| 1737 | |
Lily Chen | e0d3ac9 | 2019-04-22 16:55:53 | [diff] [blame] | 1738 | const char kSameSiteByDefaultCookiesName[] = "SameSite by default cookies"; |
| 1739 | const char kSameSiteByDefaultCookiesDescription[] = |
| 1740 | "Treat cookies that don't specify a SameSite attribute as if they were " |
| 1741 | "SameSite=Lax. Sites must specify SameSite=None in order to enable " |
| 1742 | "third-party usage."; |
| 1743 | |
Charlene Yan | 0ccd7f5 | 2019-04-12 23:20:59 | [diff] [blame] | 1744 | const char kScrollableTabStripName[] = "Scrollable TabStrip"; |
| 1745 | const char kScrollableTabStripDescription[] = |
| 1746 | "Allows users to access tabs by scrolling when they no longer fit in the " |
| 1747 | "tabstrip."; |
| 1748 | |
David Bokan | ebe23cc5 | 2020-05-11 18:20:46 | [diff] [blame] | 1749 | const char kScrollUnificationName[] = "Scroll Unification"; |
| 1750 | const char kScrollUnificationDescription[] = |
| 1751 | "Refactoring project that eliminates scroll handling code from Blink. " |
| 1752 | "Does not affect behavior or performance."; |
| 1753 | |
Sophey Dong | 02d3943 | 2020-03-26 23:31:04 | [diff] [blame] | 1754 | const char kSendTabToSelfOmniboxSendingAnimationName[] = |
| 1755 | "Send tab to self omnibox sending animation"; |
| 1756 | const char kSendTabToSelfOmniboxSendingAnimationDescription[] = |
| 1757 | "If enabled, shows Sending... animation in omnibox instead of Desktop OS " |
| 1758 | "notifications for contextual menu entry points."; |
| 1759 | |
Matt Falkenhagen | 8af3b7e | 2019-10-01 14:44:16 | [diff] [blame] | 1760 | const char kServiceWorkerOnUIName[] = "Service worker on UI thread"; |
| 1761 | const char kServiceWorkerOnUIDescription[] = |
| 1762 | "Enables browser process logic related to service workers to run on the UI " |
| 1763 | "thread rather than the IO thread."; |
| 1764 | |
Yasmin | 69a132f | 2019-08-07 15:30:36 | [diff] [blame] | 1765 | const char kSharedClipboardUIName[] = |
| 1766 | "Enable shared clipboard feature signals to be handled"; |
| 1767 | const char kSharedClipboardUIDescription[] = |
| 1768 | "Enables shared clipboard feature signals to be handled by showing " |
| 1769 | "a list of user's available devices to share the clipboard."; |
| 1770 | |
Himanshu Jaju | 8cf9c24 | 2019-11-06 13:52:53 | [diff] [blame] | 1771 | const char kSharingPeerConnectionReceiverName[] = |
| 1772 | "Enable receiver device to handle peer connection requests."; |
| 1773 | const char kSharingPeerConnectionReceiverDescription[] = |
| 1774 | "Enables receiver device to connect and share data using a peer to peer " |
| 1775 | "connection."; |
| 1776 | |
| 1777 | const char kSharingPeerConnectionSenderName[] = |
| 1778 | "Enable sender device to initiate peer connection requests."; |
| 1779 | const char kSharingPeerConnectionSenderDescription[] = |
| 1780 | "Enables the sender devices to connect with chosen device using a peer to " |
| 1781 | "peer connection for transferring data."; |
| 1782 | |
Alex Chau | d788684 | 2020-05-13 15:37:05 | [diff] [blame] | 1783 | const char kSharingPreferVapidName[] = |
| 1784 | "Prefer sending Sharing message via VAPID"; |
| 1785 | const char kSharingPreferVapidDescription[] = |
| 1786 | "Prefer sending Sharing message via FCM WebPush authenticated using VAPID."; |
| 1787 | |
Travis Skare | 139deb7 | 2019-12-05 21:25:06 | [diff] [blame] | 1788 | const char kSharingQRCodeGeneratorName[] = "Enable sharing page via QR Code"; |
| 1789 | const char kSharingQRCodeGeneratorDescription[] = |
| 1790 | "Enables right-click UI to share the page's URL via a generated QR Code."; |
| 1791 | |
Alex Chau | f15a719 | 2020-01-30 17:37:51 | [diff] [blame] | 1792 | const char kSharingSendViaSyncName[] = |
| 1793 | "Enable sending Sharing message via Sync"; |
| 1794 | const char kSharingSendViaSyncDescription[] = |
| 1795 | "Enables sending Sharing message via commiting to Chrome Sync's " |
| 1796 | "SHARING_MESSAGE data type"; |
| 1797 | |
Michael van Ouwerkerk | 99d7e56 | 2019-12-03 17:14:36 | [diff] [blame] | 1798 | const char kSharingDeviceExpirationName[] = |
| 1799 | "Configures sharing device expiration"; |
| 1800 | const char kSharingDeviceExpirationDescription[] = |
| 1801 | "Configures how long after a device was last active that it is eligible " |
| 1802 | "for use in sharing features."; |
| 1803 | |
Manu Cornet | eb3c7d3 | 2019-06-20 08:04:44 | [diff] [blame] | 1804 | const char kShelfHotseatName[] = "Enable a modular design for the shelf."; |
| 1805 | const char kShelfHotseatDescription[] = |
| 1806 | "Shows a modular design for the shelf where the apps are shown separately " |
| 1807 | "in a 'hotseat' interface when in tablet mode, and where various pieces " |
Manu Cornet | 2bacefe | 2019-09-12 00:21:30 | [diff] [blame] | 1808 | "are separate and behave independently. Also reduces the size of the" |
| 1809 | "shelf and its app when in laptop mode."; |
Manu Cornet | eb3c7d3 | 2019-06-20 08:04:44 | [diff] [blame] | 1810 | |
Manu Cornet | d7ef7c5 | 2018-05-01 22:08:23 | [diff] [blame] | 1811 | const char kShelfHoverPreviewsName[] = |
| 1812 | "Show previews of running apps when hovering over the shelf."; |
| 1813 | const char kShelfHoverPreviewsDescription[] = |
| 1814 | "Shows previews of the open windows for a given running app when hovering " |
| 1815 | "over the shelf."; |
| 1816 | |
Naoki Fukino | 008a002 | 2018-05-23 18:33:00 | [diff] [blame] | 1817 | const char kShowAndroidFilesInFilesAppName[] = |
| 1818 | "Show Android files in Files app"; |
| 1819 | const char kShowAndroidFilesInFilesAppDescription[] = |
| 1820 | "Show Android files in Files app if Android is enabled on the device."; |
| 1821 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1822 | const char kShowAutofillSignaturesName[] = "Show autofill signatures."; |
| 1823 | const char kShowAutofillSignaturesDescription[] = |
Maxim Kolosovskiy | e66f8cb | 2018-03-23 10:25:38 | [diff] [blame] | 1824 | "Annotates web forms with Autofill signatures as HTML attributes. Also " |
| 1825 | "marks password fields suitable for password generation."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1826 | |
| 1827 | const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions"; |
| 1828 | const char kShowAutofillTypePredictionsDescription[] = |
| 1829 | "Annotates web forms with Autofill field type predictions as placeholder " |
| 1830 | "text."; |
| 1831 | |
pwarren | 87867167 | 2019-12-13 19:18:16 | [diff] [blame] | 1832 | const char kShowOverdrawFeedbackName[] = "Show overdraw feedback"; |
| 1833 | const char kShowOverdrawFeedbackDescription[] = |
| 1834 | "Visualize overdraw by color-coding elements based on if they have other " |
| 1835 | "elements drawn underneath."; |
| 1836 | |
kylechar | e8835ca9 | 2020-03-16 15:34:58 | [diff] [blame] | 1837 | const char kSkiaRendererName[] = "Skia API for compositing"; |
Jonathan Backer | 93610a8 | 2019-03-27 14:02:38 | [diff] [blame] | 1838 | const char kSkiaRendererDescription[] = |
| 1839 | "If enabled, the display compositor will use Skia as the graphics API " |
kylechar | e8835ca9 | 2020-03-16 15:34:58 | [diff] [blame] | 1840 | "instead of OpenGL ES."; |
Jonathan Backer | 93610a8 | 2019-03-27 14:02:38 | [diff] [blame] | 1841 | |
Shivani Sharma | 2d5b4b6b | 2019-01-08 16:07:16 | [diff] [blame] | 1842 | const char kHistoryManipulationIntervention[] = |
| 1843 | "History Manipulation Intervention"; |
| 1844 | const char kHistoryManipulationInterventionDescription[] = |
| 1845 | "If a page does a client side redirect or adds to the history without a " |
| 1846 | "user gesture, then skip it on back/forward UI."; |
| 1847 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1848 | const char kSilentDebuggerExtensionApiName[] = "Silent Debugging"; |
| 1849 | const char kSilentDebuggerExtensionApiDescription[] = |
| 1850 | "Do not show the infobar when an extension attaches to a page via " |
| 1851 | "chrome.debugger API. This is required to debug extension background " |
| 1852 | "pages."; |
| 1853 | |
Lukasz Anforowicz | d2e16e6 | 2019-03-28 19:06:59 | [diff] [blame] | 1854 | const char kIsolateOriginsName[] = "Isolate additional origins"; |
| 1855 | const char kIsolateOriginsDescription[] = |
| 1856 | "Requires dedicated processes for an additional set of origins, " |
| 1857 | "specified as a comma-separated list."; |
| 1858 | |
Lukasz Anforowicz | 738a88d | 2018-11-05 19:19:34 | [diff] [blame] | 1859 | const char kSiteIsolationOptOutName[] = "Disable site isolation"; |
| 1860 | const char kSiteIsolationOptOutDescription[] = |
| 1861 | "Disables site isolation " |
Nick Carter | 855bc49 | 2018-03-10 00:44:57 | [diff] [blame] | 1862 | "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that " |
| 1863 | "may be due to out-of-process iframes. Opt-out has no effect if site " |
Lukasz Anforowicz | 4284042 | 2018-11-05 21:49:22 | [diff] [blame] | 1864 | "isolation is force-enabled using a command line switch or using an " |
| 1865 | "enterprise policy. " |
| 1866 | "Caution: this disables important mitigations for the Spectre CPU " |
Nick Carter | 855bc49 | 2018-03-10 00:44:57 | [diff] [blame] | 1867 | "vulnerability affecting most computers."; |
Lukasz Anforowicz | 738a88d | 2018-11-05 19:19:34 | [diff] [blame] | 1868 | const char kSiteIsolationOptOutChoiceDefault[] = "Default"; |
| 1869 | const char kSiteIsolationOptOutChoiceOptOut[] = "Disabled (not recommended)"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1870 | |
Jesse McKenna | 4cf4c917 | 2019-12-14 05:10:58 | [diff] [blame] | 1871 | const char kSlowDCTimerInterruptsWinName[] = "Slow maximum DC interrupt timer"; |
| 1872 | const char kSlowDCTimerInterruptsWinDescription[] = |
| 1873 | "Slow the maximum interrupt timer on battery power to 8 ms, instead of the " |
| 1874 | "default 4 ms."; |
| 1875 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1876 | const char kSmoothScrollingName[] = "Smooth Scrolling"; |
| 1877 | const char kSmoothScrollingDescription[] = |
| 1878 | "Animate smoothly when scrolling page content."; |
| 1879 | |
Sam Goto | 09d69a1 | 2019-11-20 23:56:56 | [diff] [blame] | 1880 | const char kSmsReceiverCrossDeviceName[] = "SMS Receiver Cross Device"; |
| 1881 | const char kSmsReceiverCrossDeviceDescription[] = |
| 1882 | "Enable the SMS Receiver API to work across devices"; |
| 1883 | |
Justin Donnelly | 4e448cb | 2017-07-07 21:32:13 | [diff] [blame] | 1884 | const char kSpeculativeServiceWorkerStartOnQueryInputName[] = |
| 1885 | "Enable speculative start of a service worker when a search is predicted."; |
Justin Donnelly | 4e448cb | 2017-07-07 21:32:13 | [diff] [blame] | 1886 | const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] = |
| 1887 | "If enabled, when the user enters text in the omnibox that looks like a " |
| 1888 | "a query, any service worker associated with the search engine the query " |
| 1889 | "will be sent to is started early."; |
| 1890 | |
Daniele Castagna | e896ab9 | 2020-03-16 04:11:52 | [diff] [blame] | 1891 | const char kSplitPartiallyOccludedQuadsName[] = |
| 1892 | "Split partially occluded quads"; |
| 1893 | const char kSplitPartiallyOccludedQuadsDescription[] = |
| 1894 | "Split partially occluded quads before drawing, discarding the occluded " |
Daniele Castagna | 7588556 | 2020-04-09 17:11:39 | [diff] [blame] | 1895 | "regions, in order to reduce compositing overdraw."; |
Daniele Castagna | e896ab9 | 2020-03-16 04:11:52 | [diff] [blame] | 1896 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 1897 | const char kStrictOriginIsolationName[] = "Strict-Origin-Isolation"; |
| 1898 | const char kStrictOriginIsolationDescription[] = |
W. James MacLean | f79c97e | 2019-05-02 20:35:46 | [diff] [blame] | 1899 | "Experimental security mode that strengthens the site isolation policy. " |
| 1900 | "Controls whether site isolation should use origins instead of scheme and " |
| 1901 | "eTLD+1."; |
| 1902 | |
Shubhie Panicker | faf082ed | 2018-01-03 04:49:15 | [diff] [blame] | 1903 | const char kStopInBackgroundName[] = "Stop in background"; |
| 1904 | const char kStopInBackgroundDescription[] = |
| 1905 | "Stop scheduler task queues, in the background, " |
Shubhie Panicker | 56c99a2 | 2018-03-21 00:22:28 | [diff] [blame] | 1906 | " after a grace period."; |
Shubhie Panicker | faf082ed | 2018-01-03 04:49:15 | [diff] [blame] | 1907 | |
Shubhie Panicker | 56c99a2 | 2018-03-21 00:22:28 | [diff] [blame] | 1908 | const char kStopNonTimersInBackgroundName[] = |
| 1909 | "Stop non-timer task queues background"; |
| 1910 | const char kStopNonTimersInBackgroundDescription[] = |
| 1911 | "Stop non-timer task queues, in the background, " |
| 1912 | "after a grace period."; |
| 1913 | |
Brandon Maslen | da12cf8 | 2019-08-23 20:54:18 | [diff] [blame] | 1914 | const char kStorageAccessAPIName[] = "Storage Access API"; |
| 1915 | const char kStorageAccessAPIDescription[] = |
| 1916 | "Enables the Storage Access API, allowing websites to request storage " |
| 1917 | "access when it would otherwise be restricted."; |
| 1918 | |
Jarryd | 5b6e5ce | 2019-08-23 19:15:48 | [diff] [blame] | 1919 | const char kStoragePressureUIName[] = "Enable storage pressure UI"; |
| 1920 | const char kStoragePressureUIDescription[] = |
| 1921 | "If enabled, Chrome will trigger system notifications to warn about " |
| 1922 | "storage pressure."; |
| 1923 | |
Rachel Wong | bae7dfd | 2020-05-08 01:22:30 | [diff] [blame] | 1924 | const char kSuggestedContentToggleName[] = "Enable Suggested Content toggle"; |
| 1925 | const char kSuggestedContentToggleDescription[] = |
| 1926 | "Enables a settings UI toggle that controls Suggested Content status. Also" |
| 1927 | "enables a corresponding notice in the Launcher about Suggested Content."; |
| 1928 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1929 | const char kSuggestionsWithSubStringMatchName[] = |
| 1930 | "Substring matching for Autofill suggestions"; |
| 1931 | const char kSuggestionsWithSubStringMatchDescription[] = |
| 1932 | "Match Autofill suggestions based on substrings (token prefixes) rather " |
| 1933 | "than just prefixes."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1934 | |
Himanshu Jaju | e760efb | 2019-10-17 11:07:53 | [diff] [blame] | 1935 | const char kSyncDeviceInfoInTransportModeName[] = |
| 1936 | "Enable syncing DeviceInfo in transport-only sync mode."; |
| 1937 | const char kSyncDeviceInfoInTransportModeDescription[] = |
| 1938 | "When enabled, allows syncing DeviceInfo datatype for users who are " |
| 1939 | "signed-in but not necessary sync-ing."; |
| 1940 | |
Tanmoy Mollik | a6ef18a | 2020-01-28 12:24:34 | [diff] [blame] | 1941 | const char kSyncErrorInfoBarName[] = "Enable SyncErrorInfoBar."; |
| 1942 | const char kSyncErrorInfoBarDescription[] = |
| 1943 | "When enabled, shows an infobar for sync errors that can be resolved " |
| 1944 | "by user interaction in the settings page."; |
| 1945 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1946 | const char kSyncSandboxName[] = "Use Chrome Sync sandbox"; |
| 1947 | const char kSyncSandboxDescription[] = |
| 1948 | "Connects to the testing server for Chrome Sync."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1949 | |
Joe Downing | 8cbbc19 | 2018-05-14 17:37:07 | [diff] [blame] | 1950 | const char kSystemKeyboardLockName[] = "Experimental system keyboard lock"; |
| 1951 | const char kSystemKeyboardLockDescription[] = |
| 1952 | "Enables websites to use the keyboard.lock() API to intercept system " |
| 1953 | "keyboard shortcuts and have the events routed directly to the website " |
| 1954 | "when in fullscreen mode."; |
| 1955 | |
Ahmed Mehfooz | ac33a0c | 2020-04-01 01:33:18 | [diff] [blame] | 1956 | const char kSystemTrayMicGainName[] = "Modify mic gain in the system tray"; |
| 1957 | const char kSystemTrayMicGainDescription[] = |
| 1958 | "Enables mic gain settings in the system tray audio " |
| 1959 | "settings."; |
| 1960 | |
Matt Simmons | 1fd0c9f | 2019-04-15 19:08:22 | [diff] [blame] | 1961 | const char kTabEngagementReportingName[] = "Tab Engagement Metrics"; |
| 1962 | const char kTabEngagementReportingDescription[] = |
| 1963 | "Tracks tab engagement and lifetime metrics."; |
| 1964 | |
Yusuf Ozuysal | 67f05a0 | 2019-02-15 19:30:52 | [diff] [blame] | 1965 | const char kTabGridLayoutAndroidName[] = "Tab Grid Layout"; |
| 1966 | const char kTabGridLayoutAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 1967 | "Allows users to see their tabs in a grid layout in the tab switcher on " |
| 1968 | "phones."; |
Yusuf Ozuysal | 67f05a0 | 2019-02-15 19:30:52 | [diff] [blame] | 1969 | |
Yusuf Ozuysal | 436d90b8 | 2019-03-15 22:17:58 | [diff] [blame] | 1970 | const char kTabGroupsAndroidName[] = "Tab Groups"; |
| 1971 | const char kTabGroupsAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 1972 | "Allows users to create groups to better organize their tabs on phones."; |
Yusuf Ozuysal | 436d90b8 | 2019-03-15 22:17:58 | [diff] [blame] | 1973 | |
Yue Zhang | e561010 | 2019-11-01 19:46:39 | [diff] [blame] | 1974 | const char kTabGroupsContinuationAndroidName[] = "Tab Groups Continuation"; |
| 1975 | const char kTabGroupsContinuationAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 1976 | "Allows users to access continuation features in Tab Group on phones."; |
Yue Zhang | e561010 | 2019-11-01 19:46:39 | [diff] [blame] | 1977 | |
Yue Zhang | 2834d6b | 2019-05-01 17:30:28 | [diff] [blame] | 1978 | const char kTabGroupsUiImprovementsAndroidName[] = "Tab Groups UI Improvements"; |
| 1979 | const char kTabGroupsUiImprovementsAndroidDescription[] = |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 1980 | "Allows users to access new features in Tab Group UI on phones."; |
Yue Zhang | 2834d6b | 2019-05-01 17:30:28 | [diff] [blame] | 1981 | |
Wei-Yin Chen (陳威尹) | 10222249 | 2019-05-22 19:27:09 | [diff] [blame] | 1982 | const char kTabToGTSAnimationAndroidName[] = "Enable Tab-to-GTS Animation"; |
| 1983 | const char kTabToGTSAnimationAndroidDescription[] = |
| 1984 | "Allows users to see an animation when entering or leaving the " |
Yue Zhang | 5a167c7 | 2020-03-16 16:56:46 | [diff] [blame] | 1985 | "Grid Tab Switcher on phones."; |
Wei-Yin Chen (陳威尹) | 10222249 | 2019-05-22 19:27:09 | [diff] [blame] | 1986 | |
Taylor Bergquist | bcc1546 | 2018-12-05 00:36:56 | [diff] [blame] | 1987 | const char kTabGroupsName[] = "Tab Groups"; |
| 1988 | const char kTabGroupsDescription[] = |
| 1989 | "Allows users to organize tabs into visually distinct groups, e.g. to " |
| 1990 | "separate tabs associated with different tasks."; |
| 1991 | |
Charlene Yan | d4923529 | 2020-03-14 00:55:43 | [diff] [blame] | 1992 | const char kTabGroupsCollapseName[] = "Tab Groups Collapse"; |
| 1993 | const char kTabGroupsCollapseDescription[] = |
| 1994 | "Allows a tab group to be collapsible and expandable, if tab groups are " |
| 1995 | "enabled."; |
| 1996 | |
Charlene Yan | 5b80e05 | 2020-04-02 20:48:56 | [diff] [blame] | 1997 | const char kTabGroupsFeedbackName[] = "Tab Groups Feedback"; |
| 1998 | const char kTabGroupsFeedbackDescription[] = |
| 1999 | "Enables the feedback app to appear in the tab group editor bubble, if tab " |
| 2000 | "groups are enabled."; |
| 2001 | |
Caroline Rising | e121c2b | 2018-12-03 20:19:29 | [diff] [blame] | 2002 | const char kTabHoverCardsName[] = "Tab Hover Cards"; |
| 2003 | const char kTabHoverCardsDescription[] = |
| 2004 | "Enables a popup containing tab information to be visible when hovering " |
| 2005 | "over a tab. This will replace tooltips for tabs."; |
| 2006 | |
Dana Fried | acaa8ef5 | 2019-02-08 02:20:35 | [diff] [blame] | 2007 | const char kTabHoverCardImagesName[] = "Tab Hover Card Images"; |
| 2008 | const char kTabHoverCardImagesDescription[] = |
| 2009 | "Shows a preview image in tab hover cards, if tab hover cards are enabled."; |
| 2010 | |
Dana Fried | 07b03c6 | 2019-07-31 19:20:56 | [diff] [blame] | 2011 | const char kTabOutlinesInLowContrastThemesName[] = |
| 2012 | "Tab Outlines in Low Contrast Themes"; |
| 2013 | const char kTabOutlinesInLowContrastThemesDescription[] = |
| 2014 | "Expands the range of situations in which tab outline strokes are " |
| 2015 | "displayed, improving accessiblity in dark and incognito mode."; |
| 2016 | |
Daniele Castagna | 0fead93e | 2018-01-10 20:40:29 | [diff] [blame] | 2017 | const char kTintGlCompositedContentName[] = "Tint GL-composited content"; |
| 2018 | const char kTintGlCompositedContentDescription[] = |
| 2019 | "Tint contents composited using GL with a shade of red to help debug and " |
| 2020 | "study overlay support."; |
| 2021 | |
David Benjamin | b9c645c | 2019-10-09 23:49:11 | [diff] [blame] | 2022 | const char kTLS13HardeningForLocalAnchorsName[] = |
| 2023 | "TLS 1.3 hardening for local anchors"; |
| 2024 | const char kTLS13HardeningForLocalAnchorsDescription[] = |
| 2025 | "This option enables the TLS 1.3 downgrade hardening mechanism for " |
| 2026 | "connections authenticated by local trust anchors. This improves security " |
| 2027 | "for connections to TLS-1.3-capable servers while remaining compatible " |
| 2028 | "with older servers. Firewalls and proxies that do not function when this " |
| 2029 | "is enabled do not implement TLS 1.2 correctly or securely and must be " |
| 2030 | "updated."; |
| 2031 | |
Peter Kasting | d7742835 | 2018-10-26 15:20:25 | [diff] [blame] | 2032 | const char kTopChromeTouchUiName[] = "Touch UI Layout"; |
| 2033 | const char kTopChromeTouchUiDescription[] = |
| 2034 | "Enables touch UI layout in the browser's top chrome."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2035 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2036 | const char kThreadedScrollingName[] = "Threaded scrolling"; |
| 2037 | const char kThreadedScrollingDescription[] = |
| 2038 | "Threaded handling of scroll-related input events. Disabling this will " |
| 2039 | "force all such scroll events to be handled on the main thread. Note that " |
| 2040 | "this can dramatically hurt scrolling performance of most websites and is " |
| 2041 | "intended for testing purposes only."; |
| 2042 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2043 | const char kTouchAdjustmentName[] = "Touch adjustment"; |
| 2044 | const char kTouchAdjustmentDescription[] = |
| 2045 | "Refine the position of a touch gesture in order to compensate for touches " |
| 2046 | "having poor resolution compared to a mouse."; |
| 2047 | |
| 2048 | const char kTouchDragDropName[] = "Touch initiated drag and drop"; |
| 2049 | const char kTouchDragDropDescription[] = |
| 2050 | "Touch drag and drop can be initiated through long press on a draggable " |
| 2051 | "element."; |
| 2052 | |
| 2053 | const char kTouchEventsName[] = "Touch Events API"; |
| 2054 | const char kTouchEventsDescription[] = |
| 2055 | "Force Touch Events API feature detection to always be enabled or " |
| 2056 | "disabled, or to be enabled when a touchscreen is detected on startup " |
Ella Ge | a6a203c9 | 2017-10-26 19:09:29 | [diff] [blame] | 2057 | "(Automatic)."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2058 | |
| 2059 | const char kTouchSelectionStrategyName[] = "Touch text selection strategy"; |
| 2060 | const char kTouchSelectionStrategyDescription[] = |
| 2061 | "Controls how text selection granularity changes when touch text selection " |
| 2062 | "handles are dragged. Non-default behavior is experimental."; |
| 2063 | const char kTouchSelectionStrategyCharacter[] = "Character"; |
| 2064 | const char kTouchSelectionStrategyDirection[] = "Direction"; |
| 2065 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 2066 | const char kTouchpadOverscrollHistoryNavigationName[] = |
| 2067 | "Overscroll history navigation on Touchpad"; |
| 2068 | const char kTouchpadOverscrollHistoryNavigationDescription[] = |
| 2069 | "Allows swipe left/right from touchpad change browser navigation."; |
| 2070 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2071 | const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; |
| 2072 | const char kTraceUploadUrlDescription[] = |
| 2073 | "This is to be used in conjunction with the enable-navigation-tracing " |
| 2074 | "flag. Please select the label that best describes the recorded traces. " |
| 2075 | "This will choose the destination the traces are uploaded to. If you are " |
| 2076 | "not sure, select other. If left empty, no traces will be uploaded."; |
| 2077 | const char kTraceUploadUrlChoiceOther[] = "Other"; |
| 2078 | const char kTraceUploadUrlChoiceEmloading[] = "emloading"; |
| 2079 | const char kTraceUploadUrlChoiceQa[] = "QA"; |
| 2080 | const char kTraceUploadUrlChoiceTesting[] = "Testing"; |
| 2081 | |
Anthony Vallee-Dubois | 265c569 | 2018-06-01 15:57:14 | [diff] [blame] | 2082 | const char kTranslateForceTriggerOnEnglishName[] = |
| 2083 | "Select which language model to use to trigger translate on English " |
| 2084 | "content"; |
| 2085 | const char kTranslateForceTriggerOnEnglishDescription[] = |
| 2086 | "Force the Translate Triggering on English pages experiment to be enabled " |
| 2087 | "with the selected language model active."; |
| 2088 | |
Haohao Wang | 5b525f72 | 2019-05-18 15:37:52 | [diff] [blame] | 2089 | const char kTranslateBubbleUIName[] = |
| 2090 | "Select which UI to use for translate bubble"; |
| 2091 | const char kTranslateBubbleUIDescription[] = |
| 2092 | "Three bubble options to choose. Existing UI is selected by default"; |
| 2093 | |
Mustafa Emre Acer | b3aa36a8 | 2018-05-22 21:44:05 | [diff] [blame] | 2094 | const char kTreatInsecureOriginAsSecureName[] = |
| 2095 | "Insecure origins treated as secure"; |
| 2096 | const char kTreatInsecureOriginAsSecureDescription[] = |
| 2097 | "Treat given (insecure) origins as secure origins. Multiple origins can be " |
Alan Cutter | 733ec9a | 2019-08-27 15:33:13 | [diff] [blame] | 2098 | "supplied as a comma-separated list. Origins must have their protocol " |
| 2099 | "specified e.g. \"http://example.com\". For the definition of secure " |
| 2100 | "contexts, see https://w3c.github.io/webappsec-secure-contexts/"; |
Mustafa Emre Acer | b3aa36a8 | 2018-05-22 21:44:05 | [diff] [blame] | 2101 | |
Joe DeBlasio | 2a4fb998 | 2019-05-06 23:44:43 | [diff] [blame] | 2102 | const char kTreatUnsafeDownloadsAsActiveName[] = |
| 2103 | "Treat risky downloads over insecure connections as active mixed content"; |
| 2104 | const char kTreatUnsafeDownloadsAsActiveDescription[] = |
| 2105 | "Disallows downloads of unsafe files (files that can potentially execute " |
| 2106 | "code), where the final download origin or any origin in the redirect " |
| 2107 | "chain is insecure if the originating page is secure."; |
| 2108 | |
David Van Cleve | 08c5bc01 | 2020-03-26 17:31:46 | [diff] [blame] | 2109 | const char kTrustTokensName[] = "Enable Trust Tokens"; |
| 2110 | const char kTrustTokensDescription[] = |
| 2111 | "Enables the prototype Trust Token API " |
| 2112 | "(https://github.com/wicg/trust-token-api)."; |
| 2113 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2114 | const char kTrySupportedChannelLayoutsName[] = |
| 2115 | "Causes audio output streams to check if channel layouts other than the " |
| 2116 | "default hardware layout are available."; |
| 2117 | const char kTrySupportedChannelLayoutsDescription[] = |
| 2118 | "Causes audio output streams to check if channel layouts other than the " |
| 2119 | "default hardware layout are available. Turning this on will allow the OS " |
| 2120 | "to do stereo to surround expansion if supported. May expose third party " |
| 2121 | "driver bugs, use with caution."; |
| 2122 | |
Shawn Pickett | 0b47071 | 2019-08-15 00:43:45 | [diff] [blame] | 2123 | const char kTurnOffStreamingMediaCachingName[] = |
| 2124 | "Turn off caching of streaming media to disk."; |
| 2125 | const char kTurnOffStreamingMediaCachingDescription[] = |
| 2126 | "Reduces disk activity during media playback, which can result in " |
| 2127 | "power savings."; |
| 2128 | |
François Beaufort | db160c1 | 2019-05-01 06:28:14 | [diff] [blame] | 2129 | const char kUnsafeWebGPUName[] = "Unsafe WebGPU"; |
| 2130 | const char kUnsafeWebGPUDescription[] = |
Rafael Cintron | 9bce9f6e | 2019-12-19 04:05:05 | [diff] [blame] | 2131 | "Enables access to the experimental WebGPU API. Warning: As GPU sandboxing " |
François Beaufort | db160c1 | 2019-05-01 06:28:14 | [diff] [blame] | 2132 | "isn't implemented yet for the WebGPU API, it is possible to read GPU data " |
| 2133 | "for other processes."; |
| 2134 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2135 | const char kUiPartialSwapName[] = "Partial swap"; |
| 2136 | const char kUiPartialSwapDescription[] = "Sets partial swap behavior."; |
| 2137 | |
Vadym Doroshenko | a063a51 | 2019-12-12 17:59:07 | [diff] [blame] | 2138 | const char kUsernameFirstFlowName[] = "Username first flow"; |
| 2139 | const char kUsernameFirstFlowDescription[] = |
| 2140 | "Support of username saving and filling on username first flow i.e. login " |
Vadym Doroshenko | b7f9ef2 | 2019-07-16 13:51:06 | [diff] [blame] | 2141 | "flows where a user has to type username first on one page and then " |
| 2142 | "password on another page"; |
| 2143 | |
Jiahe Zhang | 6a55d9ba | 2019-12-14 02:59:46 | [diff] [blame] | 2144 | const char kUsePreferredIntervalForVideoName[] = |
| 2145 | "Use preferred interval for video"; |
| 2146 | const char kUsePreferredIntervalForVideoDescription[] = |
| 2147 | "When enabled, the composition rate will be changed based on the videos' " |
| 2148 | "actual fps."; |
| 2149 | |
Zentaro Kavanagh | 892851f | 2019-05-29 15:13:31 | [diff] [blame] | 2150 | const char kUseSearchClickForRightClickName[] = |
| 2151 | "Use Search+Click for right click"; |
| 2152 | const char kUseSearchClickForRightClickDescription[] = |
| 2153 | "When enabled search+click will be remapped to right click, allowing " |
| 2154 | "webpages and apps to consume alt+click. When disabled the legacy " |
| 2155 | "behavior of remapping alt+click to right click will remain unchanged."; |
| 2156 | |
Michael Hablich | 896d5266 | 2017-10-23 15:59:57 | [diff] [blame] | 2157 | const char kV8VmFutureName[] = "Future V8 VM features"; |
| 2158 | const char kV8VmFutureDescription[] = |
| 2159 | "This enables upcoming and experimental V8 VM features. " |
| 2160 | "This flag does not enable experimental JavaScript features."; |
| 2161 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2162 | const char kWalletServiceUseSandboxName[] = |
| 2163 | "Use Google Payments sandbox servers"; |
| 2164 | const char kWalletServiceUseSandboxDescription[] = |
| 2165 | "For developers: use the sandbox service for Google Payments API calls."; |
| 2166 | |
Ovidio Henriquez | 3d729f6 | 2020-02-07 00:43:29 | [diff] [blame] | 2167 | const char kWebBluetoothNewPermissionsBackendName[] = |
| 2168 | "Use the new permissions backend for Web Bluetooth"; |
| 2169 | const char kWebBluetoothNewPermissionsBackendDescription[] = |
| 2170 | "Enables the new permissions backend for Web Bluetooth. This will enable " |
| 2171 | "persistent storage of device permissions."; |
| 2172 | |
Tsuyoshi Horo | abfb079d | 2019-10-17 02:09:06 | [diff] [blame] | 2173 | const char kWebBundlesName[] = "Web Bundles"; |
| 2174 | const char kWebBundlesDescription[] = |
| 2175 | "Enables experimental supports for Web Bundles (Bundled HTTP Exchanges) " |
| 2176 | "navigation."; |
| 2177 | |
Ayu Ishii | dbdd5c9 | 2020-03-20 23:40:52 | [diff] [blame] | 2178 | const char kWebOtpBackendName[] = "Web OTP"; |
| 2179 | const char kWebOtpBackendDescription[] = |
| 2180 | "Enables Web OTP API that uses the specified backend."; |
| 2181 | const char kWebOtpBackendSmsVerification[] = |
| 2182 | "SMS Verification API (requires app-hash)"; |
| 2183 | const char kWebOtpBackendUserConsent[] = "User Consent API"; |
| 2184 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2185 | const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions"; |
| 2186 | const char kWebglDraftExtensionsDescription[] = |
| 2187 | "Enabling this option allows web applications to access the WebGL " |
| 2188 | "Extensions that are still in draft status."; |
| 2189 | |
Danyao Wang | 47a0f31 | 2019-05-09 20:52:24 | [diff] [blame] | 2190 | const char kWebPaymentsExperimentalFeaturesName[] = |
| 2191 | "Experimental Web Payments API features"; |
| 2192 | const char kWebPaymentsExperimentalFeaturesDescription[] = |
| 2193 | "Enable experimental Web Payments API features"; |
| 2194 | |
Liquan (Max) Gu | 5f122397 | 2019-12-13 21:07:10 | [diff] [blame] | 2195 | const char kWebPaymentsMinimalUIName[] = "Web Payments Minimal UI"; |
| 2196 | const char kWebPaymentsMinimalUIDescription[] = |
| 2197 | "Allow Payment Request API to open a minimal UI to replace the Payment " |
| 2198 | "Request UI when appropriate."; |
| 2199 | |
Liquan (Max) Gu | 8fcb919 | 2020-05-20 16:22:18 | [diff] [blame] | 2200 | const char kAppStoreBillingDebugName[] = |
| 2201 | "Web Payments App Store Billing Debug Mode"; |
| 2202 | const char kAppStoreBillingDebugDescription[] = |
| 2203 | "App-store purchases (e.g., Google Play Store) within a TWA can be " |
| 2204 | "requested using the Payment Request API. This flag removes the " |
| 2205 | "restriction that the TWA has to be installed from the app-store."; |
| 2206 | |
Per Åhgren | cef4426 | 2019-11-20 10:54:51 | [diff] [blame] | 2207 | const char kWebrtcCaptureMultiChannelApmName[] = |
| 2208 | "WebRTC multi-channel capture audio processing."; |
| 2209 | const char kWebrtcCaptureMultiChannelApmDescription[] = |
| 2210 | "Support in WebRTC for processing capture audio in multi channel without " |
| 2211 | "downmixing when running APM in the render process."; |
| 2212 | |
Qingsi Wang | ec2dbf94 | 2018-11-03 05:33:04 | [diff] [blame] | 2213 | const char kWebrtcHideLocalIpsWithMdnsName[] = |
| 2214 | "Anonymize local IPs exposed by WebRTC."; |
| 2215 | const char kWebrtcHideLocalIpsWithMdnsDecription[] = |
| 2216 | "Conceal local IP addresses with mDNS hostnames."; |
| 2217 | |
Alex Loiko | b5fb128 | 2018-08-14 10:04:40 | [diff] [blame] | 2218 | const char kWebrtcHybridAgcName[] = "WebRTC hybrid Agc2/Agc1."; |
| 2219 | const char kWebrtcHybridAgcDescription[] = |
| 2220 | "WebRTC Agc2 digital adaptation with Agc1 analog adaptation."; |
| 2221 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2222 | const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding"; |
| 2223 | const char kWebrtcHwDecodingDescription[] = |
| 2224 | "Support in WebRTC for decoding video streams using platform hardware."; |
| 2225 | |
| 2226 | const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding"; |
| 2227 | const char kWebrtcHwEncodingDescription[] = |
| 2228 | "Support in WebRTC for encoding video streams using platform hardware."; |
| 2229 | |
Niels Möller | 090866a | 2018-02-13 10:55:03 | [diff] [blame] | 2230 | const char kWebrtcNewEncodeCpuLoadEstimatorName[] = |
| 2231 | "WebRTC new encode cpu load estimator"; |
| 2232 | const char kWebrtcNewEncodeCpuLoadEstimatorDescription[] = |
| 2233 | "Enable new estimator for the encoder cpu load, for evaluation and " |
| 2234 | "testing. Intended to improve accuracy when screen casting."; |
| 2235 | |
Elad Alon | 85e0d0be | 2018-06-26 10:38:37 | [diff] [blame] | 2236 | const char kWebRtcRemoteEventLogName[] = "WebRTC remote-bound event logging"; |
| 2237 | const char kWebRtcRemoteEventLogDescription[] = |
| 2238 | "Allow collecting WebRTC event logs and uploading them to Crash. " |
| 2239 | "Please note that, even if enabled, this will still require " |
| 2240 | "a policy to be set, for it to have an effect."; |
| 2241 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2242 | const char kWebrtcSrtpAesGcmName[] = |
| 2243 | "Negotiation with GCM cipher suites for SRTP in WebRTC"; |
| 2244 | const char kWebrtcSrtpAesGcmDescription[] = |
| 2245 | "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP."; |
| 2246 | |
| 2247 | const char kWebrtcStunOriginName[] = "WebRTC Stun origin header"; |
| 2248 | const char kWebrtcStunOriginDescription[] = |
| 2249 | "When enabled, Stun messages generated by WebRTC will contain the Origin " |
| 2250 | "header."; |
| 2251 | |
Sergey Silkin | c33244f | 2020-01-31 17:21:30 | [diff] [blame] | 2252 | const char kWebrtcUseMinMaxVEADimensionsName[] = |
| 2253 | "WebRTC Min/Max Video Encode Accelerator dimensions"; |
| 2254 | const char kWebrtcUseMinMaxVEADimensionsDescription[] = |
| 2255 | "When enabled, WebRTC will only use the Video Encode Accelerator for " |
| 2256 | "video resolutions inside those published as supported."; |
| 2257 | |
Alex Cooper | 01f110e | 2020-01-08 02:24:16 | [diff] [blame] | 2258 | const char kWebXrForceRuntimeName[] = "Force WebXr Runtime"; |
| 2259 | const char kWebXrForceRuntimeDescription[] = |
| 2260 | "Force the browser to use a particular runtime, even if it would not " |
| 2261 | "usually be enabled or would otherwise not be selected based on the " |
| 2262 | "attached hardware."; |
| 2263 | |
| 2264 | const char kWebXrRuntimeChoiceNone[] = "No Runtime"; |
Alex Cooper | 01f110e | 2020-01-08 02:24:16 | [diff] [blame] | 2265 | const char kWebXrRuntimeChoiceOpenXR[] = "OpenXR"; |
| 2266 | const char kWebXrRuntimeChoiceWindowsMixedReality[] = "Windows Mixed Reality"; |
| 2267 | |
Will Cassella | a1a4d111 | 2019-12-27 20:52:31 | [diff] [blame] | 2268 | const char kWebXrIncubationsName[] = "WebXR Incubations"; |
| 2269 | const char kWebXrIncubationsDescription[] = |
| 2270 | "Enables experimental features for WebXR."; |
Piotr Bialecki | d77fb9c | 2019-04-26 17:06:24 | [diff] [blame] | 2271 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 2272 | const char kZeroCopyName[] = "Zero-copy rasterizer"; |
| 2273 | const char kZeroCopyDescription[] = |
| 2274 | "Raster threads write directly to GPU memory associated with tiles."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2275 | |
Peng Huang | 7002168 | 2019-09-18 19:42:28 | [diff] [blame] | 2276 | const char kEnableVulkanName[] = "Vulkan"; |
Sean Gilhuly | ab1dbc6 | 2020-01-28 22:49:47 | [diff] [blame] | 2277 | const char kEnableVulkanDescription[] = "Use vulkan as the graphics backend."; |
Peng Huang | 7002168 | 2019-09-18 19:42:28 | [diff] [blame] | 2278 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2279 | // Android --------------------------------------------------------------------- |
| 2280 | |
| 2281 | #if defined(OS_ANDROID) |
| 2282 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2283 | const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility"; |
| 2284 | const char kAndroidAutofillAccessibilityDescription[] = |
| 2285 | "Enable accessibility for autofill popup."; |
| 2286 | |
Lijin Shen | 73f0a9b | 2020-05-12 02:27:23 | [diff] [blame] | 2287 | const char kAndroidMultipleDisplayName[] = "Multiple Display"; |
| 2288 | const char kAndroidMultipleDisplayDescription[] = |
| 2289 | "When enabled, tabs can be moved to the secondary display."; |
| 2290 | |
Anita Woodruff | bfcd1e5 | 2018-07-16 12:00:51 | [diff] [blame] | 2291 | const char kAppNotificationStatusMessagingName[] = |
| 2292 | "App notification status messaging"; |
| 2293 | const char kAppNotificationStatusMessagingDescription[] = |
| 2294 | "Enables messaging in site permissions UI informing user when " |
| 2295 | "notifications are disabled for the entire app."; |
| 2296 | |
Miriam Gershenson | 8cf139722 | 2018-01-23 22:48:29 | [diff] [blame] | 2297 | const char kAsyncDnsName[] = "Async DNS resolver"; |
| 2298 | const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver."; |
| 2299 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2300 | const char kAutofillAccessoryViewName[] = |
| 2301 | "Autofill suggestions as keyboard accessory view"; |
| 2302 | const char kAutofillAccessoryViewDescription[] = |
| 2303 | "Shows Autofill suggestions on top of the keyboard rather than in a " |
| 2304 | "dropdown."; |
| 2305 | |
Lei Zhang | 722abec | 2020-02-04 22:35:49 | [diff] [blame] | 2306 | const char kAutofillAssistantDirectActionsName[] = |
| 2307 | "Autofill Assistant direct actions"; |
| 2308 | const char kAutofillAssistantDirectActionsDescription[] = |
| 2309 | "When enabled, expose direct actions from the Autofill Assistant."; |
| 2310 | |
Jan Wilken Dörrie | 3e8c302 | 2019-10-21 11:43:46 | [diff] [blame] | 2311 | const char kAutofillTouchToFillName[] = "Touch To Fill UI for Passwords"; |
| 2312 | const char kAutofillTouchToFillDescription[] = |
| 2313 | "Adds a Touch To Fill sheet to the keyboard accessory which will be shown " |
| 2314 | "instead of the keyboard when a password can be filled."; |
| 2315 | |
Caitlin Fischer | 43edd90a | 2019-05-01 13:24:30 | [diff] [blame] | 2316 | const char kAutofillUseMobileLabelDisambiguationName[] = |
| 2317 | "Autofill Uses Mobile Label Disambiguation"; |
| 2318 | const char kAutofillUseMobileLabelDisambiguationDescription[] = |
| 2319 | "When enabled, Autofill suggestions' labels are displayed using a " |
| 2320 | "mobile-friendly format."; |
| 2321 | |
Tibor Goldschwendt | 11b3cf2 | 2018-07-04 15:32:44 | [diff] [blame] | 2322 | const char kBackgroundTaskComponentUpdateName[] = |
| 2323 | "Background Task Component Updates"; |
| 2324 | const char kBackgroundTaskComponentUpdateDescription[] = |
| 2325 | "Schedule component updates with BackgroundTaskScheduler"; |
| 2326 | |
Ramin Halavati | ba7ddcc | 2019-11-13 06:19:28 | [diff] [blame] | 2327 | const char kCCTIncognitoName[] = "Chrome Custom Tabs Incognito mode"; |
| 2328 | const char kCCTIncognitoDescription[] = |
| 2329 | "Enables incognito mode for Chrome Custom Tabs, on Android."; |
| 2330 | |
Anna Malova | f7c734a | 2019-03-01 13:08:45 | [diff] [blame] | 2331 | const char kCCTTargetTranslateLanguageName[] = |
| 2332 | "Chrome Custom Tabs Target Translate Language"; |
| 2333 | const char kCCTTargetTranslateLanguageDescription[] = |
| 2334 | "Enables specify target language the page should be translated to " |
| 2335 | "in Chrome Custom Tabs."; |
| 2336 | |
Matthew Jones | 1abcb13 | 2018-07-09 17:59:46 | [diff] [blame] | 2337 | const char kChromeDuetName[] = "Chrome Duet"; |
| 2338 | const char kChromeDuetDescription[] = |
| 2339 | "Enables Chrome Duet, split toolbar Chrome Home, on Android."; |
Theresa Wellington | b9243b2 | 2017-12-01 16:23:05 | [diff] [blame] | 2340 | |
Pedro Amaral | 5e34519 | 2019-05-21 21:18:47 | [diff] [blame] | 2341 | const char kChromeDuetLabelsName[] = "Chrome Duet Labels"; |
| 2342 | const char kChromeDuetLabelsDescription[] = |
| 2343 | "Enables Chrome Duet (split toolbar) labels."; |
| 2344 | |
Jeffrey Cohen | 5f2a9fe | 2019-12-11 01:23:42 | [diff] [blame] | 2345 | const char kChromeShareScreenshotName[] = "Chrome Share Screenshots"; |
| 2346 | const char kChromeShareScreenshotDescription[] = |
| 2347 | "Enables UI to edit and share screenshots"; |
| 2348 | |
Kyle Milka | 987a035 | 2019-09-28 00:51:53 | [diff] [blame] | 2349 | const char kChromeSharingHubName[] = "Chrome Sharing Hub"; |
| 2350 | const char kChromeSharingHubDescription[] = |
| 2351 | "Enables the Chrome Sharing Hub/custom share sheet."; |
| 2352 | |
Sophey Dong | 692f056f | 2020-05-13 18:12:11 | [diff] [blame] | 2353 | const char kChromeSharingHubV15Name[] = "Chrome Sharing Hub V1.5"; |
| 2354 | const char kChromeSharingHubV15Description[] = |
| 2355 | "Enables v1.5 of the Chrome Sharing Hub."; |
| 2356 | |
Sarath Singapati | 83aef1c | 2017-11-16 15:54:52 | [diff] [blame] | 2357 | const char kClearOldBrowsingDataName[] = "Clear older browsing data"; |
| 2358 | const char kClearOldBrowsingDataDescription[] = |
| 2359 | "Enables clearing of browsing data which is older than a given time " |
| 2360 | "period."; |
| 2361 | |
David Maunder | 915c7ef | 2019-09-20 16:22:08 | [diff] [blame] | 2362 | const char kCloseTabSuggestionsName[] = "Suggest to close Tabs"; |
| 2363 | const char kCloseTabSuggestionsDescription[] = |
| 2364 | "Suggests to the user to close Tabs that haven't been used beyond a " |
| 2365 | "configurable threshold or where duplicates of Tabs exist. " |
| 2366 | "The threshold is configurable."; |
Richard Knoll | 368596e5 | 2019-08-14 09:16:28 | [diff] [blame] | 2367 | |
Shakti Sahu | 8347cba8 | 2019-12-11 03:25:48 | [diff] [blame] | 2368 | const char kContentIndexingDownloadHomeName[] = |
| 2369 | "Content indexing in download home"; |
| 2370 | const char kContentIndexingDownloadHomeDescription[] = |
| 2371 | "Shows content indexing articles in group cards in download home"; |
| 2372 | |
| 2373 | const char kContentIndexingNTPName[] = "Content indexing in NTP"; |
| 2374 | const char kContentIndexingNTPDescription[] = |
| 2375 | "Shows content indexing entry point UI in NTP"; |
| 2376 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2377 | const char kContextMenuCopyImageName[] = "Copy Image"; |
| 2378 | const char kContextMenuCopyImageDescription[] = |
Gang Wu | 006bac1 | 2020-05-14 03:13:54 | [diff] [blame] | 2379 | "Enable copying image to system clipboard via context menu. Copy image is " |
| 2380 | "not available for Android O."; |
Gang Wu | d3bfe8d | 2020-01-21 21:36:49 | [diff] [blame] | 2381 | |
Josh Simmons | 0cc3b5eb | 2020-02-25 20:08:42 | [diff] [blame] | 2382 | const char kContextMenuPerformanceInfoName[] = "Context menu performance hints"; |
| 2383 | const char kContextMenuPerformanceInfoDescription[] = |
| 2384 | "Show link performance information in the context menu."; |
| 2385 | |
Donn Denman | 140a0856 | 2020-03-09 18:23:19 | [diff] [blame] | 2386 | const char kContextualSearchDebugName[] = "Contextual Search debug"; |
| 2387 | const char kContextualSearchDebugDescription[] = |
| 2388 | "Enables internal debugging of Contextual Search behavior on the client " |
| 2389 | "and server."; |
| 2390 | |
Donn Denman | 4315f26 | 2019-03-02 02:47:41 | [diff] [blame] | 2391 | const char kContextualSearchDefinitionsName[] = "Contextual Search definitions"; |
| 2392 | const char kContextualSearchDefinitionsDescription[] = |
Donn Denman | 04720553 | 2020-01-31 00:11:04 | [diff] [blame] | 2393 | "Enables touch-activated contextual definitions of words on a page to be " |
| 2394 | "presented in the caption of the Touch to Search Bar."; |
Donn Denman | 4315f26 | 2019-03-02 02:47:41 | [diff] [blame] | 2395 | |
Donn Denman | 6be77d4 | 2019-05-04 15:55:42 | [diff] [blame] | 2396 | const char kContextualSearchLongpressResolveName[] = |
| 2397 | "Contextual Search long-press Resolves"; |
| 2398 | const char kContextualSearchLongpressResolveDescription[] = |
| 2399 | "Enables communicating with Google servers when a long-press gesture is " |
Donn Denman | c0a33cbf | 2020-02-27 15:26:05 | [diff] [blame] | 2400 | "recognized under some privacy-limited conditions, including having Touch " |
| 2401 | "to Search enabled in preferences. The page context data sent to Google is " |
| 2402 | "potentially privacy sensitive! This disables the tap gesture from " |
| 2403 | "triggering Touch to Search unless that experiment arm is enabled."; |
Donn Denman | 6be77d4 | 2019-05-04 15:55:42 | [diff] [blame] | 2404 | |
Donn Denman | 8e58ead | 2017-11-04 01:44:01 | [diff] [blame] | 2405 | const char kContextualSearchMlTapSuppressionName[] = |
| 2406 | "Contextual Search ML tap suppression"; |
| 2407 | const char kContextualSearchMlTapSuppressionDescription[] = |
| 2408 | "Enables tap gestures to be suppressed to improve CTR by applying machine " |
Donn Denman | 5972981 | 2018-01-09 01:27:02 | [diff] [blame] | 2409 | "learning. The \"Contextual Search Ranker prediction\" flag must also be " |
| 2410 | "enabled!"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2411 | |
Donn Denman | 5972981 | 2018-01-09 01:27:02 | [diff] [blame] | 2412 | const char kContextualSearchRankerQueryName[] = |
| 2413 | "Contextual Search Ranker prediction"; |
| 2414 | const char kContextualSearchRankerQueryDescription[] = |
| 2415 | "Enables prediction of tap gestures using Assist-Ranker machine learning."; |
| 2416 | |
| 2417 | const char kContextualSearchSecondTapName[] = |
| 2418 | "Contextual Search second tap triggering"; |
| 2419 | const char kContextualSearchSecondTapDescription[] = |
| 2420 | "Enables triggering on a second tap gesture even when Ranker would " |
| 2421 | "normally suppress that tap."; |
| 2422 | |
Donn Denman | 58a1da4 | 2020-01-27 23:40:38 | [diff] [blame] | 2423 | const char kContextualSearchTranslationsName[] = |
| 2424 | "Contextual Search translations"; |
| 2425 | const char kContextualSearchTranslationsDescription[] = |
| 2426 | "Enables automatic translations of words on a page to be presented in the " |
| 2427 | "caption of the bottom bar."; |
| 2428 | |
Jordan Demeulenaere | 9404ba23 | 2019-07-01 12:57:16 | [diff] [blame] | 2429 | const char kDirectActionsName[] = "Direct actions"; |
| 2430 | const char kDirectActionsDescription[] = |
| 2431 | "Enables direct actions (Android Q and more)."; |
| 2432 | |
Yue Zhang | e9e90c5a | 2019-11-26 21:44:03 | [diff] [blame] | 2433 | const char kDuetTabStripIntegrationAndroidName[] = "Duet-TabStrip Integration"; |
| 2434 | const char kDuetTabStripIntegrationAndroidDescription[] = |
| 2435 | "Allows users to access integration of Duet and TabStrip."; |
| 2436 | |
Fabio Tirelo | 918089a | 2018-10-22 21:24:08 | [diff] [blame] | 2437 | const char kAutofillManualFallbackAndroidName[] = |
| 2438 | "Enable Autofill manual fallback for Addresses and Payments (Android)"; |
| 2439 | const char kAutofillManualFallbackAndroidDescription[] = |
| 2440 | "If enabled, adds toggle for addresses and payments bottom sheet to the " |
| 2441 | "keyboard accessory."; |
| 2442 | |
Fabio Tirelo | 315e6592 | 2018-09-05 03:35:49 | [diff] [blame] | 2443 | const char kEnableAutofillRefreshStyleName[] = |
| 2444 | "Enable Autofill refresh style (Android)"; |
| 2445 | const char kEnableAutofillRefreshStyleDescription[] = |
| 2446 | "Enable modernized style for Autofill on Android"; |
| 2447 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2448 | const char kEnableAndroidSpellcheckerDescription[] = |
| 2449 | "Enables use of the Android spellchecker."; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2450 | |
Lei Tian | bd5a3bf | 2018-02-28 19:01:16 | [diff] [blame] | 2451 | const char kEnableCommandLineOnNonRootedName[] = |
| 2452 | "Enable command line on non-rooted devices"; |
| 2453 | const char kEnableCommandLineOnNoRootedDescription[] = |
| 2454 | "Enable reading command line file on non-rooted devices (DANGEROUS)."; |
| 2455 | |
Sinan Sahin | 3bafe27 | 2019-03-11 17:03:06 | [diff] [blame] | 2456 | const char kEnableRevampedContextMenuName[] = |
| 2457 | "Enable the revamped context menu"; |
| 2458 | const char kEnableRevampedContextMenuDescription[] = |
| 2459 | "Enables a revamped context menu when a link, image, or video is long " |
| 2460 | "pressed within Chrome."; |
| 2461 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2462 | const char kEnableOfflinePreviewsName[] = "Offline Page Previews"; |
| 2463 | const char kEnableOfflinePreviewsDescription[] = |
| 2464 | "Enable showing offline page previews on slow networks."; |
| 2465 | |
Thomas Guilbert | 4df6032 | 2020-05-18 20:23:32 | [diff] [blame] | 2466 | const char kEnableUseAaudioDriverName[] = "Use AAudio Driver"; |
| 2467 | const char kEnableUseAaudioDriverDescription[] = |
| 2468 | "Enable the use of AAudio, if supported by the current Android version."; |
| 2469 | |
Shakti Sahu | ec6030f | 2019-09-10 22:09:31 | [diff] [blame] | 2470 | const char kEphemeralTabUsingBottomSheetName[] = |
Donn Denman | e353360 | 2020-01-24 17:51:27 | [diff] [blame] | 2471 | "An ephemeral Preview Tab using the bottom sheet"; |
Shakti Sahu | ec6030f | 2019-09-10 22:09:31 | [diff] [blame] | 2472 | const char kEphemeralTabUsingBottomSheetDescription[] = |
Donn Denman | e353360 | 2020-01-24 17:51:27 | [diff] [blame] | 2473 | "Enable a 'Preview page/image' at a linked page into the bottom sheet. " |
| 2474 | "No other flags are needed for this feature."; |
Shakti Sahu | ec6030f | 2019-09-10 22:09:31 | [diff] [blame] | 2475 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 2476 | const char kExploreSitesName[] = "Explore websites"; |
| 2477 | const char kExploreSitesDescription[] = |
| 2478 | "Enables portal from new tab page to explore websites."; |
| 2479 | |
Sebastien | 6f347c4 | 2019-10-25 19:12:41 | [diff] [blame] | 2480 | const char kGamesHubName[] = "Games Hub"; |
| 2481 | const char kGamesHubDescription[] = |
| 2482 | "Enables viewing and usage of the Games Hub."; |
| 2483 | |
Wenyu Fu | 673eb7e | 2019-11-06 19:12:37 | [diff] [blame] | 2484 | const char kHomepageLocationName[] = |
| 2485 | "Enable enterprise policy HomepageLocation"; |
| 2486 | const char kHomepageLocationDescription[] = |
| 2487 | "Enable enterprice policy HomepageLocation, a rule of configure the home " |
| 2488 | "page URL"; |
| 2489 | |
Wenyu Fu | a369f155 | 2020-05-01 00:54:45 | [diff] [blame] | 2490 | const char kHomepagePromoCardName[] = |
| 2491 | "Enable homepage promo card on the New Tab Page"; |
| 2492 | const char kHomepagePromoCardDescription[] = |
| 2493 | "Enable homepage promo card that will be shown to users with partner " |
| 2494 | "configured homepage."; |
| 2495 | |
Wenyu Fu | f2d08341 | 2019-12-20 23:13:51 | [diff] [blame] | 2496 | const char kHomepageSettingsUIConversionName[] = |
| 2497 | "Enable new homepage setting UI"; |
| 2498 | const char kHomepageSettingsUIConversionDescription[] = |
| 2499 | "Enable new homepage setting UI, which allows user set up customized " |
| 2500 | "homepage URL through a radio button group, and add promo box on NTP " |
| 2501 | "if homepage is not enabled."; |
| 2502 | |
Wei-Yin Chen (陳威尹) | 50c2f46 | 2020-05-14 07:27:42 | [diff] [blame] | 2503 | const char kInstantStartName[] = "Enable instant start"; |
| 2504 | const char kInstantStartDescription[] = |
| 2505 | "Show start surface before native library is loaded."; |
| 2506 | |
Jochen Eisinger | d0e43f5 | 2020-01-22 17:04:32 | [diff] [blame] | 2507 | const char kIntentBlockExternalFormRedirectsNoGestureName[] = |
| 2508 | "Block intents from form submissions without user gesture"; |
| 2509 | const char kIntentBlockExternalFormRedirectsNoGestureDescription[] = |
| 2510 | "Require a user gesture that triggered a form submission in order to " |
| 2511 | "allow for redirecting to an external intent."; |
| 2512 | |
Ian Wells | 665a2b9 | 2019-07-12 21:19:00 | [diff] [blame] | 2513 | const char kInterestFeedNotificationsName[] = "Interest Feed Notifications"; |
| 2514 | const char kInterestFeedNotificationsDescription[] = |
| 2515 | "Show notifications for some suggested content from the interest feed. " |
| 2516 | "#interest-feed-content-suggestions should also be enabled."; |
| 2517 | |
Theresa | 920e0ed | 2018-03-07 18:12:44 | [diff] [blame] | 2518 | const char kInterestFeedContentSuggestionsDescription[] = |
Yafei Duan | bb7663f3 | 2018-07-17 01:33:15 | [diff] [blame] | 2519 | "Use the interest feed to render content suggestions. Currently " |
| 2520 | "content " |
Theresa | 920e0ed | 2018-03-07 18:12:44 | [diff] [blame] | 2521 | "suggestions are shown on the New Tab Page."; |
| 2522 | const char kInterestFeedContentSuggestionsName[] = |
| 2523 | "Interest Feed Content Suggestions"; |
| 2524 | |
Ian Wells | 34ce148 | 2020-04-03 17:36:16 | [diff] [blame] | 2525 | const char kInterestFeedV2Name[] = "Interest Feed v2"; |
| 2526 | const char kInterestFeedV2Description[] = |
| 2527 | "Show content suggestions on the New Tab Page and Start Surface using the " |
| 2528 | "new Feed Component."; |
| 2529 | |
Pete Williamson | 27269d4 | 2020-01-15 19:02:33 | [diff] [blame] | 2530 | const char kInterestFeedFeedbackDescription[] = |
| 2531 | "Allow the user to provide feedback from a feed card."; |
| 2532 | const char kInterestFeedFeedbackName[] = "Interest Feed Feedback"; |
| 2533 | |
Jian Li | ade8283 | 2018-09-06 22:31:41 | [diff] [blame] | 2534 | const char kOfflineIndicatorAlwaysHttpProbeName[] = "Always http probe"; |
| 2535 | const char kOfflineIndicatorAlwaysHttpProbeDescription[] = |
| 2536 | "Always do http probe to detect network connectivity for offline indicator " |
| 2537 | "as opposed to just taking the connection state from the system." |
| 2538 | "Used for testing."; |
| 2539 | |
| 2540 | const char kOfflineIndicatorChoiceName[] = "Offline indicator choices"; |
| 2541 | const char kOfflineIndicatorChoiceDescription[] = |
| 2542 | "Show an offline indicator while offline."; |
Jian Li | 1413ebf | 2018-06-14 20:46:32 | [diff] [blame] | 2543 | |
Sinan Sahin | 18cc52c | 2019-09-12 23:07:15 | [diff] [blame] | 2544 | const char kOfflineIndicatorV2Name[] = "Offline indicator V2"; |
| 2545 | const char kOfflineIndicatorV2Description[] = |
| 2546 | "Show a persistent offline indicator when offline."; |
| 2547 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2548 | const char kOfflinePagesCtName[] = "Enable Offline Pages CT features."; |
| 2549 | const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features."; |
| 2550 | |
| 2551 | const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features."; |
| 2552 | const char kOfflinePagesCtV2Description[] = |
| 2553 | "V2 features include attributing pages to the app that initiated the " |
| 2554 | "custom tabs, and being able to query for pages by page attribution."; |
| 2555 | |
Cathy Li | 7311d79 | 2018-04-05 00:34:16 | [diff] [blame] | 2556 | const char kOfflinePagesCTSuppressNotificationsName[] = |
| 2557 | "Disable download complete notification for whitelisted CCT apps."; |
| 2558 | const char kOfflinePagesCTSuppressNotificationsDescription[] = |
| 2559 | "Disable download complete notification for page downloads originating " |
| 2560 | "from a CCT app whitelisted to show their own download complete " |
| 2561 | "notification."; |
| 2562 | |
Candice Sy | 74fa7a35 | 2018-03-30 23:46:49 | [diff] [blame] | 2563 | const char kOfflinePagesDescriptiveFailStatusName[] = |
| 2564 | "Enables descriptive failed download status text."; |
| 2565 | const char kOfflinePagesDescriptiveFailStatusDescription[] = |
| 2566 | "Enables failed download status text in notifications and Downloads Home " |
| 2567 | "to state the reason the request failed if the failure is actionable."; |
| 2568 | |
| 2569 | const char kOfflinePagesDescriptivePendingStatusName[] = |
| 2570 | "Enables descriptive pending download status text."; |
| 2571 | const char kOfflinePagesDescriptivePendingStatusDescription[] = |
| 2572 | "Enables pending download status text in notifications and Downloads Home " |
| 2573 | "to state the reason the request is pending."; |
| 2574 | |
| 2575 | const char kOfflinePagesInDownloadHomeOpenInCctName[] = |
| 2576 | "Enables offline pages in the downloads home to be opened in CCT."; |
| 2577 | const char kOfflinePagesInDownloadHomeOpenInCctDescription[] = |
| 2578 | "When enabled offline pages launched from the Downloads Home will be " |
| 2579 | "opened in Chrome Custom Tabs (CCT) instead of regular tabs."; |
| 2580 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2581 | const char kOfflinePagesLoadSignalCollectingName[] = |
| 2582 | "Enables collecting load timing data for offline page snapshots."; |
| 2583 | const char kOfflinePagesLoadSignalCollectingDescription[] = |
| 2584 | "Enables loading completeness data collection while writing an offline " |
| 2585 | "page. This data is collected in the snapshotted offline page to allow " |
| 2586 | "data analysis to improve deciding when to make the offline snapshot."; |
| 2587 | |
| 2588 | const char kOfflinePagesPrefetchingName[] = |
| 2589 | "Enables suggested offline pages to be prefetched."; |
| 2590 | const char kOfflinePagesPrefetchingDescription[] = |
| 2591 | "Enables suggested offline pages to be prefetched, so useful content is " |
| 2592 | "available while offline."; |
| 2593 | |
Pete Williamson | 7845dff | 2017-09-20 11:06:19 | [diff] [blame] | 2594 | const char kOfflinePagesResourceBasedSnapshotName[] = |
| 2595 | "Enables offline page snapshots to be based on percentage of page loaded."; |
| 2596 | const char kOfflinePagesResourceBasedSnapshotDescription[] = |
| 2597 | "Enables offline page snapshots to use a resource percentage based " |
| 2598 | "approach for determining when the page is loaded as opposed to a time " |
| 2599 | "based approach"; |
| 2600 | |
Collin Baker | 17f92a5 | 2017-07-19 21:41:25 | [diff] [blame] | 2601 | const char kOfflinePagesRenovationsName[] = "Enables offline page renovations."; |
| 2602 | const char kOfflinePagesRenovationsDescription[] = |
| 2603 | "Enables offline page renovations which correct issues with dynamic " |
| 2604 | "content that occur when offlining pages that use JavaScript."; |
| 2605 | |
Yafei Duan | 36b4b5b | 2018-08-07 00:40:03 | [diff] [blame] | 2606 | const char kOfflinePagesLivePageSharingName[] = |
| 2607 | "Enables live page sharing of offline pages"; |
| 2608 | const char kOfflinePagesLivePageSharingDescription[] = |
| 2609 | "Enables to share current loaded page as offline page by saving as MHTML " |
| 2610 | "first."; |
| 2611 | |
Cathy Li | e0d8876 | 2018-04-12 08:03:01 | [diff] [blame] | 2612 | const char kOfflinePagesShowAlternateDinoPageName[] = |
| 2613 | "Enable alternate dino page with more user capabilities."; |
| 2614 | const char kOfflinePagesShowAlternateDinoPageDescription[] = |
| 2615 | "Enables the dino page to show more buttons and offer existing offline " |
| 2616 | "content."; |
| 2617 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2618 | const char kOffliningRecentPagesName[] = |
| 2619 | "Enable offlining of recently visited pages"; |
| 2620 | const char kOffliningRecentPagesDescription[] = |
| 2621 | "Enable storing recently visited pages locally for offline use. Requires " |
| 2622 | "Offline Pages to be enabled."; |
| 2623 | |
bttk | 24a2caea | 2020-03-30 21:33:00 | [diff] [blame] | 2624 | const char kAndroidPartnerCustomizationPhenotypeName[] = |
| 2625 | "Use homepage and bookmarks from partner customization"; |
| 2626 | const char kAndroidPartnerCustomizationPhenotypeDescription[] = |
| 2627 | "This flag loads a new configuration source of the default homepage and " |
| 2628 | "bookmarks."; |
| 2629 | |
Josh Simmons | b2492dc6 | 2020-04-30 17:47:14 | [diff] [blame] | 2630 | const char kPageInfoPerformanceHintsName[] = "Page info performance hints"; |
| 2631 | const char kPageInfoPerformanceHintsDescription[] = |
| 2632 | "Show site performance information in the page info menu."; |
| 2633 | |
Ehimare Okoyomon | 2eccb607 | 2020-05-12 12:22:27 | [diff] [blame] | 2634 | const char kPageInfoV2Name[] = "Page info version two"; |
| 2635 | const char kPageInfoV2Description[] = |
| 2636 | "Enable the second version of the page info menu."; |
| 2637 | |
Andrei Chulkov | 1a12e6d2 | 2019-07-15 11:16:07 | [diff] [blame] | 2638 | const char kPasswordManagerOnboardingAndroidName[] = |
| 2639 | "Password manager onboarding experience"; |
| 2640 | const char kPasswordManagerOnboardingAndroidDescription[] = |
| 2641 | "This flag enables showing the password manager onboarding experience."; |
| 2642 | |
Finnur Thorarinsson | aeb6b58 | 2020-01-28 17:52:46 | [diff] [blame] | 2643 | const char kPhotoPickerVideoSupportName[] = "Photo Picker Video Support"; |
| 2644 | const char kPhotoPickerVideoSupportDescription[] = |
| 2645 | "Enables video files to be shown in the Photo Picker dialog"; |
| 2646 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2647 | const char kProcessSharingWithDefaultSiteInstancesName[] = |
Aaron Colwell | 5235f35 | 2019-07-25 20:10:24 | [diff] [blame] | 2648 | "Process sharing with default site instances"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2649 | const char kProcessSharingWithDefaultSiteInstancesDescription[] = |
Aaron Colwell | 5235f35 | 2019-07-25 20:10:24 | [diff] [blame] | 2650 | "When site isolation is disabled, this mode changes how sites are lumped " |
| 2651 | "in to shared processes. For sites that do not require isolation, this " |
| 2652 | "feature groups them into a single 'default' site instance (per browsing " |
| 2653 | "instance) instead of creating unique site instances for each one. This " |
| 2654 | "enables resource savings by creating fewer processes for sites that do " |
| 2655 | "not need isolation."; |
| 2656 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2657 | const char kProcessSharingWithStrictSiteInstancesName[] = |
Andrei Chulkov | 1a12e6d2 | 2019-07-15 11:16:07 | [diff] [blame] | 2658 | "Process sharing with strict site instances"; |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 2659 | const char kProcessSharingWithStrictSiteInstancesDescription[] = |
Andrei Chulkov | 1a12e6d2 | 2019-07-15 11:16:07 | [diff] [blame] | 2660 | "When site isolation is disabled, this mode changes how sites are lumped " |
| 2661 | "in to a shared process. Process selection is usually controlled with " |
| 2662 | "site instances. With strict site isolation, each site on a page gets its " |
| 2663 | "own site instance and process. With site isolation disabled and without " |
| 2664 | "this mode, all sites that share a process are put into the same site " |
| 2665 | "instance. This mode adds a third way: site instances are strictly " |
| 2666 | "separated like strict site isolation, but process selection puts multiple " |
| 2667 | "site instances in a single process."; |
| 2668 | |
Shakti Sahu | 1f8a942 | 2020-03-12 05:50:50 | [diff] [blame] | 2669 | const char kQueryTilesName[] = "Show query tiles"; |
| 2670 | const char kQueryTilesDescription[] = "Shows query tiles in Chrome"; |
Shakti Sahu | aaf8a8c | 2020-04-30 23:40:27 | [diff] [blame] | 2671 | const char kQueryTilesOmniboxName[] = "Show query tiles in omnibox"; |
| 2672 | const char kQueryTilesOmniboxDescription[] = "Shows query tiles in omnibox"; |
Shakti Sahu | 8fe5edd | 2020-05-14 18:57:13 | [diff] [blame] | 2673 | const char kQueryTilesSingleTierName[] = "Show only one level of query tiles"; |
| 2674 | const char kQueryTilesSingleTierDescription[] = |
| 2675 | "Show only one level of query tiles"; |
Shakti Sahu | dfb4099 | 2020-05-12 14:54:54 | [diff] [blame] | 2676 | const char kQueryTilesEnableQueryEditingName[] = |
| 2677 | "Query Tiles - Enable query edit mode"; |
| 2678 | const char kQueryTilesEnableQueryEditingDescription[] = |
| 2679 | "When a query tile is tapped, the query text will be shown in the omnibox " |
| 2680 | "and user will have a chance to edit the text before submitting"; |
Min Qin | db99e6f | 2020-04-29 06:37:26 | [diff] [blame] | 2681 | const char kQueryTilesCountryCode[] = "Country code for getting tiles"; |
| 2682 | const char kQueryTilesCountryCodeDescription[] = |
| 2683 | "When query tiles are enabled, this value determines tiles for which " |
| 2684 | "country should be displayed."; |
| 2685 | const char kQueryTilesCountryCodeUS[] = "US"; |
| 2686 | const char kQueryTilesCountryCodeIndia[] = "IN"; |
| 2687 | const char kQueryTilesCountryCodeBrazil[] = "BR"; |
| 2688 | const char kQueryTilesCountryCodeNigeria[] = "NG"; |
| 2689 | const char kQueryTilesCountryCodeIndonesia[] = "ID"; |
Shakti Sahu | 8fe5edd | 2020-05-14 18:57:13 | [diff] [blame] | 2690 | const char kQueryTilesInstantFetchName[] = "Query tile instant fetch"; |
Xing Liu | 06f2fa0 | 2020-04-30 02:45:19 | [diff] [blame] | 2691 | const char kQueryTilesInstantFetchDescription[] = |
| 2692 | "Immediately schedule background task to fetch query tiles"; |
Min Qin | db99e6f | 2020-04-29 06:37:26 | [diff] [blame] | 2693 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2694 | const char kReaderModeHeuristicsName[] = "Reader Mode triggering"; |
| 2695 | const char kReaderModeHeuristicsDescription[] = |
| 2696 | "Determines what pages the Reader Mode infobar is shown on."; |
| 2697 | const char kReaderModeHeuristicsMarkup[] = "With article structured markup"; |
| 2698 | const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles"; |
| 2699 | const char kReaderModeHeuristicsAllArticles[] = "All articles"; |
| 2700 | const char kReaderModeHeuristicsAlwaysOff[] = "Never"; |
| 2701 | const char kReaderModeHeuristicsAlwaysOn[] = "Always"; |
| 2702 | |
Wei-Yin Chen (陳威尹) | 41b2241 | 2017-07-21 02:51:18 | [diff] [blame] | 2703 | const char kReaderModeInCCTName[] = "Reader Mode in CCT"; |
| 2704 | const char kReaderModeInCCTDescription[] = |
| 2705 | "Open Reader Mode in Chrome Custom Tabs."; |
| 2706 | |
Ioana Pandele | 9fc19b2f | 2020-01-23 22:16:50 | [diff] [blame] | 2707 | const char kRecoverFromNeverSaveAndroidName[] = |
| 2708 | "UI to recover from never save passwords on Android"; |
| 2709 | const char kRecoverFromNeverSaveAndroidDescription[] = |
| 2710 | "Enables showing UI which allows for easy reverting of the decision to " |
| 2711 | "never save passwords on a certain webiste"; |
| 2712 | |
Donn Denman | c42123c | 2020-03-19 01:44:24 | [diff] [blame] | 2713 | const char kRelatedSearchesName[] = |
| 2714 | "Enables an experiment for Related Searches on Android"; |
| 2715 | const char kRelatedSearchesDescription[] = |
| 2716 | "Enables displaying related searches in a UI surface for experimentation " |
| 2717 | "purposes. This may have privacy implications so do not enable unless " |
| 2718 | "you have no privacy worries about sending page content and URLs to " |
| 2719 | "Google!"; |
| 2720 | |
Vincent Boisselle | 35fc534 | 2020-05-09 02:29:00 | [diff] [blame] | 2721 | const char kReportFeedUserActionsName[] = |
| 2722 | "Enable the report of click actions on cards in Chrome's Feed on Android."; |
| 2723 | const char kReportFeedUserActionsDescription[] = |
| 2724 | "Enable the report of click actions on cards in Chrome's Feed on Android." |
| 2725 | " Also enable the feed header menu to manage the feed."; |
| 2726 | |
Varun Khaneja | 80712a8 | 2018-10-12 23:34:59 | [diff] [blame] | 2727 | const char kSafeBrowsingUseLocalBlacklistsV2Name[] = |
| 2728 | "Use local Safe Browsing blacklists"; |
| 2729 | const char kSafeBrowsingUseLocalBlacklistsV2Description[] = |
| 2730 | "If enabled, maintain a copy of Safe Browsing blacklists in the browser " |
| 2731 | "process to check the Safe Browsing reputation of URLs without calling " |
| 2732 | "into GmsCore for every URL."; |
| 2733 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2734 | const char kSetMarketUrlForTestingName[] = "Set market URL for testing"; |
| 2735 | const char kSetMarketUrlForTestingDescription[] = |
| 2736 | "When enabled, sets the market URL for use in testing the update menu " |
| 2737 | "item."; |
| 2738 | |
Jeffrey Cohen | 8589139 | 2020-02-14 20:24:30 | [diff] [blame] | 2739 | const char kShareButtonInTopToolbarName[] = "Share Button In Top Toolbar"; |
| 2740 | const char kShareButtonInTopToolbarDescription[] = |
| 2741 | "Enables UI to initiate sharing from the top toolbar"; |
| 2742 | |
Alex Moshchuk | 07e1bb4 | 2019-03-08 04:44:08 | [diff] [blame] | 2743 | const char kSiteIsolationForPasswordSitesName[] = |
| 2744 | "Site Isolation For Password Sites"; |
| 2745 | const char kSiteIsolationForPasswordSitesDescription[] = |
| 2746 | "Security mode that enables site isolation for sites based on " |
| 2747 | "password-oriented heuristics, such as a user typing in a password."; |
| 2748 | |
Ioana Pandele | 9fc19b2f | 2020-01-23 22:16:50 | [diff] [blame] | 2749 | const char kStartSurfaceAndroidName[] = "Start Surface"; |
| 2750 | const char kStartSurfaceAndroidDescription[] = |
| 2751 | "Enable showing the start surface when launching Chrome via the " |
| 2752 | "launcher."; |
| 2753 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 2754 | const char kStrictSiteIsolationName[] = "Strict site isolation"; |
| 2755 | const char kStrictSiteIsolationDescription[] = |
| 2756 | "Security mode that enables site isolation for all sites (SitePerProcess). " |
| 2757 | "In this mode, each renderer process will contain pages from at most one " |
| 2758 | "site, using out-of-process iframes when needed. " |
| 2759 | "Check chrome://process-internals to see the current isolation mode. " |
| 2760 | "Setting this flag to 'Enabled' turns on site isolation regardless of the " |
| 2761 | "default. Here, 'Disabled' is a legacy value that actually means " |
| 2762 | "'Default,' in which case site isolation may be already enabled based on " |
| 2763 | "platform, enterprise policy, or field trial. See also " |
| 2764 | "#site-isolation-trial-opt-out for how to disable site isolation for " |
| 2765 | "testing."; |
| 2766 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2767 | const char kUpdateMenuBadgeName[] = "Force show update menu badge"; |
| 2768 | const char kUpdateMenuBadgeDescription[] = |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 2769 | "When enabled, a badge will be shown on the app menu button if the update " |
| 2770 | "type is Update Available or Unsupported OS Version."; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2771 | |
| 2772 | const char kUpdateMenuItemCustomSummaryDescription[] = |
| 2773 | "When this flag and the force show update menu item flag are enabled, a " |
| 2774 | "custom summary string will be displayed below the update menu item."; |
| 2775 | const char kUpdateMenuItemCustomSummaryName[] = |
| 2776 | "Update menu item custom summary"; |
| 2777 | |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 2778 | const char kUpdateMenuTypeName[] = |
| 2779 | "Forces the update menu type to a specific type"; |
| 2780 | const char kUpdateMenuTypeDescription[] = |
| 2781 | "When set, forces the update type to be a specific one, which impacts " |
Tommy Nyquist | 023d505f | 2019-02-16 02:18:38 | [diff] [blame] | 2782 | "the app menu badge and menu item for updates. For Inline Update, the " |
| 2783 | "update available flag is implied. The 'Inline Update: Success' selection " |
| 2784 | "goes through the whole inline update flow to the end with a successful " |
| 2785 | "outcome. The other 'Inline Update' options go through the same flow, but " |
| 2786 | "stop at various stages, see their error type for details."; |
Tommy Nyquist | 3c02e59 | 2018-10-18 23:36:44 | [diff] [blame] | 2787 | const char kUpdateMenuTypeNone[] = "None"; |
| 2788 | const char kUpdateMenuTypeUpdateAvailable[] = "Update Available"; |
| 2789 | const char kUpdateMenuTypeUnsupportedOSVersion[] = "Unsupported OS Version"; |
Tommy Nyquist | 023d505f | 2019-02-16 02:18:38 | [diff] [blame] | 2790 | const char kUpdateMenuTypeInlineUpdateSuccess[] = "Inline Update: Success"; |
| 2791 | const char kUpdateMenuTypeInlineUpdateDialogCanceled[] = |
| 2792 | "Inline Update Error: Dialog Canceled"; |
| 2793 | const char kUpdateMenuTypeInlineUpdateDialogFailed[] = |
| 2794 | "Inline Update Error: Dialog Failed"; |
| 2795 | const char kUpdateMenuTypeInlineUpdateDownloadFailed[] = |
| 2796 | "Inline Update Error: Download Failed"; |
| 2797 | const char kUpdateMenuTypeInlineUpdateDownloadCanceled[] = |
| 2798 | "Inline Update Error: Download Canceled"; |
| 2799 | const char kUpdateMenuTypeInlineUpdateInstallFailed[] = |
| 2800 | "Inline Update Error: Install Failed"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2801 | |
Hesen Zhang | a555a8d7 | 2019-10-18 00:05:37 | [diff] [blame] | 2802 | const char kUpdateNotificationSchedulingIntegrationName[] = |
| 2803 | "Enable update notification using notification scheduling system"; |
| 2804 | const char kUpdateNotificationSchedulingIntegrationDescription[] = |
| 2805 | "if enable update notification will hook up to notification scheduling " |
| 2806 | "system in native side"; |
| 2807 | |
Hesen Zhang | 0e22ac6 | 2020-03-10 17:01:44 | [diff] [blame] | 2808 | const char kPrefetchNotificationSchedulingIntegrationName[] = |
| 2809 | "Enable prefetch notification using notification scheduling system"; |
| 2810 | const char kPrefetchNotificationSchedulingIntegrationDescription[] = |
| 2811 | "if enable prefetch notification service and background task will hook up " |
| 2812 | "to notification scheduling system in native side"; |
| 2813 | |
Hesen Zhang | 26797090a | 2020-02-18 23:50:24 | [diff] [blame] | 2814 | const char kUpdateNotificationServiceImmediateShowOptionName[] = |
| 2815 | "Update notification service debug options"; |
| 2816 | const char kUpdateNotificationServiceImmediateShowOptionDescription[] = |
| 2817 | "Show update notification right immediately"; |
| 2818 | |
Patrick Noland | 76b5c44 | 2019-07-30 01:01:39 | [diff] [blame] | 2819 | const char kUsageStatsDescription[] = |
| 2820 | "When set, enables sharing of per-domain usage stats with the Digital " |
| 2821 | "Wellbeing app on Android, and allows Digital Wellbeing to suspend access " |
| 2822 | "to websites in order to enforce user-defined time limits."; |
| 2823 | const char kUsageStatsName[] = "Share Usage Stats with Digital Wellbeing"; |
| 2824 | |
Tommy Nyquist | 26ffb64 | 2019-02-20 20:31:52 | [diff] [blame] | 2825 | const char kInlineUpdateFlowName[] = "Enable Google Play inline update flow"; |
| 2826 | const char kInlineUpdateFlowDescription[] = |
| 2827 | "When this flag is set, instead of taking the user to the Google Play " |
| 2828 | "Store when an update is available, the user is presented with an inline " |
| 2829 | "flow where they do not have to leave Chrome until the update is ready " |
| 2830 | "to install."; |
| 2831 | |
Brandon Wylie | 744f343 | 2020-05-13 22:38:32 | [diff] [blame] | 2832 | const char kAndroidDarkSearchName[] = "Show darkened search pages on Android"; |
| 2833 | const char kAndroidDarkSearchDescription[] = |
| 2834 | "If enabled, users will see a darkened search page if Chrome is in " |
| 2835 | "nightmode as well."; |
| 2836 | |
Brandon Wylie | 3c77d44 | 2020-01-31 22:41:49 | [diff] [blame] | 2837 | const char kAndroidNightModeTabReparentingName[] = |
| 2838 | "Android Chrome UI dark mode tab reparenting"; |
| 2839 | const char kAndroidNightModeTabReparentingDescription[] = |
| 2840 | "If enabled, when the user changes themes the current tabs are reparented " |
| 2841 | "instead of reloaded."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2842 | // Non-Android ----------------------------------------------------------------- |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2843 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2844 | #else // !defined(OS_ANDROID) |
brettw | 5f9c164 | 2017-05-14 17:12:48 | [diff] [blame] | 2845 | |
Katie D | f558c1a | 2020-04-21 20:33:59 | [diff] [blame] | 2846 | const char kEnableAccessibilityLiveCaptionsName[] = "Live Captions"; |
| 2847 | const char kEnableAccessibilityLiveCaptionsDescription[] = |
| 2848 | "Enables the live captions feature which generates captions for " |
| 2849 | "media playing in Chrome. Turn the feature on in " |
| 2850 | "chrome://settings/accessibility."; |
| 2851 | |
Takumi Fujimoto | d1da5b9 | 2019-06-07 00:35:48 | [diff] [blame] | 2852 | const char kCastMediaRouteProviderName[] = "Cast Media Route Provider"; |
| 2853 | const char kCastMediaRouteProviderDescription[] = |
| 2854 | "Enables the native Cast Media Route Provider implementation to be used " |
| 2855 | "instead of the implementation in the Media Router component extension."; |
| 2856 | |
Dan Beam | fa47cc3 | 2019-10-17 20:20:58 | [diff] [blame] | 2857 | const char kNtpConfirmSuggestionRemovalsName[] = |
| 2858 | "Confirm removing \"realbox\" suggestions on New Tab page"; |
| 2859 | const char kNtpConfirmSuggestionRemovalsDescription[] = |
| 2860 | "Show a confirmation dialog when removing suggestions from the \"realbox\" " |
| 2861 | "on the New Tab page. Requires #ntp-realbox to be enabled."; |
| 2862 | |
Dan Beam | a76152f4 | 2019-09-24 03:58:08 | [diff] [blame] | 2863 | const char kNtpDismissPromosName[] = "Dismiss promos on the New Tab Page"; |
| 2864 | const char kNtpDismissPromosDescription[] = |
| 2865 | "Enables a UI to persistently dismiss [non-emergency] promos on the " |
| 2866 | "bottom/middle of the New Tab Page"; |
Dan Beam | 8388f3d | 2019-05-11 01:51:05 | [diff] [blame] | 2867 | |
Esmael El-Moslimany | 77beb94d | 2020-05-01 23:12:36 | [diff] [blame] | 2868 | const char kNtpIframeOneGoogleBarName[] = "Load OneGoogleBar in an iframe"; |
| 2869 | const char kNtpIframeOneGoogleBarDescription[] = |
| 2870 | "Enables loading the OneGoogleBar in an iframe. Otherwise, the " |
| 2871 | "OneGoogleBar is loaded inline on chrome://new-tab-page."; |
| 2872 | |
Dan Beam | 697798fa | 2019-08-28 03:38:07 | [diff] [blame] | 2873 | const char kNtpRealboxName[] = "Real search box in New Tab Page"; |
| 2874 | const char kNtpRealboxDescription[] = |
| 2875 | "Enables a search box in the middle of the NTP that will accept input " |
| 2876 | "directly (i.e. not be a \"fake\" box). Search results will show below the " |
| 2877 | "non-fake input (\"realbox\")."; |
| 2878 | |
Dan Beam | 6c42d2c | 2019-11-12 22:17:08 | [diff] [blame] | 2879 | const char kNtpRealboxMatchOmniboxThemeName[] = |
| 2880 | "Make the New Tab page real search box match the omnibox's theme colors"; |
| 2881 | const char kNtpRealboxMatchOmniboxThemeDescription[] = |
| 2882 | "Themes the real search box in the middle of the NTP to match the omnibox. " |
| 2883 | "Only has an an effect if #ntp-realbox is enabled."; |
| 2884 | |
Esmael El-Moslimany | 3b70c87 | 2020-01-13 18:47:03 | [diff] [blame] | 2885 | const char kNtpWebUIName[] = |
| 2886 | "Use the WebUI new tab page when opening a new tab"; |
| 2887 | const char kNtpWebUIDescription[] = |
| 2888 | "The WebUI new tab page is a replacement for the local NTP."; |
| 2889 | |
Aran Gilman | 766c2ad | 2019-04-18 00:15:41 | [diff] [blame] | 2890 | const char kEnableReaderModeName[] = "Enable Reader Mode"; |
| 2891 | const char kEnableReaderModeDescription[] = |
| 2892 | "Allows viewing of simplified web pages by selecting 'Customize and " |
| 2893 | "control Chrome'>'Distill page'"; |
| 2894 | |
Jeffrey Cohen | f04130a4 | 2018-08-29 00:22:27 | [diff] [blame] | 2895 | const char kHappinessTrackingSurveysForDesktopName[] = |
| 2896 | "Happiness Tracking Surveys"; |
| 2897 | const char kHappinessTrackingSurveysForDesktopDescription[] = |
| 2898 | "Enable showing Happiness Tracking Surveys to users on Desktop"; |
| 2899 | |
Wei Li | 2946b35 | 2019-08-19 21:49:54 | [diff] [blame] | 2900 | const char kHappinessTrackingSurveysForDesktopDemoName[] = |
| 2901 | "Happiness Tracking Surveys Demo"; |
| 2902 | const char kHappinessTrackingSurveysForDesktopDemoDescription[] = |
| 2903 | "Enable showing Happiness Tracking Surveys Demo to users on Desktop"; |
| 2904 | |
Huanzhong Huang | 31a213b | 2020-02-11 15:04:03 | [diff] [blame] | 2905 | const char kHappinessTrackingSurveysForDesktopSettingsName[] = |
| 2906 | "Happiness Tracking Surveys for Settings"; |
| 2907 | const char kHappinessTrackingSurveysForDesktopSettingsDescription[] = |
| 2908 | "Enable showing Happiness Tracking Surveys for Settings to users on " |
| 2909 | "Desktop"; |
| 2910 | |
| 2911 | const char kHappinessTrackingSurveysForDesktopSettingsPrivacyName[] = |
| 2912 | "Happiness Tracking Surveys for Privacy Settings"; |
| 2913 | const char kHappinessTrackingSurveysForDesktopSettingsPrivacyDescription[] = |
| 2914 | "Enable showing Happiness Tracking Surveys for Privacy Settings to users " |
| 2915 | "on Desktop"; |
| 2916 | |
Huanzhong Huang | a232101 | 2020-04-15 08:27:12 | [diff] [blame] | 2917 | const char kHappinessTrackingSurveysForDesktopMigrationName[] = |
| 2918 | "Happiness Tracking Surveys migration"; |
| 2919 | const char kHappinessTrackingSurveysForDesktopMigrationDescription[] = |
| 2920 | "Enable the latest version of Happiness Tracking Surveys."; |
| 2921 | |
Jon Flatley | 8c78558 | 2019-06-05 00:33:42 | [diff] [blame] | 2922 | const char kKernelnextVMsName[] = "Enable VMs on experimental kernels."; |
| 2923 | const char kKernelnextVMsDescription[] = |
| 2924 | "Enables VM support on devices running experimental kernel versions."; |
| 2925 | |
Travis Skare | bcdb5ed3 | 2018-08-17 01:49:40 | [diff] [blame] | 2926 | const char kOmniboxDriveSuggestionsName[] = |
| 2927 | "Omnibox Google Drive Document suggestions"; |
| 2928 | const char kOmniboxDriveSuggestionsDescriptions[] = |
| 2929 | "Display suggestions for Google Drive documents in the omnibox when Google " |
| 2930 | "is the default search engine."; |
| 2931 | |
Kevin Bailey | 9ec0553 | 2019-01-31 23:01:33 | [diff] [blame] | 2932 | const char kOmniboxExperimentalKeywordModeName[] = |
| 2933 | "Omnibox Experimental Keyword Mode"; |
| 2934 | const char kOmniboxExperimentalKeywordModeDescription[] = |
| 2935 | "Enables various experimental features related to keyword mode, its " |
Justin Donnelly | f270348 | 2019-10-24 21:42:15 | [diff] [blame] | 2936 | "suggestions and layout."; |
Kevin Bailey | 9ec0553 | 2019-01-31 23:01:33 | [diff] [blame] | 2937 | |
Kevin Bailey | 104e4449 | 2019-10-31 16:42:32 | [diff] [blame] | 2938 | const char kOmniboxLooseMaxLimitOnDedicatedRowsName[] = |
| 2939 | "Omnibox Loose Max Limit on Dedicated Rows"; |
| 2940 | const char kOmniboxLooseMaxLimitOnDedicatedRowsDescription[] = |
| 2941 | "Enables not counting submatch suggestions towards total suggestion " |
| 2942 | "count."; |
| 2943 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 2944 | const char kOmniboxPedalSuggestionsName[] = "Omnibox Pedal suggestions"; |
| 2945 | const char kOmniboxPedalSuggestionsDescription[] = |
Orin Jaworski | 506db4d | 2019-02-14 20:17:14 | [diff] [blame] | 2946 | "Enable omnibox Pedal suggestions to accelerate actions within Chrome by " |
| 2947 | "detecting user intent and offering direct access to the end goal."; |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 2948 | |
Orin Jaworski | ca48a8b6 | 2020-01-29 20:24:27 | [diff] [blame] | 2949 | const char kOmniboxSuggestionButtonRowName[] = "Omnibox suggestion button row"; |
| 2950 | const char kOmniboxSuggestionButtonRowDescription[] = |
| 2951 | "Enable a button row on omnibox suggestions to present actionable items " |
| 2952 | "such as keyword search, tab-switch buttons, and Pedals."; |
| 2953 | |
Orin Jaworski | 04c08b4 | 2018-07-11 02:39:56 | [diff] [blame] | 2954 | const char kOmniboxReverseAnswersName[] = "Omnibox reverse answers"; |
| 2955 | const char kOmniboxReverseAnswersDescription[] = |
manuk | addd3c4 | 2019-04-09 21:20:59 | [diff] [blame] | 2956 | "Display answers with rows reversed (swapped); except definitions."; |
Orin Jaworski | 04c08b4 | 2018-07-11 02:39:56 | [diff] [blame] | 2957 | |
Kevin Bailey | 7d918b9 | 2019-05-02 16:00:14 | [diff] [blame] | 2958 | const char kOmniboxShortBookmarkSuggestionsName[] = |
| 2959 | "Omnibox short bookmark suggestions"; |
| 2960 | const char kOmniboxShortBookmarkSuggestionsDescription[] = |
| 2961 | "Match very short input words to beginning of words in bookmark " |
| 2962 | "suggestions."; |
| 2963 | |
Tommy C. Li | 065ddce7 | 2019-04-11 22:55:12 | [diff] [blame] | 2964 | const char kOmniboxSuggestionTransparencyOptionsName[] = |
| 2965 | "Omnibox Suggestion Transparency Options"; |
| 2966 | const char kOmniboxSuggestionTransparencyOptionsDescription[] = |
Tommy C. Li | b3b192f | 2020-03-27 22:50:26 | [diff] [blame] | 2967 | "Surfaces an X button next to deletable omnibox suggestions. This is to " |
| 2968 | "make the suggestion removal feature more discoverable."; |
Tommy C. Li | 065ddce7 | 2019-04-11 22:55:12 | [diff] [blame] | 2969 | |
Kevin Bailey | 89866997 | 2017-11-06 15:34:49 | [diff] [blame] | 2970 | const char kOmniboxTabSwitchSuggestionsName[] = |
| 2971 | "Omnibox tab switch suggestions"; |
| 2972 | const char kOmniboxTabSwitchSuggestionsDescription[] = |
manuk | addd3c4 | 2019-04-09 21:20:59 | [diff] [blame] | 2973 | "Enable suggestions for switching to open tabs within the Omnibox."; |
Kevin Bailey | 89866997 | 2017-11-06 15:34:49 | [diff] [blame] | 2974 | |
Kevin Bailey | 37bbf1d | 2019-08-21 19:23:55 | [diff] [blame] | 2975 | const char kOmniboxTabSwitchSuggestionsDedicatedRowName[] = |
| 2976 | "Omnibox dedicated row tab switch suggestions"; |
| 2977 | const char kOmniboxTabSwitchSuggestionsDedicatedRowDescription[] = |
Kevin Bailey | 8492ad20 | 2019-08-22 16:01:36 | [diff] [blame] | 2978 | "Put each tab switch suggestion in a separate suggestion, immediately " |
| 2979 | "following the original suggestion."; |
Kevin Bailey | 37bbf1d | 2019-08-21 19:23:55 | [diff] [blame] | 2980 | |
Jan Wilken Dörrie | 82649862 | 2020-02-07 16:15:09 | [diff] [blame] | 2981 | const char kPasswordCheckName[] = "Bulk Password Check"; |
| 2982 | const char kPasswordCheckDescription[] = |
| 2983 | "Enables the Bulk Password Check feature for signed-in users."; |
| 2984 | |
Francois Doray | cd3a096 | 2019-10-11 20:13:33 | [diff] [blame] | 2985 | const char kTabFreezeName[] = "Tab Freeze"; |
| 2986 | const char kTabFreezeDescription[] = |
| 2987 | "Enables freezing eligible tabs when they have been backgrounded for 5 " |
| 2988 | "minutes."; |
Sebastien Marchand | d33f7dc | 2018-06-22 22:07:06 | [diff] [blame] | 2989 | |
Monica Basta | 2d4fe097 | 2020-01-10 11:53:57 | [diff] [blame] | 2990 | const char kSyncSetupFriendlySettingsName[] = "Sync setup friendly settings"; |
| 2991 | const char kSyncSetupFriendlySettingsDescription[] = |
| 2992 | "Enable the new sync setup friendly settings"; |
| 2993 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2994 | #endif // !defined(OS_ANDROID) |
| 2995 | |
| 2996 | // Windows --------------------------------------------------------------------- |
| 2997 | |
| 2998 | #if defined(OS_WIN) |
| 2999 | |
David Bienvenu | d0ddda3 | 2018-11-01 16:59:16 | [diff] [blame] | 3000 | const char kCalculateNativeWinOcclusionName[] = |
| 3001 | "Calculate window occlusion on Windows"; |
| 3002 | const char kCalculateNativeWinOcclusionDescription[] = |
| 3003 | "Calculate window occlusion on Windows will be used in the future " |
| 3004 | "to throttle and potentially unload foreground tabs in occluded windows"; |
| 3005 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3006 | const char kCloudPrintXpsName[] = "XPS in Google Cloud Print"; |
| 3007 | const char kCloudPrintXpsDescription[] = |
| 3008 | "XPS enables advanced options for classic printers connected to the Cloud " |
| 3009 | "Print with Chrome. Printers must be re-connected after changing this " |
| 3010 | "flag."; |
| 3011 | |
Frank Liberato | 754d14f | 2019-01-30 23:31:17 | [diff] [blame] | 3012 | const char kD3D11VideoDecoderName[] = "D3D11 Video Decoder"; |
| 3013 | const char kD3D11VideoDecoderDescription[] = |
| 3014 | "Enables D3D11VideoDecoder for hardware accelerated video decoding."; |
| 3015 | |
Rahul Arakeri | f87184f | 2020-04-16 23:29:39 | [diff] [blame] | 3016 | const char kElasticOverscrollWinName[] = "Elastic Overscroll for Windows"; |
| 3017 | const char kElasticOverscrollWinDescription[] = |
| 3018 | "Enables Elastic Overscrolling for Windows on touchscreens and precision " |
| 3019 | "touchpads."; |
| 3020 | |
Armando Miraglia | d2e6fc9e | 2020-03-06 09:23:09 | [diff] [blame] | 3021 | const char kEnableMediaFoundationVideoCaptureName[] = |
| 3022 | "MediaFoundation Video Capture"; |
| 3023 | const char kEnableMediaFoundationVideoCaptureDescription[] = |
| 3024 | "Enable/Disable the usage of MediaFoundation for video capture. Fall back " |
| 3025 | "to DirectShow if disabled."; |
| 3026 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3027 | const char kRunVideoCaptureServiceInBrowserProcessName[] = |
| 3028 | "Run video capture service in browser"; |
| 3029 | const char kRunVideoCaptureServiceInBrowserProcessDescription[] = |
| 3030 | "Run the video capture service in the browser process."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3031 | |
Olli Etuaho | 12232119 | 2018-09-07 10:15:29 | [diff] [blame] | 3032 | const char kUseAngleName[] = "Choose ANGLE graphics backend"; |
| 3033 | const char kUseAngleDescription[] = |
| 3034 | "Choose the graphics backend for ANGLE. D3D11 is used on most Windows " |
| 3035 | "computers by default. Using the OpenGL driver as the graphics backend may " |
| 3036 | "result in higher performance in some graphics-heavy applications, " |
| 3037 | "particularly on NVIDIA GPUs. It can increase battery and memory usage of " |
| 3038 | "video playback."; |
| 3039 | |
| 3040 | const char kUseAngleDefault[] = "Default"; |
| 3041 | const char kUseAngleGL[] = "OpenGL"; |
| 3042 | const char kUseAngleD3D11[] = "D3D11"; |
| 3043 | const char kUseAngleD3D9[] = "D3D9"; |
Nathan Zabriskie | 70c046f | 2019-10-16 01:19:02 | [diff] [blame] | 3044 | const char kUseAngleD3D11on12[] = "D3D11on12"; |
Olli Etuaho | 12232119 | 2018-09-07 10:15:29 | [diff] [blame] | 3045 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3046 | const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API"; |
| 3047 | const char kUseWinrtMidiApiDescription[] = |
| 3048 | "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or " |
| 3049 | "later)."; |
| 3050 | |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 3051 | #if BUILDFLAG(ENABLE_PRINTING) |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3052 | const char kGdiTextPrinting[] = "GDI Text Printing"; |
| 3053 | const char kGdiTextPrintingDescription[] = |
| 3054 | "Use GDI to print text as simply text"; |
| 3055 | |
Lei Zhang | a6a8a49 | 2020-05-14 03:55:03 | [diff] [blame] | 3056 | const char kPrintWithReducedRasterizationName[] = |
| 3057 | "Print with reduced rasterization"; |
| 3058 | const char kPrintWithReducedRasterizationDescription[] = |
| 3059 | "When using GDI printing, avoid rasterization if possible."; |
| 3060 | |
Alan Screen | 574ffd66 | 2019-11-21 22:38:53 | [diff] [blame] | 3061 | const char kUseXpsForPrintingName[] = "Use XPS for printing"; |
| 3062 | const char kUseXpsForPrintingDescription[] = |
| 3063 | "When enabled, use XPS printing API instead of the GDI print API."; |
| 3064 | |
Alan Screen | 4938811 | 2019-12-13 23:34:21 | [diff] [blame] | 3065 | const char kUseXpsForPrintingFromPdfName[] = "Use XPS for printing from PDF"; |
| 3066 | const char kUseXpsForPrintingFromPdfDescription[] = |
| 3067 | "When enabled, use XPS printing API instead of the GDI print API when " |
| 3068 | "printing PDF documents."; |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 3069 | #endif // BUILDFLAG(ENABLE_PRINTING) |
Alan Screen | 4938811 | 2019-12-13 23:34:21 | [diff] [blame] | 3070 | |
Guillaume Jenkins | dd8060a7 | 2019-07-03 17:28:06 | [diff] [blame] | 3071 | #if BUILDFLAG(ENABLE_SPELLCHECK) |
Guillaume Jenkins | 2c1717a8 | 2019-12-05 21:20:16 | [diff] [blame] | 3072 | const char kWinUseBrowserSpellCheckerName[] = |
| 3073 | "Use the Windows OS spell checker"; |
Guillaume Jenkins | dd8060a7 | 2019-07-03 17:28:06 | [diff] [blame] | 3074 | const char kWinUseBrowserSpellCheckerDescription[] = |
Guillaume Jenkins | 2c1717a8 | 2019-12-05 21:20:16 | [diff] [blame] | 3075 | "Use the Windows OS spell checker to find spelling mistakes and provide " |
Guillaume Jenkins | dd8060a7 | 2019-07-03 17:28:06 | [diff] [blame] | 3076 | "spelling suggestions instead of using the Hunspell engine."; |
Guillaume Jenkins | 2c1717a8 | 2019-12-05 21:20:16 | [diff] [blame] | 3077 | |
| 3078 | #if BUILDFLAG(USE_WIN_HYBRID_SPELLCHECKER) |
| 3079 | const char kWinUseHybridSpellCheckerName[] = |
| 3080 | "Use hybrid spell checking on Windows"; |
| 3081 | const char kWinUseHybridSpellCheckerDescription[] = |
| 3082 | "Use both the Windows OS spell checker and the Hunspell engine to find " |
| 3083 | "spelling mistakes and provide spelling suggestions. Use the Windows OS " |
| 3084 | "spell checker first, but if a language isn't supported, fall back to the " |
| 3085 | "Hunspell engine. The \"Use the Windows OS spell checker\" feature flag " |
| 3086 | "must be enabled, otherwise this will have no effect."; |
| 3087 | #endif // BUILDFLAG(USE_WIN_HYBRID_SPELLCHECKER) |
| 3088 | |
Guillaume Jenkins | dd8060a7 | 2019-07-03 17:28:06 | [diff] [blame] | 3089 | #endif // BUILDFLAG(ENABLE_SPELLCHECK) |
| 3090 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3091 | #endif // defined(OS_WIN) |
| 3092 | |
| 3093 | // Mac ------------------------------------------------------------------------- |
| 3094 | |
| 3095 | #if defined(OS_MACOSX) |
| 3096 | |
Daniel Hosseinian | 159cb3d | 2020-03-13 03:02:02 | [diff] [blame] | 3097 | #if BUILDFLAG(ENABLE_PRINTING) |
| 3098 | const char kCupsIppPrintingBackendName[] = "CUPS IPP Printing Backend"; |
| 3099 | const char kCupsIppPrintingBackendDescription[] = |
| 3100 | "Use the CUPS IPP printing backend instead of the original CUPS backend " |
| 3101 | "that calls the PPD API."; |
| 3102 | #endif // BUILDFLAG(ENABLE_PRINTING) |
| 3103 | |
Sidney San Martín | 678fd411 | 2019-03-30 00:13:05 | [diff] [blame] | 3104 | const char kImmersiveFullscreenName[] = "Immersive Fullscreen Toolbar"; |
| 3105 | const char kImmersiveFullscreenDescription[] = |
| 3106 | "Automatically hide and show the toolbar in fullscreen."; |
| 3107 | |
Lei Zhang | e065b57 | 2018-12-11 08:00:41 | [diff] [blame] | 3108 | const char kEnableCustomMacPaperSizesName[] = "Enable custom paper sizes"; |
| 3109 | const char kEnableCustomMacPaperSizesDescription[] = |
| 3110 | "Allow use of custom paper sizes in Print Preview."; |
| 3111 | |
Greg Kerr | f46f3187 | 2019-08-08 20:22:44 | [diff] [blame] | 3112 | const char kMacSyscallSandboxName[] = "Mac Syscall Filtering Sandbox"; |
| 3113 | const char kMacSyscallSandboxDescription[] = |
| 3114 | "Controls whether the macOS sandbox filters syscalls."; |
| 3115 | |
Greg Kerr | 32483d1c | 2018-12-18 02:29:14 | [diff] [blame] | 3116 | const char kMacV2GPUSandboxName[] = "Mac V2 GPU Sandbox"; |
| 3117 | const char kMacV2GPUSandboxDescription[] = |
| 3118 | "Controls whether the GPU process on macOS uses the V1 or V2 sandbox."; |
| 3119 | |
Henrik Grunell | abaf718 | 2019-04-12 09:15:19 | [diff] [blame] | 3120 | const char kMacSystemMediaPermissionsInfoUiName[] = |
| 3121 | "System media permissions info UI"; |
| 3122 | const char kMacSystemMediaPermissionsInfoUiDescription[] = |
| 3123 | "In case a website is trying to use the camera/microphone, but Chrome " |
| 3124 | "itself is blocked on the system level to access these, show an icon in " |
| 3125 | "the Omnibox, which, when clicked, displays a bubble with information on " |
| 3126 | "how to toggle Chrome's system-level media permissions."; |
| 3127 | |
Christopher Cameron | 93855ff | 2019-10-10 19:26:54 | [diff] [blame] | 3128 | const char kMetalName[] = "Metal"; |
| 3129 | const char kMetalDescription[] = |
| 3130 | "Use Metal instead of OpenGL for rasterization (if out-of-process " |
| 3131 | "rasterization is enabled) and display (if the Skia renderer is enabled)"; |
| 3132 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3133 | #endif |
| 3134 | |
| 3135 | // Chrome OS ------------------------------------------------------------------- |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3136 | |
| 3137 | #if defined(OS_CHROMEOS) |
| 3138 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3139 | const char kAcceleratedMjpegDecodeName[] = |
| 3140 | "Hardware-accelerated mjpeg decode for captured frame"; |
| 3141 | const char kAcceleratedMjpegDecodeDescription[] = |
| 3142 | "Enable hardware-accelerated mjpeg decode for captured frame where " |
| 3143 | "available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3144 | |
Paul Dyson | e2e1a09 | 2019-08-28 23:53:11 | [diff] [blame] | 3145 | const char kAggregatedMlAppRankingName[] = "Rank suggested apps with ML."; |
| 3146 | const char kAggregatedMlAppRankingDescription[] = |
| 3147 | "Use the aggregated ML model to rank the suggested apps."; |
| 3148 | |
Thanh Nguyen | 185d69e9 | 2019-10-14 22:43:10 | [diff] [blame] | 3149 | const char kAggregatedMlSearchRankingName[] = "Rank search results with ML."; |
| 3150 | const char kAggregatedMlSearchRankingDescription[] = |
| 3151 | "Use the aggregated ML model to rank the non-app search results for " |
| 3152 | "non-empty queries."; |
| 3153 | |
Zentaro Kavanagh | 65b3e11 | 2019-09-03 16:18:23 | [diff] [blame] | 3154 | const char kAllowDisableMouseAccelerationName[] = |
| 3155 | "Allow disabling mouse acceleration"; |
| 3156 | const char kAllowDisableMouseAccelerationDescription[] = |
| 3157 | "Shows a setting to disable mouse acceleration."; |
| 3158 | |
Kyle Horimoto | 734f075 | 2020-03-20 20:46:54 | [diff] [blame] | 3159 | const char kAllowScrollSettingsName[] = |
| 3160 | "Allow changes to scroll acceleration/sensitivity for mice/touchpads."; |
| 3161 | const char kAllowScrollSettingsDescription[] = |
| 3162 | "Shows settings to enable/disable scroll acceleration and to adjust the " |
| 3163 | "sensitivity for scrolling."; |
| 3164 | |
nancy | ef7df34 | 2019-10-31 04:13:43 | [diff] [blame] | 3165 | const char kAppServiceInstanceRegistryName[] = "App Service Instance Registry"; |
| 3166 | const char kAppServiceInstanceRegistryDescription[] = |
| 3167 | "Use the App Service to provide app instance information, such as the " |
| 3168 | "app window running status."; |
| 3169 | |
Maggie Cai | d250297a | 2019-09-09 09:30:34 | [diff] [blame] | 3170 | const char kAppServiceIntentHandlingName[] = "App Service Intent Handling"; |
| 3171 | const char kAppServiceIntentHandlingDescription[] = |
| 3172 | "Use the App Service to provide data for intent handling."; |
| 3173 | |
Sara Kato | 0e6af32 | 2019-11-05 04:34:17 | [diff] [blame] | 3174 | const char kArcApplicationZoomName[] = "Allow zooming of Android apps"; |
| 3175 | const char kArcApplicationZoomDescription[] = |
| 3176 | "Allow Android apps to be zoomed in/out using ctrl+/-."; |
| 3177 | |
Luum Habtemariam | daa8fd2 | 2018-06-25 22:39:43 | [diff] [blame] | 3178 | const char kArcCupsApiName[] = "ARC CUPS API"; |
| 3179 | const char kArcCupsApiDescription[] = |
| 3180 | "Enables support of libcups APIs from ARC"; |
| 3181 | |
Ryo Hashimoto | 8f4b30ced | 2019-04-08 12:14:19 | [diff] [blame] | 3182 | const char kArcCustomTabsExperimentName[] = |
| 3183 | "Enable Custom Tabs experiment for ARC"; |
| 3184 | const char kArcCustomTabsExperimentDescription[] = |
| 3185 | "Allow Android apps to use Custom Tabs." |
| 3186 | "This feature only works on the Canary and Dev channels."; |
| 3187 | |
Naoki Fukino | 153de8a | 2019-01-22 08:37:54 | [diff] [blame] | 3188 | const char kArcDocumentsProviderName[] = "ARC DocumentsProvider integration"; |
| 3189 | const char kArcDocumentsProviderDescription[] = |
| 3190 | "Enables DocumentsProvider integration in Chrome OS Files app."; |
| 3191 | |
Satoshi Niwa | 8b1d528 | 2018-10-24 04:53:03 | [diff] [blame] | 3192 | const char kArcFilePickerExperimentName[] = |
| 3193 | "Enable file picker experiment for ARC"; |
| 3194 | const char kArcFilePickerExperimentDescription[] = |
| 3195 | "Enables using Chrome OS file picker in ARC."; |
| 3196 | |
Lev Rumyantsev | 6eddc80 | 2019-08-27 19:41:21 | [diff] [blame] | 3197 | const char kArcNativeBridgeToggleName[] = |
| 3198 | "Toggle between native bridge implementations for ARC"; |
| 3199 | const char kArcNativeBridgeToggleDescription[] = |
| 3200 | "Toggle between native bridge implementations for ARC."; |
Lev Rumyantsev | 7a854431 | 2017-08-18 19:26:51 | [diff] [blame] | 3201 | |
Jesse Schettler | c3d0a65 | 2019-04-23 18:49:24 | [diff] [blame] | 3202 | const char kArcPrintSpoolerExperimentName[] = |
| 3203 | "Enable print spooler experiment for ARC"; |
| 3204 | const char kArcPrintSpoolerExperimentDescription[] = |
Jesse Schettler | 9d23882 | 2020-03-17 19:17:37 | [diff] [blame] | 3205 | "Enables using the Chrome OS print system and print preview in ARC."; |
Jesse Schettler | c3d0a65 | 2019-04-23 18:49:24 | [diff] [blame] | 3206 | |
lgcheng | ecd1c1a6 | 2018-01-09 02:59:46 | [diff] [blame] | 3207 | const char kArcUsbHostName[] = "Enable ARC USB host integration"; |
| 3208 | const char kArcUsbHostDescription[] = |
| 3209 | "Allow Android apps to use USB host feature on ChromeOS devices."; |
| 3210 | |
Yusuke Sato | 7e790eb | 2019-06-06 00:21:04 | [diff] [blame] | 3211 | const char kArcUsbStorageUIName[] = "Enable ARC USB Storage UI"; |
| 3212 | const char kArcUsbStorageUIDescription[] = |
| 3213 | "Enable experimental UI for controlling ARC access to USB storage devices."; |
| 3214 | |
Xiaoqian Dai | 492a7f00 | 2019-10-23 02:36:12 | [diff] [blame] | 3215 | const char kAshDragWindowFromShelfName[] = |
| 3216 | "Enable dragging a window from shelf to overview or home screen."; |
| 3217 | const char kAshDragWindowFromShelfDescription[] = |
| 3218 | "Enable dragging a window from shelf to overview or home screen."; |
| 3219 | |
Eliot Courtney | e87a9c3 | 2018-11-20 03:33:02 | [diff] [blame] | 3220 | const char kAshEnablePipRoundedCornersName[] = |
| 3221 | "Enable Picture-in-Picture rounded corners."; |
| 3222 | const char kAshEnablePipRoundedCornersDescription[] = |
| 3223 | "Enable rounded corners on the Picture-in-Picture window."; |
| 3224 | |
Andrew Moylan | 2db11cd | 2019-05-22 14:25:15 | [diff] [blame] | 3225 | const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode"; |
| 3226 | const char kAshEnableUnifiedDesktopDescription[] = |
| 3227 | "Enable unified desktop mode which allows a window to span multiple " |
| 3228 | "displays."; |
| 3229 | |
Min Chen | 3e34256 | 2019-05-04 00:08:36 | [diff] [blame] | 3230 | const char kAshSwapSideVolumeButtonsForOrientationName[] = |
| 3231 | "Swap side volume buttons to match screen orientation."; |
| 3232 | const char kAshSwapSideVolumeButtonsForOrientationDescription[] = |
| 3233 | "Make the side volume button that's closer to the top/right always " |
| 3234 | "increase the volume and the button that's closer to the bottom/left " |
| 3235 | "always decrease the volume."; |
| 3236 | |
minch | c6243fd | 2019-10-22 00:45:46 | [diff] [blame] | 3237 | const char kAshSwipingFromLeftEdgeToGoBackName[] = |
| 3238 | "Swping from the left edge of the display to go back to the previous page."; |
| 3239 | const char kAshSwipingFromLeftEdgeToGoBackDescription[] = |
| 3240 | "Swiping from the restricted left area of the display with enough drag " |
| 3241 | "distance or fling velocity could go back to the previous page while in " |
| 3242 | "tablet mode."; |
| 3243 | |
Ryan Hansberry | 7c6c2b2 | 2019-06-18 21:07:14 | [diff] [blame] | 3244 | const char kBluetoothAggressiveAppearanceFilterName[] = |
| 3245 | "Aggressive Bluetooth device filtering"; |
| 3246 | const char kBluetoothAggressiveAppearanceFilterDescription[] = |
| 3247 | "Enables a more aggressive Bluetooth filter in the UI to hide devices that " |
| 3248 | "likely cannot be connected to."; |
| 3249 | |
Michael Sun | 1b15a30 | 2020-04-07 02:57:29 | [diff] [blame] | 3250 | const char kBluetoothFixA2dpPacketSizeName[] = "Bluetooth fix A2DP packet size"; |
| 3251 | const char kBluetoothFixA2dpPacketSizeDescription[] = |
| 3252 | "Fixes Bluetooth A2DP packet size to a smaller default value to improve " |
| 3253 | "audio quality and may fix audio stutter."; |
| 3254 | |
Hsin-Yu Chao | 771fcd5 | 2020-03-17 17:35:10 | [diff] [blame] | 3255 | const char kBluetoothNextHandsfreeProfileName[] = |
| 3256 | "Enable next version of Bluetooth Handsfree profile"; |
| 3257 | const char kBluetoothNextHandsfreeProfileDescription[] = |
| 3258 | "Enable next version of Bluetooth Handsfree profile 1.7 which includes " |
| 3259 | "WBS(wideband speeech) feature"; |
| 3260 | |
Christopher Lam | 2853001 | 2019-07-11 04:05:12 | [diff] [blame] | 3261 | const char kCameraSystemWebAppName[] = "Camera System Web App"; |
| 3262 | const char kCameraSystemWebAppDescription[] = |
| 3263 | "Run the Chrome Camera App as a System Web App."; |
| 3264 | |
David Staessens | 13e6e23 | 2020-01-17 04:23:51 | [diff] [blame] | 3265 | const char kChromeosVideoDecoderName[] = "New Chrome OS Video Decoder"; |
| 3266 | const char kChromeosVideoDecoderDescription[] = |
| 3267 | "Enables the new Chrome OS video decoder pipeline for hardware accelerated" |
| 3268 | "video decoding."; |
| 3269 | |
Yulun Wu | 1e35513 | 2020-02-11 20:12:22 | [diff] [blame] | 3270 | const char kContextualNudgesName[] = |
| 3271 | "Contextual nudges for user gesture education"; |
| 3272 | const char kContextualNudgesDescription[] = |
| 3273 | "Enables contextual nudges, periodically showing the user a label " |
| 3274 | "explaining how to interact with a particular UI element using gestures."; |
| 3275 | |
Su Hong Koo | 37a5e7dd | 2020-02-12 20:52:57 | [diff] [blame] | 3276 | const char kCornerShortcutsName[] = "Enable corner shortcuts"; |
| 3277 | const char kCornerShortcutsDescription[] = |
| 3278 | "If enabled, the user can configure actions for corners of the display."; |
| 3279 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3280 | const char kCrosRegionsModeName[] = "Cros-regions load mode"; |
| 3281 | const char kCrosRegionsModeDescription[] = |
| 3282 | "This flag controls cros-regions load mode"; |
| 3283 | const char kCrosRegionsModeDefault[] = "Default"; |
| 3284 | const char kCrosRegionsModeOverride[] = "Override VPD values."; |
| 3285 | const char kCrosRegionsModeHide[] = "Hide VPD values."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3286 | |
matterchen | 6b34876 | 2020-01-08 06:08:09 | [diff] [blame] | 3287 | const char kCrostiniPortForwardingName[] = "Crostini Port Forwarding"; |
| 3288 | const char kCrostiniPortForwardingDescription[] = |
| 3289 | "Enable Crostini port forwarding."; |
| 3290 | |
David Munro | 3528c5c | 2020-01-13 02:44:37 | [diff] [blame] | 3291 | const char kCrostiniDiskResizingName[] = "Allow resizing Crostini disks"; |
| 3292 | const char kCrostiniDiskResizingDescription[] = |
| 3293 | "Use preallocated user-resizeable disks for Crostini instead of sparse " |
| 3294 | "automatically sized disks."; |
| 3295 | |
danielng | c6cea8d7 | 2020-02-28 06:17:38 | [diff] [blame] | 3296 | const char kCrostiniShowMicSettingName[] = "Allow Crostini mic setting"; |
| 3297 | const char kCrostiniShowMicSettingDescription[] = |
| 3298 | "Adds the option to allow Crostini to access the mic"; |
| 3299 | |
David Munro | 3959862 | 2020-01-17 08:41:08 | [diff] [blame] | 3300 | const char kCrostiniUsernameName[] = "Allow picking your Crostini username"; |
| 3301 | const char kCrostiniUsernameDescription[] = |
| 3302 | "Allow picking your Crostini username"; |
| 3303 | |
David Munro | 3728ef7 | 2019-10-30 07:22:15 | [diff] [blame] | 3304 | const char kCrostiniUseBusterImageName[] = "New Crostini containers use Buster"; |
| 3305 | const char kCrostiniUseBusterImageDescription[] = |
| 3306 | "New Crostini containers use Debian Buster images instead of Debian " |
| 3307 | "Stretch."; |
| 3308 | |
Ben Wells | 7238dd0 | 2019-05-02 08:20:32 | [diff] [blame] | 3309 | const char kCrostiniGpuSupportName[] = "Crostini GPU Support"; |
| 3310 | const char kCrostiniGpuSupportDescription[] = "Enable Crostini GPU support."; |
| 3311 | |
Nicholas Verne | 89be53b | 2019-03-27 23:08:32 | [diff] [blame] | 3312 | const char kCrostiniUsbAllowUnsupportedName[] = |
| 3313 | "Crostini Usb Allow Unsupported"; |
| 3314 | const char kCrostiniUsbAllowUnsupportedDescription[] = |
Nicholas Verne | 045685c | 2019-09-04 21:11:29 | [diff] [blame] | 3315 | "Allow mounting unsupported Usb devices in Crostini. At your own risk. "; |
Josh Pratt | 57cea39 | 2018-10-30 02:59:06 | [diff] [blame] | 3316 | |
Nicholas Verne | 8462962 | 2019-11-14 04:55:52 | [diff] [blame] | 3317 | const char kCrostiniWebUIUpgraderName[] = "Crostini WebUI Upgrader"; |
| 3318 | const char kCrostiniWebUIUpgraderDescription[] = |
| 3319 | "Enable the new WebUI Crostini Upgrader Dialog."; |
| 3320 | |
Max Li | 6f2e814 | 2019-10-23 13:34:11 | [diff] [blame] | 3321 | const char kCryptAuthV2DeviceActivityStatusName[] = |
| 3322 | "CryptAuth Device Activity Status"; |
| 3323 | const char kCryptAuthV2DeviceActivityStatusDescription[] = |
| 3324 | "Use the CryptAuth GetDevicesActivityStatus API to sort devices."; |
| 3325 | |
Josh Nohle | 12948a1 | 2019-10-10 21:06:16 | [diff] [blame] | 3326 | const char kCryptAuthV2DeviceSyncName[] = "CryptAuth v2 DeviceSync"; |
| 3327 | const char kCryptAuthV2DeviceSyncDescription[] = |
Josh Nohle | 7cf892de | 2019-11-08 16:14:05 | [diff] [blame] | 3328 | "Use the CryptAuth v2 DeviceSync protocol. Note: v1 DeviceSync will " |
| 3329 | "continue to run until the deprecation flag is flipped."; |
Josh Nohle | 12948a1 | 2019-10-10 21:06:16 | [diff] [blame] | 3330 | |
Josh Nohle | 2f82dcc | 2018-12-17 23:11:23 | [diff] [blame] | 3331 | const char kCryptAuthV2EnrollmentName[] = "CryptAuth v2 Enrollment"; |
| 3332 | const char kCryptAuthV2EnrollmentDescription[] = |
| 3333 | "Use the CryptAuth v2 Enrollment protocol."; |
| 3334 | |
Thanh Nguyen | a4c93344 | 2019-05-11 03:43:55 | [diff] [blame] | 3335 | const char kDisableCancelAllTouchesName[] = "Disable CancelAllTouches()"; |
| 3336 | const char kDisableCancelAllTouchesDescription[] = |
| 3337 | "If enabled, a canceled touch will not force all other touches to be " |
| 3338 | "canceled."; |
| 3339 | |
Josh Nohle | 115bc289 | 2019-12-18 18:26:34 | [diff] [blame] | 3340 | const char kDisableCryptAuthV1DeviceSyncName[] = |
| 3341 | "Disable CryptAuth v1 DeviceSync"; |
| 3342 | const char kDisableCryptAuthV1DeviceSyncDescription[] = |
| 3343 | "Disable the CryptAuth v1 DeviceSync protocol. The v2 DeviceSync flag " |
| 3344 | "should be enabled before this flag is flipped."; |
| 3345 | |
Daniele Castagna | 893d822e | 2019-03-08 21:37:11 | [diff] [blame] | 3346 | const char kDisableExplicitDmaFencesName[] = "Disable explicit dma-fences"; |
| 3347 | const char kDisableExplicitDmaFencesDescription[] = |
| 3348 | "Always rely on implicit syncrhonization between GPU and display " |
| 3349 | "controller instead of using dma-fences explcitily when available."; |
| 3350 | |
Bailey Berro | 79b784f | 2020-01-16 20:18:21 | [diff] [blame] | 3351 | const char kDisplayChangeModalName[] = "Enable display change modal"; |
| 3352 | const char kDisplayChangeModalDescription[] = |
| 3353 | "If enabled, a modal dialog will be shown when resolution or refresh rate " |
| 3354 | "is changed rather than a notification."; |
| 3355 | |
Su Hong Koo | bbd04e0 | 2020-04-04 00:16:06 | [diff] [blame] | 3356 | const char kDisplayIdentificationName[] = |
| 3357 | "Enable display identification highlight"; |
| 3358 | const char kDisplayIdentificationDescription[] = |
| 3359 | "Shows a blue highlight around the edges of the display that is selected " |
| 3360 | "in the Displays Settings page. Only shown when the Displays Settings page " |
| 3361 | "is open."; |
| 3362 | |
Miguel Casas | f15028b1 | 2019-10-23 12:52:32 | [diff] [blame] | 3363 | const char kEnableUseHDRTransferFunctionName[] = |
| 3364 | "Enable using HDR transfer function"; |
| 3365 | const char kEnableUseHDRTransferFunctionDescription[] = |
| 3366 | "Allows using an HDR transfer functions if any connected monitor supports " |
| 3367 | "it"; |
| 3368 | |
Giovanni Ortuño Urquidi | 3e5e207 | 2019-09-25 06:50:20 | [diff] [blame] | 3369 | const char kDisableOfficeEditingComponentAppName[] = |
| 3370 | "Disable Office Editing for Docs, Sheets & Slides"; |
| 3371 | const char kDisableOfficeEditingComponentAppDescription[] = |
| 3372 | "Disables Office Editing for Docs, Sheets & Slides component app so " |
| 3373 | "handlers won't be registered, making it possible to install another " |
| 3374 | "version for testing."; |
| 3375 | |
Ahmed Fakhry | 4f567e69 | 2018-10-16 15:51:08 | [diff] [blame] | 3376 | const char kDoubleTapToZoomInTabletModeName[] = |
| 3377 | "Double-tap to zoom in tablet mode"; |
| 3378 | const char kDoubleTapToZoomInTabletModeDescription[] = |
| 3379 | "If Enabled, double tapping in webpages while in tablet mode will zoom the " |
| 3380 | "page."; |
| 3381 | |
Xiyuan Xia | 381892ca | 2020-04-30 23:17:23 | [diff] [blame] | 3382 | const char kMovablePartialScreenshotName[] = |
| 3383 | "Movable/resizable partial screenshot region"; |
| 3384 | const char kMovablePartialScreenshotDescription[] = |
| 3385 | "Allow partial screenshot region to be moved/resized via mouse/touch."; |
| 3386 | |
Vladislav Kuzkokov | 22f860ed | 2019-05-22 16:26:54 | [diff] [blame] | 3387 | const char kEnableAdvancedPpdAttributesName[] = |
Vladislav Kuzkokov | 457c66879 | 2019-08-26 15:37:26 | [diff] [blame] | 3388 | "Enable advanced PPD attributes"; |
Vladislav Kuzkokov | 22f860ed | 2019-05-22 16:26:54 | [diff] [blame] | 3389 | const char kEnableAdvancedPpdAttributesDescription[] = |
Vladislav Kuzkokov | 457c66879 | 2019-08-26 15:37:26 | [diff] [blame] | 3390 | "Enable advanced settings on CUPS printers"; |
Vladislav Kuzkokov | 22f860ed | 2019-05-22 16:26:54 | [diff] [blame] | 3391 | |
Andrew Moylan | 2db11cd | 2019-05-22 14:25:15 | [diff] [blame] | 3392 | const char kEnableAppDataSearchName[] = "Enable app data search in launcher"; |
| 3393 | const char kEnableAppDataSearchDescription[] = |
| 3394 | "Allow launcher search to access data available through Firebase App " |
| 3395 | "Indexing"; |
| 3396 | |
| 3397 | const char kEnableAppReinstallZeroStateName[] = |
| 3398 | "Enable Zero State App Reinstall Suggestions."; |
| 3399 | const char kEnableAppReinstallZeroStateDescription[] = |
| 3400 | "Enable Zero State App Reinstall Suggestions feature in launcher, which " |
| 3401 | "will show app reinstall recommendations at end of zero state list."; |
| 3402 | |
Matthew Mourgos | cf22b4b | 2019-03-06 23:46:39 | [diff] [blame] | 3403 | const char kEnableAppGridGhostName[] = "App Grid Ghosting"; |
| 3404 | const char kEnableAppGridGhostDescription[] = |
| 3405 | "Enables ghosting during an item drag in launcher."; |
| 3406 | |
Daniel Zhang | 0139907 | 2018-08-16 22:28:20 | [diff] [blame] | 3407 | const char kEnableAppListSearchAutocompleteName[] = |
| 3408 | "App List Search Autocomplete"; |
| 3409 | const char kEnableAppListSearchAutocompleteDescription[] = |
| 3410 | "Allow App List search box to autocomplete queries for Google searches and " |
| 3411 | "apps."; |
| 3412 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 3413 | const char kEnableArcUnifiedAudioFocusName[] = |
Becca Hughes | 34415e8 | 2018-10-05 18:47:37 | [diff] [blame] | 3414 | "Enable unified audio focus on ARC"; |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 3415 | const char kEnableArcUnifiedAudioFocusDescription[] = |
Becca Hughes | 34415e8 | 2018-10-05 18:47:37 | [diff] [blame] | 3416 | "If audio focus is enabled in Chrome then this will delegate audio focus " |
| 3417 | "control in Android apps to Chrome."; |
| 3418 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3419 | const char kEnableAmbientModeName[] = "Enable Ambient Mode"; |
| 3420 | const char kEnableAmbientModeDescription[] = |
Meilin Wang | fc26d4f0 | 2020-02-18 21:19:48 | [diff] [blame] | 3421 | "Enable Ambient Mode to show an enhanced lock screen with more functions"; |
| 3422 | |
Yue Li | ebaa995 | 2018-12-07 21:41:26 | [diff] [blame] | 3423 | const char kEnableAssistantAppSupportName[] = "Enable Assistant App Support"; |
| 3424 | const char kEnableAssistantAppSupportDescription[] = |
| 3425 | "Enable the Assistant App Support feature"; |
| 3426 | |
Xiaohui Chen | b523747b | 2019-03-14 23:38:32 | [diff] [blame] | 3427 | const char kEnableAssistantLauncherIntegrationName[] = |
| 3428 | "Assistant & Launcher integration"; |
| 3429 | const char kEnableAssistantLauncherIntegrationDescription[] = |
| 3430 | "Combine Launcher search with the power of Assistant to provide the most " |
| 3431 | "useful answer for each query. Requires Assistant to be enabled."; |
| 3432 | |
Yue Li | 26244a8e | 2019-11-14 02:05:03 | [diff] [blame] | 3433 | const char kEnableAssistantLauncherUIName[] = "Assistant Launcher UI"; |
| 3434 | const char kEnableAssistantLauncherUIDescription[] = |
| 3435 | "Enables the embedded Assistant UI in the app list. Requires Assistant to " |
| 3436 | "be enabled."; |
| 3437 | |
li | f5c5bec6 | 2019-06-26 22:56:05 | [diff] [blame] | 3438 | const char kEnableAssistantMediaSessionIntegrationName[] = |
| 3439 | "Assistant Media Session integration"; |
| 3440 | const char kEnableAssistantMediaSessionIntegrationDescription[] = |
| 3441 | "Enable Assistant Media Session Integration."; |
| 3442 | |
Xiao Yang | f59e693 | 2019-07-19 00:18:13 | [diff] [blame] | 3443 | const char kEnableAssistantRoutinesName[] = "Assistant Routines"; |
| 3444 | const char kEnableAssistantRoutinesDescription[] = "Enable Assistant Routines."; |
| 3445 | |
Alex Newcomer | e5a362c | 2019-05-02 19:31:35 | [diff] [blame] | 3446 | const char kEnableBackgroundBlurName[] = "Enable background blur."; |
| 3447 | const char kEnableBackgroundBlurDescription[] = |
minch | ab2ded5ce | 2019-09-06 18:32:28 | [diff] [blame] | 3448 | "Enables background blur for the Launcher, Shelf, Unified System Tray etc."; |
Alex Newcomer | e5a362c | 2019-05-02 19:31:35 | [diff] [blame] | 3449 | |
Avery Musbach | 6277782 | 2020-03-06 05:49:04 | [diff] [blame] | 3450 | const char kDragToSnapInClamshellModeName[] = "Enable clamshell split view."; |
| 3451 | const char kDragToSnapInClamshellModeDescription[] = |
| 3452 | "You can drag a window from clamshell overview and snap it. If you will be " |
| 3453 | "using multiple displays, you should use this flag only in conjunction " |
| 3454 | "with multi-display-overview-and-split-view (otherwise you are likely to " |
| 3455 | "get a crash)."; |
| 3456 | |
| 3457 | const char kMultiDisplayOverviewAndSplitViewName[] = |
| 3458 | "Enable multi-display overview and split view."; |
| 3459 | const char kMultiDisplayOverviewAndSplitViewDescription[] = |
| 3460 | "You can drag a window from one overview grid and drop into another " |
| 3461 | "overview grid."; |
| 3462 | |
Charles Zhao | 9d1b8def | 2019-10-16 22:32:39 | [diff] [blame] | 3463 | const char kEnableCrOSActionRecorderName[] = "Enable CrOS action recorder"; |
| 3464 | const char kEnableCrOSActionRecorderDescription[] = |
| 3465 | "When enabled, each app launching, file opening, setting change, and url " |
| 3466 | "visiting will be logged locally into an encrypted file. Should not be " |
Charles Zhao | afe9e8d | 2019-10-17 00:34:34 | [diff] [blame] | 3467 | "enabled. Be aware that hash option only provides a thin layer of privacy."; |
Charles Zhao | 9d1b8def | 2019-10-16 22:32:39 | [diff] [blame] | 3468 | |
Alexander Alekseev | 38e1e0a | 2018-11-08 22:48:48 | [diff] [blame] | 3469 | const char kEnableDiscoverAppName[] = "Enable Discover App"; |
| 3470 | const char kEnableDiscoverAppDescription[] = |
| 3471 | "Enable Discover App icon in launcher."; |
| 3472 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3473 | const char kEnableEncryptionMigrationName[] = |
| 3474 | "Enable encryption migration of user data"; |
| 3475 | const char kEnableEncryptionMigrationDescription[] = |
| 3476 | "If enabled and the device supports ARC, the user will be asked to update " |
| 3477 | "the encryption of user data when the user signs in."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3478 | |
Harry Cutts | cfe6d934f | 2019-06-05 21:45:55 | [diff] [blame] | 3479 | const char kEnableGesturePropertiesDBusServiceName[] = |
| 3480 | "Enable gesture properties D-Bus service"; |
| 3481 | const char kEnableGesturePropertiesDBusServiceDescription[] = |
| 3482 | "Enable a D-Bus service for accessing gesture properties, which are used " |
| 3483 | "to configure input devices."; |
| 3484 | |
Xiaohui Chen | f4283f3 | 2018-11-26 20:02:50 | [diff] [blame] | 3485 | const char kEnableGoogleAssistantDspName[] = |
| 3486 | "Enable Google Assistant with hardware-based hotword"; |
| 3487 | const char kEnableGoogleAssistantDspDescription[] = |
| 3488 | "Enable an experimental feature that uses hardware-based hotword detection " |
| 3489 | "for Assistant. Only a limited number of devices have this type of " |
| 3490 | "hardware support."; |
| 3491 | |
Xiaohui Chen | c3baca4 | 2018-11-30 19:29:37 | [diff] [blame] | 3492 | const char kEnableGoogleAssistantStereoInputName[] = |
| 3493 | "Enable Google Assistant with stereo audio input"; |
| 3494 | const char kEnableGoogleAssistantStereoInputDescription[] = |
| 3495 | "Enable an experimental feature that uses stereo audio input for hotword " |
| 3496 | "and voice to text detection in Google Assistant."; |
| 3497 | |
Xiaohui Chen | 3f3a5bf1 | 2019-09-28 00:29:45 | [diff] [blame] | 3498 | const char kEnableGoogleAssistantAecName[] = "Enable Google Assistant AEC"; |
| 3499 | const char kEnableGoogleAssistantAecDescription[] = |
| 3500 | "Enable an experimental feature that removes local feedback from audio " |
| 3501 | "input to help hotword and ASR when background audio is playing."; |
| 3502 | |
Rob Schonberger | 11bb281 | 2019-07-31 23:41:00 | [diff] [blame] | 3503 | const char kEnableHeuristicStylusPalmRejectionName[] = |
| 3504 | "Enable Heuristic for Stylus/Palm Rejection."; |
| 3505 | const char kEnableHeuristicStylusPalmRejectionDescription[] = |
| 3506 | "Enable additional heuristic palm rejection logic when interacting with " |
| 3507 | "stylus usage. Not intended for all devices."; |
| 3508 | |
Harry Cutts | ce1028e | 2020-04-22 19:09:10 | [diff] [blame] | 3509 | const char kEnableHighResolutionMouseScrollingName[] = |
| 3510 | "Enable high resolution mouse scrolling"; |
| 3511 | const char kEnableHighResolutionMouseScrollingDescription[] = |
| 3512 | "Enable use of high-resolution scrolling events from supported mice (those " |
| 3513 | "which report REL_WHEEL_HI_RES from the Linux kernel)."; |
| 3514 | |
Rob Schonberger | c258473f | 2019-11-08 05:09:35 | [diff] [blame] | 3515 | const char kEnableNeuralStylusPalmRejectionName[] = |
| 3516 | "Enable Neural Palm Detection"; |
| 3517 | const char kEnableNeuralStylusPalmRejectionDescription[] = |
| 3518 | "Experimental: Enable Neural Palm detection. Not compatible with all " |
| 3519 | "devices."; |
| 3520 | |
Mitsuru Oshima | daf5457 | 2020-04-07 14:47:59 | [diff] [blame] | 3521 | const char kEnableNewShortcutMappingName[] = "Enable New Shortcut Mapping"; |
| 3522 | const char kEnableNewShortcutMappingDescription[] = |
| 3523 | "Enables experimental new shortcut mapping"; |
| 3524 | |
Rob Schonberger | ba23578 | 2020-03-11 05:01:14 | [diff] [blame] | 3525 | const char kEnablePalmOnMaxTouchMajorName[] = |
| 3526 | "Enable Palm when Touch is Maximum"; |
| 3527 | const char kEnablePalmOnMaxTouchMajorDescription[] = |
| 3528 | "Experimental: Enable Palm detection when the touchscreen reports max " |
| 3529 | "size. Not compatible with all devices."; |
| 3530 | |
| 3531 | const char kEnablePalmOnToolTypePalmName[] = |
| 3532 | "Enable Palm when Tool Type is Palm"; |
| 3533 | const char kEnablePalmOnToolTypePalmDescription[] = |
| 3534 | "Experimental: Enable palm detection when touchscreen reports " |
| 3535 | "TOOL_TYPE_PALM. Not compatible with all devices."; |
| 3536 | |
Rob Schonberger | e0a8e3c | 2020-04-21 03:04:39 | [diff] [blame] | 3537 | const char kEnablePalmSuppressionName[] = |
| 3538 | "Enable Palm Suppression with Stylus."; |
| 3539 | const char kEnablePalmSuppressionDescription[] = |
| 3540 | "If enabled, suppresses touch when a stylus is on a touchscreen."; |
| 3541 | |
Danan S | 749399c | 2019-06-25 23:08:48 | [diff] [blame] | 3542 | const char kEnableParentalControlsSettingsName[] = |
| 3543 | "Enable Parental controls settings"; |
| 3544 | const char kEnableParentalControlsSettingsDescription[] = |
| 3545 | "Enable Parental Control options in settings."; |
| 3546 | |
Vladislav Kaznacheev | aa213a0 | 2018-10-29 17:54:28 | [diff] [blame] | 3547 | const char kEnablePlayStoreSearchName[] = "Enable Play Store search"; |
| 3548 | const char kEnablePlayStoreSearchDescription[] = |
| 3549 | "Enable Play Store search in launcher."; |
| 3550 | |
[email protected] | 683123b9 | 2019-12-10 03:52:22 | [diff] [blame] | 3551 | const char kEnableQuickAnswersName[] = "Enable Quick Answers"; |
| 3552 | const char kEnableQuickAnswersDescription[] = |
| 3553 | "Enable the Quick Answers feature"; |
| 3554 | |
Xiao Yang | fcee43b | 2020-02-11 03:27:43 | [diff] [blame] | 3555 | const char kEnableQuickAnswersRichUiName[] = "Enable Quick Answers Rich UI"; |
| 3556 | const char kEnableQuickAnswersRichUiDescription[] = |
| 3557 | "Enable the Quick Answers rich UI."; |
| 3558 | |
Li Lin | b89713c | 2020-05-13 00:20:37 | [diff] [blame] | 3559 | const char kEnableQuickAnswersTextAnnotatorName[] = |
| 3560 | "Enable Quick Answers text annotator"; |
| 3561 | const char kEnableQuickAnswersTextAnnotatorDescription[] = |
| 3562 | "Enable Quick Answers text annotator."; |
| 3563 | |
Jazz Xu | 2e588666 | 2018-12-14 00:38:48 | [diff] [blame] | 3564 | const char kEnableVideoPlayerNativeControlsName[] = |
| 3565 | "Enable native controls in video player app"; |
| 3566 | const char kEnableVideoPlayerNativeControlsDescription[] = |
| 3567 | "Enable native controls in video player app"; |
| 3568 | |
Brian Geffon | 134e77c5 | 2019-07-30 21:49:58 | [diff] [blame] | 3569 | const char kTrimOnFreezeName[] = "Trim Working Set on freeze"; |
| 3570 | const char kTrimOnFreezeDescription[] = "Trim Working Set on all frames frozen"; |
| 3571 | |
| 3572 | const char kTrimOnMemoryPressureName[] = "Trim Working Set on memory pressure"; |
| 3573 | const char kTrimOnMemoryPressureDescription[] = |
| 3574 | "Trim Working Set periodically on memory pressure"; |
| 3575 | |
Lei Zhang | 0ca70ea | 2018-09-07 17:51:01 | [diff] [blame] | 3576 | const char kEnableZeroStateSuggestionsName[] = "Enable Zero State Suggetions"; |
| 3577 | const char kEnableZeroStateSuggestionsDescription[] = |
Sammie Quon | 248ccef | 2018-08-28 23:00:01 | [diff] [blame] | 3578 | "Enable Zero State Suggestions feature in Launcher, which will show " |
Vladislav Kaznacheev | aa213a0 | 2018-10-29 17:54:28 | [diff] [blame] | 3579 | "suggestions when launcher search box is active with an empty query"; |
Sammie Quon | 248ccef | 2018-08-28 23:00:01 | [diff] [blame] | 3580 | |
Eleni Dimitriadis | 86ff6060 | 2019-12-23 05:17:09 | [diff] [blame] | 3581 | const char kEnableSuggestedFilesName[] = "Enable Suggested Files"; |
| 3582 | const char kEnableSuggestedFilesDescription[] = |
| 3583 | "Enable Suggested Files feature in Launcher, which will show file " |
| 3584 | "suggestions in the suggestion chips when the launcher is opened"; |
| 3585 | |
Anqing Zhao | 05ec582 | 2019-11-21 15:42:43 | [diff] [blame] | 3586 | const char kEnterpriseReportingInChromeOSName[] = |
| 3587 | "Enterprise cloud reporting in Chrome OS"; |
| 3588 | const char kEnterpriseReportingInChromeOSDescription[] = |
| 3589 | "Enable the enterprise cloud reporting in Chrome OS. This feature requires " |
| 3590 | "user level cloud management."; |
| 3591 | |
Nicholas Hollingum | e9a6744f | 2019-10-03 05:57:29 | [diff] [blame] | 3592 | const char kExoPointerLockName[] = "Pointer lock for Linux applications"; |
| 3593 | const char kExoPointerLockDescription[] = |
| 3594 | "Allow Linux applications to request a pointer lock, i.e. exclusive use of " |
| 3595 | "the mouse pointer."; |
| 3596 | |
Akihiro Ota | 02ec6bed | 2020-01-21 22:27:22 | [diff] [blame] | 3597 | const char kExperimentalAccessibilityChromeVoxAnnotationsName[] = |
| 3598 | "Enable experimental ChromeVox annotations feature."; |
| 3599 | const char kExperimentalAccessibilityChromeVoxAnnotationsDescription[] = |
| 3600 | "Allows users to create custom annotations for elements using ChromeVox."; |
| 3601 | |
Akihiro Ota | 3ff6f8a | 2019-01-18 17:43:04 | [diff] [blame] | 3602 | const char kExperimentalAccessibilityChromeVoxLanguageSwitchingName[] = |
| 3603 | "Enable experimental ChromeVox language switching."; |
| 3604 | const char kExperimentalAccessibilityChromeVoxLanguageSwitchingDescription[] = |
| 3605 | "Enable ChromeVox language switching, which changes ChromeVox's " |
| 3606 | "output language upon detection of new language."; |
| 3607 | |
Akihiro Ota | 3d5699e | 2020-04-28 17:33:37 | [diff] [blame] | 3608 | const char kExperimentalAccessibilityChromeVoxTutorialName[] = |
| 3609 | "Enable experimental ChromeVox interactive tutorial."; |
| 3610 | const char kExperimentalAccessibilityChromeVoxTutorialDescription[] = |
| 3611 | "A comprehensive and interactive tutorial for the ChromeVox screen reader."; |
| 3612 | |
Akihiro Ota | 4747067 | 2020-01-15 19:15:27 | [diff] [blame] | 3613 | const char kExperimentalAccessibilityChromeVoxSearchMenusName[] = |
| 3614 | "Enable experimental ChromeVox search menus feature."; |
| 3615 | const char kExperimentalAccessibilityChromeVoxSearchMenusDescription[] = |
| 3616 | "Allows users to search for items in the ChromeVox menu."; |
| 3617 | |
Rose Garcia | 26e2ae3 | 2019-06-25 00:57:54 | [diff] [blame] | 3618 | const char kExperimentalAccessibilitySwitchAccessName[] = |
| 3619 | "Experimental feature Switch Access"; |
| 3620 | const char kExperimentalAccessibilitySwitchAccessDescription[] = |
| 3621 | "Add a setting to enable the prototype of Switch Access"; |
| 3622 | |
| 3623 | const char kExperimentalAccessibilitySwitchAccessTextName[] = |
| 3624 | "Enable enhanced Switch Access text input."; |
| 3625 | const char kExperimentalAccessibilitySwitchAccessTextDescription[] = |
| 3626 | "Enable experimental or in-progress Switch Access features for improved " |
| 3627 | "text input"; |
| 3628 | |
Austin Tankiang | 4f97363 | 2019-08-12 08:33:23 | [diff] [blame] | 3629 | const char kFilesNGName[] = "Enable Files App. NG."; |
| 3630 | const char kFilesNGDescription[] = |
| 3631 | "Enable the next generation UI style of the file manager."; |
| 3632 | |
François Degros | 1e58140 | 2020-04-28 08:29:59 | [diff] [blame] | 3633 | const char kFilesZipNoNaClName[] = "New ZIP handling in Files App"; |
| 3634 | const char kFilesZipNoNaClDescription[] = |
| 3635 | "Enable new ZIP archive handling in Files App which does not rely on NaCl."; |
| 3636 | |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 3637 | const char kFsNosymfollowName[] = |
| 3638 | "Prevent symlink traversal on user-supplied filesystems."; |
| 3639 | const char kFsNosymfollowDescription[] = |
| 3640 | "Causes user-supplied filesystems to be mounted with the 'nosymfollow'" |
| 3641 | " option, so the chromuimos LSM denies symlink traversal on the" |
| 3642 | " filesystem."; |
| 3643 | |
Thanh Nguyen | 0ec9c75 | 2019-10-04 01:35:37 | [diff] [blame] | 3644 | const char kFuzzyAppSearchName[] = "Fuzzy app search algorithm in launcher."; |
| 3645 | const char kFuzzyAppSearchDescription[] = |
| 3646 | "Uses fuzzy search algorithm for app search in launcher."; |
| 3647 | |
Jeroen Dhollander | 41b3bec | 2019-07-19 16:56:24 | [diff] [blame] | 3648 | const char kGaiaActionButtonsName[] = |
| 3649 | "Enable action buttons on Gaia login screen"; |
| 3650 | const char kGaiaActionButtonsDescription[] = |
| 3651 | "Enable primary/secondary action button on Gaia login screen."; |
| 3652 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3653 | const char kHelpAppName[] = "Help App"; |
| 3654 | const char kHelpAppDescription[] = |
Rachel Carpenter | edc531fa | 2020-01-29 07:32:33 | [diff] [blame] | 3655 | "Enables the chrome://help-app System Web App (SWA)"; |
| 3656 | |
Becca Hughes | 7146553 | 2019-04-12 19:18:55 | [diff] [blame] | 3657 | const char kHideArcMediaNotificationsName[] = "Hide ARC media notifications"; |
| 3658 | const char kHideArcMediaNotificationsDescription[] = |
| 3659 | "Hides media notifications for ARC apps. Requires " |
| 3660 | "#enable-media-session-notifications to be enabled."; |
| 3661 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3662 | const char kImeAssistAutocorrectName[] = "Enable assistive autocorrect"; |
| 3663 | const char kImeAssistAutocorrectDescription[] = |
John Palmer | 3ace5a7 | 2020-03-11 05:57:51 | [diff] [blame] | 3664 | "Enable assistive auto-correct features for native IME"; |
| 3665 | |
Jing Wang | 1c45fe39 | 2020-03-05 01:10:23 | [diff] [blame] | 3666 | const char kImeAssistPersonalInfoName[] = "Enable assistive personal info"; |
| 3667 | const char kImeAssistPersonalInfoDescription[] = |
| 3668 | "Enable auto-complete suggestions on personal infomation for native IME."; |
| 3669 | |
My Nguyen | c5f0def | 2020-03-29 23:22:15 | [diff] [blame] | 3670 | const char kImeEmojiSuggestAdditionName[] = |
| 3671 | "Enable emoji suggestion (addition)"; |
| 3672 | const char kImeEmojiSuggestAdditionDescription[] = |
| 3673 | "Enable emoji suggestion as addition to the text written for native IME."; |
| 3674 | |
Leo Zhang | 49c34d2 | 2019-04-02 09:57:59 | [diff] [blame] | 3675 | const char kImeInputLogicFstName[] = "Enable FST Input Logic on IME"; |
| 3676 | const char kImeInputLogicFstDescription[] = |
| 3677 | "Enable FST Input Logic to replace the IME legacy input logic on NaCl"; |
| 3678 | |
David Vallet | f4c8834 | 2019-12-03 01:43:26 | [diff] [blame] | 3679 | const char kImeInputLogicHmmName[] = "Enable HMM Input Logic on IME"; |
| 3680 | const char kImeInputLogicHmmDescription[] = |
| 3681 | "Enable HMM Input Logic to replace the IME legacy input logic on NaCl"; |
| 3682 | |
Yingbing Wu | 5ec5de0 | 2020-05-14 02:50:17 | [diff] [blame] | 3683 | const char kImeInputLogicMozcName[] = "Enable MOZC Input Logic on IME"; |
| 3684 | const char kImeInputLogicMozcDescription[] = |
| 3685 | "Enable MOZC Input Logic to replace the IME legacy input logic on NaCl"; |
| 3686 | |
Yingbing Wu | 09cd99a | 2020-02-14 09:14:24 | [diff] [blame] | 3687 | const char kImeMozcProtoName[] = "Enable protobuf on Japanese IME"; |
| 3688 | const char kImeMozcProtoDescription[] = |
| 3689 | "Enable Japanese IME to use protobuf as interactive message format to " |
| 3690 | "replace JSON"; |
| 3691 | |
Leo Zhang | 6f0c63a | 2020-05-19 07:36:42 | [diff] [blame] | 3692 | const char kImeServiceSandboxName[] = "Use CrOS 'ime' sandbox"; |
| 3693 | const char kImeServiceSandboxDescription[] = |
| 3694 | "Controls whether the IME service on CrOS uses the 'ime' sandbox."; |
Leo Zhang | 52754b40 | 2019-10-22 11:51:32 | [diff] [blame] | 3695 | |
Maggie Cai | 0532414 | 2020-05-07 00:41:49 | [diff] [blame] | 3696 | const char kIntentPickerPWAPersistenceName[] = "Intent picker PWA Persistence"; |
| 3697 | const char kIntentPickerPWAPersistenceDescription[] = |
| 3698 | "Allow user to always open with PWA in intent picker."; |
| 3699 | |
James Cook | ac2473be | 2020-04-28 00:54:18 | [diff] [blame] | 3700 | const char kLacrosSupportName[] = "LaCrOS support"; |
| 3701 | const char kLacrosSupportDescription[] = |
| 3702 | "Support for the experimental lacros-chrome browser."; |
| 3703 | |
Ahmed | fae13af5 | 2020-03-25 20:07:28 | [diff] [blame] | 3704 | const char kLimitAltTabToActiveDeskName[] = |
| 3705 | "Limit Alt-Tab windows to active desk"; |
| 3706 | const char kLimitAltTabToActiveDeskDescription[] = |
| 3707 | "Limits the windows listed in Alt-Tab to the ones in the currently active " |
| 3708 | "virtual desk"; |
| 3709 | |
Ahmed Fakhry | 15d707e | 2019-02-22 23:54:21 | [diff] [blame] | 3710 | const char kListAllDisplayModesName[] = "List all display modes"; |
| 3711 | const char kListAllDisplayModesDescription[] = |
| 3712 | "Enables listing all external displays' modes in the display settings."; |
| 3713 | |
Becca Hughes | ca82d2d | 2019-08-05 20:03:22 | [diff] [blame] | 3714 | const char kLockScreenMediaControlsName[] = "Lock screen media controls"; |
| 3715 | const char kLockScreenMediaControlsDescription[] = |
| 3716 | "Enable media controls on the lock screen."; |
| 3717 | |
Megumi Hattori | 5a0d418 | 2018-03-06 11:09:50 | [diff] [blame] | 3718 | const char kLockScreenNotificationName[] = "Lock screen notification"; |
| 3719 | const char kLockScreenNotificationDescription[] = |
| 3720 | "Enable notifications on the lock screen."; |
| 3721 | |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 3722 | const char kMediaAppName[] = "Media App"; |
| 3723 | const char kMediaAppDescription[] = |
Trent Apted | bc6c311 | 2019-11-15 05:58:13 | [diff] [blame] | 3724 | "Enables the chrome://media-app System Web App (SWA)"; |
| 3725 | |
Becca Hughes | 7146553 | 2019-04-12 19:18:55 | [diff] [blame] | 3726 | const char kMediaSessionNotificationsName[] = "Media session notifications"; |
| 3727 | const char kMediaSessionNotificationsDescription[] = |
| 3728 | "Shows notifications for media sessions showing the currently playing " |
| 3729 | "media and providing playback controls"; |
| 3730 | |
Jimmy Gong | 09aff04 | 2019-10-23 20:13:07 | [diff] [blame] | 3731 | const char kPrintServerUiName[] = "Print Server UI"; |
| 3732 | const char kPrintServerUiDescription[] = |
| 3733 | "Enables users to add their own print server in the printer settings page."; |
| 3734 | |
François Degros | 04e5eb3e | 2020-02-10 05:37:16 | [diff] [blame] | 3735 | const char kRar2FsName[] = "Enable rar2fs"; |
| 3736 | const char kRar2FsDescription[] = |
| 3737 | "Enable Files App to mount RAR archives using rar2fs."; |
| 3738 | |
Bailey Berro | 2c179770 | 2019-09-30 18:49:42 | [diff] [blame] | 3739 | const char kReduceDisplayNotificationsName[] = "Reduce display notifications"; |
| 3740 | const char kReduceDisplayNotificationsDescription[] = |
| 3741 | "If enabled, notifications for display rotation, display removed, display " |
| 3742 | "mirroring, and display extending will be suppressed."; |
| 3743 | |
Yulun Wu | 50215873 | 2019-07-24 00:31:45 | [diff] [blame] | 3744 | const char kReleaseNotesName[] = "CrOS Release Notes."; |
| 3745 | const char kReleaseNotesDescription[] = |
Yulun Wu | d8b812e | 2019-10-25 00:24:28 | [diff] [blame] | 3746 | "Creates release notes app in settings menu that shows a webview " |
| 3747 | "describing new OS features."; |
| 3748 | |
Jesse Schettler | 781eccb0 | 2020-03-10 17:17:44 | [diff] [blame] | 3749 | const char kScanningUIName[] = "Scanning UI"; |
| 3750 | const char kScanningUIDescription[] = |
| 3751 | "An experimental UI that allows users to interact with a connected " |
| 3752 | "scanner."; |
| 3753 | |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 3754 | const char kSchedulerConfigurationName[] = "Scheduler Configuration"; |
| 3755 | const char kSchedulerConfigurationDescription[] = |
| 3756 | "Instructs the OS to use a specific scheduler configuration setting."; |
Greg Kerr | 33cd466 | 2019-06-17 07:03:01 | [diff] [blame] | 3757 | const char kSchedulerConfigurationConservative[] = |
| 3758 | "Disables Hyper-Threading on relevant CPUs."; |
| 3759 | const char kSchedulerConfigurationPerformance[] = |
| 3760 | "Enables Hyper-Threading on relevant CPUs."; |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 3761 | |
Kyle Horimoto | 63a6bd4 | 2019-09-16 23:47:52 | [diff] [blame] | 3762 | const char kShowBluetoothDebugLogToggleName[] = |
| 3763 | "Show Bluetooth debug log toggle"; |
| 3764 | const char kShowBluetoothDebugLogToggleDescription[] = |
| 3765 | "Enables a toggle which can enable debug (i.e., verbose) logs for " |
| 3766 | "Bluetooth"; |
| 3767 | |
Alberto Herrera | aecc8551 | 2019-06-13 21:14:25 | [diff] [blame] | 3768 | const char kShowBluetoothDeviceBatteryName[] = "Show Bluetooth device battery"; |
| 3769 | const char kShowBluetoothDeviceBatteryDescription[] = |
| 3770 | "Enables showing the battery level of connected and supported Bluetooth " |
| 3771 | "devices in the System Tray and Settings UI."; |
| 3772 | |
James Cook | 0ba192bf | 2017-12-01 20:53:11 | [diff] [blame] | 3773 | const char kShowTapsName[] = "Show taps"; |
| 3774 | const char kShowTapsDescription[] = |
| 3775 | "Draws a circle at each touch point, which makes touch points more obvious " |
| 3776 | "when projecting or mirroring the display. Similar to the Android OS " |
| 3777 | "developer option."; |
| 3778 | |
| 3779 | const char kShowTouchHudName[] = "Show HUD for touch points"; |
| 3780 | const char kShowTouchHudDescription[] = |
| 3781 | "Shows a trail of colored dots for the last few touch points. Pressing " |
| 3782 | "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps " |
| 3783 | "debug hardware issues that generate spurious touch events."; |
| 3784 | |
Andrew Moylan | 60ac7c0c | 2019-05-28 06:52:18 | [diff] [blame] | 3785 | const char kSmartDimModelV3Name[] = "Smart Dim updated model"; |
| 3786 | const char kSmartDimModelV3Description[] = |
Andrew Moylan | 5bb68b42 | 2019-05-27 04:56:45 | [diff] [blame] | 3787 | "Uses an updated model for user activity prediction (Smart Dim)."; |
| 3788 | |
alanlxl | 1d52f62 | 2020-03-17 01:15:16 | [diff] [blame] | 3789 | const char kSmartDimNewMlAgentName[] = "Smart Dim new machine learning agent"; |
| 3790 | const char kSmartDimNewMlAgentDescription[] = |
| 3791 | "Uses a new machine learning agent to switch between builtin and dynamic " |
| 3792 | "ML models."; |
| 3793 | |
Jorge Gil | 5a8ccde | 2018-07-10 01:46:21 | [diff] [blame] | 3794 | const char kSmartTextSelectionName[] = "Smart Text Selection"; |
| 3795 | const char kSmartTextSelectionDescription[] = |
| 3796 | "Shows quick actions for text " |
| 3797 | "selections in the context menu."; |
| 3798 | |
Anand K. Mistry | 6f5e1c9 | 2020-02-19 23:56:03 | [diff] [blame] | 3799 | const char kSmbfsFileSharesName[] = "Smbfs file shares"; |
| 3800 | const char kSmbfsFileSharesDescription[] = |
| 3801 | "Use smbfs for accessing network file shares."; |
| 3802 | |
James Cook | 9348f36 | 2019-11-15 01:15:58 | [diff] [blame] | 3803 | const char kSplitSettingsSyncName[] = "Split OS and browser sync"; |
| 3804 | const char kSplitSettingsSyncDescription[] = |
| 3805 | "Allows OS sync to be configured separately from browser sync. Changes the " |
| 3806 | "OS settings UI to provide controls for OS data types. Requires " |
| 3807 | "#split-settings to be enabled."; |
| 3808 | |
Bailey Berro | 6c98967 | 2019-04-11 19:19:20 | [diff] [blame] | 3809 | const char kStreamlinedUsbPrinterSetupName[] = |
| 3810 | "Streamlined USB Printer Setup Flow"; |
| 3811 | const char kStreamlinedUsbPrinterSetupDescription[] = |
| 3812 | "Automatically sets up capable USB printers when plugged in. Shows a " |
| 3813 | "notification with the setup result."; |
| 3814 | |
Jon Mann | c514fc9 | 2019-05-23 21:30:23 | [diff] [blame] | 3815 | const char kSyncWifiConfigurationsName[] = "Sync Wi-Fi network configurations"; |
| 3816 | const char kSyncWifiConfigurationsDescription[] = |
| 3817 | "Enables the option to sync Wi-Fi network configurations with Chrome Sync."; |
| 3818 | |
Ahmed Mehfooz | 53675c0a | 2019-10-03 19:51:30 | [diff] [blame] | 3819 | const char kMessageCenterRedesignName[] = "Enable Message Center Redesign"; |
| 3820 | const char kMessageCenterRedesignDescription[] = |
| 3821 | "Enables split message center, stacked notification icons and system tray " |
| 3822 | "pagination"; |
Ahmed Mehfooz | 040dcdf | 2019-08-07 21:12:29 | [diff] [blame] | 3823 | |
Joel Hockey | a602a75 | 2019-10-28 07:13:51 | [diff] [blame] | 3824 | const char kTerminalSystemAppName[] = "Terminal System App"; |
| 3825 | const char kTerminalSystemAppDescription[] = |
| 3826 | "Enables the Terminal System App at chrome://terminal which is used for " |
| 3827 | "the Chrome OS Linux terminal."; |
| 3828 | |
Joel Hockey | 65063ed | 2020-03-01 23:18:41 | [diff] [blame] | 3829 | const char kTerminalSystemAppLegacySettingsName[] = |
| 3830 | "Terminal System App Legacy Settings"; |
| 3831 | const char kTerminalSystemAppLegacySettingsDescription[] = |
| 3832 | "Use the legacy settings page for Terminal System App."; |
| 3833 | |
Joel Hockey | a602a75 | 2019-10-28 07:13:51 | [diff] [blame] | 3834 | const char kTerminalSystemAppSplitsName[] = "Terminal System App Splits"; |
| 3835 | const char kTerminalSystemAppSplitsDescription[] = |
| 3836 | "Enables splits for the Terminal System App."; |
| 3837 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3838 | const char kTetherName[] = "Instant Tethering"; |
| 3839 | const char kTetherDescription[] = |
| 3840 | "Enables Instant Tethering. Instant Tethering allows your nearby Google " |
| 3841 | "phone to share its Internet connection with this device."; |
stanisc | 14bed0b13 | 2017-05-10 17:46:37 | [diff] [blame] | 3842 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3843 | const char kTouchscreenCalibrationName[] = |
| 3844 | "Enable/disable touchscreen calibration option in material design settings"; |
| 3845 | const char kTouchscreenCalibrationDescription[] = |
| 3846 | "If enabled, the user can calibrate the touch screen displays in " |
| 3847 | "chrome://settings/display."; |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 3848 | |
Miguel Casas-Sanchez | dcd6915 | 2019-09-04 21:22:36 | [diff] [blame] | 3849 | const char kUseFakeDeviceForMediaStreamName[] = "Use fake video capture device"; |
| 3850 | const char kUseFakeDeviceForMediaStreamDescription[] = |
| 3851 | "Forces Chrome to use a fake video capture device (a rolling pacman with a " |
| 3852 | "timestamp) instead of the system audio/video devices, for debugging " |
| 3853 | "purposes."; |
| 3854 | |
Qiang Xu | 045aff22 | 2018-05-21 23:21:01 | [diff] [blame] | 3855 | const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3856 | const char kUiDevToolsDescription[] = |
| 3857 | "Enables inspection of native UI elements. For local inspection use " |
| 3858 | "chrome://inspect#other"; |
| 3859 | |
Andrew Moylan | 9758527 | 2019-02-19 19:01:22 | [diff] [blame] | 3860 | const char kUiShowCompositedLayerBordersName[] = |
| 3861 | "Show UI composited layer borders"; |
| 3862 | const char kUiShowCompositedLayerBordersDescription[] = |
| 3863 | "Show border around composited layers created by UI."; |
| 3864 | const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass"; |
| 3865 | const char kUiShowCompositedLayerBordersSurface[] = "Surface"; |
| 3866 | const char kUiShowCompositedLayerBordersLayer[] = "Layer"; |
| 3867 | const char kUiShowCompositedLayerBordersAll[] = "All"; |
| 3868 | |
| 3869 | const char kUiSlowAnimationsName[] = "Slow UI animations"; |
| 3870 | const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow."; |
Mattias Nissler | 6bb633f | 2019-02-13 23:41:46 | [diff] [blame] | 3871 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 3872 | const char kUnifiedMediaViewName[] = "Unified media view in Files App"; |
| 3873 | const char kUnifiedMediaViewDescription[] = |
Naoki Fukino | adbc2f4 | 2020-02-07 20:26:49 | [diff] [blame] | 3874 | "Enable unified media view to browse recently-modified media files from" |
| 3875 | " local disk, Google Drive, and Android."; |
| 3876 | |
Allen Webb | cdc8e69d | 2018-09-12 20:36:00 | [diff] [blame] | 3877 | const char kUsbguardName[] = "Block new USB devices at the lock screen."; |
| 3878 | const char kUsbguardDescription[] = |
| 3879 | "Prevents newly connected USB devices from operating at the lock screen" |
| 3880 | " until Chrome OS is unlocked to protect against malicious USB devices." |
| 3881 | " Already connected USB devices will continue to function."; |
| 3882 | |
Andres Calderon Jaramillo | 43c0e8a | 2018-08-21 02:46:23 | [diff] [blame] | 3883 | const char kVaapiJpegImageDecodeAccelerationName[] = |
| 3884 | "VA-API JPEG decode acceleration for images"; |
| 3885 | const char kVaapiJpegImageDecodeAccelerationDescription[] = |
| 3886 | "Enable or disable decode acceleration of JPEG images (as opposed to camera" |
| 3887 | " captures) using the VA-API."; |
| 3888 | |
Gil Dekel | 8f4b564 | 2019-07-27 05:27:40 | [diff] [blame] | 3889 | const char kVaapiWebPImageDecodeAccelerationName[] = |
| 3890 | "VA-API WebP decode acceleration for images"; |
| 3891 | const char kVaapiWebPImageDecodeAccelerationDescription[] = |
| 3892 | "Enable or disable decode acceleration of WebP images using the VA-API."; |
| 3893 | |
My Nguyen | 614dbcc | 2019-10-29 03:52:32 | [diff] [blame] | 3894 | const char kVirtualKeyboardBorderedKeyName[] = "Virtual Keyboard Bordered Key"; |
| 3895 | const char kVirtualKeyboardBorderedKeyDescription[] = |
| 3896 | "Show virtual keyboard with bordered key"; |
| 3897 | |
Curtis McMullan | 97924a21 | 2020-02-10 02:15:03 | [diff] [blame] | 3898 | const char kVirtualKeyboardFloatingResizableName[] = |
| 3899 | "Virtual Keyboard Resizable Mode"; |
| 3900 | const char kVirtualKeyboardFloatingResizableDescription[] = |
| 3901 | "Show virtual keyboard with resizable floating mode"; |
| 3902 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3903 | const char kVirtualKeyboardName[] = "Virtual Keyboard"; |
David Vallet | 70dfe49a | 2019-10-14 22:39:31 | [diff] [blame] | 3904 | const char kVirtualKeyboardDescription[] = |
| 3905 | "Always show virtual keyboard regardless of having a physical keyboard " |
| 3906 | "present"; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3907 | |
tby | a97bb93c | 2019-08-23 02:16:40 | [diff] [blame] | 3908 | const char kZeroStateFilesName[] = "Enable Launcher Zero State Files"; |
| 3909 | const char kZeroStateFilesDescription[] = |
| 3910 | "Enables zero state file recommendations in the Launcher, which appear when" |
| 3911 | "the search box is active and no query has been entered."; |
| 3912 | |
Hirokazu Honda | 8ef07cd | 2020-04-17 03:36:38 | [diff] [blame] | 3913 | const char kZeroCopyVideoCaptureName[] = "Enable Zero-Copy Video Capture"; |
| 3914 | const char kZeroCopyVideoCaptureDescription[] = |
| 3915 | "Camera produces a gpu friendly buffer on capture and, if there is, " |
| 3916 | "hardware accelerated video encoder consumes the buffer"; |
| 3917 | |
Andrew Moylan | 2db11cd | 2019-05-22 14:25:15 | [diff] [blame] | 3918 | // Prefer keeping this section sorted to adding new definitions down here. |
Tim Song | 988f709 | 2019-03-01 03:13:39 | [diff] [blame] | 3919 | |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 3920 | #endif // defined(OS_CHROMEOS) |
| 3921 | |
Collin Baker | 75a2946 | 2019-03-13 19:57:31 | [diff] [blame] | 3922 | // All views-based platforms -------------------------------------------------- |
| 3923 | |
| 3924 | #if defined(TOOLKIT_VIEWS) |
| 3925 | |
Sajad Maysam | c30d6f8 | 2019-03-19 22:52:50 | [diff] [blame] | 3926 | const char kEnableMDRoundedCornersOnDialogsName[] = |
Dana Fried | 4e177f3 | 2019-04-11 23:46:46 | [diff] [blame] | 3927 | "MD corners on secondary UI"; |
Sajad Maysam | c30d6f8 | 2019-03-19 22:52:50 | [diff] [blame] | 3928 | const char kEnableMDRoundedCornersOnDialogsDescription[] = |
Dana Fried | 4e177f3 | 2019-04-11 23:46:46 | [diff] [blame] | 3929 | "Increases corner radius on secondary UI."; |
Sajad Maysam | c30d6f8 | 2019-03-19 22:52:50 | [diff] [blame] | 3930 | |
Collin Baker | 75a2946 | 2019-03-13 19:57:31 | [diff] [blame] | 3931 | const char kInstallableInkDropName[] = "Use InstallableInkDrop where supported"; |
| 3932 | const char kInstallableInkDropDescription[] = |
| 3933 | "InstallableInkDrop is part of an InkDrop refactoring effort. This enables " |
| 3934 | "the pilot implementation where available."; |
| 3935 | |
Collin Baker | 10a4c24 | 2020-04-29 18:19:40 | [diff] [blame] | 3936 | const char kTextfieldFocusOnTapUpName[] = "Focus UI text fields on touch-up"; |
| 3937 | const char kTextfieldFocusOnTapUpDescription[] = |
| 3938 | "When enabled, Views-based text fields take focus on touch-up instead of " |
| 3939 | "touch-down. This includes the Omnibox."; |
| 3940 | |
Collin Baker | 4ab8ad8 | 2019-06-06 17:02:54 | [diff] [blame] | 3941 | const char kReopenTabInProductHelpName[] = "Reopen tab in-product help"; |
| 3942 | const char kReopenTabInProductHelpDescription[] = |
| 3943 | "Enable in-product help that guides a user to reopen a tab if it looks " |
| 3944 | "like they accidentally closed it."; |
| 3945 | |
Collin Baker | 75a2946 | 2019-03-13 19:57:31 | [diff] [blame] | 3946 | #endif // defined(TOOLKIT_VIEWS) |
| 3947 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3948 | // Random platform combinations ----------------------------------------------- |
| 3949 | |
Jiajia Qin | db252e9 | 2019-01-28 11:47:48 | [diff] [blame] | 3950 | #if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_CHROMEOS) |
| 3951 | |
| 3952 | const char kWebGL2ComputeContextName[] = "WebGL 2.0 Compute"; |
| 3953 | const char kWebGL2ComputeContextDescription[] = |
| 3954 | "Enable the use of WebGL 2.0 Compute API."; |
| 3955 | |
| 3956 | #endif // defined(OS_WIN) || defined(OS_LINUX) || defined(OS_CHROMEOS) |
| 3957 | |
Richard Knoll | c279d323 | 2019-11-11 16:37:07 | [diff] [blame] | 3958 | #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || \ |
| 3959 | defined(OS_CHROMEOS) |
| 3960 | |
Becca Hughes | b11947a | 2020-05-11 20:55:27 | [diff] [blame] | 3961 | const char kEnableMediaFeedsName[] = "Enables Media Feeds"; |
| 3962 | const char kEnableMediaFeedsDescription[] = |
| 3963 | "Enables the Media Feeds feature which allows us to fetch feeds of media " |
| 3964 | "items from websites that support the feature. "; |
| 3965 | |
Michael van Ouwerkerk | 2d1326e6 | 2019-11-04 13:54:21 | [diff] [blame] | 3966 | const char kRemoteCopyReceiverName[] = |
| 3967 | "Enables the remote copy feature to receive messages"; |
| 3968 | const char kRemoteCopyReceiverDescription[] = |
| 3969 | "Enables the remote copy feature to handle messages by writing content to " |
| 3970 | "the clipboard and showing a notification to the user."; |
| 3971 | |
Michael van Ouwerkerk | 2ed5bd9 | 2020-03-19 18:30:57 | [diff] [blame] | 3972 | const char kRemoteCopyImageNotificationName[] = |
| 3973 | "Enables image notifications for the remote copy feature"; |
| 3974 | const char kRemoteCopyImageNotificationDescription[] = |
| 3975 | "Enables image notifications to be shown for the remote copy feature " |
| 3976 | "when receiving a message."; |
| 3977 | |
Michael van Ouwerkerk | 91ac7d2 | 2020-04-07 15:49:27 | [diff] [blame] | 3978 | const char kRemoteCopyPersistentNotificationName[] = |
| 3979 | "Enables persistent notifications for the remote copy feature"; |
| 3980 | const char kRemoteCopyPersistentNotificationDescription[] = |
| 3981 | "Enables persistent notifications to be shown for the remote copy feature " |
| 3982 | "when receiving a message."; |
| 3983 | |
Richard Knoll | fbad3a79 | 2020-03-11 18:22:43 | [diff] [blame] | 3984 | const char kRemoteCopyProgressNotificationName[] = |
| 3985 | "Enables progress notifications for the remote copy feature"; |
| 3986 | const char kRemoteCopyProgressNotificationDescription[] = |
| 3987 | "Enables progress notifications to be shown for the remote copy feature " |
| 3988 | "when receiving a message."; |
| 3989 | |
Richard Knoll | 5e85eb12 | 2019-09-05 11:15:33 | [diff] [blame] | 3990 | #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || |
| 3991 | // defined(OS_CHROMEOS) |
| 3992 | |
| 3993 | #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) |
| 3994 | |
| 3995 | const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus"; |
| 3996 | const char kDirectManipulationStylusDescription[] = |
| 3997 | "If enabled, Chrome will scroll web pages on stylus drag."; |
| 3998 | |
lanwei | 83f5445 | 2018-06-21 23:51:04 | [diff] [blame] | 3999 | #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) |
| 4000 | |
David Bienvenu | c713d50 | 2019-02-07 23:46:32 | [diff] [blame] | 4001 | #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
| 4002 | |
| 4003 | const char kWebContentsOcclusionName[] = "Enable occlusion of web contents"; |
| 4004 | const char kWebContentsOcclusionDescription[] = |
| 4005 | "If enabled, web contents will behave as hidden when it is occluded by " |
| 4006 | "other windows."; |
| 4007 | |
| 4008 | #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
| 4009 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 4010 | #if defined(OS_CHROMEOS) || defined(OS_LINUX) |
| 4011 | #if BUILDFLAG(USE_TCMALLOC) |
| 4012 | const char kDynamicTcmallocName[] = "Dynamic Tcmalloc Tuning"; |
| 4013 | const char kDynamicTcmallocDescription[] = |
| 4014 | "Allows tcmalloc to dynamically adjust tunables based on system resource " |
| 4015 | "utilization."; |
| 4016 | #endif // BUILDFLAG(USE_TCMALLOC) |
| 4017 | #endif // #if defined(OS_CHROMEOS) || defined(OS_LINUX) |
| 4018 | |
| 4019 | #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS) |
| 4020 | const char kUserDataSnapshotName[] = "Enable user data snapshots"; |
| 4021 | const char kUserDataSnapshotDescription[] = |
| 4022 | "Enables taking snapshots of the user data directory after a Chrome " |
| 4023 | "update and restoring them after a version rollback."; |
| 4024 | #endif // !defined(OS_ANDROID) && !defined(OS_CHROMEOS) |
| 4025 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4026 | // Feature flags -------------------------------------------------------------- |
| 4027 | |
Lei Zhang | 0a318af | 2018-11-14 02:19:46 | [diff] [blame] | 4028 | #if defined(DCHECK_IS_CONFIGURABLE) |
| 4029 | const char kDcheckIsFatalName[] = "DCHECKs are fatal"; |
| 4030 | const char kDcheckIsFatalDescription[] = |
| 4031 | "By default Chrome will evaluate in this build, but only log failures, " |
| 4032 | "rather than crashing. If enabled, DCHECKs will crash the calling process."; |
| 4033 | #endif // defined(DCHECK_IS_CONFIGURABLE) |
| 4034 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 4035 | #if BUILDFLAG(ENABLE_CLICK_TO_CALL) |
| 4036 | const char kClickToCallUIName[] = |
| 4037 | "Enable click to call feature signals to be handled on desktop"; |
| 4038 | const char kClickToCallUIDescription[] = |
| 4039 | "Enables click to call feature signals to be handled on desktop by showing " |
| 4040 | "a list of user's available devices with telephony functionality."; |
| 4041 | #endif // BUILDFLAG(ENABLE_CLICK_TO_CALL) |
| 4042 | |
David Roger | 346d667 | 2020-05-04 15:11:09 | [diff] [blame] | 4043 | #if BUILDFLAG(ENABLE_DICE_SUPPORT) |
| 4044 | const char kDiceWebSigninInterceptionName[] = "Dice Web-Signin Interception"; |
| 4045 | const char kDiceWebSigninInterceptionDescription[] = |
| 4046 | "If enabled, Chrome may promote profile creation after signin on the web."; |
| 4047 | #endif |
| 4048 | |
Derek Schuff | 71d9a92 | 2019-04-24 21:36:00 | [diff] [blame] | 4049 | #if BUILDFLAG(ENABLE_NACL) |
| 4050 | const char kNaclName[] = "Native Client"; |
| 4051 | const char kNaclDescription[] = |
| 4052 | "Support Native Client for all web applications, even those that were not " |
| 4053 | "installed from the Chrome Web Store."; |
| 4054 | #endif // ENABLE_NACL |
| 4055 | |
ckitagawa | 8dad53d | 2020-01-07 16:03:35 | [diff] [blame] | 4056 | #if BUILDFLAG(ENABLE_PAINT_PREVIEW) && defined(OS_ANDROID) |
Mehran Mahmoudi | b8d0b7c | 2020-03-14 18:10:56 | [diff] [blame] | 4057 | const char kPaintPreviewDemoName[] = "Paint Preview Demo"; |
| 4058 | const char kPaintPreviewDemoDescription[] = |
| 4059 | "If enabled a menu item is added to the Android main menu to demo paint " |
ckitagawa | 8dad53d | 2020-01-07 16:03:35 | [diff] [blame] | 4060 | "previews."; |
| 4061 | #endif // ENABLE_PAINT_PREVIEW && defined(OS_ANDROID) |
| 4062 | |
Lei Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 4063 | #if BUILDFLAG(ENABLE_PLUGINS) |
| 4064 | |
dstockwell | cc75920 | 2019-01-11 00:42:12 | [diff] [blame] | 4065 | #if defined(OS_CHROMEOS) |
| 4066 | const char kPdfAnnotations[] = "PDF Annotations"; |
Weidong Guo | 577fe9ac | 2019-01-28 19:58:10 | [diff] [blame] | 4067 | const char kPdfAnnotationsDescription[] = "Enable annotating PDF documents."; |
dstockwell | cc75920 | 2019-01-11 00:42:12 | [diff] [blame] | 4068 | #endif // defined(OS_CHROMEOS) |
| 4069 | |
Lei Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 4070 | const char kPdfFormSaveName[] = "Save PDF Forms"; |
| 4071 | const char kPdfFormSaveDescription[] = |
| 4072 | "Enable saving PDFs with filled form data."; |
| 4073 | |
Hui Yingst | d6b981c | 2020-01-31 14:46:56 | [diff] [blame] | 4074 | const char kPdfTwoUpViewName[] = "PDF Two-up View"; |
| 4075 | const char kPdfTwoUpViewDescription[] = |
| 4076 | "Enable a new option to display two pages side by side in the PDF viewer."; |
| 4077 | |
rbpotter | 35f29f1 | 2020-05-20 20:58:13 | [diff] [blame^] | 4078 | const char kPdfViewerUpdateName[] = "PDF Viewer Update"; |
| 4079 | const char kPdfViewerUpdateDescription[] = |
| 4080 | "When enabled, the PDF viewer will display an updated UI with new " |
| 4081 | "options and features."; |
Lei Zhang | 802201c | 2018-11-14 18:16:28 | [diff] [blame] | 4082 | #endif // BUILDFLAG(ENABLE_PLUGINS) |
| 4083 | |
Lei Zhang | c05af2a | 2020-05-15 20:54:05 | [diff] [blame] | 4084 | #if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) |
| 4085 | const char kWebUITabStripName[] = "WebUI tab strip"; |
| 4086 | const char kWebUITabStripDescription[] = |
| 4087 | "When enabled makes use of a WebUI-based tab strip."; |
| 4088 | |
| 4089 | const char kWebUITabStripDemoOptionsName[] = "WebUI tab strip demo options"; |
| 4090 | const char kWebUITabStripDemoOptionsDescription[] = |
| 4091 | "When enabled, displays a set of options to demo and test various features " |
| 4092 | "and behaviors of the WebUI tab strip. The WebUI tab strip must also be " |
| 4093 | "enabled."; |
| 4094 | #endif // BUILDFLAG(ENABLE_WEBUI_TAB_STRIP) |
| 4095 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4096 | #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 4097 | |
| 4098 | const char kAutofillCreditCardUploadName[] = |
| 4099 | "Enable offering upload of Autofilled credit cards"; |
| 4100 | const char kAutofillCreditCardUploadDescription[] = |
| 4101 | "Enables a new option to upload credit cards to Google Payments for sync " |
| 4102 | "to all Chrome devices."; |
| 4103 | |
| 4104 | #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 4105 | |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 4106 | #if defined(WEBRTC_USE_PIPEWIRE) |
Lei Zhang | 507fffd | 2020-01-29 23:47:54 | [diff] [blame] | 4107 | const char kWebrtcPipeWireCapturerName[] = "WebRTC PipeWire support"; |
| 4108 | const char kWebrtcPipeWireCapturerDescription[] = |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 4109 | "When enabled the WebRTC will use the PipeWire multimedia server for " |
| 4110 | "capturing the desktop content on the Wayland display server."; |
Tomas Popela | 253a583 | 2019-01-14 17:22:10 | [diff] [blame] | 4111 | #endif // #if defined(WEBRTC_USE_PIPEWIRE) |
| 4112 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 4113 | // ============================================================================ |
| 4114 | // Don't just add flags to the end, put them in the right section in |
| 4115 | // alphabetical order just like the header file. |
| 4116 | // ============================================================================ |
| 4117 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 4118 | } // namespace flag_descriptions |