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