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 | |
| 21 | const char kAffiliationBasedMatchingName[] = |
| 22 | "Affiliation based matching in password manager"; |
| 23 | const char kAffiliationBasedMatchingDescription[] = |
| 24 | "Allow credentials stored for Android applications to be filled into " |
| 25 | "corresponding websites."; |
| 26 | |
| 27 | const char kAllowInsecureLocalhostName[] = |
| 28 | "Allow invalid certificates for resources loaded from localhost."; |
| 29 | const char kAllowInsecureLocalhostDescription[] = |
| 30 | "Allows requests to localhost over HTTPS even when an invalid certificate " |
| 31 | "is presented."; |
| 32 | |
| 33 | const char kAllowNaclSocketApiName[] = "NaCl Socket API."; |
| 34 | const char kAllowNaclSocketApiDescription[] = |
| 35 | "Allows applications to use NaCl Socket API. Use only to test NaCl " |
| 36 | "plugins."; |
| 37 | |
| 38 | const char kAppBannersName[] = "App Banners"; |
| 39 | const char kAppBannersDescription[] = |
| 40 | "Enable the display of Progressive Web App banners, which prompt a user to " |
| 41 | "add a web app to their shelf, or other platform-specific equivalent."; |
| 42 | |
yoshiki iguchi | 4a10c5f | 2017-11-29 20:16:54 | [diff] [blame] | 43 | const char kAshSidebarName[] = "Sidebar"; |
| 44 | const char kAshSidebarDescription[] = "Enable the experimental sidebar."; |
| 45 | |
Tetsui Ohkubo | 2852b95 | 2018-02-23 04:12:01 | [diff] [blame] | 46 | const char kSystemTrayUnifiedName[] = "New system menu"; |
| 47 | const char kSystemTrayUnifiedDescription[] = |
Tetsui Ohkubo | f860b8e | 2018-02-16 03:50:55 | [diff] [blame] | 48 | "Enable the experimental system menu."; |
| 49 | |
Sathya Gunasekaran | bc706d6 | 2018-02-09 21:44:22 | [diff] [blame] | 50 | const char kArrayPrototypeValuesName[] = "Array.prototype.values ES6 method"; |
| 51 | const char kArrayPrototypeValuesDescription[] = |
| 52 | "Enables Array.prototype.values method"; |
| 53 | |
Khushal | ba20221 | 2017-07-12 19:53:49 | [diff] [blame] | 54 | const char kAsyncImageDecodingName[] = "AsyncImageDecoding"; |
| 55 | const char kAsyncImageDecodingDescription[] = |
| 56 | "Enables asynchronous decoding of images from raster for web content"; |
| 57 | |
sebsg | e35b762c | 2018-03-29 20:33:27 | [diff] [blame] | 58 | const char kAutofillDynamicFormsName[] = "Autofill Dynamic Forms"; |
| 59 | const char kAutofillDynamicFormsDescription[] = |
| 60 | "Allows autofill to fill dynamically changing forms"; |
| 61 | |
Roger McFarlane | 1a37d7b | 2018-04-20 22:45:19 | [diff] [blame] | 62 | const char kAutofillEnforceMinRequiredFieldsForHeuristicsName[] = |
| 63 | "Autofill Enforce Min Required Fields For Heuristics"; |
| 64 | const char kAutofillEnforceMinRequiredFieldsForHeuristicsDescription[] = |
| 65 | "When enabled, autofill will generally require a form to have at least 3 " |
| 66 | "fields before allowing heuristic field-type prediction to occur."; |
| 67 | |
| 68 | const char kAutofillEnforceMinRequiredFieldsForQueryName[] = |
| 69 | "Autofill Enforce Min Required Fields For Query"; |
| 70 | const char kAutofillEnforceMinRequiredFieldsForQueryDescription[] = |
| 71 | "When enabled, autofill will generally require a form to have at least 3 " |
| 72 | "fields before querying the autofill server for field-type predictions."; |
| 73 | |
| 74 | const char kAutofillEnforceMinRequiredFieldsForUploadName[] = |
| 75 | "Autofill Enforce Min Required Fields For Upload"; |
| 76 | const char kAutofillEnforceMinRequiredFieldsForUploadDescription[] = |
| 77 | "When enabled, autofill will generally require a form to have at least 3 " |
| 78 | "fillable fields before uploading field-type votes for that form."; |
| 79 | |
Moe Ahmadi | d3ddfcb | 2018-04-20 19:51:08 | [diff] [blame] | 80 | const char kAutofillRestrictUnownedFieldsToFormlessCheckoutName[] = |
| 81 | "Restrict formless form extraction"; |
| 82 | const char kAutofillRestrictUnownedFieldsToFormlessCheckoutDescription[] = |
| 83 | "Restrict extraction of formless forms to checkout flows"; |
| 84 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 85 | const char kAutoplayPolicyName[] = "Autoplay policy"; |
| 86 | const char kAutoplayPolicyDescription[] = |
| 87 | "Policy used when deciding if audio or video is allowed to autoplay."; |
| 88 | |
| 89 | const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] = |
| 90 | "User gesture is required for cross-origin iframes."; |
| 91 | const char kAutoplayPolicyNoUserGestureRequired[] = |
| 92 | "No user gesture is required."; |
| 93 | const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
| 94 | const char kAutoplayPolicyDocumentUserActivation[] = |
| 95 | "Document user activation is required."; |
| 96 | |
Johann | e0cc690 | 2017-11-16 00:23:50 | [diff] [blame] | 97 | extern const char kAv1DecoderName[] = "Enable AV1 video decoding."; |
| 98 | extern const char kAv1DecoderDescription[] = |
| 99 | "Allow decoding of files with the AV1 video codec."; |
| 100 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 101 | const char kBackgroundVideoTrackOptimizationName[] = |
| 102 | "Optimize background video playback."; |
| 103 | const char kBackgroundVideoTrackOptimizationDescription[] = |
| 104 | "Disable video tracks when the video is played in the background to " |
| 105 | "optimize performance."; |
| 106 | |
| 107 | const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps"; |
| 108 | const char kBleAdvertisingInExtensionsDescription[] = |
| 109 | "Enables BLE Advertising in Chrome Apps. BLE Advertising might interfere " |
| 110 | "with regular use of Bluetooth Low Energy features."; |
| 111 | |
Charles Harrison | d629cc6 | 2017-10-05 01:39:54 | [diff] [blame] | 112 | const char kBlockTabUndersName[] = "Block tab-unders"; |
| 113 | const char kBlockTabUndersDescription[] = |
| 114 | "Blocks tab-unders in Chrome with some native UI to allow the user to " |
| 115 | "proceed."; |
| 116 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 117 | const char kBrowserTaskSchedulerName[] = "Task Scheduler"; |
| 118 | const char kBrowserTaskSchedulerDescription[] = |
| 119 | "Enables redirection of some task posting APIs to the task scheduler."; |
| 120 | |
Carlos IL | 766fbc88 | 2018-02-16 02:34:52 | [diff] [blame] | 121 | const char kBundledConnectionHelpName[] = "Bundled Connection Help"; |
| 122 | const char kBundledConnectionHelpDescription[] = |
| 123 | "Enables or disables redirecting users who get an interstitial when " |
| 124 | "accessing https://support.google.com/chrome/answer/6098869 to local " |
| 125 | "connection help content."; |
| 126 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 127 | const char kBypassAppBannerEngagementChecksName[] = |
| 128 | "Bypass user engagement checks"; |
| 129 | const char kBypassAppBannerEngagementChecksDescription[] = |
| 130 | "Bypasses user engagement checks for displaying app banners, such as " |
| 131 | "requiring that users have visited the site before and that the banner " |
| 132 | "hasn't been shown recently. This allows developers to test that other " |
| 133 | "eligibility requirements for showing app banners, such as having a " |
| 134 | "manifest, are met."; |
| 135 | |
Lucas Garron | b9539b73 | 2017-10-31 00:22:09 | [diff] [blame] | 136 | const char kCommittedInterstitialsName[] = "Committed Interstitials"; |
| 137 | const char kCommittedInterstitialsDescription[] = |
| 138 | "Use committed error pages instead of transient navigation entries " |
| 139 | "for interstitial error pages (e.g. certificate errors)."; |
| 140 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 141 | const char kCastStreamingHwEncodingName[] = |
| 142 | "Cast Streaming hardware video encoding"; |
| 143 | const char kCastStreamingHwEncodingDescription[] = |
| 144 | "This option enables support in Cast Streaming for encoding video streams " |
| 145 | "using platform hardware."; |
| 146 | |
Amber Won | 478561d | 2017-08-19 01:02:59 | [diff] [blame] | 147 | const char kClickToOpenPDFName[] = "Click to open embedded PDFs"; |
| 148 | const char kClickToOpenPDFDescription[] = |
| 149 | "When the PDF plugin is unavailable, show a click-to-open placeholder for " |
| 150 | "embedded PDFs."; |
| 151 | |
Gary Kacmarcik | fb69b21 | 2017-11-14 03:41:08 | [diff] [blame] | 152 | const char kClipboardContentSettingName[] = "Clipboard content setting"; |
| 153 | const char kClipboardContentSettingDescription[] = |
| 154 | "Enables a site-wide permission in the UI which controls access to the " |
| 155 | "asynchronous clipboard web API"; |
| 156 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 157 | const char kCloudImportName[] = "Cloud Import"; |
| 158 | const char kCloudImportDescription[] = "Allows the cloud-import feature."; |
| 159 | |
Christopher Cameron | ceb8727d | 2017-09-07 23:53:16 | [diff] [blame] | 160 | const char kForceColorProfileSRGB[] = "sRGB"; |
| 161 | const char kForceColorProfileP3[] = "Display P3 D65"; |
| 162 | const char kForceColorProfileColorSpin[] = "Color spin with gamma 2.4"; |
| 163 | const char kForceColorProfileHdr[] = "scRGB linear (HDR where available)"; |
| 164 | |
| 165 | const char kForceColorProfileName[] = "Force color profile"; |
| 166 | const char kForceColorProfileDescription[] = |
| 167 | "Forces Chrome to use a specific color profile instead of the color " |
| 168 | "of the window's current monitor, as specified by the operating system."; |
| 169 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 170 | const char kCompositedLayerBordersName[] = "Composited render layer borders"; |
| 171 | const char kCompositedLayerBordersDescription[] = |
| 172 | "Renders a border around composited Render Layers to help debug and study " |
| 173 | "layer compositing."; |
| 174 | |
Theresa | f39c188 | 2018-03-21 18:18:07 | [diff] [blame] | 175 | const char kContextualSuggestionsBottomSheetName[] = |
| 176 | "Enable Contextual Suggestions Bottom Sheet"; |
| 177 | const char kContextualSuggestionsBottomSheetDescription[] = |
| 178 | "If enabled, shows contextual suggestions in the bottom sheet."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 179 | |
| 180 | const char kCreditCardAssistName[] = "Credit Card Assisted Filling"; |
| 181 | const char kCreditCardAssistDescription[] = |
| 182 | "Enable assisted credit card filling on certain sites."; |
| 183 | |
| 184 | const char kCrossProcessGuestViewIsolationName[] = |
| 185 | "Cross process frames for guests"; |
| 186 | const char kCrossProcessGuestViewIsolationDescription[] = |
| 187 | "Highly experimental where guests such as <webview> are implemented on " |
| 188 | "the out-of-process iframe infrastructure."; |
| 189 | |
Thanh Le | 659cb10 | 2017-12-20 22:00:19 | [diff] [blame] | 190 | const char kDataSaverServerPreviewsName[] = "Data Saver Server Previews"; |
| 191 | const char kDataSaverServerPreviewsDescription[] = |
| 192 | "Allow the Data Reduction Proxy to serve previews."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 193 | |
| 194 | const char kDatasaverPromptName[] = "Cellular Data Saver Prompt"; |
| 195 | const char kDatasaverPromptDescription[] = |
| 196 | "Enables a prompt, which appears when a cellular network connection is " |
| 197 | "detected, to take the user to the Data Saver extension page on Chrome Web " |
| 198 | "Store."; |
| 199 | const char kDatasaverPromptDemoMode[] = "Demo mode"; |
| 200 | |
Wez | 54dc71b | 2018-04-17 00:42:34 | [diff] [blame] | 201 | #if DCHECK_IS_CONFIGURABLE |
| 202 | const char kDcheckIsFatalName[] = "DCHECKs are fatal"; |
| 203 | const char kDcheckIsFatalDescription[] = |
| 204 | "By default Chrome will evaluate in this build, but only log failures, " |
| 205 | "rather than crashing. If enabled, DCHECKs will crash the calling process."; |
| 206 | #endif // DCHECK_IS_CONFIGURABLE |
| 207 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 208 | const char kDebugPackedAppName[] = "Debugging for packed apps"; |
| 209 | const char kDebugPackedAppDescription[] = |
| 210 | "Enables debugging context menu options such as Inspect Element for packed " |
| 211 | "applications."; |
| 212 | |
| 213 | const char kDefaultTileHeightName[] = "Default tile height"; |
| 214 | const char kDefaultTileHeightDescription[] = "Specify the default tile height."; |
| 215 | const char kDefaultTileHeightShort[] = "128"; |
| 216 | const char kDefaultTileHeightTall[] = "256"; |
| 217 | const char kDefaultTileHeightGrande[] = "512"; |
| 218 | const char kDefaultTileHeightVenti[] = "1024"; |
| 219 | |
| 220 | const char kDefaultTileWidthName[] = "Default tile width"; |
| 221 | const char kDefaultTileWidthDescription[] = "Specify the default tile width."; |
| 222 | const char kDefaultTileWidthShort[] = "128"; |
| 223 | const char kDefaultTileWidthTall[] = "256"; |
| 224 | const char kDefaultTileWidthGrande[] = "512"; |
| 225 | const char kDefaultTileWidthVenti[] = "1024"; |
| 226 | |
| 227 | const char kDebugShortcutsName[] = "Debugging keyboard shortcuts"; |
| 228 | const char kDebugShortcutsDescription[] = |
| 229 | "Enables additional keyboard shortcuts that are useful for debugging Ash."; |
| 230 | |
| 231 | const char kDeviceDiscoveryNotificationsName[] = |
| 232 | "Device Discovery Notifications"; |
| 233 | const char kDeviceDiscoveryNotificationsDescription[] = |
| 234 | "Device discovery notifications on local network."; |
| 235 | |
| 236 | const char kDevtoolsExperimentsName[] = "Developer Tools experiments"; |
| 237 | const char kDevtoolsExperimentsDescription[] = |
| 238 | "Enables Developer Tools experiments. Use Settings panel in Developer " |
| 239 | "Tools to toggle individual experiments."; |
| 240 | |
| 241 | const char kDisableAudioForDesktopShareName[] = |
| 242 | "Disable Audio For Desktop Share"; |
| 243 | const char kDisableAudioForDesktopShareDescription[] = |
| 244 | "With this flag on, desktop share picker window will not let the user " |
| 245 | "choose whether to share audio."; |
| 246 | |
Chris Palmer | 917bc05 | 2018-03-14 19:28:31 | [diff] [blame] | 247 | const char kDisablePushStateThrottleName[] = "Disable pushState throttling"; |
| 248 | const char kDisablePushStateThrottleDescription[] = |
| 249 | "Disables throttling of history.pushState and history.replaceState method " |
| 250 | "calls."; |
| 251 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 252 | const char kDisableTabForDesktopShareName[] = |
| 253 | "Disable Desktop Share with tab source"; |
| 254 | const char kDisableTabForDesktopShareDescription[] = |
| 255 | "This flag controls whether users can choose a tab for desktop share."; |
| 256 | |
| 257 | const char kDisallowDocWrittenScriptsUiName[] = |
| 258 | "Block scripts loaded via document.write"; |
| 259 | const char kDisallowDocWrittenScriptsUiDescription[] = |
| 260 | "Disallows fetches for third-party parser-blocking scripts inserted into " |
| 261 | "the main frame via document.write."; |
| 262 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 263 | const char kDriveSearchInChromeLauncherName[] = |
| 264 | "Drive Search in Chrome App Launcher"; |
| 265 | const char kDriveSearchInChromeLauncherDescription[] = |
| 266 | "Files from Drive will show up when searching the Chrome App Launcher."; |
| 267 | |
Gustavo Sacomoto | fb11164f | 2017-07-21 12:56:18 | [diff] [blame] | 268 | const char kEasyUnlockPromotionsName[] = "Smart Lock Promotions"; |
| 269 | const char kEasyUnlockPromotionsDescription[] = |
| 270 | "Enables Smart Lock promotions. Promotions will be periodically display " |
| 271 | "if the user is eligible."; |
| 272 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 273 | const char kEmbeddedExtensionOptionsName[] = "Embedded extension options"; |
| 274 | const char kEmbeddedExtensionOptionsDescription[] = |
| 275 | "Display extension options as an embedded element in chrome://extensions " |
| 276 | "rather than opening a new tab."; |
| 277 | |
| 278 | const char kEnableAsmWasmName[] = |
| 279 | "Experimental Validate Asm.js and convert to WebAssembly when valid."; |
| 280 | const char kEnableAsmWasmDescription[] = |
| 281 | R"*(Validate Asm.js when "use asm" is present and then convert to )*" |
| 282 | R"*(WebAssembly.)*"; |
| 283 | |
Anthony Vallee-Dubois | 968ae4d | 2018-03-15 16:56:36 | [diff] [blame] | 284 | const char kEnableWebPaymentsSingleAppUiSkipName[] = |
| 285 | "Enable Web Payments single app UI skip"; |
| 286 | const char kEnableWebPaymentsSingleAppUiSkipDescription[] = |
| 287 | "Enable Web Payments to skip showing its UI if the developer specifies a " |
| 288 | "single app."; |
| 289 | |
Shanfeng Zhang | 19c1656 | 2017-10-17 02:30:40 | [diff] [blame] | 290 | const char kEnableAutofillCreditCardAblationExperimentDisplayName[] = |
| 291 | "Credit card autofill ablation experiment."; |
| 292 | const char kEnableAutofillCreditCardAblationExperimentDescription[] = |
| 293 | "If enabled, credit card autofill suggestions will not display."; |
| 294 | |
Jared Saul | ae93aa1 | 2018-03-23 19:04:39 | [diff] [blame] | 295 | const char kEnableAutofillCreditCardBankNameDisplayName[] = |
| 296 | "Display the issuer bank name of a credit card in autofill."; |
| 297 | const char kEnableAutofillCreditCardBankNameDisplayDescription[] = |
| 298 | "If enabled, displays the issuer bank name of a credit card in autofill."; |
| 299 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 300 | const char kEnableAutofillCreditCardLastUsedDateDisplayName[] = |
| 301 | "Display the last used date of a credit card in autofill."; |
| 302 | const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] = |
| 303 | "If enabled, display the last used date of a credit card in autofill."; |
| 304 | |
Lakshmi Kumar Dabbiru | 51f1c20 | 2018-03-29 22:23:37 | [diff] [blame] | 305 | const char kEnableAutofillCreditCardUploadGooglePayOnAndroidBrandingName[] = |
| 306 | "Enable Google Pay branding when offering credit card upload on Android"; |
| 307 | const char |
| 308 | kEnableAutofillCreditCardUploadGooglePayOnAndroidBrandingDescription[] = |
| 309 | "If enabled, shows the Google Pay logo and a shorter header message " |
| 310 | "when credit card upload to Google Payments is offered on Android."; |
| 311 | |
Jared Saul | 1e4786a | 2017-12-14 01:43:09 | [diff] [blame] | 312 | const char kEnableAutofillCreditCardUploadSendDetectedValuesName[] = |
| 313 | "Always send metadata on detected form values for Autofill credit card " |
| 314 | "upload"; |
| 315 | const char kEnableAutofillCreditCardUploadSendDetectedValuesDescription[] = |
| 316 | "If enabled, always checks with Google Payments when deciding whether to " |
| 317 | "offer credit card upload, even if some data is missing."; |
| 318 | |
Jared Saul | 5c2a148 | 2017-12-09 00:24:31 | [diff] [blame] | 319 | const char kEnableAutofillCreditCardUploadSendPanFirstSixName[] = |
| 320 | "Send first six digits of PAN when deciding whether to offer Autofill " |
| 321 | "credit card upload"; |
| 322 | const char kEnableAutofillCreditCardUploadSendPanFirstSixDescription[] = |
| 323 | "If enabled, when deciding whether to offer credit card upload to Google " |
| 324 | "Payments, sends the first six digits of the card number to avoid cases " |
| 325 | "where card upload is likely to fail."; |
| 326 | |
siyua | 7c4e97b4 | 2018-04-24 02:49:42 | [diff] [blame] | 327 | const char kEnableAutofillCreditCardUploadUpdatePromptExplanationName[] = |
| 328 | "Enable updated prompt explanation when offering credit card upload"; |
| 329 | const char kEnableAutofillCreditCardUploadUpdatePromptExplanationDescription[] = |
| 330 | "If enabled, changes the server save card prompt's explanation to mention " |
| 331 | "the saving of the billing address."; |
| 332 | |
tmartino | cd41473 | 2018-02-12 19:01:01 | [diff] [blame] | 333 | const char kEnableAutofillNativeDropdownViewsName[] = |
| 334 | "Display Autofill Dropdown Using Views"; |
| 335 | const char kEnableAutofillNativeDropdownViewsDescription[] = |
| 336 | "If enabled, the Autofill Dropdown will be built natively using Views, " |
| 337 | "rather than painted directly to a canvas."; |
| 338 | |
Vitalii Iarko | 4f9834ce | 2017-08-04 07:05:19 | [diff] [blame] | 339 | const char kEnableBreakingNewsPushName[] = "Breaking News Push"; |
| 340 | const char kEnableBreakingNewsPushDescription[] = |
| 341 | "Listen for breaking news content suggestions (e.g. for New Tab Page) " |
| 342 | "through Google Cloud Messaging."; |
| 343 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 344 | const char kEnableBrotliName[] = "Brotli Content-Encoding."; |
| 345 | const char kEnableBrotliDescription[] = |
| 346 | "Enable Brotli Content-Encoding support."; |
| 347 | |
Qiang Xu | 0f602fe6 | 2017-12-22 01:31:20 | [diff] [blame] | 348 | const char kEnableCaptivePortalRandomUrl[] = "Captive Portal url Randomization"; |
| 349 | const char kEnableCaptivePortalRandomUrlDescription[] = |
| 350 | "Enable Captive Portal URL randomization."; |
| 351 | |
sclittle | 50e4bb9 | 2017-07-08 02:23:03 | [diff] [blame] | 352 | const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews"; |
| 353 | |
| 354 | const char kEnableClientLoFiDescription[] = |
| 355 | "Enable showing low fidelity images on some pages on slow networks."; |
| 356 | |
David Reveman | 87b4b69 | 2018-03-09 21:22:22 | [diff] [blame] | 357 | const char kEnableCursorMotionBlurName[] = "Enable Cursor Motion Blur"; |
| 358 | const char kEnableCursorMotionBlurDescription[] = |
| 359 | "Enable motion blur effect for the cursor."; |
| 360 | |
Doug Arnett | 08b4067b | 2017-10-12 20:14:44 | [diff] [blame] | 361 | const char kEnableNoScriptPreviewsName[] = "NoScript previews"; |
| 362 | |
| 363 | const char kEnableNoScriptPreviewsDescription[] = |
| 364 | "Enable disabling JavaScript on some pages on slow networks."; |
| 365 | |
Thanh Le | 2c279fbc | 2017-11-21 01:25:40 | [diff] [blame] | 366 | const char kDataReductionProxyServerAlternative1[] = "Use alt. server config 1"; |
| 367 | const char kDataReductionProxyServerAlternative2[] = "Use alt. server config 2"; |
| 368 | const char kDataReductionProxyServerAlternative3[] = "Use alt. server config 3"; |
| 369 | const char kDataReductionProxyServerAlternative4[] = "Use alt. server config 4"; |
| 370 | const char kDataReductionProxyServerAlternative5[] = "Use alt. server config 5"; |
| 371 | const char kDataReductionProxyServerAlternative6[] = "Use alt. server config 6"; |
| 372 | const char kDataReductionProxyServerAlternative7[] = "Use alt. server config 7"; |
| 373 | const char kDataReductionProxyServerAlternative8[] = "Use alt. server config 8"; |
| 374 | const char kDataReductionProxyServerAlternative9[] = "Use alt. server config 9"; |
| 375 | const char kDataReductionProxyServerAlternative10[] = |
| 376 | "Use alt. server config 10"; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 377 | const char kEnableDataReductionProxyServerExperimentName[] = |
| 378 | "Use an alternative Data Saver back end configuration."; |
| 379 | const char kEnableDataReductionProxyServerExperimentDescription[] = |
| 380 | "Enable a different approach to saving data by configuring the back end " |
| 381 | "server"; |
| 382 | |
| 383 | const char kEnableDataReductionProxySavingsPromoName[] = |
| 384 | "Data Saver 1 MB Savings Promo"; |
| 385 | const char kEnableDataReductionProxySavingsPromoDescription[] = |
| 386 | "Enable a Data Saver promo for 1 MB of savings. If Data Saver has already " |
| 387 | "saved 1 MB of data, then the promo will not be shown. Data Saver must be " |
| 388 | "enabled for the promo to be shown."; |
| 389 | |
Matt Giuca | d487043 | 2017-11-24 01:04:38 | [diff] [blame] | 390 | const char kEnableDesktopPWAsName[] = "Desktop PWAs"; |
| 391 | const char kEnableDesktopPWAsDescription[] = |
| 392 | "Experimental windowing and install banner treatment for Progressive Web " |
| 393 | "Apps on desktop platforms. Implies #enable-experimental-app-banners."; |
Giovanni Ortuño Urquidi | 45020e23 | 2017-07-12 06:10:17 | [diff] [blame] | 394 | |
Giovanni Ortuño Urquidi | 40c8e79 | 2018-02-28 04:18:59 | [diff] [blame] | 395 | const char kEnableDesktopPWAsLinkCapturingName[] = |
| 396 | "Desktop PWAs Link Capturing"; |
| 397 | const char kEnableDesktopPWAsLinkCapturingDescription[] = |
| 398 | "Experimentally enable link capturing for Desktop PWAs. Navigations to " |
| 399 | "URLs that are in-scope of Desktop PWAs will open in a window. Requires " |
| 400 | "#enable-desktop-pwas."; |
| 401 | |
Ahmed Fakhry | 0037de0 | 2018-01-29 19:58:31 | [diff] [blame] | 402 | const char kEnableDockedMagnifierName[] = "Docked Magnifier"; |
| 403 | const char kEnableDockedMagnifierDescription[] = |
| 404 | "Enables the Docked Magnifier (a.k.a. picture-in-picture magnifier)."; |
| 405 | |
Ramya Nagarajan | 5b41d8d | 2018-04-02 19:53:02 | [diff] [blame] | 406 | const char kEnableEmojiContextMenuName[] = "Emoji Context Menu"; |
| 407 | const char kEnableEmojiContextMenuDescription[] = |
Mathieu Perreault | 608546ee | 2018-05-09 00:35:09 | [diff] [blame] | 408 | "Enables the Emoji picker item in context menus for editable text areas, if" |
| 409 | " supported by the operating system."; |
Ramya Nagarajan | 5b41d8d | 2018-04-02 19:53:02 | [diff] [blame] | 410 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 411 | const char kEnableEnumeratingAudioDevicesName[] = |
| 412 | "Experimentally enable enumerating audio devices."; |
| 413 | const char kEnableEnumeratingAudioDevicesDescription[] = |
| 414 | "Experimentally enable the use of enumerating audio devices."; |
| 415 | |
| 416 | const char kEnableGenericSensorName[] = "Generic Sensor"; |
| 417 | const char kEnableGenericSensorDescription[] = |
Mikhail Pozdnyakov | 73373a6 | 2017-08-24 17:31:25 | [diff] [blame] | 418 | "Enables motion sensor classes based on Generic Sensor API, i.e. " |
| 419 | "Accelerometer, LinearAccelerationSensor, Gyroscope, " |
| 420 | "AbsoluteOrientationSensor and RelativeOrientationSensor interfaces."; |
| 421 | |
| 422 | const char kEnableGenericSensorExtraClassesName[] = |
| 423 | "Generic Sensor Extra Classes"; |
| 424 | const char kEnableGenericSensorExtraClassesDescription[] = |
| 425 | "Enables an extra set of sensor classes based on Generic Sensor API, which " |
| 426 | "expose previously unavailable platform features, i.e. AmbientLightSensor " |
| 427 | "and Magnetometer interfaces."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 428 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 429 | const char kEnableHDRName[] = "HDR mode"; |
| 430 | const char kEnableHDRDescription[] = |
| 431 | "Enables HDR support on compatible displays."; |
| 432 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 433 | const char kEnableHttpFormWarningName[] = |
| 434 | "Show in-form warnings for sensitive fields when the top-level page is not " |
Eric Lawrence | ed8fccf | 2017-09-08 21:27:15 | [diff] [blame] | 435 | "HTTPS"; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 436 | const char kEnableHttpFormWarningDescription[] = |
| 437 | "Attaches a warning UI to any password or credit card fields detected when " |
| 438 | "the top-level page is not HTTPS"; |
| 439 | |
Hiroshige Hayashizaki | 99d5821e | 2018-05-02 04:25:41 | [diff] [blame] | 440 | const char kLayeredAPIName[] = "Experimental layered APIs"; |
| 441 | const char kLayeredAPIDescription[] = |
| 442 | "Enable layered API infrastructure, as well as several experimental " |
| 443 | "layered APIs. The syntax and the APIs exposed are experimental and will " |
| 444 | "change over time."; |
| 445 | |
Scott Little | d0fd2d00 | 2018-04-13 03:37:26 | [diff] [blame] | 446 | const char kEnableLazyFrameLoadingName[] = "Enable lazy frame loading"; |
| 447 | const char kEnableLazyFrameLoadingDescription[] = |
| 448 | "Defers the loading of certain cross-origin frames until the page is " |
| 449 | "scrolled down near them."; |
| 450 | |
Sidney San Martín | 9375b89 | 2017-09-09 00:29:54 | [diff] [blame] | 451 | const char kEnableMacMaterialDesignDownloadShelfName[] = |
| 452 | "Enable Material Design download shelf"; |
| 453 | |
| 454 | const char kEnableMacMaterialDesignDownloadShelfDescription[] = |
| 455 | "If enabled, the download shelf uses Material Design."; |
| 456 | |
Tatiana Gornak | afb4045 | 2017-07-31 13:50:04 | [diff] [blame] | 457 | const char kEnableManualFallbacksFillingName[] = |
| 458 | "Manual fallbacks for password manager forms filling"; |
| 459 | const char kEnableManualFallbacksFillingDescription[] = |
| 460 | "If enabled, then if user clicks on the password field on a form, popup " |
| 461 | "might contain generation fallbacks or 'Show all saved passwords' " |
| 462 | "fallback."; |
| 463 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 464 | const char kEnableMaterialDesignExtensionsName[] = |
| 465 | "Enable Material Design extensions"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 466 | const char kEnableMaterialDesignExtensionsDescription[] = |
| 467 | "If enabled, the chrome://extensions/ URL loads the Material Design " |
| 468 | "extensions page."; |
| 469 | |
Anton Urusov | 47cd493 | 2017-09-19 14:41:41 | [diff] [blame] | 470 | const char kEnablePolicyToolName[] = "Enable policy management page"; |
| 471 | const char kEnablePolicyToolDescription[] = |
| 472 | "If enabled, the chrome://policy-tool URL loads a page for managing " |
| 473 | "policies."; |
| 474 | |
Tsuyoshi Horo | ea7edb7 | 2017-11-12 04:14:00 | [diff] [blame] | 475 | const char kEnablePWAFullCodeCacheName[] = "Enable PWA full code cache"; |
| 476 | const char kEnablePWAFullCodeCacheDescription[] = |
| 477 | "Generate V8 code cache in Cache Storage while installing Service Worker " |
| 478 | "for PWAs."; |
| 479 | |
Weidong Guo | f1e5a89 | 2018-01-06 02:26:39 | [diff] [blame] | 480 | const char kDisableMultiMirroringName[] = |
Weidong Guo | 7dfd148 | 2017-11-08 05:56:28 | [diff] [blame] | 481 | "Display mirroring across multiple displays."; |
Weidong Guo | f1e5a89 | 2018-01-06 02:26:39 | [diff] [blame] | 482 | const char kDisableMultiMirroringDescription[] = |
| 483 | "Disable Display mirroring across multiple displays."; |
Weidong Guo | 7dfd148 | 2017-11-08 05:56:28 | [diff] [blame] | 484 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 485 | const char kEnableNavigationTracingName[] = "Enable navigation tracing"; |
| 486 | const char kEnableNavigationTracingDescription[] = |
| 487 | "This is to be used in conjunction with the trace-upload-url flag. " |
| 488 | "WARNING: When enabled, Chrome will record performance data for every " |
| 489 | "navigation and upload it to the URL specified by the trace-upload-url " |
| 490 | "flag. The trace may include personally identifiable information (PII) " |
| 491 | "such as the titles and URLs of websites you visit."; |
| 492 | |
Bernhard Bauer | 5533f991 | 2017-11-06 17:56:02 | [diff] [blame] | 493 | const char kEnableNetworkLoggingToFileName[] = "Enable network logging to file"; |
| 494 | const char kEnableNetworkLoggingToFileDescription[] = |
| 495 | "Enables network logging to a file named netlog.json in the user data " |
| 496 | "directory. The file can be imported into chrome://net-internals."; |
| 497 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 498 | const char kEnableNetworkServiceName[] = "Enable network service"; |
| 499 | const char kEnableNetworkServiceDescription[] = |
| 500 | "Enables the network service, which makes network requests through a " |
| 501 | "separate service. Note: most features don't work with this yet."; |
| 502 | |
John Abd-El-Malek | 8067cc0 | 2017-12-04 23:23:20 | [diff] [blame] | 503 | const char kEnableNetworkServiceInProcessName[] = |
| 504 | "Runs network service in-process"; |
| 505 | const char kEnableNetworkServiceInProcessDescription[] = |
| 506 | "Runs the network service in the browser process."; |
| 507 | |
dpapad | ed834947 | 2017-10-25 03:21:27 | [diff] [blame] | 508 | const char kEnableNewPrintPreview[] = "Enable new Print Preview UI"; |
| 509 | const char kEnableNewPrintPreviewDescription[] = |
| 510 | "If enabled, Print Preview will display a newer UI"; |
| 511 | |
Ahmed Fakhry | 2fd8fc8 | 2017-07-28 16:31:12 | [diff] [blame] | 512 | const char kEnableNightLightName[] = "Enable Night Light"; |
| 513 | const char kEnableNightLightDescription[] = |
| 514 | "Enable the Night Light feature which controls the color temperature of " |
| 515 | "the screen."; |
| 516 | |
xlou | 8b56f67 | 2018-02-09 23:34:30 | [diff] [blame] | 517 | const char kEnableNupPrintingName[] = "Enable N-up printing"; |
| 518 | const char kEnableNupPrintingDescription[] = |
| 519 | "Enable N-up printing in the print preview panel."; |
| 520 | |
Sophie Chang | 117a3b2 | 2017-10-24 22:25:36 | [diff] [blame] | 521 | const char kEnableOptimizationHintsName[] = "Optimization Hints"; |
| 522 | const char kEnableOptimizationHintsDescription[] = |
| 523 | "Enable the Optimization Hints feature which incorporates server hints" |
| 524 | "into decisions for what optimizations to perform on some pages on slow " |
| 525 | "networks."; |
| 526 | |
Yutaka Hirano | 98be327 | 2017-08-07 17:55:39 | [diff] [blame] | 527 | const char kEnableOutOfBlinkCORSName[] = "Out of blink CORS"; |
| 528 | const char kEnableOutOfBlinkCORSDescription[] = |
| 529 | "CORS handling logic is moved out of blink."; |
| 530 | |
Sammie Quon | 0fbf078 | 2018-05-01 22:11:08 | [diff] [blame] | 531 | const char kEnableOverviewSwipeToCloseName[] = |
| 532 | "Enable overview swipe to close."; |
| 533 | const char kEnableOverviewSwipeToCloseDescription[] = |
| 534 | "Enables closing of items in overview mode by dragging or flinging " |
| 535 | "vertically."; |
| 536 | |
kylechar | 7051c09 | 2018-02-05 20:31:39 | [diff] [blame] | 537 | const char kVizDisplayCompositorName[] = "Viz Display Compositor (OOP-D)"; |
| 538 | const char kVizDisplayCompositorDescription[] = |
| 539 | "If enabled, the display compositor runs as part of the viz service in the" |
| 540 | "GPU process."; |
| 541 | |
Ria Jiang | 6a129b98 | 2018-03-01 18:30:40 | [diff] [blame] | 542 | const char kVizHitTestDrawQuadName[] = "Viz Hit-test Draw-quad version"; |
| 543 | const char kVizHitTestDrawQuadDescription[] = |
| 544 | "If enabled, event targeting uses the new viz-assisted hit-testing logic, " |
| 545 | "with hit-test data computed from the CompositorFrame."; |
| 546 | |
Erik Chen | 49bbfa2 | 2017-08-18 08:49:56 | [diff] [blame] | 547 | const char kEnableOutOfProcessHeapProfilingName[] = |
Albert J. Wong | 17417476 | 2018-01-18 23:50:23 | [diff] [blame] | 548 | "Out of process heap profiling start mode."; |
Erik Chen | 49bbfa2 | 2017-08-18 08:49:56 | [diff] [blame] | 549 | const char kEnableOutOfProcessHeapProfilingDescription[] = |
| 550 | "Creates a profiling service that records stacktraces for all live, " |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 551 | "malloced objects. Heap dumps can be obtained at chrome://tracing " |
| 552 | "[category:memory-infra] and chrome://memory-internals. This setting " |
| 553 | "controls which processes are profiled. As long as this setting is not " |
| 554 | "disabled, users can start profiling any given process in " |
| 555 | "chrome://memory-internals."; |
| 556 | const char kEnableOutOfProcessHeapProfilingModeMinimal[] = "Browser and GPU"; |
| 557 | const char kEnableOutOfProcessHeapProfilingModeAll[] = "All processes"; |
| 558 | const char kEnableOutOfProcessHeapProfilingModeAllRenderers[] = "All renderers"; |
| 559 | const char kEnableOutOfProcessHeapProfilingModeBrowser[] = "Only browser"; |
| 560 | const char kEnableOutOfProcessHeapProfilingModeGpu[] = "Only GPU."; |
erikchen | 0a5dd69 | 2017-12-12 00:53:10 | [diff] [blame] | 561 | const char kEnableOutOfProcessHeapProfilingModeManual[] = |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 562 | "None by default. Visit chrome://memory-internals to choose which " |
| 563 | "processes to profile."; |
Albert J. Wong | bd5bd90 | 2017-11-09 19:56:15 | [diff] [blame] | 564 | const char kEnableOutOfProcessHeapProfilingModeRendererSampling[] = |
| 565 | "Profile a random sampling of renderer processes, ensuring only one is " |
| 566 | "ever profiled at a time."; |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 567 | |
Erik Chen | 8bb76b5 | 2017-12-06 19:06:25 | [diff] [blame] | 568 | const char kOutOfProcessHeapProfilingKeepSmallAllocations[] = |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 569 | "Emit small allocations in memlog heap dumps."; |
Erik Chen | 8bb76b5 | 2017-12-06 19:06:25 | [diff] [blame] | 570 | const char kOutOfProcessHeapProfilingKeepSmallAllocationsDescription[] = |
| 571 | "By default, small allocations are pruned from the heap dump. This reduces " |
| 572 | "the size of the compressed trace by 100x. If pruning is disabled, the " |
| 573 | "chrome://tracing UI may be unable to take or load the trace. Save the " |
| 574 | "trace directly using chrome://memory-internals, and use other mechanisms " |
| 575 | "[e.g. diff_heap_profiler.py] to examine the trace. Note that " |
| 576 | "automatically uploaded traces will always be pruned. This only affects " |
| 577 | "manually taken memory-infra traces."; |
Erik Chen | 49bbfa2 | 2017-08-18 08:49:56 | [diff] [blame] | 578 | |
erikchen | 8bc20d8 | 2018-02-14 03:21:51 | [diff] [blame] | 579 | const char kOutOfProcessHeapProfilingSampling[] = "Sample memlog allocations"; |
| 580 | const char kOutOfProcessHeapProfilingSamplingDescription[] = |
| 581 | "Use a poisson process to sample allocations. Defaults to a sample rate of " |
erikchen | 99bfce0 | 2018-02-14 20:29:22 | [diff] [blame] | 582 | "10000. This results in low noise for large and/or frequent allocations [" |
| 583 | "[size * frequency >> 10000]. This means that aggregate numbers [e.g. " |
| 584 | "total size of malloc-ed objects] and large and/or frequent allocations " |
| 585 | "can be trusted with high fidelity."; |
erikchen | 8bc20d8 | 2018-02-14 03:21:51 | [diff] [blame] | 586 | |
Erik Chen | 3303fd023 | 2018-01-11 20:29:05 | [diff] [blame] | 587 | const char kOOPHPStackModeName[] = |
| 588 | "The type of stack to record for memlog heap dumps"; |
| 589 | const char kOOPHPStackModeDescription[] = |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 590 | "By default, memlog heap dumps record native stacks, which requires a " |
| 591 | "post-processing step to symbolize. Requires a custom build with frame " |
erikchen | 011ad3f | 2018-01-26 17:54:55 | [diff] [blame] | 592 | "pointers to work on Android. Native with thread names will add the thread " |
| 593 | "name as the first frame of each native stack. It's also possible to " |
| 594 | "record a pseudo stack using trace events as identifiers. It's also " |
| 595 | "possible to do a mix of both."; |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 596 | const char kOOPHPStackModeMixed[] = "Mixed"; |
| 597 | const char kOOPHPStackModeNative[] = "Native"; |
erikchen | 011ad3f | 2018-01-26 17:54:55 | [diff] [blame] | 598 | const char kOOPHPStackModeNativeWithThreadNames[] = "Native with thread names"; |
erikchen | 94aca89 | 2018-01-18 00:21:19 | [diff] [blame] | 599 | const char kOOPHPStackModePseudo[] = "Trace events"; |
Erik Chen | 3303fd023 | 2018-01-11 20:29:05 | [diff] [blame] | 600 | |
François Beaufort | 2e75f49 | 2018-02-08 20:44:46 | [diff] [blame] | 601 | const char kEnablePictureInPictureName[] = "Enable Picture-in-Picture."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 602 | const char kEnablePictureInPictureDescription[] = |
François Beaufort | 2e75f49 | 2018-02-08 20:44:46 | [diff] [blame] | 603 | "Enable the Picture-in-Picture feature for videos."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 604 | |
F#m | 59d036e | 2017-09-13 07:22:17 | [diff] [blame] | 605 | const char kEnablePixelCanvasRecordingName[] = "Enable pixel canvas recording"; |
| 606 | const char kEnablePixelCanvasRecordingDescription[] = |
| 607 | "Pixel canvas recording allows the compositor to raster contents aligned " |
| 608 | "with the pixel and improves text rendering. This should be enabled when a " |
| 609 | "device is using fractional scale factor."; |
| 610 | |
Mikel Astiz | 38837f8 | 2018-04-24 22:23:23 | [diff] [blame] | 611 | const char kEnableSyncUSSSessionsName[] = "Enable USS for sessions sync"; |
| 612 | const char kEnableSyncUSSSessionsDescription[] = |
| 613 | "Enables the new, experimental implementation of session sync (aka tab " |
| 614 | "sync)."; |
| 615 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 616 | const char kEnableTokenBindingName[] = "Token Binding."; |
| 617 | const char kEnableTokenBindingDescription[] = "Enable Token Binding support."; |
| 618 | |
Sahel Sharify | d732ab1 | 2017-11-29 23:03:16 | [diff] [blame] | 619 | extern const char kEnableTouchpadAndWheelScrollLatchingName[] = |
| 620 | "Wheel Scroll Latching."; |
| 621 | extern const char kEnableTouchpadAndWheelScrollLatchingDescription[] = |
| 622 | "Wheel scroll latching enforces latching to a single element for the " |
| 623 | "duration of a scroll sequence."; |
| 624 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 625 | const char kEnableUseZoomForDsfName[] = |
| 626 | "Use Blink's zoom for device scale factor."; |
| 627 | const char kEnableUseZoomForDsfDescription[] = |
| 628 | "If enabled, Blink uses its zooming mechanism to scale content for device " |
| 629 | "scale factor."; |
| 630 | const char kEnableUseZoomForDsfChoiceDefault[] = "Default"; |
| 631 | const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled"; |
| 632 | const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled"; |
| 633 | |
| 634 | const char kEnableScrollAnchoringName[] = "Scroll Anchoring"; |
| 635 | const char kEnableScrollAnchoringDescription[] = |
| 636 | "Adjusts scroll position to prevent visible jumps when offscreen content " |
| 637 | "changes."; |
| 638 | |
Patrick Noland | 8ee016e | 2018-01-24 11:44:53 | [diff] [blame] | 639 | const char kEnableScrollAnchorSerializationName[] = |
| 640 | "Scroll Anchor Serialization"; |
| 641 | const char kEnableScrollAnchorSerializationDescription[] = |
| 642 | "Save the scroll anchor and use it to restore the scroll position when " |
| 643 | "navigating."; |
| 644 | |
Brad Nelson | 5cd500e | 2018-01-04 00:50:19 | [diff] [blame] | 645 | const char kEnableSharedArrayBufferName[] = |
| 646 | "Experimental enabled SharedArrayBuffer support in JavaScript."; |
| 647 | const char kEnableSharedArrayBufferDescription[] = |
| 648 | "Enable SharedArrayBuffer support in JavaScript."; |
| 649 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 650 | const char kEnableWasmName[] = "WebAssembly structured cloning support."; |
| 651 | const char kEnableWasmDescription[] = |
| 652 | "Enable web pages to use WebAssembly structured cloning."; |
| 653 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 654 | const char kEnableImageCaptureAPIName[] = "Image Capture API"; |
| 655 | const char kEnableImageCaptureAPIDescription[] = |
| 656 | "Enables the Web Platform Image Capture API: takePhoto(), " |
| 657 | "getPhotoCapabilities(), etc."; |
| 658 | |
| 659 | const char kEnableZeroSuggestRedirectToChromeName[] = |
| 660 | "Experimental contextual omnibox suggestion"; |
| 661 | const char kEnableZeroSuggestRedirectToChromeDescription[] = |
| 662 | "Change omnibox contextual suggestions to an experimental source. Note " |
| 663 | "that this is not an on/off switch for contextual omnibox and it only " |
| 664 | "applies to suggestions provided before the user starts typing a URL or a " |
| 665 | "search query (i.e. zero suggest)."; |
| 666 | |
| 667 | const char kEnableWasmStreamingName[] = |
| 668 | "WebAssembly streaming compile/instantiate support."; |
| 669 | const char kEnableWasmStreamingDescription[] = |
| 670 | "WebAssembly.{compile|instantiate} taking a Response as parameter."; |
| 671 | |
Clemens Hammacher | 0c8a15a | 2018-04-27 13:45:32 | [diff] [blame] | 672 | const char kEnableWasmBaselineName[] = "WebAssembly baseline compiler"; |
| 673 | const char kEnableWasmBaselineDescription[] = |
| 674 | "Enables WebAssembly baseline compilation and tier up."; |
| 675 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 676 | const char kExpensiveBackgroundTimerThrottlingName[] = |
| 677 | "Throttle expensive background timers"; |
| 678 | const char kExpensiveBackgroundTimerThrottlingDescription[] = |
| 679 | "Enables intervention to limit CPU usage of background timers to 1%."; |
| 680 | |
| 681 | const char kExperimentalAppBannersName[] = "Experimental app banners"; |
| 682 | const char kExperimentalAppBannersDescription[] = |
Matt Giuca | d487043 | 2017-11-24 01:04:38 | [diff] [blame] | 683 | "Enables a new experimental app banner flow and UI. Implies " |
| 684 | "#enable-app-banners."; |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 685 | |
| 686 | const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features"; |
| 687 | const char kExperimentalCanvasFeaturesDescription[] = |
| 688 | "Enables the use of experimental canvas features which are still in " |
| 689 | "development."; |
| 690 | |
Nicholas Verne | ccd825980 | 2018-02-22 01:22:04 | [diff] [blame] | 691 | const char kExperimentalCrostiniUIName[] = "Experimental Crostini"; |
| 692 | const char kExperimentalCrostiniUIDescription[] = |
| 693 | "Enables in-development Crostini features."; |
| 694 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 695 | const char kExperimentalExtensionApisName[] = "Experimental Extension APIs"; |
| 696 | const char kExperimentalExtensionApisDescription[] = |
| 697 | "Enables experimental extension APIs. Note that the extension gallery " |
| 698 | "doesn't allow you to upload extensions that use experimental APIs."; |
| 699 | |
| 700 | const char kExperimentalFullscreenExitUIName[] = |
| 701 | "Experimental fullscreen exit UI"; |
| 702 | const char kExperimentalFullscreenExitUIDescription[] = |
| 703 | "Displays experimental UI to allow mouse and touch input methods to exit " |
| 704 | "fullscreen mode."; |
| 705 | |
Ian Clelland | 37a985d | 2018-05-04 02:43:13 | [diff] [blame] | 706 | const char kExperimentalProductivityFeaturesName[] = |
| 707 | "Experimental Productivity Features"; |
| 708 | const char kExperimentalProductivityFeaturesDescription[] = |
| 709 | "Enable support for experimental developer productivity features, such as " |
| 710 | "Layered APIs and policies for avoiding slow rendering."; |
| 711 | |
Brett Wilson | f27ff60 | 2017-07-07 22:28:47 | [diff] [blame] | 712 | const char kExperimentalSecurityFeaturesName[] = |
| 713 | "Potentially annoying security features"; |
| 714 | const char kExperimentalSecurityFeaturesDescription[] = |
| 715 | "Enables several security features that will likely break one or more " |
| 716 | "pages that you visit on a daily basis. Strict mixed content checking, for " |
| 717 | "example. And locking powerful features to secure contexts. This flag will " |
| 718 | "probably annoy you."; |
| 719 | |
| 720 | const char kExperimentalWebPlatformFeaturesName[] = |
| 721 | "Experimental Web Platform features"; |
| 722 | const char kExperimentalWebPlatformFeaturesDescription[] = |
| 723 | "Enables experimental Web Platform features that are in development."; |
| 724 | |
| 725 | const char kExtensionContentVerificationName[] = |
| 726 | "Extension Content Verification"; |
| 727 | const char kExtensionContentVerificationDescription[] = |
| 728 | "This flag can be used to turn on verification that the contents of the " |
| 729 | "files on disk for extensions from the webstore match what they're " |
| 730 | "expected to be. This can be used to turn on this feature if it would not " |
| 731 | "otherwise have been turned on, but cannot be used to turn it off (because " |
| 732 | "this setting can be tampered with by malware)."; |
| 733 | const char kExtensionContentVerificationBootstrap[] = |
| 734 | "Bootstrap (get expected hashes, but do not enforce them)"; |
| 735 | const char kExtensionContentVerificationEnforce[] = |
| 736 | "Enforce (try to get hashes, and enforce them if successful)"; |
| 737 | const char kExtensionContentVerificationEnforceStrict[] = |
| 738 | "Enforce strict (hard fail if we can't get hashes)"; |
| 739 | |
| 740 | const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs"; |
| 741 | const char kExtensionsOnChromeUrlsDescription[] = |
| 742 | "Enables running extensions on chrome:// URLs, where extensions explicitly " |
| 743 | "request this permission."; |
galinap | ae72e15 | 2017-05-12 13:12:28 | [diff] [blame] | 744 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 745 | const char kFastUnloadName[] = "Fast tab/window close"; |
| 746 | const char kFastUnloadDescription[] = |
| 747 | "Enables fast tab/window closing - runs a tab's onunload js handler " |
| 748 | "independently of the GUI."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 749 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 750 | const char kFeaturePolicyName[] = "Feature Policy"; |
| 751 | const char kFeaturePolicyDescription[] = |
| 752 | "Enables granting and removing access to features through the " |
| 753 | "Feature-Policy HTTP header."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 754 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 755 | const char kFontCacheScalingName[] = "FontCache scaling"; |
| 756 | const char kFontCacheScalingDescription[] = |
| 757 | "Reuse a cached font in the renderer to serve different sizes of font for " |
| 758 | "faster layout."; |
| 759 | |
| 760 | const char kForceEffectiveConnectionTypeName[] = |
| 761 | "Override effective connection type"; |
| 762 | const char kForceEffectiveConnectionTypeDescription[] = |
| 763 | "Overrides the effective connection type of the current connection " |
Thanh Le | a98f12f | 2017-12-18 19:35:30 | [diff] [blame] | 764 | "returned by the network quality estimator. Slow 2G on Cellular returns " |
| 765 | "Slow 2G when connected to a cellular network, and the actual estimate " |
| 766 | "effective connection type when not on a cellular network. Previews are " |
| 767 | "usually served on 2G networks."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 768 | const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown"; |
| 769 | const char kEffectiveConnectionTypeOfflineDescription[] = "Offline"; |
| 770 | const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G"; |
Thanh Le | a98f12f | 2017-12-18 19:35:30 | [diff] [blame] | 771 | const char kEffectiveConnectionTypeSlow2GOnCellularDescription[] = |
| 772 | "Slow 2G On Cellular"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 773 | const char kEffectiveConnectionType2GDescription[] = "2G"; |
| 774 | const char kEffectiveConnectionType3GDescription[] = "3G"; |
| 775 | const char kEffectiveConnectionType4GDescription[] = "4G"; |
| 776 | |
| 777 | const char kFillOnAccountSelectName[] = "Fill passwords on account selection"; |
| 778 | const char kFillOnAccountSelectDescription[] = |
| 779 | "Filling of passwords when an account is explicitly selected by the user " |
| 780 | "rather than autofilling credentials on page load."; |
| 781 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 782 | const char kForceTextDirectionName[] = "Force text direction"; |
| 783 | const char kForceTextDirectionDescription[] = |
| 784 | "Explicitly force the per-character directionality of UI text to " |
| 785 | "left-to-right (LTR) or right-to-left (RTL) mode, overriding the default " |
| 786 | "direction of the character language."; |
| 787 | const char kForceDirectionLtr[] = "Left-to-right"; |
| 788 | const char kForceDirectionRtl[] = "Right-to-left"; |
| 789 | |
| 790 | const char kForceUiDirectionName[] = "Force UI direction"; |
| 791 | const char kForceUiDirectionDescription[] = |
| 792 | "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " |
| 793 | "mode, overriding the default direction of the UI language."; |
| 794 | |
| 795 | const char kFramebustingName[] = |
| 796 | "Framebusting requires same-origin or a user gesture"; |
| 797 | const char kFramebustingDescription[] = |
| 798 | "Don't permit an iframe to navigate the top level browsing context unless " |
| 799 | "they are same-origin or the iframe is processing a user gesture."; |
| 800 | |
| 801 | const char kGamepadExtensionsName[] = "Gamepad Extensions"; |
| 802 | const char kGamepadExtensionsDescription[] = |
Anna Offenwanger | 06dc606 | 2018-04-12 07:56:22 | [diff] [blame] | 803 | "Enables experimental extensions to the Gamepad APIs."; |
Matt Reynolds | 043469f | 2018-05-01 22:56:58 | [diff] [blame] | 804 | const char kGamepadVibrationName[] = "Gamepad Vibration"; |
| 805 | const char kGamepadVibrationDescription[] = |
| 806 | "Enables haptic vibration effects on supported gamepads."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 807 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 808 | const char kGpuRasterizationMsaaSampleCountName[] = |
| 809 | "GPU rasterization MSAA sample count."; |
| 810 | const char kGpuRasterizationMsaaSampleCountDescription[] = |
| 811 | "Specify the number of MSAA samples for GPU rasterization."; |
| 812 | const char kGpuRasterizationMsaaSampleCountZero[] = "0"; |
| 813 | const char kGpuRasterizationMsaaSampleCountTwo[] = "2"; |
| 814 | const char kGpuRasterizationMsaaSampleCountFour[] = "4"; |
| 815 | const char kGpuRasterizationMsaaSampleCountEight[] = "8"; |
| 816 | const char kGpuRasterizationMsaaSampleCountSixteen[] = "16"; |
| 817 | |
| 818 | const char kGpuRasterizationName[] = "GPU rasterization"; |
| 819 | const char kGpuRasterizationDescription[] = |
| 820 | "Use GPU to rasterize web content. Requires impl-side painting."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 821 | const char kForceGpuRasterization[] = "Force-enabled for all layers"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 822 | |
| 823 | const char kGoogleProfileInfoName[] = "Google profile name and icon"; |
| 824 | const char kGoogleProfileInfoDescription[] = |
| 825 | "Enables using Google information to populate the profile name and icon in " |
| 826 | "the avatar menu."; |
| 827 | |
| 828 | const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text"; |
| 829 | const char kHarfbuzzRendertextDescription[] = |
| 830 | "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't affect " |
| 831 | "web content."; |
| 832 | |
Takumi Fujimoto | fb71e33 | 2018-03-31 14:04:08 | [diff] [blame] | 833 | const char kViewsCastDialogName[] = "Views Cast dialog"; |
| 834 | const char kViewsCastDialogDescription[] = |
| 835 | "Replace the WebUI Cast dialog with a Views toolkit dialog."; |
| 836 | |
Manu Cornet | 4a908de | 2018-04-09 04:32:27 | [diff] [blame] | 837 | const char kHideActiveAppsFromShelfName[] = |
| 838 | "Hide running apps (that are not pinned) from the shelf"; |
| 839 | const char kHideActiveAppsFromShelfDescription[] = |
| 840 | "Save space in the shelf by hiding running apps (that are not pinned)."; |
Manu Cornet | e5f855b | 2018-03-13 03:35:25 | [diff] [blame] | 841 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 842 | const char kHistoryRequiresUserGestureName[] = |
| 843 | "New history entries require a user gesture."; |
| 844 | const char kHistoryRequiresUserGestureDescription[] = |
| 845 | "Require a user gesture to add a history entry."; |
| 846 | const char kHyperlinkAuditingName[] = "Hyperlink auditing"; |
| 847 | const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings."; |
| 848 | |
Ryan Landay | 4242dbc2 | 2018-04-04 01:47:33 | [diff] [blame] | 849 | const char kHorizontalTabSwitcherAndroidName[] = |
| 850 | "Enable horizontal tab switcher"; |
| 851 | const char kHorizontalTabSwitcherAndroidDescription[] = |
| 852 | "Changes the layout of the Android tab switcher so tabs scroll " |
| 853 | "horizontally instead of vertically."; |
| 854 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 855 | const char kHostedAppQuitNotificationName[] = |
| 856 | "Quit notification for hosted apps"; |
| 857 | const char kHostedAppQuitNotificationDescription[] = |
| 858 | "Display a notification when quitting Chrome if hosted apps are currently " |
| 859 | "running."; |
| 860 | |
| 861 | const char kHostedAppShimCreationName[] = |
| 862 | "Creation of app shims for hosted apps on Mac"; |
| 863 | const char kHostedAppShimCreationDescription[] = |
| 864 | "Create app shims on Mac when creating a hosted app."; |
| 865 | |
Ana-Cosmina Popescu | da3bcbe | 2017-09-22 18:24:48 | [diff] [blame] | 866 | const char kHtmlBasedUsernameDetectorName[] = "HTML-based username detector"; |
| 867 | const char kHtmlBasedUsernameDetectorDescription[] = |
| 868 | "Use HTML-based username detector for the password manager."; |
| 869 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 870 | const char kIconNtpName[] = "Large icons on the New Tab page"; |
| 871 | const char kIconNtpDescription[] = |
| 872 | "Enable the experimental New Tab page using large icons."; |
| 873 | |
| 874 | const char kIgnoreGpuBlacklistName[] = "Override software rendering list"; |
| 875 | const char kIgnoreGpuBlacklistDescription[] = |
| 876 | "Overrides the built-in software rendering list and enables " |
| 877 | "GPU-acceleration on unsupported system configurations."; |
| 878 | |
Thanh Le | 5f090efa5 | 2017-12-27 22:39:44 | [diff] [blame] | 879 | const char kIgnorePreviewsBlacklistName[] = "Ignore Previews Blacklist"; |
| 880 | const char kIgnorePreviewsBlacklistDescription[] = |
| 881 | "Ignore decisions made by the PreviewsBlackList"; |
| 882 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 883 | const char kImportantSitesInCbdName[] = |
| 884 | "Important sites options in clear browsing data dialog"; |
| 885 | const char kImportantSitesInCbdDescription[] = |
| 886 | "Include the option to whitelist important sites in the clear browsing " |
| 887 | "data dialog."; |
| 888 | |
Claudio Magni | 61c21092 | 2017-12-28 00:29:51 | [diff] [blame] | 889 | const char kImprovedLanguageSettingsName[] = "Improved Language Settings"; |
| 890 | const char kImprovedLanguageSettingsDescription[] = |
| 891 | "Set of changes for Language Settings. These changes are intended to fix " |
| 892 | "the major bugs related to Language Settings."; |
| 893 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 894 | const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode"; |
| 895 | const char kInProductHelpDemoModeChoiceDescription[] = |
| 896 | "Selects the In-Product Help demo mode."; |
| 897 | |
| 898 | const char kJavascriptHarmonyName[] = "Experimental JavaScript"; |
| 899 | const char kJavascriptHarmonyDescription[] = |
| 900 | "Enable web pages to use experimental JavaScript features."; |
| 901 | |
| 902 | const char kJavascriptHarmonyShippingName[] = |
| 903 | "Latest stable JavaScript features"; |
| 904 | const char kJavascriptHarmonyShippingDescription[] = |
| 905 | "Some web pages use legacy or non-standard JavaScript extensions that may " |
| 906 | "conflict with the latest JavaScript features. This flag allows disabling " |
| 907 | "support of those features for compatibility with such pages."; |
| 908 | |
Yutaka Hirano | f7f2f63 | 2017-09-06 10:40:08 | [diff] [blame] | 909 | const char kKeepAliveRendererForKeepaliveRequestsName[] = |
| 910 | "Keep a renderer alive for keepalive fetch requests"; |
| 911 | const char kKeepAliveRendererForKeepaliveRequestsDescription[] = |
| 912 | "Keep a render process alive when the process has a pending fetch request " |
| 913 | "with `keepalive' specified."; |
| 914 | |
Joe Downing | 095fd6d | 2018-02-01 18:40:36 | [diff] [blame] | 915 | const char kKeyboardLockApiName[] = "Experimental keyboard lock API."; |
| 916 | const char kKeyboardLockApiDescription[] = |
| 917 | "Enables websites to use the new keyboard{Lock|Unlock} API to intercept " |
| 918 | "specific key events and have them routed directly to the webpage when in " |
| 919 | "fullscreen mode. Implies #experimental-keyboard-lock-ui."; |
| 920 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 921 | const char kLcdTextName[] = "LCD text antialiasing"; |
| 922 | const char kLcdTextDescription[] = |
| 923 | "If disabled, text is rendered with grayscale antialiasing instead of LCD " |
| 924 | "(subpixel) when doing accelerated compositing."; |
| 925 | |
Matt Giuca | c399982f | 2017-10-06 07:51:29 | [diff] [blame] | 926 | const char kLeftToRightUrlsName[] = |
| 927 | "Render bidirectional URLs from left to right"; |
| 928 | const char kLeftToRightUrlsDescription[] = |
| 929 | "An experimental Bidi URL rendering algorithm where the URL components are " |
| 930 | "always shown in order from left to right, regardless of any RTL " |
| 931 | "characters. (The contents of each component are still rendered with the " |
| 932 | "normal Bidi algorithm.)"; |
| 933 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 934 | const char kLoadMediaRouterComponentExtensionName[] = |
| 935 | "Load Media Router Component Extension"; |
| 936 | const char kLoadMediaRouterComponentExtensionDescription[] = |
| 937 | "Loads the Media Router component extension at startup."; |
| 938 | |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 939 | const char kMacViewsAutofillPopupName[] = |
| 940 | "Uses the Views Autofill Popup on Mac"; |
| 941 | const char kMacViewsAutofillPopupDescription[] = |
| 942 | "Autofill popup will be shown using the Views toolkit rather than Cocoa."; |
Derek Cheng | d24c68c | 2018-03-12 19:09:32 | [diff] [blame] | 943 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 944 | const char kManualPasswordGenerationName[] = "Manual password generation."; |
| 945 | const char kManualPasswordGenerationDescription[] = |
| 946 | "Show a 'Generate Password' option on the context menu for all password " |
| 947 | "fields."; |
| 948 | |
| 949 | const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure"; |
| 950 | const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 951 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 952 | const char kMaterialDesignIncognitoNTPName[] = "Material Design Incognito NTP."; |
| 953 | const char kMaterialDesignIncognitoNTPDescription[] = |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 954 | "If enabled, the Incognito New Tab page uses the new material design with " |
| 955 | "a better readable text."; |
| 956 | |
| 957 | const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring"; |
| 958 | const char kMediaRemotingDescription[] = |
| 959 | "When Casting a tab to a remote device, enabling this turns on an " |
| 960 | "optimization that forwards the content bitstream directly to the remote " |
| 961 | "device when a video is fullscreened."; |
| 962 | |
spqchan | b8775569 | 2018-04-05 00:46:09 | [diff] [blame] | 963 | const char kMediaRouterCastAllowAllIPsName[] = |
| 964 | "Connect to Cast devices on all IP addresses"; |
| 965 | const char kMediaRouterCastAllowAllIPsDescription[] = |
| 966 | "Have the Media Router connect to Cast devices on all IP addresses, not " |
| 967 | "just RFC1918/RFC4913 private addresses."; |
| 968 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 969 | const char kMemoryAblationName[] = "Memory ablation experiment"; |
| 970 | const char kMemoryAblationDescription[] = |
| 971 | "Allocates extra memory in the browser process."; |
| 972 | |
| 973 | const char kMemoryCoordinatorName[] = "Memory coordinator"; |
| 974 | const char kMemoryCoordinatorDescription[] = |
| 975 | "Enable memory coordinator instead of memory pressure listeners."; |
| 976 | |
| 977 | const char kMessageCenterNewStyleNotificationName[] = "New style notification"; |
| 978 | const char kMessageCenterNewStyleNotificationDescription[] = |
| 979 | "Enables the experiment style of material-design notification"; |
| 980 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 981 | const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option"; |
| 982 | const char kMhtmlGeneratorOptionDescription[] = |
| 983 | "Provides experimental options for MHTML file generator."; |
| 984 | const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame."; |
| 985 | const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources."; |
| 986 | |
Kouhei Ueno | 08445c2 | 2017-09-05 03:58:30 | [diff] [blame] | 987 | const char kModuleScriptsDynamicImportName[] = |
| 988 | "Enable ECMAScript 6 modules dynamic import"; |
| 989 | const char kModuleScriptsDynamicImportDescription[] = |
| 990 | "Enables ECMAScript 6 modules dynamic \"import\" syntax support in V8 and " |
| 991 | "Blink."; |
| 992 | |
Hiroshige Hayashizaki | 15c2eb9 | 2017-10-20 04:57:05 | [diff] [blame] | 993 | const char kModuleScriptsImportMetaUrlName[] = |
| 994 | "Enable ECMAScript 6 modules import.meta.url"; |
| 995 | const char kModuleScriptsImportMetaUrlDescription[] = |
| 996 | "Enables ECMAScript 6 modules import.meta.url syntax support in V8 and " |
| 997 | "Blink."; |
| 998 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 999 | const char kNewAudioRenderingMixingStrategyName[] = |
| 1000 | "New audio rendering mixing strategy"; |
| 1001 | const char kNewAudioRenderingMixingStrategyDescription[] = |
| 1002 | "Use the new audio rendering mixing strategy."; |
| 1003 | |
| 1004 | const char kNewBookmarkAppsName[] = "The new bookmark app system"; |
| 1005 | const char kNewBookmarkAppsDescription[] = |
| 1006 | "Enables the new system for creating bookmark apps."; |
| 1007 | |
Vadym Doroshenko | f81e8bb | 2018-04-18 14:35:24 | [diff] [blame] | 1008 | const char kNewPasswordFormParsingName[] = "New password form parsing"; |
| 1009 | const char kNewPasswordFormParsingDescription[] = |
| 1010 | "Replaces existing form parsing in password manager with a new version, " |
| 1011 | "currently under development. WARNING: when enabled Password Manager might " |
| 1012 | "stop working"; |
| 1013 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1014 | const char kNewRemotePlaybackPipelineName[] = |
| 1015 | "Enable the new remote playback pipeline."; |
| 1016 | const char kNewRemotePlaybackPipelineDescription[] = |
| 1017 | "Enable the new pipeline for playing media element remotely via " |
| 1018 | "RemotePlayback API or native controls."; |
CJ DiMeglio | 7b4a199f | 2017-11-30 01:26:50 | [diff] [blame] | 1019 | const char kUseSurfaceLayerForVideoName[] = |
| 1020 | "Enable the use of SurfaceLayer objects for videos."; |
| 1021 | const char kUseSurfaceLayerForVideoDescription[] = |
| 1022 | "Enable compositing onto a Surface instead of a VideoLayer " |
| 1023 | "for videos."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1024 | |
| 1025 | const char kNewUsbBackendName[] = "Enable new USB backend"; |
| 1026 | const char kNewUsbBackendDescription[] = |
| 1027 | "Enables the new experimental USB backend for Windows."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1028 | |
Sonny Sasaka | 2d20043 | 2018-03-22 17:43:16 | [diff] [blame] | 1029 | const char kNewblueName[] = "Newblue"; |
| 1030 | const char kNewblueDescription[] = |
| 1031 | "Enables the use of newblue Bluetooth daemon."; |
| 1032 | |
brettw | 5f9c164 | 2017-05-14 17:12:48 | [diff] [blame] | 1033 | const char kNostatePrefetchName[] = "No-State Prefetch"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1034 | const char kNostatePrefetchDescription[] = |
| 1035 | R"*("No-State Prefetch" pre-downloads resources to improve load )*" |
| 1036 | R"*(times. "Prerender" does a full pre-rendering of the page, to )*" |
| 1037 | R"*(improve load times even more. "Simple Load" does nothing and is )*" |
| 1038 | R"*(similar to disabling the feature, but collects more metrics for )*" |
| 1039 | R"*(comparison purposes.)*"; |
| 1040 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1041 | const char kNotificationsNativeFlagName[] = "Enable native notifications."; |
| 1042 | const char kNotificationsNativeFlagDescription[] = |
| 1043 | "Enable support for using the native notification toasts and notification " |
| 1044 | "center on platforms where these are available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1045 | |
Zentaro Kavanagh | bad511c | 2017-10-18 22:29:00 | [diff] [blame] | 1046 | #if defined(OS_POSIX) |
| 1047 | const char kNtlmV2EnabledName[] = "Enable NTLMv2 Authentication"; |
| 1048 | const char kNtlmV2EnabledDescription[] = |
| 1049 | "Enable NTLMv2 HTTP Authentication. This disables NTLMv1 support."; |
| 1050 | #endif |
| 1051 | |
Ramya Nagarajan | e9f16b8 | 2018-05-03 01:05:34 | [diff] [blame] | 1052 | const char kNtpBackgroundsName[] = "New Tab Page Background Selection"; |
| 1053 | const char kNtpBackgroundsDescription[] = |
| 1054 | "Allow selection of a custom background image on the New Tab Page."; |
| 1055 | |
| 1056 | const char kNtpIconsName[] = "New Tab Page Custom Link Icons"; |
| 1057 | const char kNtpIconsDescription[] = |
| 1058 | "Show custom link icons on the New Tab Page, instead of Most Visited " |
| 1059 | "tiles."; |
| 1060 | |
| 1061 | const char kNtpUIMdName[] = "New Tab Page Material Design UI"; |
| 1062 | const char kNtpUIMdDescription[] = |
| 1063 | "Updates the New Tab Page with Material Design elements."; |
| 1064 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1065 | const char kNumRasterThreadsName[] = "Number of raster threads"; |
| 1066 | const char kNumRasterThreadsDescription[] = |
| 1067 | "Specify the number of raster threads."; |
| 1068 | const char kNumRasterThreadsOne[] = "1"; |
| 1069 | const char kNumRasterThreadsTwo[] = "2"; |
| 1070 | const char kNumRasterThreadsThree[] = "3"; |
| 1071 | const char kNumRasterThreadsFour[] = "4"; |
| 1072 | |
| 1073 | const char kOfferStoreUnmaskedWalletCardsName[] = |
| 1074 | "Google Payments card saving checkbox"; |
| 1075 | const char kOfferStoreUnmaskedWalletCardsDescription[] = |
| 1076 | "Show the checkbox to offer local saving of a credit card downloaded from " |
| 1077 | "the server."; |
| 1078 | |
| 1079 | const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode"; |
| 1080 | const char kOfflineAutoReloadDescription[] = |
| 1081 | "Pages that fail to load while the browser is offline will be " |
| 1082 | "auto-reloaded when the browser is online again."; |
| 1083 | |
| 1084 | const char kOfflineAutoReloadVisibleOnlyName[] = |
| 1085 | "Only Auto-Reload Visible Tabs"; |
| 1086 | const char kOfflineAutoReloadVisibleOnlyDescription[] = |
| 1087 | "Pages that fail to load while the browser is offline will only be " |
| 1088 | "auto-reloaded if their tab is visible."; |
| 1089 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1090 | const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 1091 | "Include title for the current URL in the omnibox"; |
| 1092 | const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 1093 | "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 1094 | "the current page is provided as the first suggestion without a title. " |
| 1095 | "Enabling this flag causes the title to be displayed."; |
| 1096 | |
Benoit Lize | ab08362c | 2017-07-19 14:50:54 | [diff] [blame] | 1097 | const char kOmniboxSpareRendererName[] = |
| 1098 | "Start spare renderer on omnibox focus"; |
| 1099 | const char kOmniboxSpareRendererDescription[] = |
| 1100 | "When the omnibox is focused, start an empty spare renderer. This can " |
| 1101 | "speed up the load of the navigation from the omnibox."; |
| 1102 | |
Tommy C. Li | 8875a44 | 2017-08-23 00:10:59 | [diff] [blame] | 1103 | const char kOmniboxUIElideSuggestionUrlAfterHostName[] = |
| 1104 | "Omnibox UI Elide Suggestion URL After Host"; |
| 1105 | const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] = |
| 1106 | "Elides the path, query, and ref of suggested URLs in the Omnibox " |
| 1107 | "dropdown."; |
| 1108 | |
Tommy C. Li | d79d440 | 2017-12-22 22:49:12 | [diff] [blame] | 1109 | const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsName[] = |
| 1110 | "Omnibox UI Hide Steady-State URL Scheme and Trivial Subdomains"; |
| 1111 | const char kOmniboxUIHideSteadyStateUrlSchemeAndSubdomainsDescription[] = |
| 1112 | "In the Omnibox, hide the scheme and trivial subdomains from steady state " |
| 1113 | "displayed URLs. Hidden portions are restored during editing."; |
| 1114 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1115 | const char kOmniboxUIMaxAutocompleteMatchesName[] = |
| 1116 | "Omnibox UI Max Autocomplete Matches"; |
| 1117 | |
| 1118 | const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
| 1119 | "Changes the maximum number of autocomplete matches displayed in the " |
| 1120 | "Omnibox UI."; |
| 1121 | |
Justin Donnelly | 65c9e8b | 2017-10-01 05:15:01 | [diff] [blame] | 1122 | const char kOmniboxUIShowSuggestionFaviconsName[] = |
| 1123 | "Omnibox UI Show Suggestion Favicons"; |
| 1124 | const char kOmniboxUIShowSuggestionFaviconsDescription[] = |
| 1125 | "Shows favicons instead of generic vector icons for URL suggestions in the " |
| 1126 | "Omnibox dropdown."; |
| 1127 | |
| 1128 | const char kOmniboxUISwapTitleAndUrlName[] = "Omnibox UI Swap Title and URL"; |
| 1129 | const char kOmniboxUISwapTitleAndUrlDescription[] = |
| 1130 | "In the omnibox dropdown, shows titles before URLs when both are " |
| 1131 | "available."; |
| 1132 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1133 | const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
| 1134 | const char kOmniboxUIVerticalMarginDescription[] = |
| 1135 | "Changes the vertical margin in the Omnibox UI."; |
| 1136 | |
Troy Hildebrandt | b32637ca | 2018-02-21 23:25:09 | [diff] [blame] | 1137 | const char kOmniboxVoiceSearchAlwaysVisibleName[] = |
| 1138 | "Omnibox Voice Search Always Visible"; |
| 1139 | const char kOmniboxVoiceSearchAlwaysVisibleDescription[] = |
| 1140 | "Always displays voice search icon in focused omnibox as long as voice " |
| 1141 | "search is possible"; |
| 1142 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1143 | const char kOriginTrialsName[] = "Origin Trials"; |
| 1144 | const char kOriginTrialsDescription[] = |
| 1145 | "Enables origin trials for controlling access to feature/API experiments."; |
| 1146 | |
Becca Hughes | 930d8cd | 2017-10-02 11:09:12 | [diff] [blame] | 1147 | const char kOverflowIconsForMediaControlsName[] = |
| 1148 | "Icons on Media Controls Overflow Menu"; |
| 1149 | const char kOverflowIconsForMediaControlsDescription[] = |
| 1150 | "Displays icons on the overflow menu of the native media controls"; |
| 1151 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1152 | const char kOverlayScrollbarsName[] = "Overlay Scrollbars"; |
| 1153 | const char kOverlayScrollbarsDescription[] = |
| 1154 | "Enable the experimental overlay scrollbars implementation. You must also " |
| 1155 | "enable threaded compositing to have the scrollbars animate."; |
| 1156 | |
chaopeng | e8aa016b | 2017-08-24 15:20:19 | [diff] [blame] | 1157 | const char kOverlayScrollbarsFlashAfterAnyScrollUpdateName[] = |
| 1158 | "Flash Overlay Scrollbars After Any Scroll Update"; |
| 1159 | const char kOverlayScrollbarsFlashAfterAnyScrollUpdateDescription[] = |
| 1160 | "Flash Overlay Scrollbars After any scroll update happends in page. You" |
| 1161 | " must also enable Overlay Scrollbars."; |
| 1162 | |
chaopeng | 34367802 | 2017-08-24 18:45:00 | [diff] [blame] | 1163 | const char kOverlayScrollbarsFlashWhenMouseEnterName[] = |
| 1164 | "Flash Overlay Scrollbars When Mouse Enter"; |
| 1165 | const char kOverlayScrollbarsFlashWhenMouseEnterDescription[] = |
| 1166 | "Flash Overlay Scrollbars When Mouse Enter a scrollable area. You must also" |
| 1167 | " enable Overlay Scrollbars."; |
| 1168 | |
Claudio Magni | 81326f9 | 2017-09-01 05:21:18 | [diff] [blame] | 1169 | const char kUseNewAcceptLanguageHeaderName[] = "Use new Accept-Language header"; |
| 1170 | const char kUseNewAcceptLanguageHeaderDescription[] = |
| 1171 | "Adds the base language code after other corresponding language+region " |
| 1172 | "codes. This ensures that users receive content in their preferred " |
| 1173 | "language."; |
| 1174 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1175 | const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation"; |
| 1176 | const char kOverscrollHistoryNavigationDescription[] = |
Mohsen Izadi | 88b392a | 2018-02-15 06:57:48 | [diff] [blame] | 1177 | "History navigation in response to horizontal overscroll."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1178 | const char kOverscrollHistoryNavigationSimpleUi[] = "Simple"; |
Mohsen Izadi | 88b392a | 2018-02-15 06:57:48 | [diff] [blame] | 1179 | const char kOverscrollHistoryNavigationParallaxUi[] = "Parallax"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1180 | |
| 1181 | const char kOverscrollStartThresholdName[] = "Overscroll start threshold"; |
| 1182 | const char kOverscrollStartThresholdDescription[] = |
| 1183 | "Changes overscroll start threshold relative to the default value."; |
| 1184 | const char kOverscrollStartThreshold133Percent[] = "133%"; |
| 1185 | const char kOverscrollStartThreshold166Percent[] = "166%"; |
| 1186 | const char kOverscrollStartThreshold200Percent[] = "200%"; |
| 1187 | |
chaopeng | e2b6e5f | 2018-05-08 16:40:45 | [diff] [blame] | 1188 | const char kTouchpadOverscrollHistoryNavigationName[] = |
| 1189 | "Overscroll history navigation on Touchpad"; |
| 1190 | const char kTouchpadOverscrollHistoryNavigationDescription[] = |
| 1191 | "Allows swipe left/right from touchpad change browser navigation."; |
| 1192 | |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 1193 | const char kParallelDownloadingName[] = "Parallel downloading"; |
| 1194 | const char kParallelDownloadingDescription[] = |
Yannic Bonenberger | a32f990 | 2017-11-20 18:47:06 | [diff] [blame] | 1195 | "Enable parallel downloading to accelerate download speed."; |
Xing Liu | 5400a00 | 2017-09-15 21:48:29 | [diff] [blame] | 1196 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1197 | const char kPassiveEventListenerDefaultName[] = |
| 1198 | "Passive Event Listener Override"; |
| 1199 | const char kPassiveEventListenerDefaultDescription[] = |
| 1200 | "Forces touchstart, touchmove, mousewheel and wheel event listeners (which " |
| 1201 | "haven't requested otherwise) to be treated as passive. This will break " |
| 1202 | "touch/wheel behavior on some websites but is useful for demonstrating the " |
| 1203 | "potential performance benefits of adopting passive event listeners."; |
| 1204 | const char kPassiveEventListenerTrue[] = "True (when unspecified)"; |
| 1205 | const char kPassiveEventListenerForceAllTrue[] = "Force All True"; |
| 1206 | |
| 1207 | const char kPassiveEventListenersDueToFlingName[] = |
| 1208 | "Touch Event Listeners Passive Default During Fling"; |
| 1209 | const char kPassiveEventListenersDueToFlingDescription[] = |
| 1210 | "Forces touchstart, and first touchmove per scroll event listeners during " |
| 1211 | "fling to be treated as passive."; |
| 1212 | |
| 1213 | const char kPassiveDocumentEventListenersName[] = |
| 1214 | "Document Level Event Listeners Passive Default"; |
| 1215 | const char kPassiveDocumentEventListenersDescription[] = |
| 1216 | "Forces touchstart, and touchmove event listeners on document level " |
| 1217 | "targets (which haven't requested otherwise) to be treated as passive."; |
| 1218 | |
| 1219 | const char kPasswordForceSavingName[] = "Force-saving of passwords"; |
| 1220 | const char kPasswordForceSavingDescription[] = |
| 1221 | "Allow the user to manually enforce password saving instead of relying on " |
| 1222 | "password manager's heuristics."; |
| 1223 | |
| 1224 | const char kPasswordGenerationName[] = "Password generation"; |
| 1225 | const char kPasswordGenerationDescription[] = |
| 1226 | "Allow the user to have Chrome generate passwords when it detects account " |
| 1227 | "creation pages."; |
| 1228 | |
Vaclav Brozek | d8a3f54 | 2017-11-16 14:21:13 | [diff] [blame] | 1229 | const char kPasswordExportName[] = "Password export"; |
| 1230 | const char kPasswordExportDescription[] = |
| 1231 | "Export functionality in password settings."; |
| 1232 | |
| 1233 | const char kPasswordImportName[] = "Password import"; |
| 1234 | const char kPasswordImportDescription[] = |
| 1235 | "Import functionality in password settings."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1236 | |
Friedrich Horschig | 03c9198 | 2018-01-25 14:21:28 | [diff] [blame] | 1237 | const char kPasswordSearchMobileName[] = "Password search"; |
| 1238 | const char kPasswordSearchMobileDescription[] = |
| 1239 | "Search functionality in password settings."; |
| 1240 | |
Friedrich Horschig | e6c2774 | 2018-04-23 17:13:41 | [diff] [blame] | 1241 | const char kPasswordsKeyboardAccessoryName[] = |
| 1242 | "Add password-related functions to keyboard accessory"; |
| 1243 | const char kPasswordsKeyboardAccessoryDescription[] = |
| 1244 | "Adds password generation button and toggle for the passwords bottom sheet " |
| 1245 | "to the keyboard accessory. Replaces password generation popups."; |
| 1246 | |
Tom Sepez | 92a2cd24 | 2018-03-13 19:23:09 | [diff] [blame] | 1247 | const char kPdfIsolationName[] = "PDF Isolation"; |
| 1248 | const char kPdfIsolationDescription[] = |
| 1249 | "Render PDF files from different origins in different plugin processes."; |
| 1250 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1251 | const char kPinchScaleName[] = "Pinch scale"; |
| 1252 | const char kPinchScaleDescription[] = |
| 1253 | "Enables experimental support for scale using pinch."; |
| 1254 | |
Doug Arnett | 620ff54 | 2018-02-06 17:54:22 | [diff] [blame] | 1255 | const char kPreviewsAllowedName[] = "Previews Allowed"; |
| 1256 | const char kPreviewsAllowedDescription[] = |
| 1257 | "Allows previews to be shown subject to specific preview types being " |
| 1258 | "enabled and the client experiencing specific triggering conditions. " |
| 1259 | "May be used as a kill-switch to turn off all potential preview types."; |
| 1260 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1261 | const char kPrintPdfAsImageName[] = "Print Pdf as Image"; |
| 1262 | const char kPrintPdfAsImageDescription[] = |
| 1263 | "If enabled, an option to print PDF files as images will be available in " |
| 1264 | "print preview."; |
| 1265 | |
| 1266 | const char kPrintPreviewRegisterPromosName[] = |
| 1267 | "Print Preview Registration Promos"; |
| 1268 | const char kPrintPreviewRegisterPromosDescription[] = |
| 1269 | "Enable registering unregistered cloud printers from print preview."; |
| 1270 | |
| 1271 | const char kProtectSyncCredentialName[] = "Autofill sync credential"; |
| 1272 | const char kProtectSyncCredentialDescription[] = |
| 1273 | "How the password manager handles autofill for the sync credential."; |
| 1274 | |
| 1275 | const char kProtectSyncCredentialOnReauthName[] = |
| 1276 | "Autofill sync credential only for transactional reauth pages"; |
| 1277 | const char kProtectSyncCredentialOnReauthDescription[] = |
| 1278 | "How the password manager handles autofill for the sync credential only " |
| 1279 | "for transactional reauth pages."; |
| 1280 | |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 1281 | const char kPullToRefreshName[] = "Pull-to-refresh gesture"; |
| 1282 | const char kPullToRefreshDescription[] = |
| 1283 | "Pull-to-refresh gesture in response to vertical overscroll."; |
Mohsen Izadi | 8c59ba5 | 2018-04-12 18:52:01 | [diff] [blame] | 1284 | const char kPullToRefreshEnabledTouchscreen[] = "Enabled for touchscreen only"; |
Mohsen Izadi | 93faac1 | 2017-07-29 04:45:15 | [diff] [blame] | 1285 | |
Troy Hildebrandt | 7228ad1 | 2018-02-23 21:18:24 | [diff] [blame] | 1286 | const char kQueryInOmniboxName[] = "Query in Omnibox"; |
| 1287 | const char kQueryInOmniboxDescription[] = |
| 1288 | "Only display query terms in the omnibox when viewing a search results " |
| 1289 | "page."; |
| 1290 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1291 | const char kQuicName[] = "Experimental QUIC protocol"; |
| 1292 | const char kQuicDescription[] = "Enable experimental QUIC protocol support."; |
| 1293 | |
Emily Stark | e8878d5 | 2018-05-11 21:27:26 | [diff] [blame] | 1294 | const char kRecurrentInterstitialName[] = |
| 1295 | "Show a message when the same SSL error recurs"; |
| 1296 | const char kRecurrentInterstitialDescription[] = |
| 1297 | "Enable a special message on the SSL certificate error page when the same " |
| 1298 | "SSL error occurs repeatedly."; |
| 1299 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1300 | const char kReducedReferrerGranularityName[] = |
| 1301 | "Reduce default 'referer' header granularity."; |
| 1302 | const char kReducedReferrerGranularityDescription[] = |
| 1303 | "If a page hasn't set an explicit referrer policy, setting this flag will " |
| 1304 | "reduce the amount of information in the 'referer' header for cross-origin " |
| 1305 | "requests."; |
| 1306 | |
Claudio Magni | e0a80bb | 2018-01-31 02:52:58 | [diff] [blame] | 1307 | extern const char kRegionalLocalesAsDisplayUIName[] = |
| 1308 | "Allow regional locales as display UI"; |
| 1309 | extern const char kRegionalLocalesAsDisplayUIDescription[] = |
| 1310 | "This flag allows regional locales to be selected as display UI by the " |
| 1311 | "user in Language Settings. The actual locale of the system is derived " |
| 1312 | "from the user selection based on some simple fallback logic."; |
| 1313 | |
Christian Dullweber | 1af31e6 | 2018-02-22 11:49:48 | [diff] [blame] | 1314 | const char kRemoveNavigationHistoryName[] = |
Christian Dullweber | b13ffda | 2018-02-23 11:42:14 | [diff] [blame] | 1315 | "Remove navigation entry on history deletion"; |
Christian Dullweber | 1af31e6 | 2018-02-22 11:49:48 | [diff] [blame] | 1316 | const char kRemoveNavigationHistoryDescription[] = |
| 1317 | "Remove a navigation entry when the corresponding history entry has been " |
| 1318 | "deleted."; |
| 1319 | |
Mihai Sardarescu | 6d0f5b7 | 2017-10-30 11:24:38 | [diff] [blame] | 1320 | const char kRemoveUsageOfDeprecatedGaiaSigninEndpointName[] = |
| 1321 | "Remove usage of the deprecated GAIA sign-in endpoint"; |
| 1322 | const char kRemoveUsageOfDeprecatedGaiaSigninEndpointDescription[] = |
| 1323 | "The Gaia sign-in endpoint used for full-tab sign-in page is deprecated. " |
| 1324 | "This flags controls wheter it should no longer be used during a sign-in " |
| 1325 | " flow."; |
| 1326 | |
Yutaka Hirano | 4c0f2f5d45 | 2017-11-17 04:24:35 | [diff] [blame] | 1327 | const char kRendererSideResourceSchedulerName[] = |
| 1328 | "Renderer side ResourceScheduler"; |
| 1329 | const char kRendererSideResourceSchedulerDescription[] = |
| 1330 | "Migrate some ResourceScheduler functionalities to renderer"; |
| 1331 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1332 | const char kRequestTabletSiteName[] = |
| 1333 | "Request tablet site option in the settings menu"; |
| 1334 | const char kRequestTabletSiteDescription[] = |
| 1335 | "Allows the user to request tablet site. Web content is often optimized " |
| 1336 | "for tablet devices. When this option is selected the user agent string is " |
| 1337 | "changed to indicate a tablet device. Web content optimized for tablets is " |
| 1338 | "received there after for the current tab."; |
| 1339 | |
| 1340 | const char kResetAppListInstallStateName[] = |
| 1341 | "Reset the App Launcher install state on every restart."; |
| 1342 | const char kResetAppListInstallStateDescription[] = |
| 1343 | "Reset the App Launcher install state on every restart. While this flag is " |
| 1344 | "set, Chrome will forget the launcher has been installed each time it " |
| 1345 | "starts. This is used for testing the App Launcher install flow."; |
| 1346 | |
| 1347 | const char kResourceLoadSchedulerName[] = "Use the resource load scheduler"; |
| 1348 | const char kResourceLoadSchedulerDescription[] = |
| 1349 | "Uses the resource load scheduler in blink to schedule and throttle " |
| 1350 | "resource load requests."; |
| 1351 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1352 | const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting."; |
| 1353 | const char kSafeSearchUrlReportingDescription[] = |
| 1354 | "If enabled, inappropriate URLs can be reported back to SafeSearch."; |
| 1355 | |
Alexei Filippov | 9877275 | 2018-01-27 08:26:52 | [diff] [blame] | 1356 | const char kSamplingHeapProfilerName[] = "Native memory sampling profiler."; |
| 1357 | const char kSamplingHeapProfilerDescription[] = |
| 1358 | "Enables native memory sampling profiler with specified rate in KiB. " |
| 1359 | "If sampling rate is not provided the default value of 128 KiB is used."; |
| 1360 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1361 | const char kSaveasMenuLabelExperimentName[] = |
| 1362 | "Switch 'Save as' menu labels to 'Download'"; |
| 1363 | const char kSaveasMenuLabelExperimentDescription[] = |
| 1364 | "Enables an experiment to switch menu labels that use 'Save as...' to " |
| 1365 | "'Download'."; |
| 1366 | |
| 1367 | const char kSavePageAsMhtmlName[] = "Save Page as MHTML"; |
| 1368 | const char kSavePageAsMhtmlDescription[] = |
| 1369 | "Enables saving pages as MHTML: a single text file containing HTML and all " |
| 1370 | "sub-resources."; |
| 1371 | |
Nate Chapin | 9638e710 | 2017-09-20 22:11:01 | [diff] [blame] | 1372 | const char kSavePreviousDocumentResourcesName[] = |
| 1373 | "Save Previous Document Resources"; |
| 1374 | const char kSavePreviousDocumentResourcesDescription[] = |
| 1375 | "Saves an old document's cached resources until the specified point in the " |
| 1376 | "next document's lifecycle."; |
| 1377 | const char kSavePreviousDocumentResourcesNever[] = |
| 1378 | "Don't explicitly save resources"; |
| 1379 | const char kSavePreviousDocumentResourcesUntilOnDOMContentLoaded[] = |
| 1380 | "Save resources until onDOMContentLoaded completes"; |
| 1381 | const char kSavePreviousDocumentResourcesUntilOnLoad[] = |
| 1382 | "Save resources until onload completes"; |
| 1383 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1384 | const char kScrollPredictionName[] = "Scroll prediction"; |
| 1385 | const char kScrollPredictionDescription[] = |
| 1386 | "Predicts the finger's future position during scrolls allowing time to " |
| 1387 | "render the frame before the finger is there."; |
| 1388 | |
| 1389 | const char kSecondaryUiMd[] = |
| 1390 | "Material Design in the rest of the browser's native UI"; |
| 1391 | const char kSecondaryUiMdDescription[] = |
| 1392 | "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " |
| 1393 | "etc.). On Mac, this enables MacViews, which uses toolkit-views for native " |
| 1394 | "browser dialogs."; |
| 1395 | |
| 1396 | const char kServiceWorkerNavigationPreloadName[] = |
| 1397 | "Service worker navigation preload."; |
| 1398 | const char kServiceWorkerNavigationPreloadDescription[] = |
| 1399 | "Enable web pages to use the experimental service worker navigation " |
| 1400 | "preload API."; |
| 1401 | |
gogerald | d5061b59 | 2017-09-06 23:39:55 | [diff] [blame] | 1402 | const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps"; |
| 1403 | const char kServiceWorkerPaymentAppsDescription[] = |
| 1404 | "Enable Service Worker applications to integrate as payment apps"; |
| 1405 | |
Makoto Shimazu | 22078cc | 2018-02-21 03:01:44 | [diff] [blame] | 1406 | extern const char kServiceWorkerServicificationName[] = |
| 1407 | "Servicified service workers"; |
| 1408 | extern const char kServiceWorkerServicificationDescription[] = |
| 1409 | "Enable the servicified service workers. A servicified service worker can " |
| 1410 | "have direct connection from its clients, so that fetch events can be " |
| 1411 | "dispatched through the connection without hopping to the browser process."; |
Makoto Shimazu | d9f333c | 2017-08-08 07:23:17 | [diff] [blame] | 1412 | |
Tsuyoshi Horo | bcb1c64 | 2017-11-24 16:32:14 | [diff] [blame] | 1413 | const char kServiceWorkerScriptFullCodeCacheName[] = |
| 1414 | "Service worker script full code cache."; |
| 1415 | const char kServiceWorkerScriptFullCodeCacheDescription[] = |
| 1416 | "Generate V8 full code cache of Service Worker scripts while installing."; |
| 1417 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1418 | const char kSettingsWindowName[] = "Show settings in a window"; |
| 1419 | const char kSettingsWindowDescription[] = |
| 1420 | "Settings will be shown in a dedicated window instead of as a browser tab."; |
| 1421 | |
Manu Cornet | d7ef7c5 | 2018-05-01 22:08:23 | [diff] [blame] | 1422 | const char kShelfHoverPreviewsName[] = |
| 1423 | "Show previews of running apps when hovering over the shelf."; |
| 1424 | const char kShelfHoverPreviewsDescription[] = |
| 1425 | "Shows previews of the open windows for a given running app when hovering " |
| 1426 | "over the shelf."; |
| 1427 | |
Trent Apted | 750ba702 | 2017-10-23 13:36:25 | [diff] [blame] | 1428 | const char kShowAllDialogsWithViewsToolkitName[] = |
| 1429 | "Show all dialogs with Views toolkit"; |
| 1430 | const char kShowAllDialogsWithViewsToolkitDescription[] = |
| 1431 | "All browser dialogs will be shown using the Views toolkit rather than " |
| 1432 | "Cocoa. This requires <a href=\"#secondary-ui-md\">#secondary-ui-md</a>."; |
| 1433 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1434 | const char kShowAutofillSignaturesName[] = "Show autofill signatures."; |
| 1435 | const char kShowAutofillSignaturesDescription[] = |
Maxim Kolosovskiy | e66f8cb | 2018-03-23 10:25:38 | [diff] [blame] | 1436 | "Annotates web forms with Autofill signatures as HTML attributes. Also " |
| 1437 | "marks password fields suitable for password generation."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1438 | |
| 1439 | const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions"; |
| 1440 | const char kShowAutofillTypePredictionsDescription[] = |
| 1441 | "Annotates web forms with Autofill field type predictions as placeholder " |
| 1442 | "text."; |
| 1443 | |
| 1444 | const char kShowOverdrawFeedbackName[] = "Show overdraw feedback"; |
| 1445 | const char kShowOverdrawFeedbackDescription[] = |
| 1446 | "Visualize overdraw by color-coding elements based on if they have other " |
| 1447 | "elements drawn underneath."; |
| 1448 | |
Carlos IL | 8912873 | 2018-04-03 17:00:25 | [diff] [blame] | 1449 | const char kSupervisedUserCommittedInterstitialsName[] = |
| 1450 | "Enable Supervised User Committed Interstitials"; |
| 1451 | const char kSupervisedUserCommittedInterstitialsDescription[] = |
| 1452 | "Use committed error pages instead of transient navigation entries for " |
| 1453 | "supervised user interstitials"; |
| 1454 | |
yiyix | bdfa9a0b | 2017-10-23 22:21:47 | [diff] [blame] | 1455 | const char kEnableDrawOcclusionName[] = "Enable draw occlusion"; |
| 1456 | const char kEnableDrawOcclusionDescription[] = |
| 1457 | "Enable the system to use draw occlusion to skip draw quads when they are " |
| 1458 | "not shown on the screen."; |
| 1459 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1460 | const char kShowSavedCopyName[] = "Show Saved Copy Button"; |
| 1461 | const char kShowSavedCopyDescription[] = |
| 1462 | "When a page fails to load, if a stale copy of the page exists in the " |
| 1463 | "browser cache, a button will be presented to allow the user to load that " |
| 1464 | "stale copy. The primary enabling choice puts the button in the most " |
| 1465 | "salient position on the error page; the secondary enabling choice puts it " |
| 1466 | "secondary to the reload button."; |
| 1467 | const char kEnableShowSavedCopyPrimary[] = "Enable: Primary"; |
| 1468 | const char kEnableShowSavedCopySecondary[] = "Enable: Secondary"; |
| 1469 | const char kDisableShowSavedCopy[] = "Disable"; |
| 1470 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1471 | const char kSilentDebuggerExtensionApiName[] = "Silent Debugging"; |
| 1472 | const char kSilentDebuggerExtensionApiDescription[] = |
| 1473 | "Do not show the infobar when an extension attaches to a page via " |
| 1474 | "chrome.debugger API. This is required to debug extension background " |
| 1475 | "pages."; |
| 1476 | |
Tsuyoshi Horo | 53895ba9 | 2018-03-14 04:06:48 | [diff] [blame] | 1477 | const char kSignedHTTPExchangeName[] = "Signed HTTP Exchange"; |
| 1478 | const char kSignedHTTPExchangeDescription[] = |
| 1479 | "Enables Origin-Signed HTTP Exchanges support which is still in " |
| 1480 | "development. Warning: Enabling this may pose a security risk."; |
| 1481 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1482 | const char kSimpleCacheBackendName[] = "Simple Cache for HTTP"; |
| 1483 | const char kSimpleCacheBackendDescription[] = |
| 1484 | "The Simple Cache for HTTP is a new cache. It relies on the filesystem for " |
| 1485 | "disk space allocation."; |
| 1486 | |
Christopher Thompson | 75ff845d | 2018-02-01 20:12:46 | [diff] [blame] | 1487 | const char kSimplifyHttpsIndicatorName[] = "Simplify HTTPS indicator UI"; |
| 1488 | const char kSimplifyHttpsIndicatorDescription[] = |
| 1489 | "Change the UI treatment for HTTPS pages."; |
| 1490 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1491 | const char kSingleClickAutofillName[] = "Single-click autofill"; |
| 1492 | const char kSingleClickAutofillDescription[] = |
| 1493 | "Make autofill suggestions on initial mouse click on a form element."; |
| 1494 | |
Nick Carter | 855bc49 | 2018-03-10 00:44:57 | [diff] [blame] | 1495 | const char kStrictSiteIsolationName[] = "Strict site isolation"; |
| 1496 | const char kStrictSiteIsolationDescription[] = |
| 1497 | "Security mode that enables site isolation for all sites. When enabled, " |
| 1498 | "each renderer process will contain pages from at most one site, using " |
| 1499 | "out-of-process iframes when needed. When enabled, this flag forces the " |
| 1500 | "strictest site isolation mode (SitePerProcess). When disabled, the site " |
| 1501 | "isolation mode will be determined by enterprise policy or field trial."; |
| 1502 | |
| 1503 | const char kSiteIsolationTrialOptOutName[] = "Site isolation trial opt-out"; |
| 1504 | const char kSiteIsolationTrialOptOutDescription[] = |
| 1505 | "Opts out of field trials that enable site isolation modes " |
| 1506 | "(SitePerProcess, IsolateOrigins, etc). Intended for diagnosing bugs that " |
| 1507 | "may be due to out-of-process iframes. Opt-out has no effect if site " |
| 1508 | "isolation is force-enabled via #enable-site-per-process or enterprise " |
| 1509 | "policy. Caution: this disables important mitigations for the Spectre CPU " |
| 1510 | "vulnerability affecting most computers."; |
| 1511 | extern const char kSiteIsolationTrialOptOutChoiceDefault[] = "Default"; |
| 1512 | extern const char kSiteIsolationTrialOptOutChoiceOptOut[] = |
| 1513 | "Opt-out (not recommended)"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1514 | |
Patti | deade797 | 2018-04-27 02:59:40 | [diff] [blame] | 1515 | const char kSiteSettings[] = "Site settings"; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1516 | const char kSiteSettingsDescription[] = |
Patti | deade797 | 2018-04-27 02:59:40 | [diff] [blame] | 1517 | "Add the All Sites list to Site Settings."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1518 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1519 | const char kSmoothScrollingName[] = "Smooth Scrolling"; |
| 1520 | const char kSmoothScrollingDescription[] = |
| 1521 | "Animate smoothly when scrolling page content."; |
| 1522 | |
| 1523 | const char kSoftwareRasterizerName[] = "3D software rasterizer"; |
| 1524 | const char kSoftwareRasterizerDescription[] = |
| 1525 | "Fall back to a 3D software rasterizer when the GPU cannot be used."; |
| 1526 | |
Wei-Yin Chen (陳威尹) | deff080 | 2018-01-19 06:29:20 | [diff] [blame] | 1527 | const char kSoleIntegrationName[] = "Sole integration"; |
| 1528 | const char kSoleIntegrationDescription[] = |
| 1529 | "Enable Sole integration for browser customization. You must restart " |
| 1530 | "the browser twice for changes to take effect."; |
| 1531 | |
Tommy Steimel | 77704be | 2017-08-28 22:14:40 | [diff] [blame] | 1532 | const char kSoundContentSettingName[] = "Sound content setting"; |
| 1533 | const char kSoundContentSettingDescription[] = |
| 1534 | "Enable site-wide muting in content settings and tab strip context menu."; |
| 1535 | |
Alexandr Ilin | f0500ed3 | 2017-09-27 21:12:36 | [diff] [blame] | 1536 | const char kSpeculativePreconnectName[] = "Enable new preconnect predictor"; |
| 1537 | const char kSpeculativePreconnectDescription[] = |
| 1538 | "Enable the new implementation of preconnect and DNS preresolve. " |
| 1539 | "\"Learning\" means that only database construction is enabled, " |
| 1540 | "\"Preconnect\" enables both learning and preconnect and disables the " |
| 1541 | "existing implementation. \"No preconnect\" disables both implementations."; |
| 1542 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1543 | const char kSpeculativePrefetchName[] = "Speculative Prefetch"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1544 | const char kSpeculativePrefetchDescription[] = |
| 1545 | R"*("Speculative Prefetch" fetches likely resources early to improve )*" |
| 1546 | R"*(load times, based on a local database (see chrome://predictors). )*" |
| 1547 | R"*("Learning" means that only the database construction is enabled, )*" |
| 1548 | R"*("Prefetching" that learning and prefetching are enabled.)*"; |
| 1549 | |
Justin Donnelly | 4e448cb | 2017-07-07 21:32:13 | [diff] [blame] | 1550 | const char kSpeculativeServiceWorkerStartOnQueryInputName[] = |
| 1551 | "Enable speculative start of a service worker when a search is predicted."; |
Justin Donnelly | 4e448cb | 2017-07-07 21:32:13 | [diff] [blame] | 1552 | const char kSpeculativeServiceWorkerStartOnQueryInputDescription[] = |
| 1553 | "If enabled, when the user enters text in the omnibox that looks like a " |
| 1554 | "a query, any service worker associated with the search engine the query " |
| 1555 | "will be sent to is started early."; |
| 1556 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1557 | const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial"; |
| 1558 | const char kSpellingFeedbackFieldTrialDescription[] = |
| 1559 | "Enable the field trial for sending user feedback to spelling service."; |
horo | 201d4949 | 2017-05-19 05:31:40 | [diff] [blame] | 1560 | |
Shubhie Panicker | faf082ed | 2018-01-03 04:49:15 | [diff] [blame] | 1561 | const char kStopInBackgroundName[] = "Stop in background"; |
| 1562 | const char kStopInBackgroundDescription[] = |
| 1563 | "Stop scheduler task queues, in the background, " |
Shubhie Panicker | 56c99a2 | 2018-03-21 00:22:28 | [diff] [blame] | 1564 | " after a grace period."; |
Shubhie Panicker | faf082ed | 2018-01-03 04:49:15 | [diff] [blame] | 1565 | |
| 1566 | const char kStopLoadingInBackgroundName[] = "Stop loading in background"; |
| 1567 | const char kStopLoadingInBackgroundDescription[] = |
| 1568 | "Stop loading tasks and loading " |
| 1569 | "resources, in the background, after certain grace time."; |
| 1570 | |
Shubhie Panicker | 56c99a2 | 2018-03-21 00:22:28 | [diff] [blame] | 1571 | const char kStopNonTimersInBackgroundName[] = |
| 1572 | "Stop non-timer task queues background"; |
| 1573 | const char kStopNonTimersInBackgroundDescription[] = |
| 1574 | "Stop non-timer task queues, in the background, " |
| 1575 | "after a grace period."; |
| 1576 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1577 | const char kSuggestionsWithSubStringMatchName[] = |
| 1578 | "Substring matching for Autofill suggestions"; |
| 1579 | const char kSuggestionsWithSubStringMatchDescription[] = |
| 1580 | "Match Autofill suggestions based on substrings (token prefixes) rather " |
| 1581 | "than just prefixes."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1582 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1583 | const char kSyncSandboxName[] = "Use Chrome Sync sandbox"; |
| 1584 | const char kSyncSandboxDescription[] = |
| 1585 | "Connects to the testing server for Chrome Sync."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1586 | |
Joe Downing | 8cbbc19 | 2018-05-14 17:37:07 | [diff] [blame] | 1587 | const char kSystemKeyboardLockName[] = "Experimental system keyboard lock"; |
| 1588 | const char kSystemKeyboardLockDescription[] = |
| 1589 | "Enables websites to use the keyboard.lock() API to intercept system " |
| 1590 | "keyboard shortcuts and have the events routed directly to the website " |
| 1591 | "when in fullscreen mode."; |
| 1592 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1593 | const char kTabAudioMutingName[] = "Tab audio muting UI control"; |
| 1594 | const char kTabAudioMutingDescription[] = |
| 1595 | "When enabled, the audio indicators in the tab strip double as tab audio " |
| 1596 | "mute controls. This also adds commands in the tab context menu for " |
| 1597 | "quickly muting multiple selected tabs."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1598 | |
Christian Dullweber | d0d96f0 | 2017-09-13 09:22:51 | [diff] [blame] | 1599 | const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog."; |
| 1600 | const char kTabsInCbdDescription[] = |
| 1601 | "Enables a basic and an advanced tab for the Clear Browsing Data dialog."; |
| 1602 | |
Becky Zhou | 99c2280 | 2017-10-19 05:09:27 | [diff] [blame] | 1603 | const char kTabModalJsDialogName[] = "Auto-dismissing JavaScript Dialogs"; |
| 1604 | const char kTabModalJsDialogDescription[] = |
| 1605 | "If enabled, the JavaScript dialog will be auto dismissable when switching" |
| 1606 | " tab."; |
| 1607 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1608 | const char kTcpFastOpenName[] = "TCP Fast Open"; |
| 1609 | const char kTcpFastOpenDescription[] = |
| 1610 | "Enable the option to send extra authentication information in the initial " |
| 1611 | "SYN packet for a previously connected client, allowing faster data send " |
| 1612 | "start."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1613 | |
Daniele Castagna | 0fead93e | 2018-01-10 20:40:29 | [diff] [blame] | 1614 | const char kTintGlCompositedContentName[] = "Tint GL-composited content"; |
| 1615 | const char kTintGlCompositedContentDescription[] = |
| 1616 | "Tint contents composited using GL with a shade of red to help debug and " |
| 1617 | "study overlay support."; |
| 1618 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1619 | const char kTopChromeMd[] = "UI Layout for the browser's top chrome"; |
| 1620 | const char kTopChromeMdDescription[] = |
Ahmed Fakhry | b2552be9 | 2018-03-02 00:56:58 | [diff] [blame] | 1621 | "Toggles between 1) Normal - for clamshell devices, 2) Hybrid (previously " |
Peter Boström | 85fa2e1 | 2018-03-16 20:43:40 | [diff] [blame] | 1622 | "touch) - middle point for devices with a touch screen, 3) Touchable " |
Peter Boström | 756745dd | 2018-05-14 22:59:43 | [diff] [blame] | 1623 | "- new unified interface for touch and convertibles (Chrome OS), 4) " |
| 1624 | "Material Design refresh and 5) Touchable Material Design refresh."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1625 | const char kTopChromeMdMaterial[] = "Normal"; |
Eugene Girard | 42dedf72 | 2017-10-12 21:07:53 | [diff] [blame] | 1626 | const char kTopChromeMdMaterialAuto[] = "Auto"; |
Trent Apted | d3e5f02 | 2018-03-01 07:25:46 | [diff] [blame] | 1627 | const char kTopChromeMdMaterialHybrid[] = "Hybrid"; |
Ahmed Fakhry | b2552be9 | 2018-03-02 00:56:58 | [diff] [blame] | 1628 | const char kTopChromeMdMaterialTouchOptimized[] = "Touchable"; |
Peter Boström | 85fa2e1 | 2018-03-16 20:43:40 | [diff] [blame] | 1629 | const char kTopChromeMdMaterialRefresh[] = "Refresh"; |
Peter Boström | 756745dd | 2018-05-14 22:59:43 | [diff] [blame] | 1630 | const char kTopChromeMdMaterialRefreshTouchOptimized[] = "Touchable Refresh"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1631 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1632 | const char kThreadedScrollingName[] = "Threaded scrolling"; |
| 1633 | const char kThreadedScrollingDescription[] = |
| 1634 | "Threaded handling of scroll-related input events. Disabling this will " |
| 1635 | "force all such scroll events to be handled on the main thread. Note that " |
| 1636 | "this can dramatically hurt scrolling performance of most websites and is " |
| 1637 | "intended for testing purposes only."; |
| 1638 | |
Steven Valdez | 4584b248 | 2017-07-14 01:11:57 | [diff] [blame] | 1639 | const char kTLS13VariantName[] = "TLS 1.3"; |
| 1640 | const char kTLS13VariantDescription[] = "Sets the TLS 1.3 variant used."; |
| 1641 | const char kTLS13VariantDisabled[] = "Disabled"; |
Steven Valdez | 57d8865 | 2017-10-05 21:05:11 | [diff] [blame] | 1642 | const char kTLS13VariantDeprecated[] = "Disabled (Deprecated Setting)"; |
Steven Valdez | 781157b | 2018-01-11 13:32:04 | [diff] [blame] | 1643 | const char kTLS13VariantDraft23[] = "Enabled (Draft 23)"; |
Steven Valdez | 4584b248 | 2017-07-14 01:11:57 | [diff] [blame] | 1644 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1645 | const char kTopDocumentIsolationName[] = "Top document isolation"; |
| 1646 | const char kTopDocumentIsolationDescription[] = |
| 1647 | "Highly experimental performance mode where cross-site iframes are kept in " |
| 1648 | "a separate process from the top document. In this mode, iframes from " |
| 1649 | "different third-party sites will be allowed to share a process."; |
| 1650 | |
Dominick Ng | 8896b1cd | 2017-10-17 23:24:36 | [diff] [blame] | 1651 | const char kTopSitesFromSiteEngagementName[] = "Top Sites from Site Engagement"; |
| 1652 | const char kTopSitesFromSiteEngagementDescription[] = |
| 1653 | "Enable Top Sites on the New Tab Page to be sourced and sorted using site " |
| 1654 | "engagement."; |
| 1655 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1656 | const char kTouchAdjustmentName[] = "Touch adjustment"; |
| 1657 | const char kTouchAdjustmentDescription[] = |
| 1658 | "Refine the position of a touch gesture in order to compensate for touches " |
| 1659 | "having poor resolution compared to a mouse."; |
| 1660 | |
Alex Newcomer | b3d3c97 | 2018-05-03 14:59:40 | [diff] [blame] | 1661 | const char kTouchableAppContextMenuName[] = "Touchable App Context Menu"; |
| 1662 | const char kTouchableAppContextMenuDescription[] = |
| 1663 | "Enable the touchable app context menu, which enlarges app context menus " |
| 1664 | "in the Launcher and Shelf to make room for new features."; |
| 1665 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1666 | const char kTouchDragDropName[] = "Touch initiated drag and drop"; |
| 1667 | const char kTouchDragDropDescription[] = |
| 1668 | "Touch drag and drop can be initiated through long press on a draggable " |
| 1669 | "element."; |
| 1670 | |
| 1671 | const char kTouchEventsName[] = "Touch Events API"; |
| 1672 | const char kTouchEventsDescription[] = |
| 1673 | "Force Touch Events API feature detection to always be enabled or " |
| 1674 | "disabled, or to be enabled when a touchscreen is detected on startup " |
Ella Ge | a6a203c9 | 2017-10-26 19:09:29 | [diff] [blame] | 1675 | "(Automatic)."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1676 | |
| 1677 | const char kTouchSelectionStrategyName[] = "Touch text selection strategy"; |
| 1678 | const char kTouchSelectionStrategyDescription[] = |
| 1679 | "Controls how text selection granularity changes when touch text selection " |
| 1680 | "handles are dragged. Non-default behavior is experimental."; |
| 1681 | const char kTouchSelectionStrategyCharacter[] = "Character"; |
| 1682 | const char kTouchSelectionStrategyDirection[] = "Direction"; |
| 1683 | |
| 1684 | const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; |
| 1685 | const char kTraceUploadUrlDescription[] = |
| 1686 | "This is to be used in conjunction with the enable-navigation-tracing " |
| 1687 | "flag. Please select the label that best describes the recorded traces. " |
| 1688 | "This will choose the destination the traces are uploaded to. If you are " |
| 1689 | "not sure, select other. If left empty, no traces will be uploaded."; |
| 1690 | const char kTraceUploadUrlChoiceOther[] = "Other"; |
| 1691 | const char kTraceUploadUrlChoiceEmloading[] = "emloading"; |
| 1692 | const char kTraceUploadUrlChoiceQa[] = "QA"; |
| 1693 | const char kTraceUploadUrlChoiceTesting[] = "Testing"; |
| 1694 | |
Philippe Hamel | 7fdaa45 | 2017-09-29 17:22:49 | [diff] [blame] | 1695 | const char kTranslateRankerEnforcementName[] = |
| 1696 | "Enforce TranslateRanker decisions"; |
| 1697 | const char kTranslateRankerEnforcementDescription[] = |
| 1698 | "Improved Translate UI triggering logic. TranslateRanker decides whether " |
| 1699 | "or not Translate UI should be triggered in a given context."; |
| 1700 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1701 | const char kTrySupportedChannelLayoutsName[] = |
| 1702 | "Causes audio output streams to check if channel layouts other than the " |
| 1703 | "default hardware layout are available."; |
| 1704 | const char kTrySupportedChannelLayoutsDescription[] = |
| 1705 | "Causes audio output streams to check if channel layouts other than the " |
| 1706 | "default hardware layout are available. Turning this on will allow the OS " |
| 1707 | "to do stereo to surround expansion if supported. May expose third party " |
| 1708 | "driver bugs, use with caution."; |
| 1709 | |
David Roger | 6762a09 | 2018-01-31 15:55:07 | [diff] [blame] | 1710 | const char kUnifiedConsentName[] = "Unified Consent"; |
| 1711 | const char kUnifiedConsentDescription[] = |
| 1712 | "Enables a unified management of user consent for privacy-related " |
| 1713 | "features. This includes new confirmation screens and improved settings " |
| 1714 | "pages."; |
| 1715 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1716 | const char kUiPartialSwapName[] = "Partial swap"; |
| 1717 | const char kUiPartialSwapDescription[] = "Sets partial swap behavior."; |
| 1718 | |
Chris Pickel | 3a227ae6 | 2017-08-24 10:47:26 | [diff] [blame] | 1719 | const char kUseDdljsonApiName[] = "Use new ddljson API for Doodles"; |
| 1720 | const char kUseDdljsonApiDescription[] = |
| 1721 | "Enables the new ddljson API to fetch Doodles for the NTP."; |
| 1722 | |
Becca Hughes | 59c05b4 | 2017-11-03 13:11:58 | [diff] [blame] | 1723 | const char kUseModernMediaControlsName[] = "New Media Controls"; |
| 1724 | const char kUseModernMediaControlsDescription[] = |
| 1725 | "Enables the new style native media controls."; |
| 1726 | |
Wei Li | 790e7a857 | 2018-03-23 01:31:55 | [diff] [blame] | 1727 | const char kUsePdfCompositorServiceName[] = |
| 1728 | "Use PDF compositor service for printing"; |
| 1729 | const char kUsePdfCompositorServiceDescription[] = |
| 1730 | "When enabled, use PDF compositor service to composite and generate PDF " |
| 1731 | "files for printing. When site isolation is enabled, disabling this will " |
| 1732 | "not stop using PDF compositor service since the service is required for " |
| 1733 | "printing out-of-process iframes correctly."; |
| 1734 | |
Mustaq Ahmed | c646c0a | 2017-10-20 20:08:30 | [diff] [blame] | 1735 | const char kUserActivationV2Name[] = "User Activation v2"; |
| 1736 | const char kUserActivationV2Description[] = |
| 1737 | "Enable simple user activation for APIs that are otherwise controlled by " |
| 1738 | "user gesture tokens."; |
| 1739 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1740 | const char kUserConsentForExtensionScriptsName[] = |
| 1741 | "User consent for extension scripts"; |
| 1742 | const char kUserConsentForExtensionScriptsDescription[] = |
| 1743 | "Require user consent for an extension running a script on the page, if " |
| 1744 | "the extension requested permission to run on all urls."; |
| 1745 | |
| 1746 | const char kUseSuggestionsEvenIfFewFeatureName[] = |
| 1747 | "Disable minimum for server-side tile suggestions on NTP."; |
| 1748 | const char kUseSuggestionsEvenIfFewFeatureDescription[] = |
| 1749 | "Request server-side suggestions even if there are only very few of them " |
| 1750 | "and use them for tiles on the New Tab Page."; |
| 1751 | |
| 1752 | const char kV8CacheOptionsName[] = "V8 caching mode."; |
| 1753 | const char kV8CacheOptionsDescription[] = |
| 1754 | "Caching mode for the V8 JavaScript engine."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1755 | const char kV8CacheOptionsCode[] = "Cache V8 compiler data."; |
| 1756 | |
Hitoshi Yoshida | 3e5db56 | 2017-09-11 02:31:08 | [diff] [blame] | 1757 | const char kV8ContextSnapshotName[] = "Use a snapshot to create V8 contexts."; |
| 1758 | const char kV8ContextSnapshotDescription[] = |
| 1759 | "Sets to use a snapshot to create V8 contexts in frame creation."; |
| 1760 | |
Michael Hablich | 896d5266 | 2017-10-23 15:59:57 | [diff] [blame] | 1761 | const char kV8VmFutureName[] = "Future V8 VM features"; |
| 1762 | const char kV8VmFutureDescription[] = |
| 1763 | "This enables upcoming and experimental V8 VM features. " |
| 1764 | "This flag does not enable experimental JavaScript features."; |
| 1765 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1766 | const char kVideoFullscreenOrientationLockName[] = |
| 1767 | "Lock screen orientation when playing a video fullscreen."; |
| 1768 | const char kVideoFullscreenOrientationLockDescription[] = |
| 1769 | "Lock the screen orientation of the device to match video orientation when " |
| 1770 | "a video goes fullscreen. Only on phones."; |
| 1771 | |
| 1772 | const char kVideoRotateToFullscreenName[] = |
| 1773 | "Rotate-to-fullscreen gesture for videos."; |
| 1774 | const char kVideoRotateToFullscreenDescription[] = |
| 1775 | "Enter/exit fullscreen when device is rotated to/from the orientation of " |
| 1776 | "the video. Only on phones."; |
| 1777 | |
Elly Fong-Jones | f4c7950 | 2018-03-23 19:21:53 | [diff] [blame] | 1778 | const char kViewsBrowserWindowsName[] = |
| 1779 | "Use Views browser windows instead of Cocoa."; |
| 1780 | const char kViewsBrowserWindowsDescription[] = |
| 1781 | "Use Views browser windows instead of Cocoa, aka MacViews-Browser."; |
| 1782 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1783 | const char kWalletServiceUseSandboxName[] = |
| 1784 | "Use Google Payments sandbox servers"; |
| 1785 | const char kWalletServiceUseSandboxDescription[] = |
| 1786 | "For developers: use the sandbox service for Google Payments API calls."; |
| 1787 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1788 | const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions"; |
| 1789 | const char kWebglDraftExtensionsDescription[] = |
| 1790 | "Enabling this option allows web applications to access the WebGL " |
| 1791 | "Extensions that are still in draft status."; |
| 1792 | |
| 1793 | const char kWebMidiName[] = "Web MIDI API"; |
| 1794 | const char kWebMidiDescription[] = "Enable Web MIDI API experimental support."; |
| 1795 | |
| 1796 | const char kWebPaymentsName[] = "Web Payments"; |
| 1797 | const char kWebPaymentsDescription[] = |
| 1798 | "Enable Web Payments API integration, a JavaScript API for merchants."; |
| 1799 | |
Mathieu Perreault | 51339b8 | 2017-07-20 17:06:05 | [diff] [blame] | 1800 | const char kWebPaymentsModifiersName[] = "Enable web payment modifiers"; |
| 1801 | const char kWebPaymentsModifiersDescription[] = |
| 1802 | "If the website provides modifiers in the payment request, show the custom " |
| 1803 | "total for each payment instrument, update the shopping cart when " |
| 1804 | "instruments are switched, and send modified payment method specific data " |
| 1805 | "to the payment app."; |
| 1806 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1807 | const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3."; |
| 1808 | const char kWebrtcEchoCanceller3Description[] = |
| 1809 | "Experimental WebRTC echo canceller (AEC3)."; |
| 1810 | |
| 1811 | const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding"; |
| 1812 | const char kWebrtcHwDecodingDescription[] = |
| 1813 | "Support in WebRTC for decoding video streams using platform hardware."; |
| 1814 | |
| 1815 | const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding"; |
| 1816 | const char kWebrtcHwEncodingDescription[] = |
| 1817 | "Support in WebRTC for encoding video streams using platform hardware."; |
| 1818 | |
| 1819 | const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding"; |
| 1820 | const char kWebrtcHwH264EncodingDescription[] = |
| 1821 | "Support in WebRTC for encoding h264 video streams using platform " |
| 1822 | "hardware."; |
| 1823 | |
| 1824 | const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding"; |
| 1825 | const char kWebrtcHwVP8EncodingDescription[] = |
| 1826 | "Support in WebRTC for encoding vp8 video streams using platform hardware."; |
| 1827 | |
Niels Möller | 090866a | 2018-02-13 10:55:03 | [diff] [blame] | 1828 | const char kWebrtcNewEncodeCpuLoadEstimatorName[] = |
| 1829 | "WebRTC new encode cpu load estimator"; |
| 1830 | const char kWebrtcNewEncodeCpuLoadEstimatorDescription[] = |
| 1831 | "Enable new estimator for the encoder cpu load, for evaluation and " |
| 1832 | "testing. Intended to improve accuracy when screen casting."; |
| 1833 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1834 | const char kWebrtcSrtpAesGcmName[] = |
| 1835 | "Negotiation with GCM cipher suites for SRTP in WebRTC"; |
| 1836 | const char kWebrtcSrtpAesGcmDescription[] = |
| 1837 | "When enabled, WebRTC will try to negotiate GCM cipher suites for SRTP."; |
| 1838 | |
Joachim Bauch | 4a41d751 | 2017-08-23 14:24:23 | [diff] [blame] | 1839 | const char kWebrtcSrtpEncryptedHeadersName[] = |
| 1840 | "Negotiation with encrypted header extensions for SRTP in WebRTC"; |
| 1841 | const char kWebrtcSrtpEncryptedHeadersDescription[] = |
| 1842 | "When enabled, WebRTC will try to negotiate encrypted header extensions " |
| 1843 | "for SRTP."; |
| 1844 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1845 | const char kWebrtcStunOriginName[] = "WebRTC Stun origin header"; |
| 1846 | const char kWebrtcStunOriginDescription[] = |
| 1847 | "When enabled, Stun messages generated by WebRTC will contain the Origin " |
| 1848 | "header."; |
| 1849 | |
| 1850 | const char kWebvrName[] = "WebVR"; |
| 1851 | const char kWebvrDescription[] = |
Anna Offenwanger | 00e6dd05 | 2018-04-05 02:12:01 | [diff] [blame] | 1852 | "Enables access to experimental Virtual Reality functionality via the " |
| 1853 | "WebVR 1.1 API. This feature will eventually be replaced by the WebXR " |
| 1854 | "Device API. Warning: Enabling this will also allow WebVR content on " |
| 1855 | "insecure origins to access these powerful APIs, and may pose a security " |
Anna Offenwanger | 06dc606 | 2018-04-12 07:56:22 | [diff] [blame] | 1856 | "risk. Controllers are exposed as Gamepads."; |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1857 | |
Brandon Jones | e9d9b2b | 2017-12-11 22:20:11 | [diff] [blame] | 1858 | const char kWebXrName[] = "WebXR Device API"; |
| 1859 | const char kWebXrDescription[] = |
Anna Offenwanger | 00e6dd05 | 2018-04-05 02:12:01 | [diff] [blame] | 1860 | "Enables access to experimental APIs to interact with Virtual Reality (VR) " |
| 1861 | "and Augmented Reality (AR) devices."; |
| 1862 | |
| 1863 | const char kWebXrGamepadSupportName[] = "WebXR Gamepad Support"; |
| 1864 | const char kWebXrGamepadSupportDescription[] = |
| 1865 | "Expose VR controllers as Gamepads for use with the WebXR Device API. Each " |
Anna Offenwanger | 06dc606 | 2018-04-12 07:56:22 | [diff] [blame] | 1866 | "XRInputSource will have a corresponding Gamepad instance. Requires that " |
| 1867 | "WebXR Device API is also enabled."; |
Ian Vollick | 7aaccf9 | 2018-04-07 23:10:43 | [diff] [blame] | 1868 | |
| 1869 | const char kWebXrHitTestName[] = "WebXR Hit Test"; |
| 1870 | const char kWebXrHitTestDescription[] = |
| 1871 | "Enables access to raycasting against estimated XR scene geometry."; |
Brandon Jones | e9d9b2b | 2017-12-11 22:20:11 | [diff] [blame] | 1872 | |
Anna Maria | 57ecf759 | 2018-01-12 03:10:40 | [diff] [blame] | 1873 | const char kWebXrOrientationSensorDeviceName[] = |
| 1874 | "WebXR orientation sensor device"; |
| 1875 | const char kWebXrOrientationSensorDeviceDescription[] = |
| 1876 | "When no VR platform device is available, expose a non-presenting device " |
| 1877 | "based on the device's orientation sensors, if available."; |
| 1878 | |
Brett Wilson | ecb8098 | 2017-07-12 20:34:51 | [diff] [blame] | 1879 | const char kWifiCredentialSyncName[] = "WiFi credential sync"; |
| 1880 | const char kWifiCredentialSyncDescription[] = |
| 1881 | "Enables synchronizing WiFi network settings across devices. When enabled, " |
| 1882 | "the WiFi credential datatype is registered with Chrome Sync, and WiFi " |
| 1883 | "credentials are synchronized subject to user preferences. (See also, " |
| 1884 | "chrome://settings/syncSetup.)"; |
| 1885 | |
| 1886 | const char kZeroCopyName[] = "Zero-copy rasterizer"; |
| 1887 | const char kZeroCopyDescription[] = |
| 1888 | "Raster threads write directly to GPU memory associated with tiles."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 1889 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1890 | // Android --------------------------------------------------------------------- |
| 1891 | |
| 1892 | #if defined(OS_ANDROID) |
| 1893 | |
| 1894 | const char kAiaFetchingName[] = "Intermediate Certificate Fetching"; |
| 1895 | const char kAiaFetchingDescription[] = |
| 1896 | "Enable intermediate certificate fetching when a server does not provide " |
| 1897 | "sufficient certificates to build a chain to a trusted root."; |
| 1898 | |
| 1899 | const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher"; |
| 1900 | const char kAccessibilityTabSwitcherDescription[] = |
| 1901 | "Enable the accessibility tab switcher for Android."; |
| 1902 | |
Wei-Yin Chen (陳威尹) | 8068345 | 2017-10-02 19:08:25 | [diff] [blame] | 1903 | const char kAllowReaderForAccessibilityName[] = "Reader Mode for Accessibility"; |
| 1904 | const char kAllowReaderForAccessibilityDescription[] = |
| 1905 | "Allows Reader Mode on any articles, even if the page is mobile-friendly."; |
| 1906 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1907 | const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility"; |
| 1908 | const char kAndroidAutofillAccessibilityDescription[] = |
| 1909 | "Enable accessibility for autofill popup."; |
| 1910 | |
| 1911 | const char kAndroidPaymentAppsName[] = "Android payment apps"; |
| 1912 | const char kAndroidPaymentAppsDescription[] = |
| 1913 | "Enable third party Android apps to integrate as payment apps"; |
| 1914 | |
Miriam Gershenson | 8cf139722 | 2018-01-23 22:48:29 | [diff] [blame] | 1915 | const char kAsyncDnsName[] = "Async DNS resolver"; |
| 1916 | const char kAsyncDnsDescription[] = "Enables the built-in DNS resolver."; |
| 1917 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1918 | const char kAutofillAccessoryViewName[] = |
| 1919 | "Autofill suggestions as keyboard accessory view"; |
| 1920 | const char kAutofillAccessoryViewDescription[] = |
| 1921 | "Shows Autofill suggestions on top of the keyboard rather than in a " |
| 1922 | "dropdown."; |
| 1923 | |
| 1924 | const char kBackgroundLoaderForDownloadsName[] = |
| 1925 | "Enables background downloading of pages."; |
| 1926 | const char kBackgroundLoaderForDownloadsDescription[] = |
| 1927 | "Enables downloading pages in the background in case page is not yet " |
| 1928 | "loaded in current tab."; |
| 1929 | |
Matthew Jones | 6c1f5e2 | 2018-02-06 18:19:53 | [diff] [blame] | 1930 | const char kChromeDuplexName[] = "Chrome Duplex"; |
| 1931 | const char kChromeDuplexDescription[] = |
| 1932 | "Enables Chrome Duplex, split toolbar Chrome Home, on Android."; |
Theresa Wellington | b9243b2 | 2017-12-01 16:23:05 | [diff] [blame] | 1933 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1934 | const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic"; |
| 1935 | const char kChromeHomeSwipeLogicDescription[] = |
| 1936 | "Various swipe logic options for Chrome Home for sheet expansion."; |
| 1937 | const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area"; |
Matthew Jones | be384ee4 | 2017-10-31 19:57:15 | [diff] [blame] | 1938 | const char kChromeHomeSwipeLogicVelocity[] = "Velocity suppression model"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1939 | |
Matthew Jones | 5b7f1d6 | 2018-01-23 00:37:25 | [diff] [blame] | 1940 | const char kChromeModernDesignName[] = "Chrome Modern Design"; |
| 1941 | const char kChromeModernDesignDescription[] = |
Matthew Jones | 213a069 | 2018-02-05 20:07:45 | [diff] [blame] | 1942 | "Enable modern design for Chrome. Chrome must be restarted twice for this " |
| 1943 | "flag to take effect."; |
Matthew Jones | 5b7f1d6 | 2018-01-23 00:37:25 | [diff] [blame] | 1944 | |
Megan Jablonski | c61eb1b8 | 2017-10-02 18:03:06 | [diff] [blame] | 1945 | const char kChromeMemexName[] = "Chrome Memex"; |
| 1946 | const char kChromeMemexDescription[] = |
| 1947 | "Enables Chrome Memex homepage on Android. Restricted to opted-in " |
| 1948 | "Googlers."; |
| 1949 | |
Sarath Singapati | 83aef1c | 2017-11-16 15:54:52 | [diff] [blame] | 1950 | const char kClearOldBrowsingDataName[] = "Clear older browsing data"; |
| 1951 | const char kClearOldBrowsingDataDescription[] = |
| 1952 | "Enables clearing of browsing data which is older than a given time " |
| 1953 | "period."; |
| 1954 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1955 | const char kContentSuggestionsCategoryOrderName[] = |
| 1956 | "Default content suggestions category order (e.g. on NTP)"; |
| 1957 | const char kContentSuggestionsCategoryOrderDescription[] = |
| 1958 | "Set default order of content suggestion categories (e.g. on the NTP)."; |
| 1959 | |
| 1960 | const char kContentSuggestionsCategoryRankerName[] = |
| 1961 | "Content suggestions category ranker (e.g. on NTP)"; |
| 1962 | const char kContentSuggestionsCategoryRankerDescription[] = |
| 1963 | "Set category ranker to order categories of content suggestions (e.g. on " |
| 1964 | "the NTP)."; |
| 1965 | |
Vitalii Iarko | f52ff80 | 2017-09-14 12:34:24 | [diff] [blame] | 1966 | const char kContentSuggestionsDebugLogName[] = "Content suggestions debug log"; |
| 1967 | const char kContentSuggestionsDebugLogDescription[] = |
| 1968 | "Enable content suggestions debug log accessible through " |
| 1969 | "snippets-internals."; |
| 1970 | |
Donn Denman | 8e58ead | 2017-11-04 01:44:01 | [diff] [blame] | 1971 | const char kContextualSearchMlTapSuppressionName[] = |
| 1972 | "Contextual Search ML tap suppression"; |
| 1973 | const char kContextualSearchMlTapSuppressionDescription[] = |
| 1974 | "Enables tap gestures to be suppressed to improve CTR by applying machine " |
Donn Denman | 5972981 | 2018-01-09 01:27:02 | [diff] [blame] | 1975 | "learning. The \"Contextual Search Ranker prediction\" flag must also be " |
| 1976 | "enabled!"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 1977 | |
| 1978 | const char kContextualSearchName[] = "Contextual Search"; |
| 1979 | const char kContextualSearchDescription[] = |
| 1980 | "Whether or not Contextual Search is enabled."; |
| 1981 | |
Donn Denman | 5972981 | 2018-01-09 01:27:02 | [diff] [blame] | 1982 | const char kContextualSearchRankerQueryName[] = |
| 1983 | "Contextual Search Ranker prediction"; |
| 1984 | const char kContextualSearchRankerQueryDescription[] = |
| 1985 | "Enables prediction of tap gestures using Assist-Ranker machine learning."; |
| 1986 | |
| 1987 | const char kContextualSearchSecondTapName[] = |
| 1988 | "Contextual Search second tap triggering"; |
| 1989 | const char kContextualSearchSecondTapDescription[] = |
| 1990 | "Enables triggering on a second tap gesture even when Ranker would " |
| 1991 | "normally suppress that tap."; |
| 1992 | |
Dmitry Skiba | 9c3efa7 | 2017-07-20 22:01:14 | [diff] [blame] | 1993 | const char kDontPrefetchLibrariesName[] = "Don't Prefetch Libraries"; |
| 1994 | const char kDontPrefetchLibrariesDescription[] = |
| 1995 | "Don't prefetch libraries after loading."; |
| 1996 | |
Joy Ming | 5fd29ca6 | 2017-10-02 22:51:22 | [diff] [blame] | 1997 | const char kDownloadsForegroundName[] = "Enable downloads foreground"; |
| 1998 | const char kDownloadsForegroundDescription[] = |
| 1999 | "Enable downloads as a foreground service for all versions of Android."; |
| 2000 | |
Joy Ming | 189b0cc | 2017-12-08 19:42:43 | [diff] [blame] | 2001 | const char kDownloadsLocationChangeName[] = "Enable downloads location change"; |
| 2002 | const char kDownloadsLocationChangeDescription[] = |
| 2003 | "Enable changing default downloads storage location on Android."; |
| 2004 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2005 | const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1"; |
| 2006 | const char kEnableAndroidPayIntegrationV1Description[] = |
| 2007 | "Enable integration with Android Pay using the first version of the API"; |
| 2008 | |
| 2009 | const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2"; |
| 2010 | const char kEnableAndroidPayIntegrationV2Description[] = |
| 2011 | "Enable integration with Android Pay using the second version of the API"; |
| 2012 | |
Vitalii Iarko | f4ed32d | 2017-09-26 13:15:53 | [diff] [blame] | 2013 | const char kEnableAndroidSpellcheckerName[] = "Enable spell checking"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2014 | const char kEnableAndroidSpellcheckerDescription[] = |
| 2015 | "Enables use of the Android spellchecker."; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2016 | |
Lei Tian | bd5a3bf | 2018-02-28 19:01:16 | [diff] [blame] | 2017 | const char kEnableCommandLineOnNonRootedName[] = |
| 2018 | "Enable command line on non-rooted devices"; |
| 2019 | const char kEnableCommandLineOnNoRootedDescription[] = |
| 2020 | "Enable reading command line file on non-rooted devices (DANGEROUS)."; |
| 2021 | |
Vitalii Iarko | f4ed32d | 2017-09-26 13:15:53 | [diff] [blame] | 2022 | const char kEnableContentSuggestionsNewFaviconServerName[] = |
| 2023 | "Get favicons for content suggestions from a new server."; |
| 2024 | const char kEnableContentSuggestionsNewFaviconServerDescription[] = |
| 2025 | "If enabled, the content suggestions (on the NTP) will get favicons from a " |
| 2026 | "new favicon server."; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2027 | |
| 2028 | const char kEnableContentSuggestionsSettingsName[] = |
| 2029 | "Show content suggestions settings."; |
| 2030 | const char kEnableContentSuggestionsSettingsDescription[] = |
| 2031 | "If enabled, the content suggestions settings will be available from the " |
| 2032 | "main settings menu."; |
| 2033 | |
Vitalii Iarko | f4ed32d | 2017-09-26 13:15:53 | [diff] [blame] | 2034 | const char kEnableContentSuggestionsThumbnailDominantColorName[] = |
| 2035 | "Use content suggestions thumbnail dominant color."; |
| 2036 | const char kEnableContentSuggestionsThumbnailDominantColorDescription[] = |
| 2037 | "Use content suggestions thumbnail dominant color as a placeholder before " |
| 2038 | "the real thumbnail is fetched (requires Chrome Home)."; |
| 2039 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2040 | const char kEnableCustomContextMenuName[] = "Enable custom context menu"; |
| 2041 | const char kEnableCustomContextMenuDescription[] = |
| 2042 | "Enables a new context menu when a link, image, or video is pressed within " |
| 2043 | "Chrome."; |
| 2044 | |
| 2045 | const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI"; |
| 2046 | const char kEnableCustomFeedbackUiDescription[] = |
| 2047 | "Enables a custom feedback UI when submitting feedback through Google " |
| 2048 | "Feedback. Works with Google Play Services v10.2+"; |
| 2049 | |
| 2050 | const char kEnableDataReductionProxyMainMenuName[] = |
Theresa Wellington | 141e4af | 2017-10-23 20:28:47 | [diff] [blame] | 2051 | "Enable Data Saver main menu item"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2052 | const char kEnableDataReductionProxyMainMenuDescription[] = |
Theresa Wellington | 141e4af | 2017-10-23 20:28:47 | [diff] [blame] | 2053 | "Enables the Data Saver menu item in the main menu"; |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2054 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2055 | const char kEnableOmniboxClipboardProviderName[] = |
| 2056 | "Omnibox clipboard URL suggestions"; |
| 2057 | const char kEnableOmniboxClipboardProviderDescription[] = |
| 2058 | "Provide a suggestion of the URL stored in the clipboard (if any) upon " |
| 2059 | "focus in the omnibox."; |
| 2060 | |
| 2061 | const char kEnableExpandedAutofillCreditCardPopupLayoutName[] = |
| 2062 | "Use expanded autofill credit card popup layout."; |
| 2063 | const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] = |
| 2064 | "If enabled, displays autofill credit card popup using expanded layout."; |
| 2065 | |
Becky Zhou | a7f11d6 | 2018-02-01 16:02:53 | [diff] [blame] | 2066 | const char kEnableNtpArticleSuggestionsExpandableHeaderName[] = |
| 2067 | "Show article suggestions expandable header on New Tab Page"; |
| 2068 | const char kEnableNtpArticleSuggestionsExpandableHeaderDescription[] = |
| 2069 | "If enabled, the article suggestions content on New Tab Page can be " |
| 2070 | "toggled shown or hidden by clicking the expandable header."; |
| 2071 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2072 | const char kEnableNtpAssetDownloadSuggestionsName[] = |
| 2073 | "Show asset downloads on the New Tab page"; |
| 2074 | const char kEnableNtpAssetDownloadSuggestionsDescription[] = |
| 2075 | "If enabled, the list of content suggestions on the New Tab page will " |
| 2076 | "contain assets (e.g. books, pictures, audio) that the user downloaded for " |
| 2077 | "later use."; |
| 2078 | |
| 2079 | const char kEnableNtpBookmarkSuggestionsName[] = |
| 2080 | "Show recently visited bookmarks on the New Tab page"; |
| 2081 | const char kEnableNtpBookmarkSuggestionsDescription[] = |
| 2082 | "If enabled, the list of content suggestions on the New Tab page will " |
| 2083 | "contain recently visited bookmarks."; |
| 2084 | |
| 2085 | const char kEnableNtpForeignSessionsSuggestionsName[] = |
| 2086 | "Show recent foreign tabs on the New Tab page"; |
| 2087 | const char kEnableNtpForeignSessionsSuggestionsDescription[] = |
| 2088 | "If enabled, the list of content suggestions on the New Tab page will " |
| 2089 | "contain recent foreign tabs."; |
| 2090 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2091 | const char kEnableNtpOfflinePageDownloadSuggestionsName[] = |
| 2092 | "Show offline page downloads on the New Tab page"; |
| 2093 | const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] = |
| 2094 | "If enabled, the list of content suggestions on the New Tab page will " |
| 2095 | "contain pages that the user downloaded for later use."; |
| 2096 | |
| 2097 | const char kEnableNtpRemoteSuggestionsName[] = |
| 2098 | "Show server-side suggestions on the New Tab page"; |
| 2099 | const char kEnableNtpRemoteSuggestionsDescription[] = |
| 2100 | "If enabled, the list of content suggestions on the New Tab page will " |
| 2101 | "contain server-side suggestions (e.g., Articles for you). Furthermore, it " |
| 2102 | "allows to override the source used to retrieve these server-side " |
| 2103 | "suggestions."; |
| 2104 | |
| 2105 | const char kEnableNtpSnippetsVisibilityName[] = |
| 2106 | "Make New Tab Page Snippets more visible."; |
| 2107 | const char kEnableNtpSnippetsVisibilityDescription[] = |
| 2108 | "If enabled, the NTP snippets will become more discoverable with a larger " |
| 2109 | "portion of the first card above the fold."; |
| 2110 | |
| 2111 | const char kEnableNtpSuggestionsNotificationsName[] = |
| 2112 | "Notify about new content suggestions available at the New Tab page"; |
| 2113 | const char kEnableNtpSuggestionsNotificationsDescription[] = |
| 2114 | "If enabled, notifications will inform about new content suggestions on " |
| 2115 | "the New Tab page."; |
| 2116 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2117 | const char kEnableOfflinePreviewsName[] = "Offline Page Previews"; |
| 2118 | const char kEnableOfflinePreviewsDescription[] = |
| 2119 | "Enable showing offline page previews on slow networks."; |
| 2120 | |
| 2121 | const char kEnableOskOverscrollName[] = "Enable OSK Overscroll"; |
| 2122 | const char kEnableOskOverscrollDescription[] = |
| 2123 | "Enable OSK overscroll support. With this flag on, the OSK will only " |
| 2124 | "resize the visual viewport."; |
| 2125 | |
| 2126 | const char kEnableSpecialLocaleName[] = |
| 2127 | "Enable custom logic for special locales."; |
| 2128 | const char kEnableSpecialLocaleDescription[] = |
| 2129 | "Enable custom logic for special locales. In this mode, Chrome might " |
| 2130 | "behave differently in some locales."; |
| 2131 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2132 | const char kEnableWebNfcName[] = "WebNFC"; |
| 2133 | const char kEnableWebNfcDescription[] = "Enable WebNFC support."; |
| 2134 | |
gogerald | f3cbb42 | 2017-07-26 14:37:12 | [diff] [blame] | 2135 | const char kEnableWebPaymentsMethodSectionOrderV2Name[] = |
| 2136 | "Enable Web Payments method section order V2."; |
| 2137 | const char kEnableWebPaymentsMethodSectionOrderV2Description[] = |
| 2138 | "Enable this option to display payment method section above address " |
| 2139 | "section instead of below it."; |
| 2140 | |
Raymes Khoury | 582b4313 | 2017-12-12 23:54:30 | [diff] [blame] | 2141 | const char kGrantNotificationsToDSEName[] = |
| 2142 | "Grant notifications to the Default Search Engine"; |
| 2143 | const char kGrantNotificationsToDSENameDescription[] = |
| 2144 | "Automatically grant the notifications permission to the Default Search " |
| 2145 | "Engine"; |
| 2146 | |
Daniel Park | e74fcf86 | 2018-03-27 18:05:45 | [diff] [blame] | 2147 | const char kHomePageButtonName[] = "Force Enable Home Page Button"; |
| 2148 | const char kHomePageButtonDescription[] = |
| 2149 | "Displays a home button if enabled. " |
| 2150 | "Chrome must be restarted twice for this flag to take effect."; |
| 2151 | |
Theresa | 920e0ed | 2018-03-07 18:12:44 | [diff] [blame] | 2152 | const char kInterestFeedContentSuggestionsDescription[] = |
| 2153 | "Use the interest feed to render content suggestions. Currently content " |
| 2154 | "suggestions are shown on the New Tab Page."; |
| 2155 | const char kInterestFeedContentSuggestionsName[] = |
| 2156 | "Interest Feed Content Suggestions"; |
| 2157 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2158 | const char kKeepPrefetchedContentSuggestionsName[] = |
| 2159 | "Keep prefetched content suggestions"; |
| 2160 | const char kKeepPrefetchedContentSuggestionsDescription[] = |
| 2161 | "If enabled, some of prefetched content suggestions are not replaced by " |
| 2162 | "the new fetched suggestions."; |
| 2163 | |
Leo Zhang | 051b7548 | 2017-12-20 03:28:30 | [diff] [blame] | 2164 | const char kLanguagesPreferenceName[] = "Language Settings"; |
| 2165 | const char kLanguagesPreferenceDescription[] = |
| 2166 | "Enable this option for Language Settings feature on Android."; |
| 2167 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2168 | const char kLsdPermissionPromptName[] = |
| 2169 | "Location Settings Dialog Permission Prompt"; |
| 2170 | const char kLsdPermissionPromptDescription[] = |
| 2171 | "Whether to use the Google Play Services Location Settings Dialog " |
| 2172 | "permission dialog."; |
| 2173 | |
Amirhossein Simjour | 97b4154f | 2018-02-20 03:49:59 | [diff] [blame] | 2174 | const char kModalPermissionDialogViewName[] = "Modal Permission Dialog"; |
| 2175 | const char kModalPermissionDialogViewDescription[] = |
| 2176 | "Enable this option to use ModalDialogManager for permission Dialogs."; |
| 2177 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2178 | const char kMediaScreenCaptureName[] = "Experimental ScreenCapture."; |
| 2179 | const char kMediaScreenCaptureDescription[] = |
| 2180 | "Enable this option for experimental ScreenCapture feature on Android."; |
| 2181 | |
| 2182 | const char kModalPermissionPromptsName[] = "Modal Permission Prompts"; |
| 2183 | const char kModalPermissionPromptsDescription[] = |
| 2184 | "Whether to use permission dialogs in place of permission infobars."; |
| 2185 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2186 | const char kNewPhotoPickerName[] = "Enable new Photopicker"; |
| 2187 | const char kNewPhotoPickerDescription[] = |
| 2188 | "Activates the new picker for selecting photos."; |
| 2189 | |
| 2190 | const char kNoCreditCardAbort[] = "No Credit Card Abort"; |
| 2191 | const char kNoCreditCardAbortDescription[] = |
| 2192 | "Whether or not the No Credit Card Abort is enabled."; |
| 2193 | |
Michael van Ouwerkerk | cdbbe33 | 2017-11-24 15:07:06 | [diff] [blame] | 2194 | const char kNtpModernLayoutName[] = "Modern NTP layout"; |
| 2195 | const char kNtpModernLayoutDescription[] = |
| 2196 | "Show a modern layout on the New Tab Page."; |
| 2197 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2198 | const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox"; |
| 2199 | const char kNtpGoogleGInOmniboxDescription[] = |
| 2200 | "Show a Google G in the omnibox on the New Tab Page."; |
| 2201 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2202 | const char kOfflineBookmarksName[] = "Enable offline bookmarks"; |
| 2203 | const char kOfflineBookmarksDescription[] = |
| 2204 | "Enable saving bookmarked pages for offline viewing."; |
| 2205 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2206 | const char kOfflinePagesCtName[] = "Enable Offline Pages CT features."; |
| 2207 | const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features."; |
| 2208 | |
| 2209 | const char kOfflinePagesCtV2Name[] = "Enable Offline Pages CT V2 features."; |
| 2210 | const char kOfflinePagesCtV2Description[] = |
| 2211 | "V2 features include attributing pages to the app that initiated the " |
| 2212 | "custom tabs, and being able to query for pages by page attribution."; |
| 2213 | |
Cathy Li | 7311d79 | 2018-04-05 00:34:16 | [diff] [blame] | 2214 | const char kOfflinePagesCTSuppressNotificationsName[] = |
| 2215 | "Disable download complete notification for whitelisted CCT apps."; |
| 2216 | const char kOfflinePagesCTSuppressNotificationsDescription[] = |
| 2217 | "Disable download complete notification for page downloads originating " |
| 2218 | "from a CCT app whitelisted to show their own download complete " |
| 2219 | "notification."; |
| 2220 | |
Candice Sy | 74fa7a35 | 2018-03-30 23:46:49 | [diff] [blame] | 2221 | const char kOfflinePagesDescriptiveFailStatusName[] = |
| 2222 | "Enables descriptive failed download status text."; |
| 2223 | const char kOfflinePagesDescriptiveFailStatusDescription[] = |
| 2224 | "Enables failed download status text in notifications and Downloads Home " |
| 2225 | "to state the reason the request failed if the failure is actionable."; |
| 2226 | |
| 2227 | const char kOfflinePagesDescriptivePendingStatusName[] = |
| 2228 | "Enables descriptive pending download status text."; |
| 2229 | const char kOfflinePagesDescriptivePendingStatusDescription[] = |
| 2230 | "Enables pending download status text in notifications and Downloads Home " |
| 2231 | "to state the reason the request is pending."; |
| 2232 | |
| 2233 | const char kOfflinePagesInDownloadHomeOpenInCctName[] = |
| 2234 | "Enables offline pages in the downloads home to be opened in CCT."; |
| 2235 | const char kOfflinePagesInDownloadHomeOpenInCctDescription[] = |
| 2236 | "When enabled offline pages launched from the Downloads Home will be " |
| 2237 | "opened in Chrome Custom Tabs (CCT) instead of regular tabs."; |
| 2238 | |
Carlos Knippschild | 09272ecd | 2017-12-09 03:29:36 | [diff] [blame] | 2239 | const char kOfflinePagesLimitlessPrefetchingName[] = |
| 2240 | "Removes resource usage limits for the prefetching of offline pages."; |
| 2241 | const char kOfflinePagesLimitlessPrefetchingDescription[] = |
| 2242 | "Allows the prefetching of suggested offline pages to ignore resource " |
| 2243 | "usage limits. This allows it to completely ignore data usage limitations " |
| 2244 | "and allows downloads to happen with any kind of connection."; |
| 2245 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2246 | const char kOfflinePagesLoadSignalCollectingName[] = |
| 2247 | "Enables collecting load timing data for offline page snapshots."; |
| 2248 | const char kOfflinePagesLoadSignalCollectingDescription[] = |
| 2249 | "Enables loading completeness data collection while writing an offline " |
| 2250 | "page. This data is collected in the snapshotted offline page to allow " |
| 2251 | "data analysis to improve deciding when to make the offline snapshot."; |
| 2252 | |
| 2253 | const char kOfflinePagesPrefetchingName[] = |
| 2254 | "Enables suggested offline pages to be prefetched."; |
| 2255 | const char kOfflinePagesPrefetchingDescription[] = |
| 2256 | "Enables suggested offline pages to be prefetched, so useful content is " |
| 2257 | "available while offline."; |
| 2258 | |
Cathy Li | 3d5379e | 2017-09-07 00:11:09 | [diff] [blame] | 2259 | const char kOfflinePagesPrefetchingUIName[] = |
| 2260 | "Enables prefetched offline pages to be shown in UI."; |
| 2261 | const char kOfflinePagesPrefetchingUIDescription[] = |
| 2262 | "Enables prefetched offline pages to raise notifications and be shown in " |
| 2263 | "download home UI."; |
| 2264 | |
Pete Williamson | 7845dff | 2017-09-20 11:06:19 | [diff] [blame] | 2265 | const char kOfflinePagesResourceBasedSnapshotName[] = |
| 2266 | "Enables offline page snapshots to be based on percentage of page loaded."; |
| 2267 | const char kOfflinePagesResourceBasedSnapshotDescription[] = |
| 2268 | "Enables offline page snapshots to use a resource percentage based " |
| 2269 | "approach for determining when the page is loaded as opposed to a time " |
| 2270 | "based approach"; |
| 2271 | |
Collin Baker | 17f92a5 | 2017-07-19 21:41:25 | [diff] [blame] | 2272 | const char kOfflinePagesRenovationsName[] = "Enables offline page renovations."; |
| 2273 | const char kOfflinePagesRenovationsDescription[] = |
| 2274 | "Enables offline page renovations which correct issues with dynamic " |
| 2275 | "content that occur when offlining pages that use JavaScript."; |
| 2276 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2277 | const char kOfflinePagesSharingName[] = "Enables offline pages to be shared."; |
| 2278 | const char kOfflinePagesSharingDescription[] = |
| 2279 | "Enables the saved offline pages to be shared via other applications."; |
| 2280 | |
Cathy Li | e0d8876 | 2018-04-12 08:03:01 | [diff] [blame] | 2281 | const char kOfflinePagesShowAlternateDinoPageName[] = |
| 2282 | "Enable alternate dino page with more user capabilities."; |
| 2283 | const char kOfflinePagesShowAlternateDinoPageDescription[] = |
| 2284 | "Enables the dino page to show more buttons and offer existing offline " |
| 2285 | "content."; |
| 2286 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2287 | const char kOfflinePagesSvelteConcurrentLoadingName[] = |
| 2288 | "Enables concurrent background loading on svelte."; |
| 2289 | const char kOfflinePagesSvelteConcurrentLoadingDescription[] = |
| 2290 | "Enables concurrent background loading (or downloading) of pages on " |
| 2291 | "Android svelte (512MB RAM) devices. Otherwise, background loading will " |
| 2292 | "happen when the svelte device is idle."; |
| 2293 | |
| 2294 | const char kOffliningRecentPagesName[] = |
| 2295 | "Enable offlining of recently visited pages"; |
| 2296 | const char kOffliningRecentPagesDescription[] = |
| 2297 | "Enable storing recently visited pages locally for offline use. Requires " |
| 2298 | "Offline Pages to be enabled."; |
| 2299 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2300 | const char kPayWithGoogleV1Name[] = "Pay with Google v1"; |
| 2301 | const char kPayWithGoogleV1Description[] = |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2302 | "Enable Pay with Google integration into Web Payments with API version " |
| 2303 | "'1'."; |
| 2304 | |
Matthew Jones | a88b9585 | 2017-11-08 23:13:50 | [diff] [blame] | 2305 | const char kProgressBarThrottleName[] = "Android progress update throttling."; |
| 2306 | const char kProgressBarThrottleDescription[] = |
| 2307 | "Limit the maximum progress update to make progress appear smoother."; |
| 2308 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2309 | const char kPullToRefreshEffectName[] = "The pull-to-refresh effect"; |
| 2310 | const char kPullToRefreshEffectDescription[] = |
| 2311 | "Page reloads triggered by vertically overscrolling content."; |
| 2312 | |
Piotr Swigon | 7c296ef | 2017-08-29 04:32:00 | [diff] [blame] | 2313 | const char kPwaImprovedSplashScreenName[] = |
| 2314 | "Improved Splash Screen for standalone PWAs"; |
| 2315 | const char kPwaImprovedSplashScreenDescription[] = |
| 2316 | "Enables the Improved Splash Screen UX for standalone PWAs based on new " |
| 2317 | "Web App Manifest attributes"; |
Piotr Swigon | 9f630b3 | 2017-07-26 09:42:49 | [diff] [blame] | 2318 | const char kPwaPersistentNotificationName[] = |
| 2319 | "Persistent notification in standalone PWA"; |
| 2320 | const char kPwaPersistentNotificationDescription[] = |
| 2321 | "Enables a persistent Android notification for standalone PWAs"; |
| 2322 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2323 | const char kReaderModeHeuristicsName[] = "Reader Mode triggering"; |
| 2324 | const char kReaderModeHeuristicsDescription[] = |
| 2325 | "Determines what pages the Reader Mode infobar is shown on."; |
| 2326 | const char kReaderModeHeuristicsMarkup[] = "With article structured markup"; |
| 2327 | const char kReaderModeHeuristicsAdaboost[] = "Non-mobile-friendly articles"; |
| 2328 | const char kReaderModeHeuristicsAllArticles[] = "All articles"; |
| 2329 | const char kReaderModeHeuristicsAlwaysOff[] = "Never"; |
| 2330 | const char kReaderModeHeuristicsAlwaysOn[] = "Always"; |
| 2331 | |
Wei-Yin Chen (陳威尹) | 41b2241 | 2017-07-21 02:51:18 | [diff] [blame] | 2332 | const char kReaderModeInCCTName[] = "Reader Mode in CCT"; |
| 2333 | const char kReaderModeInCCTDescription[] = |
| 2334 | "Open Reader Mode in Chrome Custom Tabs."; |
| 2335 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2336 | const char kSetMarketUrlForTestingName[] = "Set market URL for testing"; |
| 2337 | const char kSetMarketUrlForTestingDescription[] = |
| 2338 | "When enabled, sets the market URL for use in testing the update menu " |
| 2339 | "item."; |
| 2340 | |
| 2341 | const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete"; |
| 2342 | const char kSpannableInlineAutocompleteDescription[] = |
| 2343 | "A new type of inline autocomplete for the omnibox that works with " |
| 2344 | "keyboards that compose text."; |
| 2345 | |
Theresa | eea05a1 | 2018-05-09 21:01:59 | [diff] [blame] | 2346 | const char kSimplifiedNtpName[] = "Simplified NTP"; |
| 2347 | const char kSimplifiedNtpDescription[] = "Show a simplified New Tab Page."; |
| 2348 | |
| 2349 | const char kSiteExplorationUiName[] = "Site Exploration UI"; |
| 2350 | const char kSiteExplorationUiDescription[] = |
| 2351 | "Show site suggestions in the Exploration UI"; |
| 2352 | |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2353 | const char kUpdateMenuBadgeName[] = "Force show update menu badge"; |
| 2354 | const char kUpdateMenuBadgeDescription[] = |
| 2355 | "When enabled, an update badge will be shown on the app menu button."; |
| 2356 | |
| 2357 | const char kUpdateMenuItemCustomSummaryDescription[] = |
| 2358 | "When this flag and the force show update menu item flag are enabled, a " |
| 2359 | "custom summary string will be displayed below the update menu item."; |
| 2360 | const char kUpdateMenuItemCustomSummaryName[] = |
| 2361 | "Update menu item custom summary"; |
| 2362 | |
| 2363 | const char kUpdateMenuItemName[] = "Force show update menu item"; |
| 2364 | const char kUpdateMenuItemDescription[] = |
| 2365 | R"*(When enabled, an "Update Chrome" item will be shown in the app )*" |
| 2366 | R"*(menu.)*"; |
| 2367 | |
Amirhossein Simjour | d78bbcf | 2018-02-02 16:23:39 | [diff] [blame] | 2368 | const char kVrBrowsingNativeAndroidUiName[] = "VR browsing native android ui"; |
| 2369 | const char kVrBrowsingNativeAndroidUiDescription[] = |
| 2370 | "Enable Android UI elements in VR."; |
| 2371 | |
Tibor Goldschwendt | 4cdea8d | 2018-05-10 15:46:46 | [diff] [blame] | 2372 | const char kVrBrowsingTabsViewName[] = "VR browsing tabs view"; |
| 2373 | const char kVrBrowsingTabsViewDescription[] = |
| 2374 | "Enable tab overview (tab switcher) in VR."; |
| 2375 | |
Marc Treib | 93af46a | 2017-08-23 13:30:00 | [diff] [blame] | 2376 | const char kThirdPartyDoodlesName[] = |
| 2377 | "Enable Doodles for third-party search engines"; |
| 2378 | const char kThirdPartyDoodlesDescription[] = |
| 2379 | "Enables fetching and displaying Doodles on the NTP for third-party search " |
| 2380 | "engines."; |
| 2381 | |
Klaus Weidner | aaf697f | 2018-01-18 20:07:36 | [diff] [blame] | 2382 | const char kWebXrRenderPathName[] = "WebXR presentation render path"; |
| 2383 | const char kWebXrRenderPathDescription[] = |
| 2384 | "Render path to use for WebXR presentation (including WebVR)"; |
| 2385 | const char kWebXrRenderPathChoiceClientWaitDescription[] = |
| 2386 | "ClientWait (Baseline)"; |
| 2387 | const char kWebXrRenderPathChoiceGpuFenceDescription[] = |
| 2388 | "GpuFence (Android N+)"; |
Klaus Weidner | d25dff4 | 2018-04-12 06:56:07 | [diff] [blame] | 2389 | const char kWebXrRenderPathChoiceSharedBufferDescription[] = |
| 2390 | "SharedBuffer (Android O+)"; |
Klaus Weidner | aaf697f | 2018-01-18 20:07:36 | [diff] [blame] | 2391 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2392 | // Non-Android ----------------------------------------------------------------- |
Brett Wilson | ff59695 | 2017-07-14 01:06:55 | [diff] [blame] | 2393 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2394 | #else // !defined(OS_ANDROID) |
brettw | 5f9c164 | 2017-05-14 17:12:48 | [diff] [blame] | 2395 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2396 | const char kAccountConsistencyName[] = |
| 2397 | "Identity consistency between browser and cookie jar"; |
| 2398 | const char kAccountConsistencyDescription[] = |
| 2399 | "When enabled, the browser manages signing in and out of Google accounts."; |
| 2400 | const char kAccountConsistencyChoiceMirror[] = "Mirror"; |
| 2401 | const char kAccountConsistencyChoiceDice[] = "Dice"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2402 | |
Chris Pickel | 3a227ae6 | 2017-08-24 10:47:26 | [diff] [blame] | 2403 | const char kDoodlesOnLocalNtpName[] = "Enable doodles on the local NTP"; |
| 2404 | const char kDoodlesOnLocalNtpDescription[] = |
| 2405 | "Show doodles on the local New Tab page if Google is the default search " |
| 2406 | "engine."; |
| 2407 | |
mlamouri | ff56c09 | 2017-05-11 15:31:39 | [diff] [blame] | 2408 | const char kEnableAudioFocusName[] = "Manage audio focus across tabs"; |
mlamouri | ff56c09 | 2017-05-11 15:31:39 | [diff] [blame] | 2409 | const char kEnableAudioFocusDescription[] = |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2410 | "Manage audio focus across tabs to improve the audio mixing."; |
mlamouri | ff56c09 | 2017-05-11 15:31:39 | [diff] [blame] | 2411 | const char kEnableAudioFocusDisabled[] = "Disabled"; |
mlamouri | ff56c09 | 2017-05-11 15:31:39 | [diff] [blame] | 2412 | const char kEnableAudioFocusEnabled[] = "Enabled"; |
mlamouri | ff56c09 | 2017-05-11 15:31:39 | [diff] [blame] | 2413 | const char kEnableAudioFocusEnabledDuckFlash[] = |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2414 | "Enabled (Flash lowers volume when interrupted by other sound, " |
| 2415 | "experimental)"; |
| 2416 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2417 | const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; |
| 2418 | const char kEnableNewAppMenuIconDescription[] = |
| 2419 | "Use the new app menu icon with update notification animations."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2420 | |
Dave Schuyler | 598a4a4 | 2018-01-04 02:15:10 | [diff] [blame] | 2421 | const char kOmniboxRichEntitySuggestionsName[] = |
| 2422 | "Omnibox rich entity suggestions"; |
| 2423 | const char kOmniboxRichEntitySuggestionsDescription[] = |
| 2424 | "Display entity suggestions using images and an enhanced layout; showing " |
| 2425 | "more context and descriptive text about the entity"; |
| 2426 | |
Dave Schuyler | 616273d | 2018-04-19 03:12:52 | [diff] [blame] | 2427 | const char kOmniboxNewAnswerLayoutName[] = "Omnibox new answer layout"; |
| 2428 | const char kOmniboxNewAnswerLayoutDescription[] = |
| 2429 | "Display answers using an enhanced layout with larger images"; |
| 2430 | |
Kevin Bailey | 89866997 | 2017-11-06 15:34:49 | [diff] [blame] | 2431 | const char kOmniboxTabSwitchSuggestionsName[] = |
| 2432 | "Omnibox tab switch suggestions"; |
| 2433 | const char kOmniboxTabSwitchSuggestionsDescription[] = |
| 2434 | "Enable suggestions for switching to open tabs within the Omnibox."; |
| 2435 | |
krb | cc62141 | 2017-06-01 19:40:28 | [diff] [blame] | 2436 | const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions"; |
| 2437 | const char kOmniboxTailSuggestionsDescription[] = |
Vitalii Iarko | 7df52014 | 2017-07-07 12:53:19 | [diff] [blame] | 2438 | "Enable receiving tail suggestions, a type of search suggestion based on " |
| 2439 | "the last few words in the query, for the Omnibox."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2440 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2441 | const char kOneGoogleBarOnLocalNtpName[] = |
| 2442 | "Enable the OneGoogleBar on the local NTP"; |
| 2443 | const char kOneGoogleBarOnLocalNtpDescription[] = |
| 2444 | "Show a OneGoogleBar on the local New Tab page if Google is the default " |
| 2445 | "search engine."; |
| 2446 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2447 | const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP"; |
| 2448 | const char kUseGoogleLocalNtpDescription[] = |
| 2449 | "Use the local New Tab page if Google is the default search engine."; |
spqchan | 064a811 | 2017-04-18 16:46:32 | [diff] [blame] | 2450 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2451 | const char kVoiceSearchOnLocalNtpName[] = |
| 2452 | "Enable Voice Search on the local NTP"; |
| 2453 | const char kVoiceSearchOnLocalNtpDescription[] = |
| 2454 | "Show a microphone for voice search on the local New Tab page " |
| 2455 | "if Google is the default search engine."; |
| 2456 | |
Balazs Engedy | 00c5cea | 2018-03-30 15:36:39 | [diff] [blame] | 2457 | const char kEnableWebAuthenticationAPIName[] = "Web Authentication API"; |
Kim Paulhamus | 33f87b1 | 2018-01-18 22:00:42 | [diff] [blame] | 2458 | const char kEnableWebAuthenticationAPIDescription[] = |
Balazs Engedy | 00c5cea | 2018-03-30 15:36:39 | [diff] [blame] | 2459 | "Enable Web Authentication API support"; |
| 2460 | |
| 2461 | const char kEnableWebAuthenticationTestingAPIName[] = |
| 2462 | "Web Authentication Testing API"; |
| 2463 | const char kEnableWebAuthenticationTestingAPIDescription[] = |
| 2464 | "Enable Web Authentication Testing API support, which disconnects the API " |
| 2465 | "implementation from the real world, and allows configuring virtual " |
| 2466 | "authenticator devices for testing"; |
Kim Paulhamus | 33f87b1 | 2018-01-18 22:00:42 | [diff] [blame] | 2467 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2468 | #if defined(GOOGLE_CHROME_BUILD) |
| 2469 | |
| 2470 | const char kGoogleBrandedContextMenuName[] = |
| 2471 | "Google branding in the context menu"; |
| 2472 | const char kGoogleBrandedContextMenuDescription[] = |
| 2473 | "Shows a Google icon next to context menu items powered by Google " |
| 2474 | "services."; |
| 2475 | |
| 2476 | #endif // !defined(GOOGLE_CHROME_BUILD) |
| 2477 | |
| 2478 | #endif // !defined(OS_ANDROID) |
| 2479 | |
| 2480 | // Windows --------------------------------------------------------------------- |
| 2481 | |
| 2482 | #if defined(OS_WIN) |
| 2483 | |
| 2484 | const char kCloudPrintXpsName[] = "XPS in Google Cloud Print"; |
| 2485 | const char kCloudPrintXpsDescription[] = |
| 2486 | "XPS enables advanced options for classic printers connected to the Cloud " |
| 2487 | "Print with Chrome. Printers must be re-connected after changing this " |
| 2488 | "flag."; |
| 2489 | |
Dave Tapuska | dd43469d | 2017-08-22 22:15:53 | [diff] [blame] | 2490 | const char kDirectManipulationStylusName[] = "Direct Manipulation Stylus"; |
| 2491 | const char kDirectManipulationStylusDescription[] = |
| 2492 | "If enabled, Chrome will scroll web pages on stylus drag."; |
| 2493 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2494 | const char kDisablePostscriptPrinting[] = "Disable PostScript Printing"; |
| 2495 | const char kDisablePostscriptPrintingDescription[] = |
| 2496 | "Disables PostScript generation when printing to PostScript capable " |
| 2497 | "printers, and uses EMF generation in its place."; |
| 2498 | |
| 2499 | const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown."; |
| 2500 | const char kEnableAppcontainerDescription[] = |
| 2501 | "Enables the use of an AppContainer on sandboxed processes to improve " |
| 2502 | "security."; |
| 2503 | |
| 2504 | const char kEnableD3DVsync[] = "D3D v-sync"; |
| 2505 | const char kEnableD3DVsyncDescription[] = |
| 2506 | "Produces v-sync signal by having D3D wait for vertical blanking interval " |
| 2507 | "to occur."; |
| 2508 | |
| 2509 | const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions."; |
| 2510 | const char kEnableDesktopIosPromotionsDescription[] = |
| 2511 | "Enable Desktop to iOS promotions, and allow users to see them if they are " |
| 2512 | "eligible."; |
| 2513 | |
James Forshaw | fd0ce34 | 2018-02-14 09:55:39 | [diff] [blame] | 2514 | const char kEnableGpuAppcontainerName[] = "Enable GPU AppContainer Lockdown."; |
| 2515 | const char kEnableGpuAppcontainerDescription[] = |
| 2516 | "Enables the use of an AppContainer for the GPU sandboxed processes to " |
| 2517 | "improve security."; |
| 2518 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2519 | const char kGdiTextPrinting[] = "GDI Text Printing"; |
| 2520 | const char kGdiTextPrintingDescription[] = |
| 2521 | "Use GDI to print text as simply text"; |
| 2522 | |
Henrik Grunell | 67e56ef | 2018-04-10 14:04:09 | [diff] [blame] | 2523 | const char kIncreaseInputAudioBufferSize[] = "Increase input audio buffer size"; |
| 2524 | const char kIncreaseInputAudioBufferSizeDescription[] = |
| 2525 | "Increases the input audio endpoint buffer to 100 ms."; |
| 2526 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2527 | const char kTraceExportEventsToEtwName[] = |
| 2528 | "Enable exporting of tracing events to ETW."; |
| 2529 | const char kTraceExportEventsToEtwDesription[] = |
| 2530 | "If enabled, trace events will be exported to the Event Tracing for " |
| 2531 | "Windows (ETW) and can then be captured by tools such as UIForETW or " |
| 2532 | "Xperf."; |
| 2533 | |
| 2534 | const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API"; |
| 2535 | const char kUseWinrtMidiApiDescription[] = |
| 2536 | "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 or " |
| 2537 | "later)."; |
| 2538 | |
| 2539 | const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar"; |
| 2540 | const char kWindows10CustomTitlebarDescription[] = |
| 2541 | "If enabled, Chrome will draw the titlebar and caption buttons instead of " |
| 2542 | "deferring to Windows."; |
| 2543 | |
| 2544 | #endif // defined(OS_WIN) |
| 2545 | |
| 2546 | // Mac ------------------------------------------------------------------------- |
| 2547 | |
| 2548 | #if defined(OS_MACOSX) |
| 2549 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2550 | const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps."; |
| 2551 | const char kAppWindowCyclingDescription[] = |
| 2552 | "Changes the behavior of Cmd+` when a Chrome App becomes active. When " |
| 2553 | "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a " |
| 2554 | "browser window, and browser windows will not be cycled when a Chrome App " |
| 2555 | "is active."; |
| 2556 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2557 | const char kFullscreenToolbarRevealName[] = |
| 2558 | "Enables the toolbar in fullscreen to reveal itself."; |
| 2559 | const char kFullscreenToolbarRevealDescription[] = |
| 2560 | "Reveal the toolbar in fullscreen for a short period when the tab strip " |
| 2561 | "has changed."; |
| 2562 | |
| 2563 | const char kContentFullscreenName[] = "Improved Content Fullscreen"; |
| 2564 | const char kContentFullscreenDescription[] = |
| 2565 | "Fullscreen content window detaches from main browser window and goes to " |
| 2566 | "a new space without moving or changing the original browser window."; |
| 2567 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2568 | const char kDialogTouchBarName[] = "Dialog Touch Bar"; |
| 2569 | const char kDialogTouchBarDescription[] = |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2570 | "Shows Dialog buttons on the Touch Bar."; |
| 2571 | |
| 2572 | const char kHostedAppsInWindowsName[] = |
| 2573 | "Allow hosted apps to be opened in windows"; |
| 2574 | const char kHostedAppsInWindowsDescription[] = |
| 2575 | "Allows hosted apps to be opened in windows instead of being limited to " |
| 2576 | "tabs."; |
| 2577 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2578 | const char kMacRTLName[] = "Enable RTL"; |
| 2579 | const char kMacRTLDescription[] = "Mirrors the UI for RTL language users"; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2580 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2581 | const char kMacSystemShareMenuName[] = "Enable System Share Menu"; |
| 2582 | const char kMacSystemShareMenuDescription[] = |
Leonard Grey | 2bdd08f | 2017-10-03 18:40:52 | [diff] [blame] | 2583 | "Enables sharing via macOS share extensions."; |
| 2584 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2585 | const char kMacTouchBarName[] = "Hardware Touch Bar"; |
| 2586 | const char kMacTouchBarDescription[] = "Control the use of the Touch Bar."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2587 | |
| 2588 | const char kMacV2SandboxName[] = "Mac V2 Sandbox"; |
| 2589 | const char kMacV2SandboxDescription[] = |
| 2590 | "Eliminates the unsandboxed warmup phase and sandboxes processes for their " |
| 2591 | "entire life cycle."; |
| 2592 | |
| 2593 | const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows."; |
| 2594 | const char kMacViewsNativeAppWindowsDescription[] = |
| 2595 | "Controls whether to use Toolkit-Views based Chrome App windows."; |
| 2596 | |
| 2597 | const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager."; |
| 2598 | const char kMacViewsTaskManagerDescription[] = |
| 2599 | "Controls whether to use the Toolkit-Views based Task Manager."; |
| 2600 | |
| 2601 | const char kTabDetachingInFullscreenName[] = |
| 2602 | "Allow tab detaching in fullscreen"; |
| 2603 | const char kTabDetachingInFullscreenDescription[] = |
| 2604 | "Allow tabs to detach from the tabstrip when in fullscreen mode on Mac."; |
| 2605 | |
| 2606 | const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus"; |
| 2607 | const char kTabStripKeyboardFocusDescription[] = |
| 2608 | "Enable keyboard focus for the tabs in the tab strip."; |
| 2609 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2610 | #endif |
| 2611 | |
| 2612 | // Chrome OS ------------------------------------------------------------------- |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2613 | |
| 2614 | #if defined(OS_CHROMEOS) |
| 2615 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2616 | const char kAcceleratedMjpegDecodeName[] = |
| 2617 | "Hardware-accelerated mjpeg decode for captured frame"; |
| 2618 | const char kAcceleratedMjpegDecodeDescription[] = |
| 2619 | "Enable hardware-accelerated mjpeg decode for captured frame where " |
| 2620 | "available."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2621 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2622 | const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click"; |
| 2623 | const char kAllowTouchpadThreeFingerClickDescription[] = |
| 2624 | "Enables touchpad three-finger-click as middle button."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2625 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2626 | const char kArcBootCompleted[] = "Load Android apps automatically"; |
| 2627 | const char kArcBootCompletedDescription[] = |
| 2628 | "Allow Android apps to start automatically after signing in."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2629 | |
Lev Rumyantsev | 7a854431 | 2017-08-18 19:26:51 | [diff] [blame] | 2630 | const char kArcNativeBridgeExperimentName[] = |
| 2631 | "Enable native bridge experiment for ARC"; |
| 2632 | const char kArcNativeBridgeExperimentDescription[] = |
| 2633 | "Enables experimental native bridge feature."; |
| 2634 | |
lgcheng | ecd1c1a6 | 2018-01-09 02:59:46 | [diff] [blame] | 2635 | const char kArcUsbHostName[] = "Enable ARC USB host integration"; |
| 2636 | const char kArcUsbHostDescription[] = |
| 2637 | "Allow Android apps to use USB host feature on ChromeOS devices."; |
| 2638 | |
Kevin Cernekee | b7f96a5 | 2017-10-25 17:40:18 | [diff] [blame] | 2639 | const char kArcVpnName[] = "Enable ARC VPN integration"; |
| 2640 | const char kArcVpnDescription[] = |
| 2641 | "Allow Android VPN clients to tunnel Chrome traffic."; |
| 2642 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2643 | const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode"; |
| 2644 | const char kAshEnableUnifiedDesktopDescription[] = |
| 2645 | "Enable unified desktop mode which allows a window to span multiple " |
| 2646 | "displays."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2647 | |
Sean Kau | 5e95619 | 2017-10-06 22:25:17 | [diff] [blame] | 2648 | const char kBulkPrintersName[] = "Bulk Printers Policy"; |
| 2649 | const char kBulkPrintersDescription[] = "Enables the new bulk printers policy"; |
| 2650 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2651 | const char kCaptivePortalBypassProxyName[] = |
| 2652 | "Bypass proxy for Captive Portal Authorization"; |
| 2653 | const char kCaptivePortalBypassProxyDescription[] = |
| 2654 | "If proxy is configured, it usually prevents from authorization on " |
| 2655 | "different captive portals. This enables opening captive portal " |
| 2656 | "authorization dialog in a separate window, which ignores proxy settings."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2657 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2658 | const char kCrOSComponentName[] = "Chrome OS Component"; |
| 2659 | const char kCrOSComponentDescription[] = |
Xiaochu Liu | 4c1b75d | 2017-12-18 23:52:08 | [diff] [blame] | 2660 | "Disable the use of componentized escpr CUPS filter."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2661 | |
Xiaochu Liu | 51d03fd | 2017-09-08 23:51:02 | [diff] [blame] | 2662 | const char kCrOSContainerName[] = "Chrome OS Container"; |
| 2663 | const char kCrOSContainerDescription[] = |
| 2664 | "Enable the use of Chrome OS Container utility."; |
| 2665 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2666 | const char kCrosRegionsModeName[] = "Cros-regions load mode"; |
| 2667 | const char kCrosRegionsModeDescription[] = |
| 2668 | "This flag controls cros-regions load mode"; |
| 2669 | const char kCrosRegionsModeDefault[] = "Default"; |
| 2670 | const char kCrosRegionsModeOverride[] = "Override VPD values."; |
| 2671 | const char kCrosRegionsModeHide[] = "Hide VPD values."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2672 | |
Joel Hockey | 0ab36feb0 | 2018-05-03 00:09:32 | [diff] [blame] | 2673 | const char kCrostiniFilesName[] = "Crostini Files"; |
| 2674 | const char kCrostiniFilesDescription[] = "Enable Crostini Files in Files app."; |
| 2675 | |
Jacob Dufault | 2becbc48 | 2017-08-25 00:36:35 | [diff] [blame] | 2676 | const char kDisableLockScreenAppsName[] = "Disable lock screen note taking"; |
| 2677 | const char kDisableLockScreenAppsDescription[] = |
| 2678 | "Disable new-note action handler apps on the lock screen. The user will " |
| 2679 | "not be able to launch the preferred note-taking action from the lock " |
| 2680 | "screen, provided that the app supports lock screen note taking."; |
| 2681 | |
Sammie Quon | ef6b488 | 2017-09-14 16:50:05 | [diff] [blame] | 2682 | const char kDisableTabletAutohideTitlebarsName[] = |
| 2683 | "Disable autohide titlebars in tablet mode"; |
| 2684 | const char kDisableTabletAutohideTitlebarsDescription[] = |
| 2685 | "Disable tablet mode autohide titlebars functionality. The user will be " |
| 2686 | "able to see the titlebar in tablet mode."; |
| 2687 | |
Xiaoqian Dai | 24b33eb | 2018-04-10 21:01:57 | [diff] [blame] | 2688 | const char kDisableTabletSplitViewName[] = "Disable split view in Tablet mode"; |
| 2689 | const char kDisableTabletSplitViewDescription[] = |
| 2690 | "Disable split view for Chrome OS tablet mode."; |
| 2691 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2692 | const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences."; |
| 2693 | const char kEnablePerUserTimezoneDescription[] = |
| 2694 | "Chrome OS system timezone preference is stored and handled for each user " |
| 2695 | "individually."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2696 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2697 | const char kDisableSystemTimezoneAutomaticDetectionName[] = |
| 2698 | "SystemTimezoneAutomaticDetection policy support"; |
| 2699 | const char kDisableSystemTimezoneAutomaticDetectionDescription[] = |
| 2700 | "Disable system timezone automatic detection device policy."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2701 | |
Lei Zhang | 2eca908 | 2017-10-17 20:42:50 | [diff] [blame] | 2702 | const char kEnableBackgroundBlurName[] = "Enable background blur."; |
| 2703 | const char kEnableBackgroundBlurDescription[] = |
Wenzhao Zang | 50fb0b2 | 2017-11-07 01:38:42 | [diff] [blame] | 2704 | "Enables background blur for the Peeking Launcher and Tab Switcher."; |
Alex Newcomer | 43cb7f1 | 2017-07-28 17:37:39 | [diff] [blame] | 2705 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2706 | const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; |
| 2707 | const char kEnableChromevoxArcSupportDescription[] = |
| 2708 | "Enable ChromeVox screen reader features in ARC"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2709 | |
F#m | 75862c9 | 2018-01-25 19:10:47 | [diff] [blame] | 2710 | const char kEnableDisplayZoomSettingName[] = "Enable display zoom settings"; |
| 2711 | const char kEnableDisplayZoomSettingDescription[] = |
| 2712 | "Allows the user to modify the display size or zoom via the chrome display " |
| 2713 | "settings page."; |
| 2714 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2715 | const char kEnableEhvInputName[] = |
| 2716 | "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2717 | const char kEnableEhvInputDescription[] = |
| 2718 | "Enable access to emoji, handwriting and voice input form opt-in IME menu."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2719 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2720 | const char kEnableEncryptionMigrationName[] = |
| 2721 | "Enable encryption migration of user data"; |
| 2722 | const char kEnableEncryptionMigrationDescription[] = |
| 2723 | "If enabled and the device supports ARC, the user will be asked to update " |
| 2724 | "the encryption of user data when the user signs in."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2725 | |
Blake O'Hare | 9e9317b2 | 2017-10-24 02:49:35 | [diff] [blame] | 2726 | const char kEnableFloatingVirtualKeyboardName[] = |
| 2727 | "Enable floating virtual keyboard"; |
| 2728 | const char kEnableFloatingVirtualKeyboardDescription[] = |
| 2729 | "If enabled, the keyboard will use floating behavior by default."; |
| 2730 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2731 | const char kEnableImeMenuName[] = "Enable opt-in IME menu"; |
| 2732 | const char kEnableImeMenuDescription[] = |
| 2733 | "Enable access to the new IME menu in the Language Settings page."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2734 | |
Darren Shen | 3e49c63d | 2018-03-28 04:45:50 | [diff] [blame] | 2735 | const char kEnableStylusVirtualKeyboardName[] = |
| 2736 | "Enable stylus virtual keyboard"; |
| 2737 | const char kEnableStylusVirtualKeyboardDescription[] = |
| 2738 | "If enabled, tapping with a stylus will show the handwriting virtual " |
| 2739 | "keyboard."; |
| 2740 | |
Jianzhou Feng | 4fb046c | 2018-03-29 07:38:54 | [diff] [blame] | 2741 | const char kEnableFullscreenHandwritingVirtualKeyboardName[] = |
| 2742 | "Enable full screen handwriting virtual keyboard"; |
| 2743 | const char kEnableFullscreenHandwritingVirtualKeyboardDescription[] = |
| 2744 | "If enabled, the handwriting virtual keyboard will allow user to write " |
| 2745 | "anywhere on the screen"; |
| 2746 | |
Jordy Greenblatt | 2f23df2 | 2018-02-22 19:49:19 | [diff] [blame] | 2747 | const char kEnableUnifiedMultiDeviceSettingsName[] = |
| 2748 | "Enable unified MultiDevice settings"; |
| 2749 | const char kEnableUnifiedMultiDeviceSettingsDescription[] = |
| 2750 | "If enabled, the Chrome OS Settings UI will include a menu for the unified " |
| 2751 | "MultiDevice settings."; |
| 2752 | |
| 2753 | const char kEnableUnifiedMultiDeviceSetupName[] = |
| 2754 | "Enable unified MultiDevice setup"; |
| 2755 | const char kEnableUnifiedMultiDeviceSetupDescription[] = |
| 2756 | "Enable the device to setup all MultiDevice services in a single workflow."; |
| 2757 | |
Klemen Kozjek | 05fc451 | 2017-10-18 12:51:10 | [diff] [blame] | 2758 | const char kEnableZipArchiverPackerName[] = "ZIP archiver - Packer"; |
| 2759 | const char kEnableZipArchiverPackerDescription[] = |
| 2760 | "Enable the ability to archive files on Drive in the Files app"; |
| 2761 | |
Tatsuhisa Yamaguchi | 5c07d253 | 2017-11-10 03:52:41 | [diff] [blame] | 2762 | const char kZipArchiverUnpackerName[] = "ZIP archiver - Unpacker"; |
| 2763 | const char kZipArchiverUnpackerDescription[] = |
| 2764 | "Enable or disable the ability to unpack archives in incognito mode"; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2765 | |
| 2766 | const char kEolNotificationName[] = "Disable Device End of Life notification."; |
| 2767 | const char kEolNotificationDescription[] = |
| 2768 | "Disable Notifcation when Device is End of Life."; |
| 2769 | |
| 2770 | const char kExperimentalAccessibilityFeaturesName[] = |
| 2771 | "Experimental accessibility features"; |
| 2772 | const char kExperimentalAccessibilityFeaturesDescription[] = |
| 2773 | "Enable additional accessibility features in the Settings page."; |
| 2774 | |
| 2775 | const char kExperimentalInputViewFeaturesName[] = |
| 2776 | "Experimental input view features"; |
| 2777 | const char kExperimentalInputViewFeaturesDescription[] = |
| 2778 | "Enable experimental features for IME input views."; |
| 2779 | |
| 2780 | const char kFileManagerTouchModeName[] = "Files App. touch mode"; |
| 2781 | const char kFileManagerTouchModeDescription[] = |
| 2782 | "Touchscreen-specific interactions of the Files app."; |
| 2783 | |
| 2784 | const char kFirstRunUiTransitionsName[] = |
| 2785 | "Animated transitions in the first-run tutorial"; |
| 2786 | const char kFirstRunUiTransitionsDescription[] = |
| 2787 | "Transitions during first-run tutorial are animated."; |
| 2788 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2789 | const char kForceEnableStylusToolsName[] = "Force enable stylus features"; |
| 2790 | const char kForceEnableStylusToolsDescription[] = |
| 2791 | "Forces display of the stylus tools menu in the shelf and the stylus " |
| 2792 | "section in settings, even if there is no attached stylus device."; |
| 2793 | |
| 2794 | const char kGestureEditingName[] = "Gesture editing for the virtual keyboard."; |
| 2795 | const char kGestureEditingDescription[] = |
| 2796 | "Enable/Disable gesture editing option in the settings page for the " |
| 2797 | "virtual keyboard."; |
| 2798 | |
| 2799 | const char kGestureTypingName[] = "Gesture typing for the virtual keyboard."; |
| 2800 | const char kGestureTypingDescription[] = |
| 2801 | "Enable/Disable gesture typing option in the settings page for the virtual " |
| 2802 | "keyboard."; |
| 2803 | |
| 2804 | const char kInputViewName[] = "Input views"; |
| 2805 | const char kInputViewDescription[] = |
| 2806 | "Enable IME extensions to supply custom views for user input such as " |
| 2807 | "virtual keyboards."; |
| 2808 | |
Megumi Hattori | 5a0d418 | 2018-03-06 11:09:50 | [diff] [blame] | 2809 | const char kLockScreenNotificationName[] = "Lock screen notification"; |
| 2810 | const char kLockScreenNotificationDescription[] = |
| 2811 | "Enable notifications on the lock screen."; |
| 2812 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2813 | const char kMemoryPressureThresholdName[] = |
| 2814 | "Memory discard strategy for advanced pressure handling"; |
| 2815 | const char kMemoryPressureThresholdDescription[] = |
| 2816 | "Memory discarding strategy to use"; |
| 2817 | const char kConservativeThresholds[] = |
| 2818 | "Conservative memory pressure release strategy"; |
| 2819 | const char kAggressiveCacheDiscardThresholds[] = |
| 2820 | "Aggressive cache release strategy"; |
| 2821 | const char kAggressiveTabDiscardThresholds[] = |
| 2822 | "Aggressive tab release strategy"; |
| 2823 | const char kAggressiveThresholds[] = |
| 2824 | "Aggressive tab and cache release strategy"; |
| 2825 | |
| 2826 | const char kMtpWriteSupportName[] = "MTP write support"; |
| 2827 | const char kMtpWriteSupportDescription[] = |
| 2828 | "MTP write support in File System API (and file manager). In-place editing " |
| 2829 | "operations are not supported."; |
| 2830 | |
| 2831 | const char kMultideviceName[] = "Enable multidevice features"; |
| 2832 | const char kMultideviceDescription[] = |
| 2833 | "Enables UI for controlling multidevice features."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2834 | |
Kyle Horimoto | 027590fb | 2018-02-13 22:19:48 | [diff] [blame] | 2835 | const char kMultiDeviceApiName[] = "Enables the MultiDevice API"; |
| 2836 | const char kMultiDeviceApiDescription[] = |
| 2837 | "Enable Mojo-based API which provides synced device metadata and the " |
| 2838 | "ability to connect to other devices associated the logged-in Google " |
| 2839 | "account."; |
| 2840 | |
Bailey Berro | dca8eeca0 | 2017-11-18 00:49:12 | [diff] [blame] | 2841 | const char kNativeSmbName[] = "Native Smb Client"; |
| 2842 | const char kNativeSmbDescription[] = |
| 2843 | "If enabled, allows connections to an smb filesystem via Files app"; |
Bailey Berro | fc0da1b | 2017-11-02 11:02:30 | [diff] [blame] | 2844 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2845 | const char kNetworkPortalNotificationName[] = |
| 2846 | "Notifications about captive portals"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2847 | const char kNetworkPortalNotificationDescription[] = |
| 2848 | "If enabled, notification is displayed when device is connected to a " |
| 2849 | "network behind captive portal."; |
| 2850 | |
Steven Bennetts | 77b6797 | 2017-12-14 19:38:32 | [diff] [blame] | 2851 | const char kDisableNetworkSettingsConfigName[] = |
| 2852 | "Disable Settings based Network Configuration"; |
| 2853 | const char kDisableNetworkSettingsConfigDescription[] = |
| 2854 | "Disables the Settings based network configuration UI and restores the " |
| 2855 | "Views based configuration dialog."; |
stevenjb | e1d45738 | 2017-05-24 22:37:24 | [diff] [blame] | 2856 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2857 | const char kNewKoreanImeName[] = "New Korean IME"; |
| 2858 | const char kNewKoreanImeDescription[] = |
| 2859 | "New Korean IME, which is based on Google Input Tools' HMM engine."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2860 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2861 | const char kNewZipUnpackerName[] = "New ZIP unpacker"; |
| 2862 | const char kNewZipUnpackerDescription[] = |
| 2863 | "New ZIP unpacker flow, based on the File System Provider API."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2864 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2865 | const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect"; |
| 2866 | const char kPhysicalKeyboardAutocorrectDescription[] = |
| 2867 | "Enable physical keyboard autocorrect for US keyboard, which can provide " |
| 2868 | "suggestions as typing on physical keyboard."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2869 | |
| 2870 | const char kPrinterProviderSearchAppName[] = |
| 2871 | "Chrome Web Store Gallery app for printer drivers"; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2872 | const char kPrinterProviderSearchAppDescription[] = |
| 2873 | "Enables Chrome Web Store Gallery app for printer drivers. The app " |
Vitalii Iarko | 7df52014 | 2017-07-07 12:53:19 | [diff] [blame] | 2874 | "searches Chrome Web Store for extensions that support printing to a USB " |
| 2875 | "printer with specific USB ID."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2876 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2877 | const char kQuickUnlockPinName[] = "Quick Unlock (PIN)"; |
| 2878 | const char kQuickUnlockPinDescription[] = |
| 2879 | "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS " |
| 2880 | "device on the lock screen after you have signed into your device."; |
| 2881 | const char kQuickUnlockPinSignin[] = "Enable PIN when logging in."; |
| 2882 | const char kQuickUnlockPinSigninDescription[] = |
| 2883 | "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS " |
| 2884 | "device. After changing this flag PIN needs to be set up again."; |
| 2885 | const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)"; |
| 2886 | const char kQuickUnlockFingerprintDescription[] = |
| 2887 | "Enabling fingerprint quick unlock allows you to setup and use a " |
| 2888 | "fingerprint to unlock your Chromebook on the lock screen after you have " |
| 2889 | "signed into your device."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2890 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2891 | const char kOfficeEditingComponentAppName[] = |
| 2892 | "Office Editing for Docs, Sheets & Slides"; |
| 2893 | const char kOfficeEditingComponentAppDescription[] = |
| 2894 | "Office Editing for Docs, Sheets & Slides for testing purposes."; |
Daniel Erat | 33054b2 | 2017-06-27 16:18:07 | [diff] [blame] | 2895 | |
James Cook | 0ba192bf | 2017-12-01 20:53:11 | [diff] [blame] | 2896 | const char kShowTapsName[] = "Show taps"; |
| 2897 | const char kShowTapsDescription[] = |
| 2898 | "Draws a circle at each touch point, which makes touch points more obvious " |
| 2899 | "when projecting or mirroring the display. Similar to the Android OS " |
| 2900 | "developer option."; |
| 2901 | |
| 2902 | const char kShowTouchHudName[] = "Show HUD for touch points"; |
| 2903 | const char kShowTouchHudDescription[] = |
| 2904 | "Shows a trail of colored dots for the last few touch points. Pressing " |
| 2905 | "Ctrl-Alt-I shows a heads-up display view in the top-left corner. Helps " |
| 2906 | "debug hardware issues that generate spurious touch events."; |
| 2907 | |
Chung-Sheng Wu | 468b0b3 | 2017-09-01 14:41:57 | [diff] [blame] | 2908 | const char kSysInternalsName[] = "Enable Sys-Internals"; |
| 2909 | const char kSysInternalsDescription[] = |
| 2910 | "If enabled, user can monitor system information at " |
| 2911 | "chrome://sys-internals."; |
| 2912 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2913 | const char kTeamDrivesName[] = "Enable Team Drives Integration"; |
| 2914 | const char kTeamDrivesDescription[] = |
| 2915 | "If enabled, files under Team Drives will appear in the Files app."; |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 2916 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2917 | const char kTetherName[] = "Instant Tethering"; |
| 2918 | const char kTetherDescription[] = |
| 2919 | "Enables Instant Tethering. Instant Tethering allows your nearby Google " |
| 2920 | "phone to share its Internet connection with this device."; |
stanisc | 14bed0b13 | 2017-05-10 17:46:37 | [diff] [blame] | 2921 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2922 | const char kTouchscreenCalibrationName[] = |
| 2923 | "Enable/disable touchscreen calibration option in material design settings"; |
| 2924 | const char kTouchscreenCalibrationDescription[] = |
| 2925 | "If enabled, the user can calibrate the touch screen displays in " |
| 2926 | "chrome://settings/display."; |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 2927 | |
Mitsuru Oshima | 63d3f2a | 2017-08-23 00:12:11 | [diff] [blame] | 2928 | // Force UI Mode |
| 2929 | const char kUiModeName[] = "Force Ui Mode"; |
| 2930 | const char kUiModeDescription[] = |
| 2931 | R"*(This flag can be used to force a certain mode on to a chromebook, )*" |
| 2932 | R"*(despite its current orientation. "Tablet" means that the )*" |
| 2933 | R"*(chromebook will act as if it were in tablet mode. "Clamshell" )*" |
| 2934 | R"*(means that the chromebook will act as if it were in clamshell )*" |
| 2935 | R"*(mode . "Auto" means that the chromebook will alternate between )*" |
| 2936 | R"*(the two, based on its orientation.)*"; |
| 2937 | const char kUiModeTablet[] = "TouchView"; |
| 2938 | const char kUiModeClamshell[] = "Clamshell"; |
| 2939 | const char kUiModeAuto[] = "Auto (default)"; |
| 2940 | |
bruthig | eafb0c0 | 2017-06-09 13:11:53 | [diff] [blame] | 2941 | const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 2942 | const char kUiDevToolsDescription[] = |
| 2943 | "Enables inspection of native UI elements. For local inspection use " |
| 2944 | "chrome://inspect#other"; |
| 2945 | |
James Cook | a1bcfa9a | 2018-01-30 00:18:40 | [diff] [blame] | 2946 | const char kUseMashName[] = "Out-of-process system UI (mash)"; |
| 2947 | const char kUseMashDescription[] = |
| 2948 | "Runs the mojo UI service (mus) and the ash window manager and system UI " |
| 2949 | "in a separate process."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2950 | |
Miguel Casas-Sanchez | 8ba32f9 | 2017-11-07 05:03:34 | [diff] [blame] | 2951 | // TODO(mcasas): remove after https://crbug.com/771345. |
| 2952 | const char kUseMonitorColorSpaceName[] = "Use monitor color space"; |
| 2953 | const char kUseMonitorColorSpaceDescription[] = |
| 2954 | "Enables Chrome to use the color space information provided by the monitor" |
| 2955 | " instead of the default sRGB color space."; |
| 2956 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2957 | const char kVideoPlayerChromecastSupportName[] = |
| 2958 | "Experimental Chromecast support for Video Player"; |
| 2959 | const char kVideoPlayerChromecastSupportDescription[] = |
| 2960 | "This option enables experimental Chromecast support for Video Player app " |
| 2961 | "on ChromeOS."; |
| 2962 | |
| 2963 | const char kVirtualKeyboardName[] = "Virtual Keyboard"; |
| 2964 | const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support."; |
| 2965 | |
| 2966 | const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll"; |
| 2967 | const char kVirtualKeyboardOverscrollDescription[] = |
| 2968 | "Enables virtual keyboard overscroll support."; |
| 2969 | |
| 2970 | const char kVoiceInputName[] = "Voice input on virtual keyboard"; |
| 2971 | const char kVoiceInputDescription[] = |
| 2972 | "Enables voice input on virtual keyboard."; |
| 2973 | |
| 2974 | const char kWakeOnPacketsName[] = "Wake On Packets"; |
| 2975 | const char kWakeOnPacketsDescription[] = |
| 2976 | "Enables waking the device based on the receipt of some network packets."; |
orenb | 21da031c | 2017-06-30 21:24:20 | [diff] [blame] | 2977 | |
Weidong Guo | 7ae4753 | 2018-04-05 21:30:37 | [diff] [blame] | 2978 | const char kEnableHomeLauncherName[] = "Enable home launcher"; |
| 2979 | const char kEnableHomeLauncherDescription[] = |
| 2980 | "Enable home launcher in tablet mode."; |
| 2981 | |
wutao | 7bfb1f2 | 2018-04-19 01:30:58 | [diff] [blame] | 2982 | const char kEnableSettingsShortcutSearchName[] = |
| 2983 | "Enable Settings shortcut search"; |
| 2984 | const char kEnableSettingsShortcutSearchDescription[] = |
| 2985 | "Enable Settings shortcut search in launcher."; |
| 2986 | |
yhanada | c5bff5b | 2017-05-18 06:37:09 | [diff] [blame] | 2987 | #endif // defined(OS_CHROMEOS) |
| 2988 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 2989 | // Random platform combinations ----------------------------------------------- |
| 2990 | |
| 2991 | #if defined(OS_WIN) || defined(OS_LINUX) |
| 2992 | |
| 2993 | const char kEnableInputImeApiName[] = "Enable Input IME API"; |
| 2994 | const char kEnableInputImeApiDescription[] = |
| 2995 | "Enable the use of chrome.input.ime API."; |
| 2996 | |
Tom Anderson | 6cbd505 | 2018-05-03 23:49:54 | [diff] [blame] | 2997 | #if !defined(OS_CHROMEOS) |
| 2998 | |
| 2999 | const char kWarnBeforeQuittingFlagName[] = "Warn Before Quitting"; |
| 3000 | const char kWarnBeforeQuittingFlagDescription[] = |
| 3001 | "Confirm to quit by either holding the quit shortcut or pressing it twice."; |
| 3002 | |
| 3003 | #endif // !defined(OS_CHROMEOS) |
| 3004 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3005 | #endif // defined(OS_WIN) || defined(OS_LINUX) |
| 3006 | |
| 3007 | #if defined(OS_WIN) || defined(OS_MACOSX) |
| 3008 | |
| 3009 | const char kAutomaticTabDiscardingName[] = "Automatic tab discarding"; |
| 3010 | const char kAutomaticTabDiscardingDescription[] = |
| 3011 | "If enabled, tabs get automatically discarded from memory when the system " |
| 3012 | "memory is low. Discarded tabs are still visible on the tab strip and get " |
| 3013 | "reloaded when clicked on. Info about discarded tabs can be found at " |
| 3014 | "chrome://discards."; |
| 3015 | |
| 3016 | #endif // defined(OS_WIN) || defined(OS_MACOSX) |
| 3017 | |
| 3018 | // Feature flags -------------------------------------------------------------- |
| 3019 | |
| 3020 | #if BUILDFLAG(ENABLE_VR) |
| 3021 | |
David Dorwin | 5a496c3 | 2017-11-17 01:45:05 | [diff] [blame] | 3022 | const char kWebVrVsyncAlignName[] = "WebVR VSync-aligned timing"; |
| 3023 | const char kWebVrVsyncAlignDescription[] = |
| 3024 | "Align WebVR application rendering with VSync for smoother animations."; |
| 3025 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3026 | #if defined(OS_ANDROID) |
| 3027 | |
Yash Malik | b78e72a7 | 2018-02-21 09:14:10 | [diff] [blame] | 3028 | const char kVrWebInputEditingName[] = "VR browsing web input editing"; |
| 3029 | const char kVrWebInputEditingDescription[] = |
| 3030 | "Allow editing web input fields while in VR mode."; |
| 3031 | |
David Dorwin | 5a496c3 | 2017-11-17 01:45:05 | [diff] [blame] | 3032 | const char kVrBrowsingExperimentalFeaturesName[] = |
| 3033 | "VR browsing experimental features"; |
| 3034 | const char kVrBrowsingExperimentalFeaturesDescription[] = |
| 3035 | "Experimental VR browsing features that are under development."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3036 | |
David Dorwin | 5a496c3 | 2017-11-17 01:45:05 | [diff] [blame] | 3037 | const char kVrBrowsingExperimentalRenderingName[] = |
| 3038 | "VR browsing experimental rendering features"; |
| 3039 | const char kVrBrowsingExperimentalRenderingDescription[] = |
| 3040 | "Experimental rendering features for VR browsing (e.g. power-saving " |
| 3041 | "rendering modes)."; |
Michael Thiessen | b480fe9 | 2017-10-26 16:25:10 | [diff] [blame] | 3042 | |
David Dorwin | 5a496c3 | 2017-11-17 01:45:05 | [diff] [blame] | 3043 | const char kVrBrowsingInCustomTabName[] = "VR browsing in Custom Tabs"; |
| 3044 | const char kVrBrowsingInCustomTabDescription[] = |
| 3045 | "Allow browsing within a VR headset while in a Custom Tab."; |
| 3046 | |
Michael Thiessen | 3789591 | 2018-01-19 20:15:54 | [diff] [blame] | 3047 | const char kVrIconInDaydreamHomeName[] = "Chrome icon in Daydream Home"; |
| 3048 | const char kVrIconInDaydreamHomeDescription[] = |
| 3049 | "Adds an icon to Daydream Home that allows launching Chrome in VR."; |
| 3050 | |
David Dorwin | 5a496c3 | 2017-11-17 01:45:05 | [diff] [blame] | 3051 | const char kWebVrAutopresentFromIntentName[] = |
| 3052 | "WebVR auto presentation from intents"; |
| 3053 | const char kWebVrAutopresentFromIntentDescription[] = |
| 3054 | "Allow auto presentation of WebVR content from trusted first-party apps."; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3055 | |
| 3056 | #endif // OS_ANDROID |
| 3057 | |
Bill Orr | 103ed27 | 2018-02-14 21:23:05 | [diff] [blame] | 3058 | #if BUILDFLAG(ENABLE_OCULUS_VR) |
| 3059 | const char kOculusVRName[] = "Oculus hardware support"; |
| 3060 | const char kOculusVRDescription[] = |
| 3061 | "If enabled, Chrome will use Oculus devices for VR (supported only on " |
| 3062 | "Windows 10 or later)."; |
| 3063 | #endif // ENABLE_OCULUS_VR |
| 3064 | |
Bill Orr | 4952756 | 2017-11-22 16:58:48 | [diff] [blame] | 3065 | #if BUILDFLAG(ENABLE_OPENVR) |
| 3066 | const char kOpenVRName[] = "OpenVR hardware support"; |
| 3067 | const char kOpenVRDescription[] = |
Bill Orr | 5056e69 | 2018-01-17 02:08:07 | [diff] [blame] | 3068 | "If enabled, Chrome will use OpenVR devices for VR (supported only on " |
| 3069 | "Windows 10 or later)."; |
Bill Orr | 4952756 | 2017-11-22 16:58:48 | [diff] [blame] | 3070 | #endif // ENABLE_OPENVR |
| 3071 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3072 | #endif // ENABLE_VR |
| 3073 | |
Nico Weber | af3b00b | 2017-09-11 17:58:17 | [diff] [blame] | 3074 | #if BUILDFLAG(ENABLE_NACL) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3075 | |
| 3076 | const char kNaclDebugMaskName[] = |
| 3077 | "Restrict Native Client GDB-based debugging by pattern"; |
| 3078 | const char kNaclDebugMaskDescription[] = |
| 3079 | "Restricts Native Client application GDB-based debugging by URL of " |
| 3080 | "manifest file. Native Client GDB-based debugging must be enabled for this " |
| 3081 | "option to work."; |
| 3082 | const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything."; |
| 3083 | const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] = |
| 3084 | "Debug everything except secure shell and the PNaCl translator."; |
| 3085 | const char kNaclDebugMaskChoiceIncludeDebug[] = |
| 3086 | "Debug only if manifest URL ends with debug.nmf."; |
| 3087 | |
| 3088 | const char kNaclDebugName[] = "Native Client GDB-based debugging"; |
| 3089 | const char kNaclDebugDescription[] = |
| 3090 | "Enable GDB debug stub. This will stop a Native Client application on " |
| 3091 | "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it."; |
| 3092 | |
| 3093 | const char kNaclName[] = "Native Client"; |
| 3094 | const char kNaclDescription[] = |
| 3095 | "Support Native Client for all web applications, even those that were not " |
| 3096 | "installed from the Chrome Web Store."; |
| 3097 | |
| 3098 | const char kPnaclSubzeroName[] = "Force PNaCl Subzero"; |
| 3099 | const char kPnaclSubzeroDescription[] = |
| 3100 | "Force the use of PNaCl's fast Subzero translator for all pexe files."; |
| 3101 | |
Nico Weber | af3b00b | 2017-09-11 17:58:17 | [diff] [blame] | 3102 | #endif // BUILDFLAG(ENABLE_NACL) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3103 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3104 | #if BUILDFLAG(ENABLE_WEBRTC) |
| 3105 | |
| 3106 | const char kWebrtcH264WithOpenh264FfmpegName[] = |
| 3107 | "WebRTC H.264 software video encoder/decoder"; |
| 3108 | const char kWebrtcH264WithOpenh264FfmpegDescription[] = |
| 3109 | "When enabled, an H.264 software video encoder/decoder pair is included. " |
| 3110 | "If a hardware encoder/decoder is also available it may be used instead of " |
| 3111 | "this encoder/decoder."; |
| 3112 | |
| 3113 | #endif // BUILDFLAG(ENABLE_WEBRTC) |
| 3114 | |
James Cook | f9d34d2 | 2017-10-04 16:39:35 | [diff] [blame] | 3115 | #if defined(OS_CHROMEOS) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3116 | |
Wenzhao Zang | 50fb0b2 | 2017-11-07 01:38:42 | [diff] [blame] | 3117 | const char kAshDisableLoginDimAndBlurName[] = |
| 3118 | "Disable dimming and blur on login screen."; |
| 3119 | const char kAshDisableLoginDimAndBlurDescription[] = |
| 3120 | "Disable dimming and blur on login screen."; |
| 3121 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3122 | const char kAshDisableSmoothScreenRotationName[] = |
| 3123 | "Disable smooth rotation animations."; |
| 3124 | const char kAshDisableSmoothScreenRotationDescription[] = |
| 3125 | "Disable smooth rotation animations."; |
| 3126 | |
Qiang Xu | b7e92107 | 2017-12-07 21:02:11 | [diff] [blame] | 3127 | const char kAshEnableDisplayMoveWindowAccelsName[] = |
| 3128 | "Enable shortcuts for moving window between displays."; |
| 3129 | const char kAshEnableDisplayMoveWindowAccelsDescription[] = |
| 3130 | "Enable shortcuts for moving window between displays."; |
| 3131 | |
wutao | c70d7b9 | 2017-11-01 08:06:01 | [diff] [blame] | 3132 | const char kAshEnableKeyboardShortcutViewerName[] = |
| 3133 | "Enable keyboard shortcut viewer."; |
| 3134 | const char kAshEnableKeyboardShortcutViewerDescription[] = |
| 3135 | "Enable keyboard shortcut viewer."; |
| 3136 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3137 | const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode."; |
| 3138 | const char kAshEnableMirroredScreenDescription[] = |
| 3139 | "Enable the mirrored screen mode. This mode flips the screen image " |
| 3140 | "horizontally."; |
| 3141 | |
Sammie Quon | 4e14214d | 2018-01-30 22:45:24 | [diff] [blame] | 3142 | const char kAshEnableNewOverviewUiName[] = "Enable new overview UI."; |
| 3143 | const char kAshEnableNewOverviewUiDescription[] = |
| 3144 | "Enables the new overview mode UI."; |
| 3145 | |
wutao | d9cbcd3 | 2018-02-17 02:31:06 | [diff] [blame] | 3146 | const char kAshEnableNewOverviewAnimationsName[] = |
| 3147 | "Enable new overview animations."; |
| 3148 | const char kAshEnableNewOverviewAnimationsDescription[] = |
| 3149 | "Enables the new overview mode animations."; |
| 3150 | |
Qiang Xu | fa19cfd | 2018-01-29 19:36:50 | [diff] [blame] | 3151 | const char kAshEnablePersistentWindowBoundsName[] = |
| 3152 | "Enable persistent window bounds in multi-displays scenario."; |
| 3153 | const char kAshEnablePersistentWindowBoundsDescription[] = |
| 3154 | "Enable persistent window bounds in multi-displays scenario."; |
| 3155 | |
wutao | c5062be | 2018-03-16 02:16:23 | [diff] [blame] | 3156 | const char kAshEnableTrilinearFilteringName[] = "Enable trilinear filtering."; |
| 3157 | const char kAshEnableTrilinearFilteringDescription[] = |
| 3158 | "Enable trilinear filtering."; |
| 3159 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3160 | const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI"; |
| 3161 | const char kAshShelfColorDescription[] = |
| 3162 | "Enables/disables the shelf color to be a derived from the wallpaper. The " |
| 3163 | "--ash-shelf-color-scheme flag defines how that color is derived."; |
| 3164 | |
| 3165 | const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; |
| 3166 | const char kAshShelfColorSchemeDescription[] = |
| 3167 | "Specify how the color is derived from the wallpaper. This flag is only " |
| 3168 | "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted"; |
| 3169 | const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant"; |
| 3170 | const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant"; |
| 3171 | const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant"; |
| 3172 | const char kAshShelfColorSchemeLightMuted[] = "Light & Muted"; |
| 3173 | const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted"; |
| 3174 | const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted"; |
| 3175 | |
Wenzhao Zang | 06a2887 | 2018-02-23 04:01:35 | [diff] [blame] | 3176 | const char kEnableNewWallpaperPickerName[] = "Enable new wallpaper picker"; |
| 3177 | const char kEnableNewWallpaperPickerDescription[] = |
| 3178 | "Enable the redesigned wallpaper picker with new wallpaper collections."; |
| 3179 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3180 | const char kMaterialDesignInkDropAnimationSpeedName[] = |
Mike Wasserman | 2115b16 | 2017-09-19 23:42:37 | [diff] [blame] | 3181 | "Material design ink drop animation speed"; |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3182 | const char kMaterialDesignInkDropAnimationSpeedDescription[] = |
| 3183 | "Sets the speed of the experimental visual feedback animations for " |
| 3184 | "material design."; |
| 3185 | const char kMaterialDesignInkDropAnimationFast[] = "Fast"; |
| 3186 | const char kMaterialDesignInkDropAnimationSlow[] = "Slow"; |
| 3187 | |
| 3188 | const char kUiShowCompositedLayerBordersName[] = |
| 3189 | "Show UI composited layer borders"; |
| 3190 | const char kUiShowCompositedLayerBordersDescription[] = |
| 3191 | "Show border around composited layers created by UI."; |
| 3192 | const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass"; |
| 3193 | const char kUiShowCompositedLayerBordersSurface[] = "Surface"; |
| 3194 | const char kUiShowCompositedLayerBordersLayer[] = "Layer"; |
| 3195 | const char kUiShowCompositedLayerBordersAll[] = "All"; |
| 3196 | |
| 3197 | const char kUiSlowAnimationsName[] = "Slow UI animations"; |
| 3198 | const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow."; |
| 3199 | |
James Cook | f9d34d2 | 2017-10-04 16:39:35 | [diff] [blame] | 3200 | #endif // defined(OS_CHROMEOS) |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3201 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3202 | #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 3203 | |
| 3204 | const char kAutofillCreditCardUploadName[] = |
| 3205 | "Enable offering upload of Autofilled credit cards"; |
| 3206 | const char kAutofillCreditCardUploadDescription[] = |
| 3207 | "Enables a new option to upload credit cards to Google Payments for sync " |
| 3208 | "to all Chrome devices."; |
| 3209 | |
| 3210 | #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 3211 | |
Becca Hughes | dc96e84 | 2018-05-04 22:48:28 | [diff] [blame] | 3212 | #if defined(OS_ANDROID) |
| 3213 | |
| 3214 | const char kDisplayCutoutAPIName[] = |
| 3215 | "Enable support for the Display Cutout API"; |
| 3216 | const char kDisplayCutoutAPIDescription[] = |
| 3217 | "Enables developers to support devices that have a display cutout."; |
| 3218 | |
| 3219 | #endif // defined(OS_ANDROID) |
| 3220 | |
Brett Wilson | 7b44537e | 2017-08-18 01:38:28 | [diff] [blame] | 3221 | // ============================================================================ |
| 3222 | // Don't just add flags to the end, put them in the right section in |
| 3223 | // alphabetical order just like the header file. |
| 3224 | // ============================================================================ |
| 3225 | |
vabr | 0215a8e | 2017-03-28 12:47:34 | [diff] [blame] | 3226 | } // namespace flag_descriptions |