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