blob: 98b61d2977d37a2b2d5cb1d3f8e597c9f8745b7f [file] [log] [blame]
vabr0215a8e2017-03-28 12:47:341// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/flag_descriptions.h"
6
7namespace flag_descriptions {
8
horodb71a5a2017-06-09 16:08:249const char kBrowserSideNavigationName[] = "Enable browser side navigation";
10
11const char kBrowserSideNavigationDescription[] =
horo3beccfb2017-06-19 14:47:0112 "Enable browser side navigation (aka PlzNavigate).";
horodb71a5a2017-06-09 16:08:2413
vabr0215a8e2017-03-28 12:47:3414// Material Design version of chrome://bookmarks
15
16const char kEnableMaterialDesignBookmarksName[] =
17 "Enable Material Design bookmarks";
18
19const char kEnableMaterialDesignBookmarksDescription[] =
20 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
21 "bookmarks page.";
22
23// Material Design version of chrome://policy
24
25const char kEnableMaterialDesignPolicyPageName[] =
26 "Enable Material Design policy page";
27
28const char kEnableMaterialDesignPolicyPageDescription[] =
29 "If enabled, the chrome://md-policy URL loads the Material Design "
30 "policy page.";
31
vabr0215a8e2017-03-28 12:47:3432// Material Design version of chrome://extensions
33
34const char kEnableMaterialDesignExtensionsName[] =
35 "Enable Material Design extensions";
36
37const char kEnableMaterialDesignExtensionsDescription[] =
38 "If enabled, the chrome://extensions/ URL loads the Material Design "
39 "extensions page.";
40
41// Material Design version of feedback form
42
43const char kEnableMaterialDesignFeedbackName[] =
44 "Enable Material Design feedback";
45
46const char kEnableMaterialDesignFeedbackDescription[] =
47 "If enabled, reporting an issue will load the Material Design feedback "
48 "UI.";
49
galinapae72e152017-05-12 13:12:2850const char kContextualSuggestionsCarouselName[] =
51 "Enable Contextual Suggestions";
52
53const char kContextualSuggestionsCarouselDescription[] =
54 "If enabled, shows contextual suggestions in a horizontal carousel in "
55 "bottom sheet content.";
56
vabr0215a8e2017-03-28 12:47:3457// Report URL to SafeSearch
58
59const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting.";
60
61const char kSafeSearchUrlReportingDescription[] =
62 "If enabled, inappropriate URLs can be reported back to SafeSearch.";
63
64// Device scale factor change in content crbug.com/485650.
65
66const char kEnableUseZoomForDsfName[] =
67 "Use Blink's zoom for device scale factor.";
68
69const char kEnableUseZoomForDsfDescription[] =
70 "If enabled, Blink uses its zooming mechanism to scale content for "
71 "device scale factor.";
72
73const char kEnableUseZoomForDsfChoiceDefault[] = "Default";
74
75const char kEnableUseZoomForDsfChoiceEnabled[] = "Enabled";
76
77const char kEnableUseZoomForDsfChoiceDisabled[] = "Disabled";
78
brettw5f9c1642017-05-14 17:12:4879const char kNostatePrefetchName[] = "No-State Prefetch";
vabr0215a8e2017-03-28 12:47:3480
81const char kNostatePrefetchDescription[] =
82 R"*("No-State Prefetch" pre-downloads resources to improve load )*"
83 R"*(times. "Prerender" does a full pre-rendering of the page, to )*"
84 R"*(improve load times even more. "Simple Load" does nothing and is )*"
85 R"*(similar to disabling the feature, but collects more metrics for )*"
86 R"*(comparison purposes.)*";
87
88const char kSpeculativePrefetchName[] = "Speculative Prefetch";
89
90const char kSpeculativePrefetchDescription[] =
91 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
92 R"*(load times, based on a local database (see chrome://predictors). )*"
93 R"*("Learning" means that only the database construction is enabled, )*"
94 R"*("Prefetching" that learning and prefetching are enabled.)*";
95
horo201d49492017-05-19 05:31:4096const char kOffMainThreadFetchName[] = "Off-main-thread fetch for Web Workers";
97
98const char kOffMainThreadFetchDescription[] =
99 "If enabled, the resource fetches from worker threads will not be blocked "
100 "by the busy main thread.";
101
vabr0215a8e2017-03-28 12:47:34102// Force Tablet Mode
103
104const char kForceTabletModeName[] = "Force Tablet Mode";
105
106const char kForceTabletModeDescription[] =
107 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
108 R"*(despite its current orientation. "TouchView" means that the )*"
109 R"*(chromebook will act as if it were in touch view mode. "Clamshell" )*"
110 R"*(means that the chromebook will act as if it were in clamshell )*"
111 R"*(mode . "Auto" means that the chromebook will alternate between )*"
112 R"*(the two, based on its orientation.)*";
113
114const char kForceTabletModeTouchview[] = "TouchView";
115
116const char kForceTabletModeClamshell[] = "Clamshell";
117
118const char kForceTabletModeAuto[] = "Auto (default)";
119
120// Print Preview features
rbpotterc51ee3622017-05-19 20:24:53121#if !defined(OS_WIN) && !defined(OS_MACOSX)
vabr0215a8e2017-03-28 12:47:34122const char kPrintPdfAsImageName[] = "Print Pdf as Image";
123
124const char kPrintPdfAsImageDescription[] =
125 "If enabled, an option to print PDF files as images will be available "
126 "in print preview.";
rbpotterc51ee3622017-05-19 20:24:53127#endif
vabr0215a8e2017-03-28 12:47:34128
brettw5f9c1642017-05-14 17:12:48129#if !defined(DISABLE_NACL)
130
vabr0215a8e2017-03-28 12:47:34131const char kNaclName[] = "Native Client";
vabr0215a8e2017-03-28 12:47:34132const char kNaclDescription[] =
133 "Support Native Client for all web applications, even those that were "
134 "not installed from the Chrome Web Store.";
135
vabr0215a8e2017-03-28 12:47:34136const char kNaclDebugName[] = "Native Client GDB-based debugging";
vabr0215a8e2017-03-28 12:47:34137const char kNaclDebugDescription[] =
138 "Enable GDB debug stub. This will stop a Native Client application on "
139 "startup and wait for nacl-gdb (from the NaCl SDK) to attach to it.";
140
vabr0215a8e2017-03-28 12:47:34141const char kPnaclSubzeroName[] = "Force PNaCl Subzero";
vabr0215a8e2017-03-28 12:47:34142const char kPnaclSubzeroDescription[] =
143 "Force the use of PNaCl's fast Subzero translator for all pexe files.";
144
vabr0215a8e2017-03-28 12:47:34145const char kNaclDebugMaskName[] =
146 "Restrict Native Client GDB-based debugging by pattern";
vabr0215a8e2017-03-28 12:47:34147const char kNaclDebugMaskDescription[] =
148 "Restricts Native Client application GDB-based debugging by URL of "
149 "manifest file. Native Client GDB-based debugging must be enabled for "
150 "this option to work.";
vabr0215a8e2017-03-28 12:47:34151const char kNaclDebugMaskChoiceDebugAll[] = "Debug everything.";
vabr0215a8e2017-03-28 12:47:34152const char kNaclDebugMaskChoiceExcludeUtilsPnacl[] =
153 "Debug everything except secure shell and the PNaCl translator.";
vabr0215a8e2017-03-28 12:47:34154const char kNaclDebugMaskChoiceIncludeDebug[] =
155 "Debug only if manifest URL ends with debug.nmf.";
156
brettw5f9c1642017-05-14 17:12:48157#endif
158
vabr0215a8e2017-03-28 12:47:34159const char kEnableHttpFormWarningName[] =
160 "Show in-form warnings for sensitive fields when the top-level page is "
161 "not HTTPS";
162
163const char kEnableHttpFormWarningDescription[] =
164 "Attaches a warning UI to any password or credit card fields detected "
165 "when the top-level page is not HTTPS";
166
167const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure";
168
169const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages";
vabr0215a8e2017-03-28 12:47:34170const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous";
elawrence52854122017-05-31 04:36:01171const char kMarkHttpAsNonSecureAfterEditing[] =
172 "Warn on HTTP after editing forms";
173const char kMarkHttpAsNonSecureWhileIncognito[] =
174 "Warn on HTTP while in Incognito mode";
175const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] =
176 "Warn on HTTP while in Incognito mode or after editing forms";
vabr0215a8e2017-03-28 12:47:34177
msrameka8443112017-04-24 23:20:10178// Material design of the Incognito NTP.
179
180extern const char kMaterialDesignIncognitoNTPName[] =
181 "Material Design Incognito NTP.";
182
183extern const char kMaterialDesignIncognitoNTPDescription[] =
184 "If enabled, the Incognito New Tab page uses the new material design "
185 "with a better readable text.";
186
vabr0215a8e2017-03-28 12:47:34187const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
188
189const char kSavePageAsMhtmlDescription[] =
190 "Enables saving pages as MHTML: a single text file containing HTML and "
191 "all sub-resources.";
192
etienneb9a4b5302017-06-08 06:28:46193// Flag and values for MHTML Generator options lab.
vabr0215a8e2017-03-28 12:47:34194
195const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
196
197const char kMhtmlGeneratorOptionDescription[] =
198 "Provides experimental options for MHTML file generator.";
199
200const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
201
202const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
203
204const char kDeviceDiscoveryNotificationsName[] =
205 "Device Discovery Notifications";
206
207const char kDeviceDiscoveryNotificationsDescription[] =
208 "Device discovery notifications on local network.";
209
210#if defined(OS_WIN)
211
212const char kCloudPrintXpsName[] = "XPS in Google Cloud Print";
213
214const char kCloudPrintXpsDescription[] =
215 "XPS enables advanced options for classic printers connected to the "
216 "Cloud Print with Chrome. Printers must be re-connected after changing "
217 "this flag.";
218
219#endif // defined(OS_WIN)
220
221const char kLoadMediaRouterComponentExtensionName[] =
222 "Load Media Router Component Extension";
223
224const char kLoadMediaRouterComponentExtensionDescription[] =
225 "Loads the Media Router component extension at startup.";
226
227const char kPrintPreviewRegisterPromosName[] =
228 "Print Preview Registration Promos";
229
230const char kPrintPreviewRegisterPromosDescription[] =
231 "Enable registering unregistered cloud printers from print preview.";
232
233const char kScrollPredictionName[] = "Scroll prediction";
234
235const char kTopChromeMd[] = "UI Layout for the browser's top chrome";
236
237const char kTopChromeMdDescription[] =
238 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*";
239
240const char kTopChromeMdMaterial[] = "Normal";
241
242const char kTopChromeMdMaterialHybrid[] = "Touch";
243
patricialor325fa4c2017-05-08 07:51:31244const char kSiteDetails[] = "Site Details";
245
246const char kSiteDetailsDescription[] =
247 "Adds UI in MD Settings to view all content settings for a specific "
248 "origin.";
249
vabr0215a8e2017-03-28 12:47:34250const char kSiteSettings[] = "Site settings with All sites and Site details";
251
252const char kSiteSettingsDescription[] =
253 "Adds new ways of viewing Site settings.";
254
255const char kSecondaryUiMd[] =
256 "Material Design in the rest of the browser's native UI";
257
258const char kSecondaryUiMdDescription[] =
259 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, "
260 "etc.). On Mac, this enables MacViews, which uses toolkit-views for "
261 "native browser dialogs.";
262
263const char kScrollPredictionDescription[] =
264 "Predicts the finger's future position during scrolls allowing time to "
265 "render the frame before the finger is there.";
266
benwellsc421ccdb2017-06-28 05:10:32267const char kAppBannersName[] = "App Banners";
vabr0215a8e2017-03-28 12:47:34268
benwellsc421ccdb2017-06-28 05:10:32269const char kAppBannersDescription[] =
270 "Enable the display of Progressive Web App banners, which prompt a user to "
271 "add a web app to their shelf, or other platform-specific equivalent.";
vabr0215a8e2017-03-28 12:47:34272
273const char kBypassAppBannerEngagementChecksName[] =
274 "Bypass user engagement checks";
275
276const char kBypassAppBannerEngagementChecksDescription[] =
277 "Bypasses user engagement checks for displaying app banners, such as "
278 "requiring that users have visited the site before and that the banner "
279 "hasn't been shown recently. This allows developers to test that other "
280 "eligibility requirements for showing app banners, such as having a "
281 "manifest, are met.";
282
283#if defined(OS_ANDROID)
284
285const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher";
286
287const char kAccessibilityTabSwitcherDescription[] =
288 "Enable the accessibility tab switcher for Android.";
289
csashidf20b102017-04-04 01:53:24290const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility";
291
292const char kAndroidAutofillAccessibilityDescription[] =
293 "Enable accessibility for autofill popup.";
294
vabr0215a8e2017-03-28 12:47:34295const char kEnablePhysicalWebName[] = "Enable the Physical Web.";
296
297const char kEnablePhysicalWebDescription[] =
298 "Enable scanning for URLs from Physical Web objects.";
299
300#endif // defined(OS_ANDROID)
301
302const char kTouchEventsName[] = "Touch Events API";
303
304const char kTouchEventsDescription[] =
305 "Force Touch Events API feature detection to always be enabled or "
306 "disabled, or to be enabled when a touchscreen is detected on startup "
307 "(Automatic, the default).";
308
309const char kTouchAdjustmentName[] = "Touch adjustment";
310
311const char kTouchAdjustmentDescription[] =
312 "Refine the position of a touch gesture in order to compensate for "
313 "touches having poor resolution compared to a mouse.";
314
brettw5f9c1642017-05-14 17:12:48315const char kCompositedLayerBordersName[] = "Composited render layer borders";
vabr0215a8e2017-03-28 12:47:34316
317const char kCompositedLayerBordersDescription[] =
318 "Renders a border around composited Render Layers to help debug and "
319 "study layer compositing.";
320
brettw5f9c1642017-05-14 17:12:48321const char kGlCompositedTextureQuadBordersName[] =
vabr0215a8e2017-03-28 12:47:34322 "GL composited texture quad borders";
323
324const char kGlCompositedTextureQuadBordersDescription[] =
325 "Renders a border around GL composited texture quads to help debug and "
326 "study overlay support.";
327
brettw5f9c1642017-05-14 17:12:48328const char kShowOverdrawFeedbackName[] = "Show overdraw feedback";
vabr0215a8e2017-03-28 12:47:34329
330const char kShowOverdrawFeedbackDescription[] =
331 "Visualize overdraw by color-coding elements based on if they have "
332 "other elements drawn underneath.";
333
334const char kUiPartialSwapName[] = "Partial swap";
335
336const char kUiPartialSwapDescription[] = "Sets partial swap behavior.";
337
338const char kDebugShortcutsName[] = "Debugging keyboard shortcuts";
339
340const char kIgnoreGpuBlacklistName[] = "Override software rendering list";
341
342const char kIgnoreGpuBlacklistDescription[] =
343 "Overrides the built-in software rendering list and enables "
344 "GPU-acceleration on unsupported system configurations.";
345
346const char kInertVisualViewportName[] = "Inert visual viewport.";
347
348const char kInertVisualViewportDescription[] =
349 "Experiment to have all APIs reflect the layout viewport. This will "
350 "make window.scroll properties relative to the layout viewport.";
351
Catherine Chungd4d24362017-06-09 21:12:12352const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode";
353
354const char kInProductHelpDemoModeChoiceDescription[] =
355 "Selects the In-Product Help demo mode.";
356
ccameronc570ec92017-04-14 05:36:25357const char kColorCorrectRenderingName[] = "Color correct rendering";
358
359const char kColorCorrectRenderingDescription[] =
360 "Enables color correct rendering of web content.";
361
benwells0eee2292017-06-28 08:41:22362const char kExperimentalAppBannersName[] = "Experimental app banners";
363
364const char kExperimentalAppBannersDescription[] =
365 "Enables a new experimental app banner flow and UI";
366
vabr0215a8e2017-03-28 12:47:34367const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features";
368
369const char kExperimentalCanvasFeaturesDescription[] =
370 "Enables the use of experimental canvas features which are still in "
371 "development.";
372
373const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
374
375const char kAccelerated2dCanvasDescription[] =
376 "Enables the use of the GPU to perform 2d canvas rendering instead of "
377 "using software rendering.";
378
379const char kDisplayList2dCanvasName[] = "Display list 2D canvas";
380
381const char kDisplayList2dCanvasDescription[] =
382 "Enables the use of display lists to record 2D canvas commands. This "
383 "allows 2D canvas rasterization to be performed on separate thread.";
384
vabr0215a8e2017-03-28 12:47:34385const char kExperimentalExtensionApisName[] = "Experimental Extension APIs";
386
387const char kExperimentalExtensionApisDescription[] =
388 "Enables experimental extension APIs. Note that the extension gallery "
389 "doesn't allow you to upload extensions that use experimental APIs.";
390
391const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs";
392
393const char kExtensionsOnChromeUrlsDescription[] =
394 "Enables running extensions on chrome:// URLs, where extensions "
395 "explicitly request this permission.";
396
Robert Liao31ed2f32017-06-30 01:35:27397const char kExperimentalFullscreenExitUIName[] =
398 "Experimental fullscreen exit UI";
399
400const char kExperimentalFullscreenExitUIDescription[] =
401 "Displays experimental UI to allow mouse and touch input methods to exit "
402 "fullscreen mode.";
403
vabr0215a8e2017-03-28 12:47:34404const char kFastUnloadName[] = "Fast tab/window close";
405
406const char kFastUnloadDescription[] =
407 "Enables fast tab/window closing - runs a tab's onunload js handler "
408 "independently of the GUI.";
409
Yutaka Hirano6bbe1e32017-05-24 09:25:58410const char kFetchKeepaliveTimeoutSettingName[] =
411 "Fetch API keepalive timeout setting";
412const char kFetchKeepaliveTimeoutSettingDescription[] =
413 "This is for setting "
414 "the timeout value for Fetch API with keepalive option and SendBeacon";
415
vabr0215a8e2017-03-28 12:47:34416const char kUserConsentForExtensionScriptsName[] =
417 "User consent for extension scripts";
418
419const char kUserConsentForExtensionScriptsDescription[] =
420 "Require user consent for an extension running a script on the page, if "
421 "the extension requested permission to run on all urls.";
422
423const char kHistoryRequiresUserGestureName[] =
424 "New history entries require a user gesture.";
425
426const char kHistoryRequiresUserGestureDescription[] =
427 "Require a user gesture to add a history entry.";
428
429const char kHyperlinkAuditingName[] = "Hyperlink auditing";
430
431const char kHyperlinkAuditingDescription[] = "Sends hyperlink auditing pings.";
432
433#if defined(OS_ANDROID)
434
brettw5f9c1642017-05-14 17:12:48435const char kContextualSearchName[] = "Contextual Search";
vabr0215a8e2017-03-28 12:47:34436
437const char kContextualSearchDescription[] =
438 "Whether or not Contextual Search is enabled.";
439
440const char kContextualSearchContextualCardsBarIntegration[] =
441 "Contextual Search - Contextual Cards Integration";
442
443const char kContextualSearchContextualCardsBarIntegrationDescription[] =
444 "Whether or not integration of Contextual Cards data in the Contextual "
445 "Search Bar is enabled.";
446
brettw5f9c1642017-05-14 17:12:48447const char kContextualSearchSingleActionsName[] =
vabr0215a8e2017-03-28 12:47:34448 "Contextual Search - Single Actions";
449
450const char kContextualSearchSingleActionsDescription[] =
451 "Whether or not single actions using Contextual Cards data in the "
452 "Contextual Search Bar is enabled.";
453
brettw5f9c1642017-05-14 17:12:48454const char kContextualSearchUrlActionsName[] =
455 "Contextual Search - URL Actions";
vabr0215a8e2017-03-28 12:47:34456
457const char kContextualSearchUrlActionsDescription[] =
458 "Whether or not URL actions using Contextual Cards data in the "
459 "Contextual Search Bar is enabled.";
460
461#endif // defined(OS_ANDROID)
462
463const char kSmoothScrollingName[] = "Smooth Scrolling";
464
465const char kSmoothScrollingDescription[] =
466 "Animate smoothly when scrolling page content.";
467
468const char kOverlayScrollbarsName[] = "Overlay Scrollbars";
469
470const char kOverlayScrollbarsDescription[] =
471 "Enable the experimental overlay scrollbars implementation. You must "
472 "also enable threaded compositing to have the scrollbars animate.";
473
474const char kShowAutofillTypePredictionsName[] = "Show Autofill predictions";
475
476const char kShowAutofillTypePredictionsDescription[] =
477 "Annotates web forms with Autofill field type predictions as "
478 "placeholder text.";
479
480const char kTcpFastOpenName[] = "TCP Fast Open";
481
482const char kTcpFastOpenDescription[] =
483 "Enable the option to send extra authentication information in the "
484 "initial SYN packet for a previously connected client, allowing faster "
485 "data send start.";
486
487const char kTouchDragDropName[] = "Touch initiated drag and drop";
488
489const char kTouchDragDropDescription[] =
490 "Touch drag and drop can be initiated through long press on a draggable "
491 "element.";
492
493const char kTouchSelectionStrategyName[] = "Touch text selection strategy";
494
495const char kTouchSelectionStrategyDescription[] =
496 "Controls how text selection granularity changes when touch text "
497 "selection handles are dragged. Non-default behavior is experimental.";
498
499const char kTouchSelectionStrategyCharacter[] = "Character";
500
501const char kTouchSelectionStrategyDirection[] = "Direction";
502
503const char kWalletServiceUseSandboxName[] =
504 "Use Google Payments sandbox servers";
505
506const char kWalletServiceUseSandboxDescription[] =
507 "For developers: use the sandbox service for Google Payments API "
508 "calls.";
509
510const char kOverscrollHistoryNavigationName[] = "Overscroll history navigation";
511
512const char kOverscrollHistoryNavigationDescription[] =
513 "Experimental history navigation in response to horizontal overscroll.";
514
515const char kOverscrollHistoryNavigationSimpleUi[] = "Simple";
516
517const char kOverscrollStartThresholdName[] = "Overscroll start threshold";
518
519const char kOverscrollStartThresholdDescription[] =
520 "Changes overscroll start threshold relative to the default value.";
521
522const char kOverscrollStartThreshold133Percent[] = "133%";
523
524const char kOverscrollStartThreshold166Percent[] = "166%";
525
526const char kOverscrollStartThreshold200Percent[] = "200%";
527
528const char kScrollEndEffectName[] = "Scroll end effect";
529
530const char kScrollEndEffectDescription[] =
531 "Experimental scroll end effect in response to vertical overscroll.";
532
533const char kWebgl2Name[] = "WebGL 2.0";
534
535const char kWebgl2Description[] = "Allow web applications to access WebGL 2.0.";
536
537const char kWebglDraftExtensionsName[] = "WebGL Draft Extensions";
538
539const char kWebglDraftExtensionsDescription[] =
540 "Enabling this option allows web applications to access the WebGL "
541 "Extensions that are still in draft status.";
542
543const char kWebrtcHwDecodingName[] = "WebRTC hardware video decoding";
544
545const char kWebrtcHwDecodingDescription[] =
546 "Support in WebRTC for decoding video streams using platform hardware.";
547
548const char kWebrtcHwEncodingName[] = "WebRTC hardware video encoding";
549
550const char kWebrtcHwEncodingDescription[] =
551 "Support in WebRTC for encoding video streams using platform hardware.";
552
553const char kWebrtcHwH264EncodingName[] = "WebRTC hardware h264 video encoding";
554
555const char kWebrtcHwH264EncodingDescription[] =
556 "Support in WebRTC for encoding h264 video streams using platform "
557 "hardware.";
558
braveyao96c9b342017-04-25 18:23:19559const char kWebrtcHwVP8EncodingName[] = "WebRTC hardware vp8 video encoding";
560
561const char kWebrtcHwVP8EncodingDescription[] =
562 "Support in WebRTC for encoding vp8 video streams using platform "
563 "hardware.";
564
vabr0215a8e2017-03-28 12:47:34565const char kWebrtcSrtpAesGcmName[] =
566 "Negotiation with GCM cipher suites for SRTP in WebRTC";
567
568const char kWebrtcSrtpAesGcmDescription[] =
569 "When enabled, WebRTC will try to negotiate GCM cipher suites for "
570 "SRTP.";
571
572const char kWebrtcStunOriginName[] = "WebRTC Stun origin header";
573
574const char kWebrtcStunOriginDescription[] =
575 "When enabled, Stun messages generated by WebRTC will contain the "
576 "Origin header.";
577
578const char kWebrtcEchoCanceller3Name[] = "WebRTC Echo Canceller 3.";
579
580const char kWebrtcEchoCanceller3Description[] =
581 "Experimental WebRTC echo canceller (AEC3).";
582
583#if defined(OS_ANDROID)
584
585const char kMediaScreenCaptureName[] = "Experimental ScreenCapture.";
586
587const char kMediaScreenCaptureDescription[] =
588 "Enable this option for experimental ScreenCapture feature on Android.";
589
590#endif // defined(OS_ANDROID)
591
592#if BUILDFLAG(ENABLE_WEBRTC)
593
594const char kWebrtcH264WithOpenh264FfmpegName[] =
595 "WebRTC H.264 software video encoder/decoder";
596
597const char kWebrtcH264WithOpenh264FfmpegDescription[] =
598 "When enabled, an H.264 software video encoder/decoder pair is "
599 "included. If a hardware encoder/decoder is also available it may be "
600 "used instead of this encoder/decoder.";
601
602#endif // BUILDFLAG(ENABLE_WEBRTC)
603
604const char kWebvrName[] = "WebVR";
605
606const char kWebvrDescription[] =
607 "Enabling this option allows web applications to access experimental "
608 "Virtual Reality APIs.";
609
mthiesse700b0b62017-05-19 01:37:31610#if BUILDFLAG(ENABLE_VR)
611
vabr0215a8e2017-03-28 12:47:34612const char kWebvrExperimentalRenderingName[] =
613 "WebVR experimental rendering optimizations";
614
615const char kWebvrExperimentalRenderingDescription[] =
616 "Enabling this option activates experimental rendering path "
617 "optimizations for WebVR.";
618
mthiesse700b0b62017-05-19 01:37:31619#endif // BUILDFLAG(ENABLE_VR)
620
vabr0215a8e2017-03-28 12:47:34621const char kGamepadExtensionsName[] = "Gamepad Extensions";
622
623const char kGamepadExtensionsDescription[] =
624 "Enabling this option allows web applications to access experimental "
625 "extensions to the Gamepad APIs.";
626
627#if defined(OS_ANDROID)
628
629const char kNewPhotoPickerName[] = "Enable new Photopicker";
630
631const char kNewPhotoPickerDescription[] =
632 "Activates the new picker for selecting photos.";
633
634#endif // defined(OS_ANDROID)
635
636#if defined(OS_ANDROID)
637
638const char kEnableOskOverscrollName[] = "Enable OSK Overscroll";
639
640const char kEnableOskOverscrollDescription[] =
641 "Enable OSK overscroll support. With this flag on, the OSK will only "
642 "resize the visual viewport.";
643
644#endif // defined(OS_ANDROID)
645
646const char kQuicName[] = "Experimental QUIC protocol";
647
648const char kQuicDescription[] = "Enable experimental QUIC protocol support.";
649
650const char kSslVersionMaxName[] = "Maximum TLS version enabled.";
651
652const char kSslVersionMaxDescription[] = "Set maximum enabled TLS version.";
653
654const char kSslVersionMaxTls12[] = "TLS 1.2";
655
656const char kSslVersionMaxTls13[] = "TLS 1.3";
657
658const char kEnableTokenBindingName[] = "Token Binding.";
659
660const char kEnableTokenBindingDescription[] = "Enable Token Binding support.";
661
vabr0215a8e2017-03-28 12:47:34662const char kPassiveDocumentEventListenersDescription[] =
663 "Forces touchstart, and touchmove event listeners on document level "
664 "targets (which haven't requested otherwise) to be treated as passive.";
665
666const char kPassiveDocumentEventListenersName[] =
667 "Document Level Event Listeners Passive Default";
668
669const char kPassiveEventListenersDueToFlingDescription[] =
670 "Forces touchstart, and first touchmove per scroll event listeners "
671 "during fling to be treated as passive.";
672
673const char kPassiveEventListenersDueToFlingName[] =
674 "Touch Event Listeners Passive Default During Fling";
675
676const char kPassiveEventListenerTrue[] = "True (when unspecified)";
677
678const char kPassiveEventListenerForceAllTrue[] = "Force All True";
679
680const char kPassiveEventListenerDefaultName[] =
681 "Passive Event Listener Override";
682
683const char kPassiveEventListenerDefaultDescription[] =
684 "Forces touchstart, touchmove, mousewheel and wheel event listeners "
685 "(which haven't requested otherwise) to be treated as passive. This "
686 "will break touch/wheel behavior on some websites but is useful for "
687 "demonstrating the potential performance benefits of adopting passive "
688 "event listeners.";
689
vabr0215a8e2017-03-28 12:47:34690const char kImportantSitesInCbdName[] =
691 "Important sites options in clear browsing data dialog";
692
693const char kImportantSitesInCbdDescription[] =
694 "Include the option to whitelist important sites in the clear browsing "
695 "data dialog.";
696
vabr0215a8e2017-03-28 12:47:34697#if defined(USE_ASH)
698
brettw81668cf2017-05-15 22:57:34699const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
vabr0215a8e2017-03-28 12:47:34700
701const char kAshShelfColorDescription[] =
bruthigd8b95962017-03-31 19:38:34702 "Enables/disables the shelf color to be a derived from the wallpaper. The "
703 "--ash-shelf-color-scheme flag defines how that color is derived.";
vabr0215a8e2017-03-28 12:47:34704
bruthigd8b95962017-03-31 19:38:34705const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
vabr0215a8e2017-03-28 12:47:34706
bruthigd8b95962017-03-31 19:38:34707const char kAshShelfColorSchemeDescription[] =
708 "Specify how the color is derived from the wallpaper. This flag is only "
709 "used when the --ash-shelf-color flag is enabled. Defaults to Dark & Muted";
vabr0215a8e2017-03-28 12:47:34710
bruthigd8b95962017-03-31 19:38:34711const char kAshShelfColorSchemeLightVibrant[] = "Light & Vibrant";
vabr0215a8e2017-03-28 12:47:34712
bruthigd8b95962017-03-31 19:38:34713const char kAshShelfColorSchemeNormalVibrant[] = "Normal & Vibrant";
vabr0215a8e2017-03-28 12:47:34714
bruthigd8b95962017-03-31 19:38:34715const char kAshShelfColorSchemeDarkVibrant[] = "Dark & Vibrant";
vabr0215a8e2017-03-28 12:47:34716
bruthigd8b95962017-03-31 19:38:34717const char kAshShelfColorSchemeLightMuted[] = "Light & Muted";
718
719const char kAshShelfColorSchemeNormalMuted[] = "Normal & Muted";
720
721const char kAshShelfColorSchemeDarkMuted[] = "Dark & Muted";
vabr0215a8e2017-03-28 12:47:34722
vabr0215a8e2017-03-28 12:47:34723const char kAshEnableMirroredScreenName[] = "Enable mirrored screen mode.";
724
725const char kAshEnableMirroredScreenDescription[] =
726 "Enable the mirrored screen mode. This mode flips the screen image "
727 "horizontally.";
728
wutaob161bf22017-04-26 16:55:03729const char kAshDisableSmoothScreenRotationName[] =
730 "Disable smooth rotation animations.";
wutao2c0ca182017-04-06 22:40:54731
wutaob161bf22017-04-26 16:55:03732const char kAshDisableSmoothScreenRotationDescription[] =
733 "Disable smooth rotation animations.";
wutao2c0ca182017-04-06 22:40:54734
vabr0215a8e2017-03-28 12:47:34735const char kMaterialDesignInkDropAnimationFast[] = "Fast";
736
737const char kMaterialDesignInkDropAnimationSlow[] = "Slow";
738
739const char kMaterialDesignInkDropAnimationSpeedName[] =
740 "Material Design Ink Drop Animation Speed";
741
742const char kMaterialDesignInkDropAnimationSpeedDescription[] =
743 "Sets the speed of the experimental visual feedback animations for "
744 "material design.";
745
746const char kUiSlowAnimationsName[] = "Slow UI animations";
747
748const char kUiSlowAnimationsDescription[] = "Makes all UI animations slow.";
749
reveman5be07ac82017-04-14 01:06:05750const char kUiShowCompositedLayerBordersName[] =
751 "Show UI composited layer borders";
752
753const char kUiShowCompositedLayerBordersDescription[] =
754 "Show border around composited layers created by UI.";
755
756const char kUiShowCompositedLayerBordersRenderPass[] = "RenderPass";
757
758const char kUiShowCompositedLayerBordersSurface[] = "Surface";
759
760const char kUiShowCompositedLayerBordersLayer[] = "Layer";
761
762const char kUiShowCompositedLayerBordersAll[] = "All";
763
vabr0215a8e2017-03-28 12:47:34764#endif // defined(USE_ASH)
765
766const char kJavascriptHarmonyShippingName[] =
767 "Latest stable JavaScript features";
768
769const char kJavascriptHarmonyShippingDescription[] =
770 "Some web pages use legacy or non-standard JavaScript extensions that "
771 "may conflict with the latest JavaScript features. This flag allows "
772 "disabling support of those features for compatibility with such "
773 "pages.";
774
775const char kJavascriptHarmonyName[] = "Experimental JavaScript";
776
777const char kJavascriptHarmonyDescription[] =
778 "Enable web pages to use experimental JavaScript features.";
779
vabr0215a8e2017-03-28 12:47:34780const char kEnableAsmWasmName[] =
781 "Experimental Validate Asm.js and convert to WebAssembly when valid.";
782
783const char kEnableAsmWasmDescription[] =
784 R"*(Validate Asm.js when "use asm" is present and then convert to )*"
785 R"*(WebAssembly.)*";
786
787const char kEnableSharedArrayBufferName[] =
788 "Experimental enabled SharedArrayBuffer support in JavaScript.";
789
790const char kEnableSharedArrayBufferDescription[] =
791 "Enable SharedArrayBuffer support in JavaScript.";
792
793const char kEnableWasmName[] = "WebAssembly structured cloning support.";
vabr0215a8e2017-03-28 12:47:34794const char kEnableWasmDescription[] =
795 "Enable web pages to use WebAssembly structured cloning.";
796
mtrofinc8717b52017-04-19 14:27:22797const char kEnableWasmStreamingName[] =
798 "WebAssembly streaming compile/instantiate support.";
799const char kEnableWasmStreamingDescription[] =
800 "WebAssembly.{compile|instantiate} taking a Response as parameter.";
801
vabr0215a8e2017-03-28 12:47:34802#if defined(OS_ANDROID)
803
804const char kMediaDocumentDownloadButtonName[] =
805 "Download button when opening a page with media url.";
806
807const char kMediaDocumentDownloadButtonDescription[] =
808 "Allow a download button to show up when opening a page with media "
809 "url.";
810
811#endif // defined(OS_ANDROID)
812
813const char kSoftwareRasterizerName[] = "3D software rasterizer";
814
815const char kSoftwareRasterizerDescription[] =
816 "Fall back to a 3D software rasterizer when the GPU cannot be used.";
817
818const char kGpuRasterizationName[] = "GPU rasterization";
819
820const char kGpuRasterizationDescription[] =
821 "Use GPU to rasterize web content. Requires impl-side painting.";
822
823const char kForceGpuRasterization[] = "Force-enabled for all layers";
824
825const char kGpuRasterizationMsaaSampleCountName[] =
826 "GPU rasterization MSAA sample count.";
827
828const char kGpuRasterizationMsaaSampleCountDescription[] =
829 "Specify the number of MSAA samples for GPU rasterization.";
830
831const char kGpuRasterizationMsaaSampleCountZero[] = "0";
832
833const char kGpuRasterizationMsaaSampleCountTwo[] = "2";
834
835const char kGpuRasterizationMsaaSampleCountFour[] = "4";
836
837const char kGpuRasterizationMsaaSampleCountEight[] = "8";
838
839const char kGpuRasterizationMsaaSampleCountSixteen[] = "16";
840
841const char kSlimmingPaintInvalidationName[] = "Slimming paint invalidation.";
842
843const char kSlimmingPaintInvalidationDescription[] =
844 "Whether to enable a new paint invalidation system.";
845
846const char kExperimentalSecurityFeaturesName[] =
847 "Potentially annoying security features";
848
849const char kExperimentalSecurityFeaturesDescription[] =
850 "Enables several security features that will likely break one or more "
851 "pages that you visit on a daily basis. Strict mixed content checking, "
852 "for example. And locking powerful features to secure contexts. This "
853 "flag will probably annoy you.";
854
855const char kExperimentalWebPlatformFeaturesName[] =
856 "Experimental Web Platform features";
857
858const char kExperimentalWebPlatformFeaturesDescription[] =
859 "Enables experimental Web Platform features that are in development.";
860
vabr0215a8e2017-03-28 12:47:34861const char kOriginTrialsName[] = "Origin Trials";
862
863const char kOriginTrialsDescription[] =
864 "Enables origin trials for controlling access to feature/API "
865 "experiments.";
866
867const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps";
868
869const char kBleAdvertisingInExtensionsDescription[] =
870 "Enables BLE Advertising in Chrome Apps. BLE Advertising might "
871 "interfere with regular use of Bluetooth Low Energy features.";
872
873const char kDevtoolsExperimentsName[] = "Developer Tools experiments";
874
875const char kDevtoolsExperimentsDescription[] =
876 "Enables Developer Tools experiments. Use Settings panel in Developer "
877 "Tools to toggle individual experiments.";
878
879const char kSilentDebuggerExtensionApiName[] = "Silent Debugging";
880
881const char kSilentDebuggerExtensionApiDescription[] =
882 "Do not show the infobar when an extension attaches to a page via "
883 "chrome.debugger API. This is required to debug extension background "
884 "pages.";
885
886const char kShowTouchHudName[] = "Show HUD for touch points";
887
888const char kShowTouchHudDescription[] =
889 "Enables a heads-up display at the top-left corner of the screen that "
890 "lists information about the touch-points on the screen.";
891
892const char kPreferHtmlOverPluginsName[] = "Prefer HTML over Flash";
893
894const char kPreferHtmlOverPluginsDescription[] =
895 "Prefer HTML content by hiding Flash from the list of plugins.";
896
897const char kAllowNaclSocketApiName[] = "NaCl Socket API.";
898
899const char kAllowNaclSocketApiDescription[] =
900 "Allows applications to use NaCl Socket API. Use only to test NaCl "
901 "plugins.";
902
903const char kRunAllFlashInAllowModeName[] =
904 R"*(Run all Flash content when Flash setting is set to "allow")*";
905
906const char kRunAllFlashInAllowModeDescription[] =
907 R"*(For sites that have been set to "allow" Flash content, run all )*"
908 R"*(content including any that has been deemed unimportant.)*";
909
910const char kPinchScaleName[] = "Pinch scale";
911
912const char kPinchScaleDescription[] =
913 "Enables experimental support for scale using pinch.";
914
vabr0215a8e2017-03-28 12:47:34915const char kReducedReferrerGranularityName[] =
916 "Reduce default 'referer' header granularity.";
917
918const char kReducedReferrerGranularityDescription[] =
919 "If a page hasn't set an explicit referrer policy, setting this flag "
920 "will reduce the amount of information in the 'referer' header for "
921 "cross-origin requests.";
922
923#if defined(OS_CHROMEOS)
924
sky527bea52017-05-15 19:15:14925const char kUseMusDescription[] = "Enable the Mojo UI service.";
vabr0215a8e2017-03-28 12:47:34926
sky527bea52017-05-15 19:15:14927const char kUseMusName[] = "Mus";
928
929const char kEnableMashDescription[] =
930 "Mash (UI, Chrome and ash in separate services)";
931
932const char kEnableMusDescription[] =
933 "Mus (UI in separate service, Chrome and ash in same service)";
vabr0215a8e2017-03-28 12:47:34934
935const char kAllowTouchpadThreeFingerClickName[] = "Touchpad three-finger-click";
936
937const char kAllowTouchpadThreeFingerClickDescription[] =
938 "Enables touchpad three-finger-click as middle button.";
939
940const char kAshEnableUnifiedDesktopName[] = "Unified desktop mode";
941
942const char kAshEnableUnifiedDesktopDescription[] =
943 "Enable unified desktop mode which allows a window to span multiple "
944 "displays.";
945
brettw5f9c1642017-05-14 17:12:48946const char kBootAnimationName[] = "Boot animation";
vabr0215a8e2017-03-28 12:47:34947
948const char kBootAnimationDescription[] =
949 "Wallpaper boot animation (except for OOBE case).";
950
hansberryc147785f2017-05-02 23:36:27951const char kTetherName[] = "Instant Tethering";
952
953const char kTetherDescription[] =
954 "Enables Instant Tethering. Instant Tethering allows your nearby Google "
955 "phone to share its Internet connection with this device.";
956
vabr0215a8e2017-03-28 12:47:34957#endif // defined(OS_CHROMEOS)
958
959const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode";
960
961const char kAcceleratedVideoDecodeDescription[] =
962 "Hardware-accelerated video decode where available.";
963
hubbee7499512017-04-05 22:35:04964const char kEnableHDRName[] = "HDR mode";
965
966const char kEnableHDRDescription[] =
967 "Enables HDR support on compatible displays.";
968
brettw5f9c1642017-05-14 17:12:48969const char kCloudImportName[] = "Cloud Import";
vabr0215a8e2017-03-28 12:47:34970
971const char kCloudImportDescription[] = "Allows the cloud-import feature.";
972
973const char kRequestTabletSiteName[] =
974 "Request tablet site option in the settings menu";
975
976const char kRequestTabletSiteDescription[] =
977 "Allows the user to request tablet site. Web content is often optimized "
978 "for tablet devices. When this option is selected the user agent string "
979 "is changed to indicate a tablet device. Web content optimized for "
980 "tablets is received there after for the current tab.";
981
982const char kDebugPackedAppName[] = "Debugging for packed apps";
983
984const char kDebugPackedAppDescription[] =
985 "Enables debugging context menu options such as Inspect Element for "
986 "packed applications.";
987
988const char kDropSyncCredentialName[] =
989 "Drop sync credentials from password manager";
990
991const char kDropSyncCredentialDescription[] =
992 "The password manager will not offer to save the credential used to "
993 "sync.";
994
995const char kPasswordGenerationName[] = "Password generation";
996
997const char kPasswordGenerationDescription[] =
998 "Allow the user to have Chrome generate passwords when it detects "
999 "account creation pages.";
1000
1001const char kPasswordForceSavingName[] = "Force-saving of passwords";
1002
1003const char kPasswordForceSavingDescription[] =
1004 "Allow the user to manually enforce password saving instead of relying "
1005 "on password manager's heuristics.";
1006
1007const char kManualPasswordGenerationName[] = "Manual password generation.";
1008
1009const char kManualPasswordGenerationDescription[] =
1010 "Show a 'Generate Password' option on the context menu for all password "
1011 "fields.";
1012
brettw5f9c1642017-05-14 17:12:481013const char kShowAutofillSignaturesName[] = "Show autofill signatures.";
vabr0215a8e2017-03-28 12:47:341014
1015const char kShowAutofillSignaturesDescription[] =
1016 "Annotates web forms with Autofill signatures as HTML attributes.";
1017
1018const char kSuggestionsWithSubStringMatchName[] =
1019 "Substring matching for Autofill suggestions";
1020
1021const char kSuggestionsWithSubStringMatchDescription[] =
1022 "Match Autofill suggestions based on substrings (token prefixes) rather "
1023 "than just prefixes.";
1024
1025const char kAffiliationBasedMatchingName[] =
1026 "Affiliation based matching in password manager";
1027
1028const char kAffiliationBasedMatchingDescription[] =
1029 "Allow credentials stored for Android applications to be filled into "
1030 "corresponding websites.";
1031
1032const char kProtectSyncCredentialName[] = "Autofill sync credential";
1033
1034const char kProtectSyncCredentialDescription[] =
1035 "How the password manager handles autofill for the sync credential.";
1036
1037const char kPasswordImportExportName[] = "Password import and export";
1038
1039const char kPasswordImportExportDescription[] =
1040 "Import and Export functionality in password settings.";
1041
1042const char kProtectSyncCredentialOnReauthName[] =
1043 "Autofill sync credential only for transactional reauth pages";
1044
1045const char kProtectSyncCredentialOnReauthDescription[] =
1046 "How the password manager handles autofill for the sync credential only "
1047 "for transactional reauth pages.";
1048
1049const char kIconNtpName[] = "Large icons on the New Tab page";
1050
1051const char kIconNtpDescription[] =
1052 "Enable the experimental New Tab page using large icons.";
1053
1054const char kPushApiBackgroundModeName[] = "Enable Push API background mode";
1055
1056const char kPushApiBackgroundModeDescription[] =
1057 "Enable background mode for the Push API. This allows Chrome to "
1058 "continue running after the last window is closed, and to launch at OS "
1059 "startup, if the Push API needs it.";
1060
brettw5f9c1642017-05-14 17:12:481061const char kEnableNavigationTracingName[] = "Enable navigation tracing";
vabr0215a8e2017-03-28 12:47:341062
1063const char kEnableNavigationTracingDescription[] =
1064 "This is to be used in conjunction with the trace-upload-url flag. "
1065 "WARNING: When enabled, Chrome will record performance data for every "
1066 "navigation and upload it to the URL specified by the trace-upload-url "
1067 "flag. The trace may include personally identifiable information (PII) "
1068 "such as the titles and URLs of websites you visit.";
1069
jama86c1ba2017-07-05 17:12:381070const char kEnableNetworkServiceName[] = "Enable network service";
1071
1072const char kEnableNetworkServiceDescription[] =
1073 "Enables the network service, which makes network requests through a "
1074 "separate service. Note: most features don't work with this yet.";
1075
apacible8246df62017-05-26 23:23:171076const char kEnablePictureInPictureName[] = "Enable picture in picture.";
1077
1078const char kEnablePictureInPictureDescription[] =
1079 "Enable the picture in picture feature for videos.";
1080
brettw5f9c1642017-05-14 17:12:481081const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
vabr0215a8e2017-03-28 12:47:341082
1083const char kTraceUploadUrlDescription[] =
1084 "This is to be used in conjunction with the enable-navigation-tracing "
1085 "flag. Please select the label that best describes the recorded traces. "
1086 "This will choose the destination the traces are uploaded to. If you "
1087 "are not sure, select other. If left empty, no traces will be "
1088 "uploaded.";
1089
brettw5f9c1642017-05-14 17:12:481090const char kDisableAudioForDesktopShareName[] =
1091 "Disable Audio For Desktop Share";
vabr0215a8e2017-03-28 12:47:341092
1093const char kDisableAudioForDesktopShareDescription[] =
1094 "With this flag on, desktop share picker window will not let the user "
1095 "choose whether to share audio.";
1096
afakhry008ebca2017-06-19 22:22:271097const char kDisableNightLightName[] = "Disable Night Light";
1098const char kDisableNightLightDescription[] =
1099 "Disable the Night Light feature which controls the color temperature of "
1100 "the screen.";
1101
brettw5f9c1642017-05-14 17:12:481102const char kDisableTabForDesktopShareName[] =
vabr0215a8e2017-03-28 12:47:341103 "Disable Desktop Share with tab source";
1104
1105const char kDisableTabForDesktopShareDescription[] =
1106 "This flag controls whether users can choose a tab for desktop share.";
1107
1108const char kTraceUploadUrlChoiceOther[] = "Other";
1109
1110const char kTraceUploadUrlChoiceEmloading[] = "emloading";
1111
1112const char kTraceUploadUrlChoiceQa[] = "QA";
1113
1114const char kTraceUploadUrlChoiceTesting[] = "Testing";
1115
1116const char kSupervisedUserManagedBookmarksFolderName[] =
1117 "Managed bookmarks for supervised users";
1118
1119const char kSupervisedUserManagedBookmarksFolderDescription[] =
1120 "Enable the managed bookmarks folder for supervised users.";
1121
1122const char kSyncAppListName[] = "App Launcher sync";
1123
1124const char kSyncAppListDescription[] =
1125 "Enable App Launcher sync. This also enables Folders where available "
1126 "(non OSX).";
1127
brettw5f9c1642017-05-14 17:12:481128const char kDriveSearchInChromeLauncherName[] =
vabr0215a8e2017-03-28 12:47:341129 "Drive Search in Chrome App Launcher";
1130
1131const char kDriveSearchInChromeLauncherDescription[] =
1132 "Files from Drive will show up when searching the Chrome App Launcher.";
1133
1134const char kV8CacheOptionsName[] = "V8 caching mode.";
1135
1136const char kV8CacheOptionsDescription[] =
1137 "Caching mode for the V8 JavaScript engine.";
1138
1139const char kV8CacheOptionsParse[] = "Cache V8 parser data.";
1140
1141const char kV8CacheOptionsCode[] = "Cache V8 compiler data.";
1142
1143const char kV8CacheStrategiesForCacheStorageName[] =
1144 "V8 caching strategy for CacheStorage.";
1145
1146const char kV8CacheStrategiesForCacheStorageDescription[] =
1147 "Caching strategy of scripts in CacheStorage for the V8 JavaScript "
1148 "engine.";
1149
1150const char kV8CacheStrategiesForCacheStorageNormal[] = "Normal";
1151
1152const char kV8CacheStrategiesForCacheStorageAggressive[] = "Aggressive";
1153
vabr0215a8e2017-03-28 12:47:341154const char kMemoryCoordinatorName[] = "Memory coordinator";
1155
1156const char kMemoryCoordinatorDescription[] =
1157 "Enable memory coordinator instead of memory pressure listeners.";
1158
1159const char kServiceWorkerNavigationPreloadName[] =
1160 "Service worker navigation preload.";
1161
1162const char kServiceWorkerNavigationPreloadDescription[] =
1163 "Enable web pages to use the experimental service worker navigation "
1164 "preload API.";
1165
vabr0215a8e2017-03-28 12:47:341166// Data Reduction Proxy
1167
1168const char kDataReductionProxyLoFiName[] = "Data Saver Lo-Fi mode";
1169
1170const char kDataReductionProxyLoFiDescription[] =
1171 "Forces Data Saver Lo-Fi mode to be always enabled, enabled only on "
1172 "cellular connections, or disabled. Data Saver must be enabled for "
1173 "Lo-Fi mode to be used.";
1174
1175const char kDataReductionProxyLoFiAlwaysOn[] = "Always on";
1176
1177const char kDataReductionProxyLoFiCellularOnly[] = "Cellular only";
1178
1179const char kDataReductionProxyLoFiDisabled[] = "Disable";
1180
1181const char kDataReductionProxyLoFiSlowConnectionsOnly[] =
1182 "Slow connections only";
1183
1184const char kEnableDataReductionProxyLitePageName[] =
1185 "Lite pages for Data Saver Lo-Fi mode";
1186
1187const char kEnableDataReductionProxyLitePageDescription[] =
1188 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be "
1189 "shown instead of image placeholders when Lo-Fi is on. Data Saver and "
1190 "Lo-Fi must be enabled for lite pages to be shown.";
1191
ryansturm7e309dd2017-05-24 16:29:531192const char kDataReductionProxyServerAlternative[] =
1193 "Use alternative server configuration";
1194
1195const char kEnableDataReductionProxyServerExperimentName[] =
1196 "Use an alternative Data Saver back end configuration.";
1197
1198const char kEnableDataReductionProxyServerExperimentDescription[] =
1199 "Enable a different approach to saving data by configuring the back end "
1200 "server";
1201
vabr0215a8e2017-03-28 12:47:341202const char kDataReductionProxyCarrierTestName[] =
1203 "Enable a carrier-specific Data Reduction Proxy for testing.";
1204
1205const char kDataReductionProxyCarrierTestDescription[] =
1206 "Use a carrier-specific Data Reduction Proxy for testing.";
1207
1208const char kEnableDataReductionProxySavingsPromoName[] =
1209 "Data Saver 1 MB Savings Promo";
1210
1211const char kEnableDataReductionProxySavingsPromoDescription[] =
1212 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has "
1213 "already saved 1 MB of data, then the promo will not be shown. Data "
1214 "Saver must be enabled for the promo to be shown.";
1215
megjablon553df4cf2017-04-01 01:29:551216#if defined(OS_ANDROID)
1217
1218const char kEnableDataReductionProxyMainMenuName[] =
megjablonacb36d12017-04-21 00:09:291219 "Enable Data Saver main menu footer";
megjablon553df4cf2017-04-01 01:29:551220
1221const char kEnableDataReductionProxyMainMenuDescription[] =
megjablonacb36d12017-04-21 00:09:291222 "Enables the Data Saver footer in the main menu";
megjablon553df4cf2017-04-01 01:29:551223
megjablon5e5d1c172017-04-06 23:55:111224const char kEnableDataReductionProxySiteBreakdownName[] =
1225 "Data Saver Site Breakdown";
1226
1227const char kEnableDataReductionProxySiteBreakdownDescription[] =
1228 "Enable the site breakdown on the Data Saver settings page.";
1229
ryansturm28839dee2017-05-05 17:34:271230const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1231
1232const char kEnableOfflinePreviewsDescription[] =
1233 "Enable showing offline page previews on slow networks.";
1234
ryansturmfaf92142017-05-11 19:07:471235const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
1236
1237const char kEnableClientLoFiDescription[] =
1238 "Enable showing low fidelity images on some pages on slow networks.";
1239
megjablon553df4cf2017-04-01 01:29:551240#endif // defined(OS_ANDROID)
1241
vabr0215a8e2017-03-28 12:47:341242const char kLcdTextName[] = "LCD text antialiasing";
1243
1244const char kLcdTextDescription[] =
1245 "If disabled, text is rendered with grayscale antialiasing instead of "
1246 "LCD (subpixel) when doing accelerated compositing.";
1247
1248const char kDistanceFieldTextName[] = "Distance field text";
1249
1250const char kDistanceFieldTextDescription[] =
1251 "Text is rendered with signed distance fields rather than bitmap alpha "
1252 "masks.";
1253
1254const char kZeroCopyName[] = "Zero-copy rasterizer";
1255
1256const char kZeroCopyDescription[] =
1257 "Raster threads write directly to GPU memory associated with tiles.";
1258
vabr0215a8e2017-03-28 12:47:341259const char kDefaultTileWidthName[] = "Default tile width";
1260
1261const char kDefaultTileWidthDescription[] = "Specify the default tile width.";
1262
1263const char kDefaultTileWidthShort[] = "128";
1264
1265const char kDefaultTileWidthTall[] = "256";
1266
1267const char kDefaultTileWidthGrande[] = "512";
1268
1269const char kDefaultTileWidthVenti[] = "1024";
1270
1271const char kDefaultTileHeightName[] = "Default tile height";
1272
1273const char kDefaultTileHeightDescription[] = "Specify the default tile height.";
1274
1275const char kDefaultTileHeightShort[] = "128";
1276
1277const char kDefaultTileHeightTall[] = "256";
1278
1279const char kDefaultTileHeightGrande[] = "512";
1280
1281const char kDefaultTileHeightVenti[] = "1024";
1282
1283const char kNumRasterThreadsName[] = "Number of raster threads";
1284
1285const char kNumRasterThreadsDescription[] =
1286 "Specify the number of raster threads.";
1287
1288const char kNumRasterThreadsOne[] = "1";
1289
1290const char kNumRasterThreadsTwo[] = "2";
1291
1292const char kNumRasterThreadsThree[] = "3";
1293
1294const char kNumRasterThreadsFour[] = "4";
1295
1296const char kResetAppListInstallStateName[] =
1297 "Reset the App Launcher install state on every restart.";
1298
1299const char kResetAppListInstallStateDescription[] =
1300 "Reset the App Launcher install state on every restart. While this flag "
1301 "is set, Chrome will forget the launcher has been installed each time "
1302 "it starts. This is used for testing the App Launcher install flow.";
1303
1304#if defined(OS_CHROMEOS)
1305
1306const char kFirstRunUiTransitionsName[] =
1307 "Animated transitions in the first-run tutorial";
1308
1309const char kFirstRunUiTransitionsDescription[] =
1310 "Transitions during first-run tutorial are animated.";
1311
1312#endif // defined(OS_CHROMEOS)
1313
1314const char kNewBookmarkAppsName[] = "The new bookmark app system";
1315
1316const char kNewBookmarkAppsDescription[] =
1317 "Enables the new system for creating bookmark apps.";
1318
1319#if defined(OS_MACOSX)
1320
1321const char kHostedAppsInWindowsName[] =
1322 "Allow hosted apps to be opened in windows";
1323
1324const char kHostedAppsInWindowsDescription[] =
1325 "Allows hosted apps to be opened in windows instead of being limited to "
1326 "tabs.";
1327
1328const char kTabDetachingInFullscreenName[] =
1329 "Allow tab detaching in fullscreen";
1330
1331const char kTabDetachingInFullscreenDescription[] =
1332 "Allow tabs to detach from the tabstrip when in fullscreen mode on "
1333 "Mac.";
1334
1335const char kFullscreenToolbarRevealName[] =
1336 "Enables the toolbar in fullscreen to reveal itself.";
1337
1338const char kFullscreenToolbarRevealDescription[] =
1339 "Reveal the toolbar in fullscreen for a short period when the tab strip "
1340 "has changed.";
1341
1342const char kTabStripKeyboardFocusName[] = "Tab Strip Keyboard Focus";
1343
1344const char kTabStripKeyboardFocusDescription[] =
1345 "Enable keyboard focus for the tabs in the tab strip.";
1346
1347#endif // defined(OS_MACOSX)
1348
1349const char kHostedAppShimCreationName[] =
1350 "Creation of app shims for hosted apps on Mac";
1351
1352const char kHostedAppShimCreationDescription[] =
1353 "Create app shims on Mac when creating a hosted app.";
1354
1355const char kHostedAppQuitNotificationName[] =
1356 "Quit notification for hosted apps";
1357
1358const char kHostedAppQuitNotificationDescription[] =
1359 "Display a notification when quitting Chrome if hosted apps are "
1360 "currently running.";
1361
1362#if defined(OS_ANDROID)
1363
1364const char kPullToRefreshEffectName[] = "The pull-to-refresh effect";
1365
1366const char kPullToRefreshEffectDescription[] =
1367 "Page reloads triggered by vertically overscrolling content.";
1368
googleobc47e0b2017-05-05 05:11:121369const char kTranslateCompactUIName[] = "New Translate Infobar";
1370
1371const char kTranslateCompactUIDescription[] =
1372 "Enable the new Translate compact infobar UI.";
1373
vabr0215a8e2017-03-28 12:47:341374#endif // defined(OS_ANDROID)
1375
1376#if defined(OS_MACOSX)
1377
1378const char kTranslateNewUxName[] = "New Translate UX";
1379
1380const char kTranslateNewUxDescription[] =
1381 "Enable the new Translate bubble UX is offered instead of the infobar.";
1382
1383#endif // defined(OS_MACOSX)
1384
1385const char kTranslate2016q2UiName[] = "Translate 2016Q2 UI";
1386
1387const char kTranslate2016q2UiDescription[] =
1388 "Improved triggering logic and look for Translate Bubble UI";
1389
1390const char kTranslateLanguageByUlpName[] = "Translate Language by ULP";
1391
1392const char kTranslateLanguageByUlpDescription[] =
1393 "Improved translate target language and triggering logic by considering "
1394 "information from User Language Profile (ULP).";
1395
vabr0215a8e2017-03-28 12:47:341396const char kPermissionActionReportingName[] = "Permission Action Reporting";
1397
1398const char kPermissionActionReportingDescription[] =
1399 "Enables permission action reporting to Safe Browsing servers for opted "
1400 "in users.";
1401
1402const char kPermissionsBlacklistName[] = "Permissions Blacklist";
1403
1404const char kPermissionsBlacklistDescription[] =
1405 "Enables the Permissions Blacklist, which blocks permissions for "
1406 "blacklisted sites for Safe Browsing users.";
1407
1408const char kThreadedScrollingName[] = "Threaded scrolling";
1409
1410const char kThreadedScrollingDescription[] =
1411 "Threaded handling of scroll-related input events. Disabling this will "
1412 "force all such scroll events to be handled on the main thread. Note "
1413 "that this can dramatically hurt scrolling performance of most websites "
1414 "and is intended for testing purposes only.";
1415
1416const char kHarfbuzzRendertextName[] = "HarfBuzz for UI text";
1417
1418const char kHarfbuzzRendertextDescription[] =
1419 "Enable cross-platform HarfBuzz layout engine for UI text. Doesn't "
1420 "affect web content.";
1421
1422const char kEmbeddedExtensionOptionsName[] = "Embedded extension options";
1423
1424const char kEmbeddedExtensionOptionsDescription[] =
1425 "Display extension options as an embedded element in "
1426 "chrome://extensions rather than opening a new tab.";
1427
1428const char kTabAudioMutingName[] = "Tab audio muting UI control";
1429
1430const char kTabAudioMutingDescription[] =
1431 "When enabled, the audio indicators in the tab strip double as tab "
1432 "audio mute controls. This also adds commands in the tab context menu "
1433 "for quickly muting multiple selected tabs.";
1434
1435const char kEasyUnlockBluetoothLowEnergyDiscoveryName[] =
1436 "Smart Lock Bluetooth Low Energy Discovery";
1437
1438const char kEasyUnlockBluetoothLowEnergyDiscoveryDescription[] =
1439 "Enables a Smart Lock setting that allows Chromebook to discover phones "
1440 "over Bluetooth Low Energy in order to unlock the Chromebook when the "
1441 "phone is in its proximity.";
1442
1443const char kEasyUnlockProximityDetectionName[] =
1444 "Smart Lock proximity detection";
1445
1446const char kEasyUnlockProximityDetectionDescription[] =
1447 "Enables a Smart Lock setting that restricts unlocking to only work "
1448 "when your phone is very close to (roughly, within an arm's length of) "
1449 "the Chrome device.";
1450
1451const char kWifiCredentialSyncName[] = "WiFi credential sync";
1452
1453const char kWifiCredentialSyncDescription[] =
1454 "Enables synchronizing WiFi network settings across devices. When "
1455 "enabled, the WiFi credential datatype is registered with Chrome Sync, "
1456 "and WiFi credentials are synchronized subject to user preferences. "
1457 "(See also, chrome://settings/syncSetup.)";
1458
1459const char kSyncSandboxName[] = "Use Chrome Sync sandbox";
1460
1461const char kSyncSandboxDescription[] =
1462 "Connects to the testing server for Chrome Sync.";
1463
1464const char kDatasaverPromptName[] = "Cellular Data Saver Prompt";
1465
1466const char kDatasaverPromptDescription[] =
1467 "Enables a prompt, which appears when a cellular network connection is "
1468 "detected, to take the user to the Data Saver extension page on Chrome "
1469 "Web Store.";
1470
1471const char kDatasaverPromptDemoMode[] = "Demo mode";
1472
vabr0215a8e2017-03-28 12:47:341473const char kTrySupportedChannelLayoutsName[] =
1474 "Causes audio output streams to check if channel layouts other than the "
1475 "default hardware layout are available.";
1476
1477const char kTrySupportedChannelLayoutsDescription[] =
1478 "Causes audio output streams to check if channel layouts other than the "
1479 "default hardware layout are available. Turning this on will allow the "
1480 "OS to do stereo to surround expansion if supported. May expose third "
1481 "party driver bugs, use with caution.";
1482
1483#if defined(OS_MACOSX)
1484
1485const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog.";
1486
1487const char kAppInfoDialogDescription[] =
1488 "Makes the Toolkit-Views based App Info dialog accessible from "
1489 "chrome://apps or chrome://extensions in place of the native extension "
1490 "permissions dialog, or the details link (which is a link to the Web "
1491 "Store).";
1492
kerrnel7e4f7a7f2017-06-28 21:28:281493const char kMacV2SandboxName[] = "Mac V2 Sandbox";
1494
1495const char kMacV2SandboxDescription[] =
1496 "Eliminates the unsandboxed warmup phase and sandboxes processes for their "
1497 "entire life cycle.";
1498
vabr0215a8e2017-03-28 12:47:341499const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows.";
1500
1501const char kMacViewsNativeAppWindowsDescription[] =
1502 "Controls whether to use Toolkit-Views based Chrome App windows.";
1503
1504const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager.";
1505
1506const char kMacViewsTaskManagerDescription[] =
1507 "Controls whether to use the Toolkit-Views based Task Manager.";
1508
1509const char kAppWindowCyclingName[] = "Custom Window Cycling for Chrome Apps.";
1510
1511const char kAppWindowCyclingDescription[] =
1512 "Changes the behavior of Cmd+` when a Chrome App becomes active. When "
1513 "enabled, Chrome Apps will not be cycled when Cmd+` is pressed from a "
1514 "browser window, and browser windows will not be cycled when a Chrome "
1515 "App is active.";
1516
1517#endif // defined(OS_MACOSX)
1518
1519#if defined(OS_CHROMEOS)
1520
1521const char kAcceleratedMjpegDecodeName[] =
1522 "Hardware-accelerated mjpeg decode for captured frame";
1523
1524const char kAcceleratedMjpegDecodeDescription[] =
1525 "Enable hardware-accelerated mjpeg decode for captured frame where "
1526 "available.";
1527
1528#endif // defined(OS_CHROMEOS)
1529
1530const char kSimplifiedFullscreenUiName[] =
1531 "Simplified full screen / mouse lock UI.";
1532
1533const char kSimplifiedFullscreenUiDescription[] =
1534 "A simplified new user experience when entering page-triggered full "
1535 "screen or mouse pointer lock states.";
1536
1537const char kExperimentalKeyboardLockUiName[] = "Experimental keyboard lock UI.";
1538
1539const char kExperimentalKeyboardLockUiDescription[] =
1540 "An experimental full screen with keyboard lock mode requiring users to "
1541 "hold Esc to exit.";
1542
1543#if defined(OS_ANDROID)
1544
Rouslan Solomakhinbed1af22017-06-09 18:40:571545extern const char kPayWithGoogleV1Name[] = "Pay with Google v1";
1546
1547extern const char kPayWithGoogleV1Description[] =
1548 "Enable Pay with Google integration into Web Payments with API version "
1549 "'1'.";
1550
vabr0215a8e2017-03-28 12:47:341551const char kProgressBarAnimationName[] =
1552 "Android phone page loading progress bar animation";
1553
1554const char kProgressBarAnimationDescription[] =
1555 "Configures Android phone page loading progress bar animation.";
1556
1557const char kProgressBarAnimationLinear[] = "Linear";
1558
1559const char kProgressBarAnimationSmooth[] = "Smooth";
1560
1561const char kProgressBarAnimationSmoothIndeterminate[] = "Smooth indeterminate";
1562
1563const char kProgressBarAnimationFastStart[] = "Fast start";
1564
1565const char kProgressBarCompletionName[] =
1566 "Android phone page load progress bar completion time.";
1567
1568const char kProgressBarCompletionDescription[] =
1569 "Configures Android phone page loading progress bar completion time.";
1570
1571const char kProgressBarCompletionLoadEvent[] =
1572 R"*(Top loading frame's onload event ("everything" is done in the )*"
1573 R"*(page, historical behavior).)*";
1574
1575const char kProgressBarCompletionResourcesBeforeDcl[] =
1576 "Main frame's domContentLoaded and all resources loads started before "
1577 "domContentLoaded (iframes ignored).";
1578
1579const char kProgressBarCompletionDomContentLoaded[] =
1580 "Main frame's domContentLoaded (iframes ignored).";
1581
1582const char kProgressBarCompletionResourcesBeforeDclAndSameOriginIframes[] =
1583 "domContentLoaded and all resources loads started before "
1584 "domContentLoaded (main frame and same origin iframes).";
1585
1586#endif // defined(OS_ANDROID)
1587
1588const char kDisallowDocWrittenScriptsUiName[] =
1589 "Block scripts loaded via document.write";
1590
1591const char kDisallowDocWrittenScriptsUiDescription[] =
1592 "Disallows fetches for third-party parser-blocking scripts inserted "
1593 "into the main frame via document.write.";
1594
1595#if defined(OS_WIN)
1596
1597const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
1598
1599const char kEnableAppcontainerDescription[] =
1600 "Enables the use of an AppContainer on sandboxed processes to improve "
1601 "security.";
1602
1603#endif // defined(OS_WIN)
1604
thestig0c55ee32017-06-20 22:17:511605#if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
elawrenced9978fc2017-05-02 02:45:191606
1607const char kShowCertLinkOnPageInfoName[] = "Show certificate link";
1608
1609const char kShowCertLinkOnPageInfoDescription[] =
1610 "Add a link from the Page Info bubble to the certificate viewer for HTTPS "
1611 "sites.";
1612
thestig0c55ee32017-06-20 22:17:511613#endif // defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
elawrenced9978fc2017-05-02 02:45:191614
vabr0215a8e2017-03-28 12:47:341615#if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1616
1617const char kAutofillCreditCardUploadName[] =
1618 "Enable offering upload of Autofilled credit cards";
1619
1620const char kAutofillCreditCardUploadDescription[] =
1621 "Enables a new option to upload credit cards to Google Payments for "
1622 "sync to all Chrome devices.";
1623
1624#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1625
1626const char kForceUiDirectionName[] = "Force UI direction";
1627
1628const char kForceUiDirectionDescription[] =
1629 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1630 "mode, overriding the default direction of the UI language.";
1631
krb6822b602017-05-02 14:53:211632const char kForceTextDirectionName[] = "Force text direction";
vabr0215a8e2017-03-28 12:47:341633
krb6822b602017-05-02 14:53:211634const char kForceTextDirectionDescription[] =
1635 "Explicitly force the per-character directionality of UI text to "
1636 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the "
1637 "default direction of the character language.";
1638
1639const char kForceDirectionLtr[] = "Left-to-right";
1640
1641const char kForceDirectionRtl[] = "Right-to-left";
vabr0215a8e2017-03-28 12:47:341642
1643#if defined(OS_WIN) || defined(OS_LINUX)
1644
1645const char kEnableInputImeApiName[] = "Enable Input IME API";
1646
1647const char kEnableInputImeApiDescription[] =
1648 "Enable the use of chrome.input.ime API.";
1649
1650#endif // defined(OS_WIN) || defined(OS_LINUX)
1651
1652const char kEnableGroupedHistoryName[] = "Group history by domain";
1653
1654const char kEnableGroupedHistoryDescription[] =
1655 "Group history by website domain (i.e. google.com) on "
1656 "chrome://history.";
1657
vabr0215a8e2017-03-28 12:47:341658const char kSaveasMenuLabelExperimentName[] =
1659 "Switch 'Save as' menu labels to 'Download'";
1660
1661const char kSaveasMenuLabelExperimentDescription[] =
1662 "Enables an experiment to switch menu labels that use 'Save as...' to "
1663 "'Download'.";
1664
1665const char kEnableEnumeratingAudioDevicesName[] =
1666 "Experimentally enable enumerating audio devices.";
1667
1668const char kEnableEnumeratingAudioDevicesDescription[] =
1669 "Experimentally enable the use of enumerating audio devices.";
1670
1671const char kNewUsbBackendName[] = "Enable new USB backend";
1672
1673const char kNewUsbBackendDescription[] =
1674 "Enables the new experimental USB backend for Windows.";
1675
1676const char kNewOmniboxAnswerTypesName[] =
1677 "New omnibox answers in suggest types";
1678
1679const char kNewOmniboxAnswerTypesDescription[] =
1680 "Enables new types of answers in the omnibox suggest drop-down: "
1681 "currency conversions, dictionary definitions, sports scores, "
1682 "translations, and when is.";
1683
1684const char kEnableZeroSuggestRedirectToChromeName[] =
1685 "Experimental contextual omnibox suggestion";
1686
1687const char kEnableZeroSuggestRedirectToChromeDescription[] =
1688 "Change omnibox contextual suggestions to an experimental source. Note "
1689 "that this is not an on/off switch for contextual omnibox and it only "
1690 "applies to suggestions provided before the user starts typing a URL or "
1691 "a search query (i.e. zero suggest).";
1692
1693const char kFillOnAccountSelectName[] = "Fill passwords on account selection";
1694
1695const char kFillOnAccountSelectDescription[] =
1696 "Filling of passwords when an account is explicitly selected by the "
1697 "user rather than autofilling credentials on page load.";
1698
1699const char kEnableClearBrowsingDataCountersName[] =
1700 "Enable Clear browsing data counters.";
1701
1702const char kEnableClearBrowsingDataCountersDescription[] =
1703 "Shows data volume counters in the Clear browsing data dialog.";
1704
1705#if defined(OS_ANDROID)
1706
1707const char kTabsInCbdName[] = "Enable tabs for the Clear Browsing Data dialog.";
1708
1709const char kTabsInCbdDescription[] =
1710 "Enables a basic and an advanced tab for the Clear Browsing Data "
1711 "dialog.";
1712
1713#endif // defined(OS_ANDROID)
1714
brettw5f9c1642017-05-14 17:12:481715const char kNotificationsNativeFlagName[] = "Enable native notifications.";
vabr0215a8e2017-03-28 12:47:341716
1717const char kNotificationsNativeFlagDescription[] =
1718 "Enable support for using the native notification toasts and "
1719 "notification center on platforms where these are available.";
1720
1721#if defined(OS_ANDROID)
1722
1723const char kEnableAndroidSpellcheckerDescription[] =
1724 "Enables use of the Android spellchecker.";
1725
1726const char kEnableAndroidSpellcheckerName[] = "Enable spell checking";
1727
1728#endif // defined(OS_ANDROID)
1729
1730const char kEnableWebNotificationCustomLayoutsName[] =
1731 "Enable custom layouts for Web Notifications.";
1732
1733const char kEnableWebNotificationCustomLayoutsDescription[] =
1734 "Enable custom layouts for Web Notifications. They will have subtle "
1735 "layout improvements that are otherwise not possible.";
1736
vabr0215a8e2017-03-28 12:47:341737const char kGoogleProfileInfoName[] = "Google profile name and icon";
1738
1739const char kGoogleProfileInfoDescription[] =
1740 "Enables using Google information to populate the profile name and icon "
1741 "in the avatar menu.";
1742
brettw5f9c1642017-05-14 17:12:481743const char kOfferStoreUnmaskedWalletCardsName[] =
vabr0215a8e2017-03-28 12:47:341744 "Google Payments card saving checkbox";
1745
1746const char kOfferStoreUnmaskedWalletCardsDescription[] =
1747 "Show the checkbox to offer local saving of a credit card downloaded "
1748 "from the server.";
1749
1750const char kOfflineAutoReloadName[] = "Offline Auto-Reload Mode";
1751
1752const char kOfflineAutoReloadDescription[] =
1753 "Pages that fail to load while the browser is offline will be "
1754 "auto-reloaded when the browser is online again.";
1755
1756const char kOfflineAutoReloadVisibleOnlyName[] =
1757 "Only Auto-Reload Visible Tabs";
1758
1759const char kOfflineAutoReloadVisibleOnlyDescription[] =
1760 "Pages that fail to load while the browser is offline will only be "
1761 "auto-reloaded if their tab is visible.";
1762
1763const char kShowSavedCopyName[] = "Show Saved Copy Button";
1764
1765const char kShowSavedCopyDescription[] =
1766 "When a page fails to load, if a stale copy of the page exists in the "
1767 "browser cache, a button will be presented to allow the user to load "
1768 "that stale copy. The primary enabling choice puts the button in the "
1769 "most salient position on the error page; the secondary enabling choice "
1770 "puts it secondary to the reload button.";
1771
1772const char kEnableShowSavedCopyPrimary[] = "Enable: Primary";
1773
1774const char kEnableShowSavedCopySecondary[] = "Enable: Secondary";
1775
1776const char kDisableShowSavedCopy[] = "Disable";
1777
1778#if defined(OS_CHROMEOS)
1779
vabr0215a8e2017-03-28 12:47:341780const char kVirtualKeyboardName[] = "Virtual Keyboard";
1781
1782const char kVirtualKeyboardDescription[] = "Enable virtual keyboard support.";
1783
1784const char kVirtualKeyboardOverscrollName[] = "Virtual Keyboard Overscroll";
1785
1786const char kVirtualKeyboardOverscrollDescription[] =
1787 "Enables virtual keyboard overscroll support.";
1788
1789const char kInputViewName[] = "Input views";
1790
1791const char kInputViewDescription[] =
1792 "Enable IME extensions to supply custom views for user input such as "
1793 "virtual keyboards.";
1794
1795const char kNewKoreanImeName[] = "New Korean IME";
1796
1797const char kNewKoreanImeDescription[] =
1798 "New Korean IME, which is based on Google Input Tools' HMM engine.";
1799
1800const char kPhysicalKeyboardAutocorrectName[] = "Physical keyboard autocorrect";
1801
1802const char kPhysicalKeyboardAutocorrectDescription[] =
1803 "Enable physical keyboard autocorrect for US keyboard, which can "
1804 "provide suggestions as typing on physical keyboard.";
1805
1806const char kVoiceInputName[] = "Voice input on virtual keyboard";
1807
1808const char kVoiceInputDescription[] =
1809 "Enables voice input on virtual keyboard.";
1810
1811const char kExperimentalInputViewFeaturesName[] =
1812 "Experimental input view features";
1813
1814const char kExperimentalInputViewFeaturesDescription[] =
1815 "Enable experimental features for IME input views.";
1816
1817const char kFloatingVirtualKeyboardName[] = "Floating virtual keyboard.";
1818
1819const char kFloatingVirtualKeyboardDescription[] =
1820 "Enable/Disable floating virtual keyboard.";
1821
1822const char kGestureTypingName[] = "Gesture typing for the virtual keyboard.";
1823
1824const char kGestureTypingDescription[] =
1825 "Enable/Disable gesture typing option in the settings page for the "
1826 "virtual keyboard.";
1827
1828const char kGestureEditingName[] = "Gesture editing for the virtual keyboard.";
1829
1830const char kGestureEditingDescription[] =
1831 "Enable/Disable gesture editing option in the settings page for the "
1832 "virtual keyboard.";
1833
1834const char kCaptivePortalBypassProxyName[] =
1835 "Bypass proxy for Captive Portal Authorization";
1836
1837const char kCaptivePortalBypassProxyDescription[] =
1838 "If proxy is configured, it usually prevents from authorization on "
1839 "different captive portals. This enables opening captive portal "
1840 "authorization dialog in a separate window, which ignores proxy "
1841 "settings.";
1842
1843const char kTouchscreenCalibrationName[] =
1844 "Enable/disable touchscreen calibration option in material design "
1845 "settings";
1846
1847const char kTouchscreenCalibrationDescription[] =
1848 "If enabled, the user can calibrate the touch screen displays in "
1849 "chrome://md-settings/display.";
1850
yamaguchid99a64b2017-05-12 15:33:491851const char kTeamDrivesName[] = "Enable Team Drives Integration";
1852const char kTeamDrivesDescription[] =
1853 "If enabled, files under Team Drives will appear in the Files app.";
1854
vabr0215a8e2017-03-28 12:47:341855#endif // defined(OS_CHROMEOS)
1856
1857// Strings for controlling credit card assist feature in about:flags.
1858
1859const char kCreditCardAssistName[] = "Credit Card Assisted Filling";
1860
1861const char kCreditCardAssistDescription[] =
1862 "Enable assisted credit card filling on certain sites.";
1863
1864// Strings for controlling credit card scanning feature in about:flags.
1865
1866// Simple Cache Backend experiment.
1867
1868const char kSimpleCacheBackendName[] = "Simple Cache for HTTP";
1869
1870const char kSimpleCacheBackendDescription[] =
1871 "The Simple Cache for HTTP is a new cache. It relies on the filesystem "
1872 "for disk space allocation.";
1873
1874// Spelling feedback field trial.
1875
1876const char kSpellingFeedbackFieldTrialName[] = "Spelling Feedback Field Trial";
1877
1878const char kSpellingFeedbackFieldTrialDescription[] =
1879 "Enable the field trial for sending user feedback to spelling service.";
1880
1881// Web MIDI API.
1882
1883const char kWebMidiName[] = "Web MIDI API";
1884
1885const char kWebMidiDescription[] = "Enable Web MIDI API experimental support.";
1886
1887// Site per process mode
1888
creisc3af64f2017-04-12 17:22:381889const char kSitePerProcessName[] = "Strict site isolation";
vabr0215a8e2017-03-28 12:47:341890
1891const char kSitePerProcessDescription[] =
creisc3af64f2017-04-12 17:22:381892 "Highly experimental security mode that ensures each renderer process "
1893 "contains pages from at most one site. In this mode, out-of-process "
1894 "iframes will be used whenever an iframe is cross-site.";
vabr0215a8e2017-03-28 12:47:341895
1896// Top document isolation mode
1897
1898const char kTopDocumentIsolationName[] = "Top document isolation";
1899
1900const char kTopDocumentIsolationDescription[] =
1901 "Highly experimental performance mode where cross-site iframes are kept "
1902 "in a separate process from the top document. In this mode, iframes "
1903 "from different third-party sites will be allowed to share a process.";
1904
1905// Cross process guest frames isolation mode
1906
1907const char kCrossProcessGuestViewIsolationName[] =
1908 "Cross process frames for guests";
1909
1910const char kCrossProcessGuestViewIsolationDescription[] =
1911 "Highly experimental where guests such as <webview> are implemented "
1912 "on the out-of-process iframe infrastructure.";
1913
1914// Task Scheduler
1915
1916const char kBrowserTaskSchedulerName[] = "Task Scheduler";
1917
1918const char kBrowserTaskSchedulerDescription[] =
1919 "Enables redirection of some task posting APIs to the task scheduler.";
1920
1921// Arc authorization
1922
1923#if defined(OS_CHROMEOS)
1924
1925const char kArcUseAuthEndpointName[] = "Android apps authorization point";
1926
1927const char kArcUseAuthEndpointDescription[] =
1928 "Enable Android apps authorization point to automatic sign-in in OptIn "
1929 "flow.";
1930
1931#endif // defined(OS_CHROMEOS)
1932
1933// Autofill experiment flags
1934
1935const char kSingleClickAutofillName[] = "Single-click autofill";
1936
1937const char kSingleClickAutofillDescription[] =
1938 "Make autofill suggestions on initial mouse click on a form element.";
1939
1940#if defined(OS_ANDROID)
1941
1942const char kAutofillAccessoryViewName[] =
1943 "Autofill suggestions as keyboard accessory view";
1944
1945const char kAutofillAccessoryViewDescription[] =
1946 "Shows Autofill suggestions on top of the keyboard rather than in a "
1947 "dropdown.";
1948
1949#endif // defined(OS_ANDROID)
1950
1951// Reader mode experiment flags
1952
1953#if defined(OS_ANDROID)
1954
1955const char kReaderModeHeuristicsName[] = "Reader Mode triggering";
1956
1957const char kReaderModeHeuristicsDescription[] =
1958 "Determines what pages the Reader Mode button is shown on.";
1959
1960const char kReaderModeHeuristicsMarkup[] = "With article structured markup";
1961
1962const char kReaderModeHeuristicsAdaboost[] = "Appears to be an article";
1963
1964const char kReaderModeHeuristicsAlwaysOff[] = "Never";
1965
1966const char kReaderModeHeuristicsAlwaysOn[] = "Always";
1967
1968#endif // defined(OS_ANDROID)
1969
1970// Chrome home flags
1971
1972#if defined(OS_ANDROID)
1973
1974const char kChromeHomeName[] = "Chrome Home";
1975
1976const char kChromeHomeDescription[] = "Enables Chrome Home on Android.";
1977
mdjonesd484eac2017-05-02 21:34:451978const char kChromeHomeExpandButtonName[] = "Chrome Home Expand Button";
1979
1980const char kChromeHomeExpandButtonDescription[] =
1981 "Enables the expand button for Chrome Home.";
1982
Matthew Jonesd349741f2017-05-26 21:07:521983const char kChromeHomeSwipeLogicName[] = "Chrome Home Swipe Logic";
1984
1985const char kChromeHomeSwipeLogicDescription[] =
1986 "Various swipe logic options for Chrome Home for sheet expansion.";
1987
1988const char kChromeHomeSwipeLogicRestrictArea[] = "Restrict swipable area";
1989
Matthew Jonesfc0d7de2017-06-12 21:54:001990const char kChromeHomeSwipeLogicButtonOnly[] = "Swipe on expand button";
1991
vabr0215a8e2017-03-28 12:47:341992#endif // defined(OS_ANDROID)
1993
1994// Settings window flags
1995
1996const char kSettingsWindowName[] = "Show settings in a window";
1997
1998const char kSettingsWindowDescription[] =
1999 "Settings will be shown in a dedicated window instead of as a browser "
2000 "tab.";
2001
vabr0215a8e2017-03-28 12:47:342002// Extension Content Verification
2003
2004const char kExtensionContentVerificationName[] =
2005 "Extension Content Verification";
2006
2007const char kExtensionContentVerificationDescription[] =
2008 "This flag can be used to turn on verification that the contents of the "
2009 "files on disk for extensions from the webstore match what they're "
2010 "expected to be. This can be used to turn on this feature if it would "
2011 "not otherwise have been turned on, but cannot be used to turn it off "
2012 "(because this setting can be tampered with by malware).";
2013
2014const char kExtensionContentVerificationBootstrap[] =
2015 "Bootstrap (get expected hashes, but do not enforce them)";
2016
2017const char kExtensionContentVerificationEnforce[] =
2018 "Enforce (try to get hashes, and enforce them if successful)";
2019
2020const char kExtensionContentVerificationEnforceStrict[] =
2021 "Enforce strict (hard fail if we can't get hashes)";
2022
2023// Built-in hotword detection display strings
2024
2025const char kExperimentalHotwordHardwareName[] =
2026 "Simulated hardware 'Ok Google' features";
2027
2028const char kExperimentalHotwordHardwareDescription[] =
2029 "Enables an experimental version of 'Ok Google' hotword detection "
2030 "features that have a hardware dependency.";
2031
2032// Message center strings
2033
2034const char kMessageCenterAlwaysScrollUpUponRemovalName[] =
2035 "Experiments that message center always scroll up upon notification "
2036 "removal";
2037
2038const char kMessageCenterAlwaysScrollUpUponRemovalDescription[] =
2039 "Enables experiment that message center always scroll up when a "
2040 "notification is removed.";
2041
yoshikif14ac822017-05-31 04:26:142042const char kMessageCenterNewStyleNotificationName[] = "New style notification";
2043
2044const char kMessageCenterNewStyleNotificationDescription[] =
2045 "Enables the experiment style of material-design notification";
2046
vabr0215a8e2017-03-28 12:47:342047const char kCastStreamingHwEncodingName[] =
2048 "Cast Streaming hardware video encoding";
2049
2050const char kCastStreamingHwEncodingDescription[] =
2051 "This option enables support in Cast Streaming for encoding video "
2052 "streams using platform hardware.";
2053
brettw5f9c1642017-05-14 17:12:482054const char kAllowInsecureLocalhostName[] =
vabr0215a8e2017-03-28 12:47:342055 "Allow invalid certificates for resources loaded from localhost.";
2056
2057const char kAllowInsecureLocalhostDescription[] =
2058 "Allows requests to localhost over HTTPS even when an invalid "
2059 "certificate is presented.";
2060
2061#if defined(OS_WIN) || defined(OS_MACOSX)
2062
2063// Tab discarding
2064
2065const char kAutomaticTabDiscardingName[] = "Automatic tab discarding";
2066
2067const char kAutomaticTabDiscardingDescription[] =
2068 "If enabled, tabs get automatically discarded from memory when the "
2069 "system memory is low. Discarded tabs are still visible on the tab "
2070 "strip and get reloaded when clicked on. Info about discarded tabs can "
2071 "be found at chrome://discards.";
2072
2073#endif // defined(OS_WIN) || defined(OS_MACOSX)
2074
2075#if defined(OS_ANDROID)
2076
2077const char kOfflineBookmarksName[] = "Enable offline bookmarks";
2078
2079const char kOfflineBookmarksDescription[] =
2080 "Enable saving bookmarked pages for offline viewing.";
2081
2082const char kNtpOfflinePagesName[] = "Enable NTP offline pages";
2083
2084const char kNtpOfflinePagesDescription[] =
2085 "Enables badging of offline pages on the New Tab page. Only relevant if "
2086 "offline pages are enabled.";
2087
2088const char kOfflinePagesAsyncDownloadName[] =
jianli762bb48d2017-06-13 21:40:582089 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages.)*";
vabr0215a8e2017-03-28 12:47:342090
2091const char kOfflinePagesAsyncDownloadDescription[] =
jianli762bb48d2017-06-13 21:40:582092 R"*(Enables showing "DOWNLOAD WHEN ONLINE" button in error pages such )*"
vabr0215a8e2017-03-28 12:47:342093 R"*(that the user can click on it to download the page later.)*";
2094
2095const char kOfflinePagesSvelteConcurrentLoadingName[] =
2096 "Enables concurrent background loading on svelte.";
2097
2098const char kOfflinePagesSvelteConcurrentLoadingDescription[] =
2099 "Enables concurrent background loading (or downloading) of pages on "
2100 "Android svelte (512MB RAM) devices. Otherwise, background loading will "
2101 "happen when the svelte device is idle.";
2102
petewil2abcf042017-04-10 21:45:002103const char kOfflinePagesLoadSignalCollectingName[] =
2104 "Enables collecting load timing data for offline page snapshots.";
2105
2106const char kOfflinePagesLoadSignalCollectingDescription[] =
2107 "Enables loading completeness data collection while writing an offline "
2108 "page. This data is collected in the snapshotted offline page to allow "
2109 "data analysis to improve deciding when to make the offline snapshot.";
2110
vabr0215a8e2017-03-28 12:47:342111const char kOfflinePagesPrefetchingName[] =
2112 "Enables suggested offline pages to be prefetched.";
2113
2114const char kOfflinePagesPrefetchingDescription[] =
2115 "Enables suggested offline pages to be prefetched, so useful content is "
2116 "available while offline.";
2117
2118const char kOfflinePagesSharingName[] = "Enables offline pages to be shared.";
2119
2120const char kOfflinePagesSharingDescription[] =
2121 "Enables the saved offline pages to be shared via other applications.";
2122
2123const char kBackgroundLoaderForDownloadsName[] =
2124 "Enables background downloading of pages.";
2125
2126const char kBackgroundLoaderForDownloadsDescription[] =
2127 "Enables downloading pages in the background in case page is not yet "
2128 "loaded in current tab.";
2129
2130const char kNewBackgroundLoaderName[] =
2131 "Use background loader instead of prerenderer to load pages.";
2132
2133const char kNewBackgroundLoaderDescription[] =
2134 "Use background loader instead of prerenderer to asynchronously "
2135 "download pages.";
2136
2137const char kNtpPopularSitesName[] = "Show popular sites on the New Tab page";
2138
2139const char kNtpPopularSitesDescription[] =
2140 "Pre-populate the New Tab page with popular sites.";
2141
2142const char kNtpSwitchToExistingTabName[] =
2143 "Switch to an existing tab for New Tab Page suggestions.";
2144
2145const char kNtpSwitchToExistingTabDescription[] =
2146 "When opening a suggested webpage from the New Tab Page, if a tab is "
2147 "already open for the suggestion, switch to that one instead of loading "
2148 "the suggestion in the new tab.";
2149
2150const char kNtpSwitchToExistingTabMatchUrl[] = "Match by URL";
2151
2152const char kNtpSwitchToExistingTabMatchHost[] = "Match by Hostname";
2153
2154const char kUseAndroidMidiApiName[] = "Use Android Midi API";
2155
2156const char kUseAndroidMidiApiDescription[] =
2157 "Use Android Midi API for WebMIDI (effective only with Android M+ "
2158 "devices).";
2159
2160const char kWebPaymentsModifiersName[] = "Enable web payment modifiers";
2161
2162const char kWebPaymentsModifiersDescription[] =
2163 "If the website provides modifiers in the payment request, show the "
2164 "custom total for each payment instrument, update the shopping cart "
2165 "when instruments are switched, and send modified payment method "
2166 "specific data to the payment app.";
2167
lbargu8bb0fabc2017-05-19 14:53:112168const char kXGEOVisibleNetworksName[] = "Enable XGEO Visible Networks";
2169
2170const char kXGEOVisibleNetworksDescription[] =
2171 "If location permissions are granted, include visible networks in the XGEO "
2172 "Header for omnibox queries. This will only happen if location is not "
2173 "fresh or not available (for example, due to a cold start).";
2174
vabr0215a8e2017-03-28 12:47:342175#endif // defined(OS_ANDROID)
2176
2177#if defined(OS_WIN)
2178
2179// Exporting tracing events to ETW
2180
2181const char kTraceExportEventsToEtwName[] =
2182 "Enable exporting of tracing events to ETW.";
2183
2184const char kTraceExportEventsToEtwDesription[] =
2185 "If enabled, trace events will be exported to the Event Tracing for "
2186 "Windows (ETW) and can then be captured by tools such as UIForETW or "
2187 "Xperf.";
2188
2189const char kMergeKeyCharEventsName[] =
2190 "Enable or disable merging merging the key event (WM_KEY*) with char "
2191 "event (WM_CHAR).";
2192
2193const char kMergeKeyCharEventsDescription[] =
etienneb9a4b5302017-06-08 06:28:462194 "If disabled, Chrome will handle WM_KEY* and WM_CHAR separately.";
vabr0215a8e2017-03-28 12:47:342195
2196const char kUseWinrtMidiApiName[] = "Use Windows Runtime MIDI API";
2197
2198const char kUseWinrtMidiApiDescription[] =
2199 "Use Windows Runtime MIDI API for WebMIDI (effective only on Windows 10 "
2200 "or later).";
2201
2202#endif // defined(OS_WIN)
2203
2204#if defined(OS_ANDROID)
2205
2206// Data Use
2207
2208// Update Menu Item Flags
2209
2210const char kUpdateMenuItemName[] = "Force show update menu item";
2211
2212const char kUpdateMenuItemDescription[] =
2213 R"*(When enabled, an "Update Chrome" item will be shown in the app )*"
2214 R"*(menu.)*";
2215
twellingtonce0b29ba2017-04-19 21:01:172216const char kUpdateMenuItemCustomSummaryDescription[] =
vabr0215a8e2017-03-28 12:47:342217 "When this flag and the force show update menu item flag are enabled, a "
twellingtonce0b29ba2017-04-19 21:01:172218 "custom summary string will be displayed below the update menu item.";
vabr0215a8e2017-03-28 12:47:342219
twellingtonce0b29ba2017-04-19 21:01:172220const char kUpdateMenuItemCustomSummaryName[] =
2221 "Update menu item custom summary";
vabr0215a8e2017-03-28 12:47:342222
2223const char kUpdateMenuBadgeName[] = "Force show update menu badge";
2224
2225const char kUpdateMenuBadgeDescription[] =
2226 "When enabled, an update badge will be shown on the app menu button.";
2227
2228const char kSetMarketUrlForTestingName[] = "Set market URL for testing";
2229
2230const char kSetMarketUrlForTestingDescription[] =
2231 "When enabled, sets the market URL for use in testing the update menu "
2232 "item.";
2233
2234#endif // defined(OS_ANDROID)
2235
2236#if defined(OS_ANDROID)
2237
2238const char kHerbPrototypeChoicesName[] = "Switch preferred flavor of Herb";
2239
2240const char kHerbPrototypeChoicesDescription[] =
2241 "Switching this option changes which tab management prototype is being "
2242 "tested.";
2243
2244const char kHerbPrototypeFlavorElderberry[] =
2245 "ELDERBERRY: All View Intents in CCT v2";
2246
2247const char kEnableSpecialLocaleName[] =
2248 "Enable custom logic for special locales.";
2249
2250const char kEnableSpecialLocaleDescription[] =
2251 "Enable custom logic for special locales. In this mode, Chrome might "
2252 "behave differently in some locales.";
2253
2254// WebApks
2255
2256const char kEnableWebapk[] = "Enable improved add to Home screen";
2257
2258const char kEnableWebapkDescription[] =
2259 R"*(Packages "Progressive Web Apps" so that they can integrate more )*"
2260 R"*(deeply with Android. A Chrome server is used to package sites. In )*"
2261 R"*(Chrome Canary and Chrome Dev, this requires “Untrusted )*"
2262 R"*(sources” to be enabled in Android security settings.)*";
2263
2264#endif // defined(OS_ANDROID)
2265
2266const char kEnableBrotliName[] = "Brotli Content-Encoding.";
2267
2268const char kEnableBrotliDescription[] =
2269 "Enable Brotli Content-Encoding support.";
2270
2271const char kEnableWebfontsInterventionName[] =
2272 "New version of User Agent Intervention for WebFonts loading.";
2273
2274const char kEnableWebfontsInterventionDescription[] =
2275 "Enable New version of User Agent Intervention for WebFonts loading.";
2276
2277const char kEnableWebfontsInterventionV2ChoiceDefault[] = "Default";
2278
2279const char kEnableWebfontsInterventionV2ChoiceEnabledWith2g[] = "Enabled: 2G";
2280
2281const char kEnableWebfontsInterventionV2ChoiceEnabledWith3g[] = "Enabled: 3G";
2282
2283const char kEnableWebfontsInterventionV2ChoiceEnabledWithSlow2g[] =
2284 "Enabled: Slow 2G";
2285
2286const char kEnableWebfontsInterventionV2ChoiceDisabled[] = "Disabled";
2287
2288const char kEnableWebfontsInterventionTriggerName[] =
2289 "Trigger User Agent Intervention for WebFonts loading always.";
2290
2291const char kEnableWebfontsInterventionTriggerDescription[] =
2292 "Enable to trigger User Agent Intervention for WebFonts loading always. "
2293 "This flag affects only when the intervention is enabled.";
2294
2295const char kEnableScrollAnchoringName[] = "Scroll Anchoring";
2296
2297const char kEnableScrollAnchoringDescription[] =
2298 "Adjusts scroll position to prevent visible jumps when offscreen "
2299 "content changes.";
2300
2301#if defined(OS_CHROMEOS)
2302
skaua9afc0212017-04-07 19:18:472303const char kDisableNativeCupsName[] = "Native CUPS";
vabr0215a8e2017-03-28 12:47:342304
skaua9afc0212017-04-07 19:18:472305const char kDisableNativeCupsDescription[] =
2306 "Disable the use of the native CUPS printing backend.";
vabr0215a8e2017-03-28 12:47:342307
2308const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App";
2309
2310const char kEnableAndroidWallpapersAppDescription[] =
2311 "Enables the Android Wallpapers App as the default Wallpaper App on "
2312 "Chrome OS.";
2313
2314const char kEnableTouchSupportForScreenMagnifierName[] =
2315 "Touch support for screen magnifier";
2316
2317const char kEnableTouchSupportForScreenMagnifierDescription[] =
2318 "Enables touch support for screen magnifier";
2319
Rouslan Solomakhinbed1af22017-06-09 18:40:572320const char kEnableZipArchiverOnFileManagerName[] = "ZIP archiver for Drive";
takise183b8cb42017-04-07 05:12:082321
2322const char kEnableZipArchiverOnFileManagerDescription[] =
2323 "Enable the ability to archive and unpack files on Drive in the Files app";
2324
xiaochu32e9672a2017-05-04 04:15:082325const char kCrOSComponentName[] = "Chrome OS Component";
2326
2327const char kCrOSComponentDescription[] =
xiaochu169aadd2017-06-15 22:32:512328 "Enable the use of componentized escpr CUPS filter.";
xiaochu32e9672a2017-05-04 04:15:082329
vabr0215a8e2017-03-28 12:47:342330#endif // defined(OS_CHROMEOS)
2331
2332#if defined(OS_ANDROID)
2333
Vitalii Iarko112f9182017-06-20 11:59:552334const char kKeepPrefetchedContentSuggestionsName[] =
2335 "Keep prefetched content suggestions";
2336
2337const char kKeepPrefetchedContentSuggestionsDescription[] =
2338 "If enabled, some of prefetched content suggestions are not replaced by "
2339 "the new fetched suggestions.";
2340
vabr0215a8e2017-03-28 12:47:342341const char kContentSuggestionsCategoryOrderName[] =
2342 "Default content suggestions category order (e.g. on NTP)";
2343
2344const char kContentSuggestionsCategoryOrderDescription[] =
2345 "Set default order of content suggestion categories (e.g. on the NTP).";
2346
2347const char kContentSuggestionsCategoryRankerName[] =
2348 "Content suggestions category ranker (e.g. on NTP)";
2349
2350const char kContentSuggestionsCategoryRankerDescription[] =
2351 "Set category ranker to order categories of content suggestions (e.g. "
2352 "on the NTP).";
2353
2354const char kEnableNtpSnippetsVisibilityName[] =
2355 "Make New Tab Page Snippets more visible.";
2356
2357const char kEnableNtpSnippetsVisibilityDescription[] =
2358 "If enabled, the NTP snippets will become more discoverable with a "
2359 "larger portion of the first card above the fold.";
2360
jkrcal18514e662017-03-30 06:12:282361const char kEnableContentSuggestionsNewFaviconServerName[] =
2362 "Get favicons for content suggestions from a new server.";
2363
2364const char kEnableContentSuggestionsNewFaviconServerDescription[] =
2365 "If enabled, the content suggestions (on the NTP) will get favicons from a "
2366 "new favicon server.";
2367
mastizbac78ad2017-05-22 10:14:002368const char kEnableFaviconsFromWebManifestName[] =
2369 "Load favicons from Web Manifests";
2370
2371const char kEnableFaviconsFromWebManifestDescription[] =
2372 "Fetch Web Manifests on page load to read favicons from them.";
2373
jkrcal7d79de52017-05-05 18:13:102374const char kEnableNtpMostLikelyFaviconsFromServerName[] =
2375 "Download favicons for NTP tiles from Google.";
2376
2377const char kEnableNtpMostLikelyFaviconsFromServerDescription[] =
2378 "If enabled, missing favicons for NTP tiles get downloaded from Google. "
2379 "This only applies to tiles that originate from synced history.";
2380
Nicolas Dossou-gbetec92e3ff2017-05-24 14:21:482381const char kEnableContentSuggestionsCategoriesName[] =
2382 "Organize content suggestions by categories.";
2383
2384const char kEnableContentSuggestionsCategoriesDescription[] =
2385 "If enabled, the content suggestions will be grouped by categories or "
2386 "topics. Only remote content suggestions are shown when this is enabled.";
2387
mvanouwerkerk89d9edca2017-06-19 14:15:172388const char kEnableContentSuggestionsLargeThumbnailName[] =
2389 "Large thumbnails layout for content suggestions cards.";
2390
2391const char kEnableContentSuggestionsLargeThumbnailDescription[] =
2392 "If enabled, the content suggestions cards will use large thumbnails and "
2393 "some related adjustments.";
2394
mvanouwerkerk78328002017-07-04 11:59:312395const char kEnableContentSuggestionsVideoOverlayName[] =
2396 "Video icon overlay on thumbnails for content suggestions cards.";
2397
2398const char kEnableContentSuggestionsVideoOverlayDescription[] =
2399 "If enabled, the content suggestions cards for suggestions with a video "
2400 "will show a video play icon overlay on the thumbnail.";
2401
dgn2b5a43382017-04-06 16:56:562402const char kEnableContentSuggestionsSettingsName[] =
2403 "Show content suggestions settings.";
2404
2405const char kEnableContentSuggestionsSettingsDescription[] =
2406 "If enabled, the content suggestions settings will be available from the "
2407 "main settings menu.";
2408
mvanouwerkerk6771b152017-05-10 14:40:342409const char kEnableContentSuggestionsShowSummaryName[] =
2410 "Show content suggestions summaries.";
2411
2412const char kEnableContentSuggestionsShowSummaryDescription[] =
2413 "If enabled, the content suggestions summaries will be shown.";
2414
vabr0215a8e2017-03-28 12:47:342415const char kEnableNtpRemoteSuggestionsName[] =
2416 "Show server-side suggestions on the New Tab page";
2417
2418const char kEnableNtpRemoteSuggestionsDescription[] =
2419 "If enabled, the list of content suggestions on the New Tab page (see "
2420 "#enable-ntp-snippets) will contain server-side suggestions (e.g., "
2421 "Articles for you). Furthermore, it allows to override the source used "
2422 "to retrieve these server-side suggestions.";
2423
2424const char kEnableNtpRecentOfflineTabSuggestionsName[] =
2425 "Show recent offline tabs on the New Tab page";
2426
2427const char kEnableNtpRecentOfflineTabSuggestionsDescription[] =
2428 "If enabled, the list of content suggestions on the New Tab page (see "
2429 "#enable-ntp-snippets) will contain pages that were captured offline "
2430 "during browsing (see #offlining-recent-pages)";
2431
vabr0215a8e2017-03-28 12:47:342432const char kEnableNtpAssetDownloadSuggestionsName[] =
2433 "Show asset downloads on the New Tab page";
2434
2435const char kEnableNtpAssetDownloadSuggestionsDescription[] =
2436 "If enabled, the list of content suggestions on the New Tab page (see "
2437 "#enable-ntp-snippets) will contain assets (e.g. books, pictures, "
2438 "audio) that the user downloaded for later use.";
2439
2440const char kEnableNtpOfflinePageDownloadSuggestionsName[] =
2441 "Show offline page downloads on the New Tab page";
2442
2443const char kEnableNtpOfflinePageDownloadSuggestionsDescription[] =
2444 "If enabled, the list of content suggestions on the New Tab page (see "
2445 "#enable-ntp-snippets) will contain pages that the user downloaded for "
2446 "later use.";
2447
2448const char kEnableNtpBookmarkSuggestionsName[] =
2449 "Show recently visited bookmarks on the New Tab page";
2450
2451const char kEnableNtpBookmarkSuggestionsDescription[] =
2452 "If enabled, the list of content suggestions on the New Tab page (see "
2453 "#enable-ntp-snippets) will contain recently visited bookmarks.";
2454
2455const char kEnableNtpPhysicalWebPageSuggestionsName[] =
2456 "Show Physical Web pages on the New Tab page";
2457
2458const char kEnableNtpPhysicalWebPageSuggestionsDescription[] =
2459 "If enabled, the list of content suggestions on the New Tab page (see "
2460 "#enable-ntp-snippets) will contain pages that are available through "
2461 "Physical Web (see #enable-physical-web)";
2462
2463const char kEnableNtpForeignSessionsSuggestionsName[] =
2464 "Show recent foreign tabs on the New Tab page";
2465
2466const char kEnableNtpForeignSessionsSuggestionsDescription[] =
2467 "If enabled, the list of content suggestions on the New Tab page (see "
2468 "#enable-ntp-snippets) will contain recent foreign tabs.";
2469
2470const char kEnableNtpSuggestionsNotificationsName[] =
2471 "Notify about new content suggestions available at the New Tab page";
2472
2473const char kEnableNtpSuggestionsNotificationsDescription[] =
2474 "If enabled, notifications will inform about new content suggestions on "
2475 "the New Tab page (see #enable-ntp-snippets).";
2476
2477const char kNtpCondensedLayoutName[] = "Condensed NTP layout";
2478
2479const char kNtpCondensedLayoutDescription[] =
2480 "Show a condensed layout on the New Tab Page.";
2481
2482const char kNtpCondensedTileLayoutName[] = "Condensed NTP tile layout";
2483
2484const char kNtpCondensedTileLayoutDescription[] =
2485 "Show a condensed tile layout on the New Tab Page.";
2486
2487const char kNtpGoogleGInOmniboxName[] = "Google G in New Tab Page omnibox";
2488
2489const char kNtpGoogleGInOmniboxDescription[] =
2490 "Show a Google G in the omnibox on the New Tab Page.";
2491
2492#endif // defined(OS_ANDROID)
2493
2494#if defined(OS_ANDROID)
2495
2496const char kOffliningRecentPagesName[] =
2497 "Enable offlining of recently visited pages";
2498
2499const char kOffliningRecentPagesDescription[] =
2500 "Enable storing recently visited pages locally for offline use. "
2501 "Requires Offline Pages to be enabled.";
2502
2503const char kOfflinePagesCtName[] = "Enable Offline Pages CT features.";
2504
2505const char kOfflinePagesCtDescription[] = "Enable Offline Pages CT features.";
2506
2507#endif // defined(OS_ANDROID)
2508
2509#if defined(OS_ANDROID)
2510
brettw5f9c1642017-05-14 17:12:482511const char kEnableExpandedAutofillCreditCardPopupLayoutName[] =
vabr0215a8e2017-03-28 12:47:342512 "Use expanded autofill credit card popup layout.";
2513
2514const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
2515 "If enabled, displays autofill credit card popup using expanded "
2516 "layout.";
2517
2518#endif // defined(OS_ANDROID)
2519
szhangcsb9da01c2017-06-23 00:22:452520const char kEnableAutofillCreditCardBankNameDisplayName[] =
2521 "Display the issuer bank name of a credit card in autofill.";
2522
2523const char kEnableAutofillCreditCardBankNameDisplayDescription[] =
2524 "If enabled, displays the issuer bank name of a credit card in autofill.";
2525
brettw5f9c1642017-05-14 17:12:482526const char kEnableAutofillCreditCardLastUsedDateDisplayName[] =
vabr0215a8e2017-03-28 12:47:342527 "Display the last used date of a credit card in autofill.";
2528
2529const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
2530 "If enabled, display the last used date of a credit card in autofill.";
2531
brettw5f9c1642017-05-14 17:12:482532const char kEnableAutofillCreditCardUploadCvcPromptName[] =
jsaul314052192017-04-13 23:20:572533 "Enable requesting missing CVC during Autofill credit card upload";
2534
2535const char kEnableAutofillCreditCardUploadCvcPromptDescription[] =
2536 "If enabled, requests missing CVC when offering to upload credit cards to "
2537 "Google Payments.";
2538
vabr0215a8e2017-03-28 12:47:342539#if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD)
2540
2541const char kGoogleBrandedContextMenuName[] =
2542 "Google branding in the context menu";
2543
2544const char kGoogleBrandedContextMenuDescription[] =
2545 "Shows a Google icon next to context menu items powered by Google "
2546 "services.";
2547
2548#endif // !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD)
2549
2550const char kEnableWebUsbName[] = "WebUSB";
2551
2552const char kEnableWebUsbDescription[] = "Enable WebUSB support.";
2553
Miguel Casas-Sanchez30e02552017-06-22 00:54:152554const char kEnableImageCaptureAPIName[] = "Image Capture API";
2555
2556const char kEnableImageCaptureAPIDescription[] =
2557 "Enables the Web Platform Image Capture API: takePhoto(), "
2558 "getPhotoCapabilities(), etc.";
2559
vabr0215a8e2017-03-28 12:47:342560const char kEnableGenericSensorName[] = "Generic Sensor";
2561
2562const char kEnableGenericSensorDescription[] =
2563 "Enable sensor APIs based on Generic Sensor API.";
2564
2565const char kFontCacheScalingName[] = "FontCache scaling";
2566
2567const char kFontCacheScalingDescription[] =
2568 "Reuse a cached font in the renderer to serve different sizes of font "
2569 "for faster layout.";
2570
2571const char kFramebustingName[] =
2572 "Framebusting requires same-origin or a user gesture";
2573
2574const char kFramebustingDescription[] =
2575 "Don't permit an iframe to navigate the top level browsing context "
2576 "unless they are same-origin or the iframe is processing a user "
2577 "gesture.";
2578
binluc5b59112017-04-19 15:38:462579const char kVibrateRequiresUserGestureName[] =
2580 "Requiring user gesture for the Vibration API";
2581
2582const char kVibrateRequiresUserGestureDescription[] =
2583 "Block the Vibration API if no user gesture has been received on "
2584 "the frame or any embedded frame.";
2585
vabr0215a8e2017-03-28 12:47:342586#if defined(OS_ANDROID)
mthiesse700b0b62017-05-19 01:37:312587#if BUILDFLAG(ENABLE_VR)
vabr0215a8e2017-03-28 12:47:342588const char kEnableVrShellName[] = "Enable Chrome VR.";
2589
2590const char kEnableVrShellDescription[] =
2591 "Allow browsing with a VR headset if available for this device.";
2592
mthiesse700b0b62017-05-19 01:37:312593const char kVrCustomTabBrowsingName[] = "Enable Custom Tab browsing in VR.";
2594
2595const char kVrCustomTabBrowsingDescription[] =
2596 "Allow browsing with a VR headset in a Custom Tab if available for this "
2597 "device.";
ymalike78a83b2017-05-19 20:42:312598
2599const char kWebVrAutopresentName[] = "Enable WebVr auto presentation";
2600
2601const char kWebVrAutopresentDescription[] =
2602 "Allows auto presentation of WebVr content from trusted first-party apps";
mthiesse700b0b62017-05-19 01:37:312603#endif // BUILDFLAG(ENABLE_VR)
vabr0215a8e2017-03-28 12:47:342604#endif // defined(OS_ANDROID)
2605
2606// Web payments
2607
2608const char kWebPaymentsName[] = "Web Payments";
2609
2610const char kWebPaymentsDescription[] =
2611 "Enable Web Payments API integration, a JavaScript API for merchants.";
2612
2613#if defined(OS_ANDROID)
2614
2615const char kEnableAndroidPayIntegrationV1Name[] = "Enable Android Pay v1";
2616
2617const char kEnableAndroidPayIntegrationV1Description[] =
2618 "Enable integration with Android Pay using the first version of the "
2619 "API";
2620
2621const char kEnableAndroidPayIntegrationV2Name[] = "Enable Android Pay v2";
2622
2623const char kEnableAndroidPayIntegrationV2Description[] =
2624 "Enable integration with Android Pay using the second version of the "
2625 "API";
2626
2627const char kEnableWebPaymentsSingleAppUiSkipName[] =
2628 "Enable Web Payments single app UI skip";
2629
2630const char kEnableWebPaymentsSingleAppUiSkipDescription[] =
2631 "Enable Web Payments to skip showing its UI if the developer specifies "
2632 "a single app.";
2633
2634const char kAndroidPaymentAppsName[] = "Android payment apps";
2635
2636const char kAndroidPaymentAppsDescription[] =
2637 "Enable third party Android apps to integrate as payment apps";
2638
mathpb36946b2017-05-09 14:27:162639const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps";
2640
2641const char kServiceWorkerPaymentAppsDescription[] =
2642 "Enable Service Worker applications to integrate as payment apps";
2643
vabr0215a8e2017-03-28 12:47:342644#endif // defined(OS_ANDROID)
2645
2646const char kFeaturePolicyName[] = "Feature Policy";
2647
2648const char kFeaturePolicyDescription[] =
2649 "Enables granting and removing access to features through the "
2650 "Feature-Policy HTTP header.";
2651
2652// Audio rendering mixing experiment strings.
2653
2654const char kNewAudioRenderingMixingStrategyName[] =
2655 "New audio rendering mixing strategy";
2656
2657const char kNewAudioRenderingMixingStrategyDescription[] =
2658 "Use the new audio rendering mixing strategy.";
2659
2660// Background video track disabling experiment strings.
2661
2662const char kBackgroundVideoTrackOptimizationName[] =
2663 "Optimize background video playback.";
2664
2665const char kBackgroundVideoTrackOptimizationDescription[] =
2666 "Disable video tracks when the video is played in the background to "
2667 "optimize performance.";
2668
avayvod232757942017-04-29 04:12:342669// New remote playback pipeline experiment strings.
2670
2671const char kNewRemotePlaybackPipelineName[] =
2672 "Enable the new remote playback pipeline.";
2673
2674const char kNewRemotePlaybackPipelineDescription[] =
2675 "Enable the new pipeline for playing media element remotely via "
2676 "RemotePlayback API or native controls.";
2677
vabr0215a8e2017-03-28 12:47:342678// Video fullscreen with orientation lock experiment strings.
2679
2680const char kVideoFullscreenOrientationLockName[] =
2681 "Lock screen orientation when playing a video fullscreen.";
2682
2683const char kVideoFullscreenOrientationLockDescription[] =
2684 "Lock the screen orientation of the device to match video orientation "
2685 "when a video goes fullscreen. Only on phones.";
2686
johnme913ee5f2017-04-28 21:36:162687// Video rotate-to-fullscreen experiment strings.
2688
2689const char kVideoRotateToFullscreenName[] =
2690 "Rotate-to-fullscreen gesture for videos.";
2691
2692const char kVideoRotateToFullscreenDescription[] =
2693 "Enter/exit fullscreen when device is rotated to/from the orientation of "
2694 "the video. Only on phones.";
2695
vabr0215a8e2017-03-28 12:47:342696// Expensive background timer throttling flag
2697
2698const char kExpensiveBackgroundTimerThrottlingName[] =
2699 "Throttle expensive background timers";
2700
2701const char kExpensiveBackgroundTimerThrottlingDescription[] =
2702 "Enables intervention to limit CPU usage of background timers to 1%.";
2703
2704// Enable default MediaSession flag
2705
2706#if !defined(OS_ANDROID)
2707
mlamouriff56c092017-05-11 15:31:392708const char kEnableAudioFocusName[] = "Manage audio focus across tabs";
vabr0215a8e2017-03-28 12:47:342709
mlamouriff56c092017-05-11 15:31:392710const char kEnableAudioFocusDescription[] =
vabr0215a8e2017-03-28 12:47:342711 "Manage audio focus across tabs to improve the audio mixing.";
2712
mlamouriff56c092017-05-11 15:31:392713const char kEnableAudioFocusDisabled[] = "Disabled";
vabr0215a8e2017-03-28 12:47:342714
mlamouriff56c092017-05-11 15:31:392715const char kEnableAudioFocusEnabled[] = "Enabled";
vabr0215a8e2017-03-28 12:47:342716
mlamouriff56c092017-05-11 15:31:392717const char kEnableAudioFocusEnabledDuckFlash[] =
vabr0215a8e2017-03-28 12:47:342718 "Enabled (Flash lowers volume when interrupted by other sound, "
2719 "experimental)";
2720
2721#endif // !defined(OS_ANDROID)
2722
2723#if defined(OS_WIN)
2724
2725const char kGdiTextPrinting[] = "GDI Text Printing";
2726
2727const char kGdiTextPrintingDescription[] =
2728 "Use GDI to print text as simply text";
2729
2730#endif // defined(OS_WIN)
2731
2732#if defined(OS_ANDROID)
2733
2734const char kModalPermissionPromptsName[] = "Modal Permission Prompts";
2735
2736const char kModalPermissionPromptsDescription[] =
2737 "Whether to use permission dialogs in place of permission infobars.";
2738
2739#endif // defined(OS_ANDROID)
2740
2741#if !defined(OS_MACOSX)
2742
2743const char kPermissionPromptPersistenceToggleName[] =
2744 "Persistence Toggle in Permission Prompts";
2745
2746const char kPermissionPromptPersistenceToggleDescription[] =
2747 "Whether to display a persistence toggle in permission prompts.";
2748
2749#endif // !defined(OS_MACOSX)
2750
2751#if defined(OS_ANDROID)
2752
2753const char kNoCreditCardAbort[] = "No Credit Card Abort";
2754
2755const char kNoCreditCardAbortDescription[] =
2756 "Whether or not the No Credit Card Abort is enabled.";
2757
2758#endif // defined(OS_ANDROID)
2759
2760// Consistent omnibox geolocation
2761
2762#if defined(OS_ANDROID)
2763
2764const char kEnableConsistentOmniboxGeolocationName[] =
2765 "Have consistent omnibox geolocation access.";
2766
2767const char kEnableConsistentOmniboxGeolocationDescription[] =
2768 "Have consistent geolocation access between the omnibox and default "
2769 "search engine.";
2770
2771#endif // defined(OS_ANDROID)
2772
2773// Media Remoting chrome://flags strings
2774
2775const char kMediaRemotingName[] = "Media Remoting during Cast Tab Mirroring";
2776
2777const char kMediaRemotingDescription[] =
2778 "When Casting a tab to a remote device, enabling this turns on an "
2779 "optimization that forwards the content bitstream directly to the "
2780 "remote device when a video is fullscreened.";
2781
vabr0215a8e2017-03-28 12:47:342782// Play Services LSD permission prompt chrome://flags strings
2783
2784#if defined(OS_ANDROID)
2785
2786const char kLsdPermissionPromptName[] =
2787 "Location Settings Dialog Permission Prompt";
2788
2789const char kLsdPermissionPromptDescription[] =
2790 "Whether to use the Google Play Services Location Settings Dialog "
2791 "permission dialog.";
2792
2793#endif // defined(OS_ANDROID)
2794
2795#if defined(OS_WIN)
2796
2797// Custom draw the Windows 10 titlebar. crbug.com/505013
2798
2799const char kWindows10CustomTitlebarName[] = "Custom-drawn Windows 10 Titlebar";
2800
2801const char kWindows10CustomTitlebarDescription[] =
2802 "If enabled, Chrome will draw the titlebar and caption buttons instead "
2803 "of deferring to Windows.";
2804
2805#endif // defined(OS_WIN)
2806
2807#if defined(OS_WIN)
2808
rbpotter556837e42017-05-01 18:49:042809const char kDisablePostscriptPrinting[] = "Disable PostScript Printing";
vabr0215a8e2017-03-28 12:47:342810
rbpotter556837e42017-05-01 18:49:042811const char kDisablePostscriptPrintingDescription[] =
2812 "Disables PostScript generation when printing to PostScript capable "
2813 "printers, and uses EMF generation in its place.";
vabr0215a8e2017-03-28 12:47:342814
2815#endif // defined(OS_WIN)
2816
2817#if defined(OS_ANDROID)
2818
2819const char kAiaFetchingName[] = "Intermediate Certificate Fetching";
2820
2821const char kAiaFetchingDescription[] =
2822 "Enable intermediate certificate fetching when a server does not "
2823 "provide sufficient certificates to build a chain to a trusted root.";
2824
2825#endif // defined(OS_ANDROID)
2826
2827// Web MIDI supports MIDIManager dynamic instantiation chrome://flags strings
2828
2829const char kEnableMidiManagerDynamicInstantiationName[] =
2830 "MIDIManager dynamic instantiation for Web MIDI.";
2831
2832const char kEnableMidiManagerDynamicInstantiationDescription[] =
2833 "Enable MIDIManager dynamic instantiation for Web MIDI.";
2834
2835// Desktop iOS promotion chrome://flags strings
2836
2837#if defined(OS_WIN)
2838
2839const char kEnableDesktopIosPromotionsName[] = "Desktop to iOS promotions.";
2840
2841const char kEnableDesktopIosPromotionsDescription[] =
2842 "Enable Desktop to iOS promotions, and allow users to see them if they "
2843 "are eligible.";
2844
2845#endif // defined(OS_WIN)
2846
2847#if defined(OS_ANDROID)
2848
2849const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
2850
2851const char kEnableCustomFeedbackUiDescription[] =
2852 "Enables a custom feedback UI when submitting feedback through Google "
2853 "Feedback. Works with Google Play Services v10.2+";
2854
2855#endif // defined(OS_ANDROID)
2856
vabr0215a8e2017-03-28 12:47:342857#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \
2858 defined(OS_WIN)
2859
2860const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
vabr0215a8e2017-03-28 12:47:342861const char kOmniboxEntitySuggestionsDescription[] =
krbcc621412017-06-01 19:40:282862 "Enable receiving entity suggestions - disambiguation descriptions - for "
2863 "Omnibox suggestions.";
2864
2865const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2866const char kOmniboxTailSuggestionsDescription[] =
2867 "Enable receiving tail suggestions, a type of search suggestion "
2868 "based on the last few words in the query, for the Omnibox.";
vabr0215a8e2017-03-28 12:47:342869
ojan38c678352017-04-11 20:27:552870const char kPauseBackgroundTabsName[] = "Pause background tabs";
2871const char kPauseBackgroundTabsDescription[] =
2872 "Pause timers in background tabs after 5 minutes on desktop.";
2873
spqchan6f9127a2017-04-29 03:42:022874const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2875const char kEnableNewAppMenuIconDescription[] =
2876 "Use the new app menu icon with update notification animations.";
spqchan064a8112017-04-18 16:46:322877
vabr0215a8e2017-03-28 12:47:342878#endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) ||
2879 // defined(OS_WIN)
2880
2881#if defined(OS_CHROMEOS)
2882
2883const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support";
2884
2885const char kEnableChromevoxArcSupportDescription[] =
2886 "Enable ChromeVox screen reader features in ARC";
2887
2888#endif // defined(OS_CHROMEOS)
2889
2890const char kMojoLoadingName[] = "Use Mojo IPC for resource loading";
2891
2892const char kMojoLoadingDescription[] =
2893 "Use Mojo IPC instead of traditional Chrome IPC for resource loading.";
2894
Takashi Toyoshima08ff9792017-07-04 08:06:342895const char kModuleScriptsName[] = "Enable ECMAScript 6 modules";
2896
2897const char kModuleScriptsDescription[] =
2898 "Enables ECMAScript 6 modules support in Blink.";
2899
vabr0215a8e2017-03-28 12:47:342900#if defined(OS_ANDROID)
2901
2902const char kUseNewDoodleApiName[] = "Use new Doodle API";
2903
2904const char kUseNewDoodleApiDescription[] =
2905 "Enables the new API to fetch Doodles for the NTP.";
2906
2907#endif // defined(OS_ANDROID)
2908
vabr0215a8e2017-03-28 12:47:342909const char kDebugShortcutsDescription[] =
2910 "Enables additional keyboard shortcuts that are useful for debugging "
2911 "Ash.";
2912
dskiba950fbc82017-04-12 20:36:282913const char kMemoryAblationName[] = "Memory ablation experiment";
2914const char kMemoryAblationDescription[] =
2915 "Allocates extra memory in the browser process.";
2916
jwanda1582bcf2017-03-30 04:33:482917#if defined(OS_ANDROID)
2918
2919const char kEnableCustomContextMenuName[] = "Enable custom context menu";
2920
2921const char kEnableCustomContextMenuDescription[] =
2922 "Enables a new context menu when a link, image, or video is pressed within "
2923 "Chrome.";
2924
2925#endif // defined(OS_ANDROID)
2926
vabr0215a8e2017-03-28 12:47:342927#if defined(OS_CHROMEOS)
2928
2929// File Manager
2930
2931const char kVideoPlayerChromecastSupportName[] =
2932 "Experimental Chromecast support for Video Player";
2933
2934const char kVideoPlayerChromecastSupportDescription[] =
2935 "This option enables experimental Chromecast support for Video Player "
2936 "app on ChromeOS.";
2937
2938const char kNewZipUnpackerName[] = "New ZIP unpacker";
2939
2940const char kNewZipUnpackerDescription[] =
2941 "New ZIP unpacker flow, based on the File System Provider API.";
2942
vabr0215a8e2017-03-28 12:47:342943const char kOfficeEditingComponentAppName[] =
2944 "Office Editing for Docs, Sheets & Slides";
2945
2946const char kOfficeEditingComponentAppDescription[] =
2947 "Office Editing for Docs, Sheets & Slides for testing purposes.";
2948
2949const char kDisplayColorCalibrationName[] = "Color calibration of the display";
2950
2951const char kDisplayColorCalibrationDescription[] =
2952 "Allow color calibration of the display if the display supports the "
2953 "feature.";
2954
newcomer403ac142017-07-05 18:26:302955const char kEnableFullscreenAppListName[] = "Enable The Peeking Launcher";
2956
2957const char kEnableFullscreenAppListDescription[] =
2958 "The peeking launcher UI supports touch and provides more space for upcoming "
2959 "features.";
2960
vabr0215a8e2017-03-28 12:47:342961const char kMemoryPressureThresholdName[] =
2962 "Memory discard strategy for advanced pressure handling";
2963
2964const char kMemoryPressureThresholdDescription[] =
2965 "Memory discarding strategy to use";
2966
2967const char kConservativeThresholds[] =
2968 "Conservative memory pressure release strategy";
2969
2970const char kAggressiveCacheDiscardThresholds[] =
2971 "Aggressive cache release strategy";
2972
2973const char kAggressiveTabDiscardThresholds[] =
2974 "Aggressive tab release strategy";
2975
2976const char kAggressiveThresholds[] =
2977 "Aggressive tab and cache release strategy";
2978
2979const char kWakeOnPacketsName[] = "Wake On Packets";
2980
2981const char kWakeOnPacketsDescription[] =
2982 "Enables waking the device based on the receipt of some network "
2983 "packets.";
2984
brettw5f9c1642017-05-14 17:12:482985const char kQuickUnlockPinName[] = "Quick Unlock (PIN)";
vabr0215a8e2017-03-28 12:47:342986
2987const char kQuickUnlockPinDescription[] =
jdufault74476492017-04-20 01:20:002988 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS "
2989 "device on the lock screen after you have signed into your device.";
2990
2991const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2992
2993const char kQuickUnlockPinSigninDescription[] =
2994 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS "
2995 "device. After changing this flag PIN needs to be set up again.";
vabr0215a8e2017-03-28 12:47:342996
2997const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2998
2999const char kQuickUnlockFingerprintDescription[] =
3000 "Enabling fingerprint quick unlock allows you to setup and use a "
3001 "fingerprint to unlock your Chromebook on the lock screen after you "
3002 "have signed into your device.";
3003
3004const char kExperimentalAccessibilityFeaturesName[] =
3005 "Experimental accessibility features";
3006
3007const char kExperimentalAccessibilityFeaturesDescription[] =
3008 "Enable additional accessibility features in the Settings page.";
3009
3010const char kDisableSystemTimezoneAutomaticDetectionName[] =
3011 "SystemTimezoneAutomaticDetection policy support";
3012
3013const char kDisableSystemTimezoneAutomaticDetectionDescription[] =
3014 "Disable system timezone automatic detection device policy.";
3015
3016const char kEolNotificationName[] = "Disable Device End of Life notification.";
3017
3018const char kEolNotificationDescription[] =
3019 "Disable Notifcation when Device is End of Life.";
3020
3021// Stylus strings
3022
3023const char kForceEnableStylusToolsName[] = "Force enable stylus features";
3024
3025const char kForceEnableStylusToolsDescription[] =
3026 "Forces display of the stylus tools menu in the shelf and the stylus "
3027 "section in settings, even if there is no attached stylus device.";
3028
3029// Network portal notification
3030
3031const char kNetworkPortalNotificationName[] =
3032 "Notifications about captive portals";
3033
3034const char kNetworkPortalNotificationDescription[] =
3035 "If enabled, notification is displayed when device is connected to a "
3036 "network behind captive portal.";
3037
stevenjbe1d457382017-05-24 22:37:243038const char kNetworkSettingsConfigName[] =
3039 "Settings based Network Configuration";
3040
3041const char kNetworkSettingsConfigDescription[] =
3042 "Enables the Settings based network configuration UI instead of the Views "
3043 "based configuration dialog.";
3044
vabr0215a8e2017-03-28 12:47:343045const char kMtpWriteSupportName[] = "MTP write support";
3046
3047const char kMtpWriteSupportDescription[] =
3048 "MTP write support in File System API (and file manager). In-place "
3049 "editing operations are not supported.";
3050
3051const char kCrosRegionsModeName[] = "Cros-regions load mode";
3052
3053const char kCrosRegionsModeDescription[] =
3054 "This flag controls cros-regions load mode";
3055
3056const char kCrosRegionsModeDefault[] = "Default";
3057
3058const char kCrosRegionsModeOverride[] = "Override VPD values.";
3059
3060const char kCrosRegionsModeHide[] = "Hide VPD values.";
3061
3062const char kPrinterProviderSearchAppName[] =
3063 "Chrome Web Store Gallery app for printer drivers";
3064
3065const char kPrinterProviderSearchAppDescription[] =
3066 "Enables Chrome Web Store Gallery app for printer drivers. The app "
3067 "searches Chrome Web Store for extensions that support printing to a "
3068 "USB printer with specific USB ID.";
3069
3070const char kArcBootCompleted[] = "Load Android apps automatically";
3071
3072const char kArcBootCompletedDescription[] =
3073 "Allow Android apps to start automatically after signing in.";
3074
3075const char kEnableImeMenuName[] = "Enable opt-in IME menu";
3076
3077const char kEnableImeMenuDescription[] =
3078 "Enable access to the new IME menu in the Language Settings page.";
3079
3080const char kEnableEhvInputName[] =
3081 "Emoji, handwriting and voice input on opt-in IME menu";
3082
3083const char kEnableEhvInputDescription[] =
3084 "Enable access to emoji, handwriting and voice input form opt-in IME "
3085 "menu.";
3086
fukino1b5ebe952017-04-07 05:35:303087const char kEnableEncryptionMigrationName[] =
3088 "Enable encryption migration of user data";
3089
3090const char kEnableEncryptionMigrationDescription[] =
3091 "If enabled and the device supports ARC, the user will be asked to update "
3092 "the encryption of user data when the user signs in.";
3093
Daniel Erat33054b22017-06-27 16:18:073094// Spurious power button detection
3095
3096const char kSpuriousPowerButtonWindowName[] = "Spurious power button window";
3097const char kSpuriousPowerButtonWindowDescription[] =
3098 "Number of recent accelerometer samples to examine to determine if a power "
3099 "button event was spurious.";
3100
3101const char kSpuriousPowerButtonAccelCountName[] =
3102 "Spurious power button acceleration count";
3103const char kSpuriousPowerButtonAccelCountDescription[] =
3104 "Number of recent acceleration samples that must meet or exceed exceed the "
3105 "threshold in order for a power button event to be considered spurious.";
3106
3107const char kSpuriousPowerButtonScreenAccelName[] =
3108 "Spurious power button screen acceleration threshold";
3109const char kSpuriousPowerButtonScreenAccelDescription[] =
3110 "Threshold (in m/s^2, disregarding gravity) that screen acceleration must "
3111 "meet or exceed for a power button event to be considered spurious.";
3112
3113const char kSpuriousPowerButtonKeyboardAccelName[] =
3114 "Spurious power button keyboard acceleration threshold";
3115const char kSpuriousPowerButtonKeyboardAccelDescription[] =
3116 "Threshold (in m/s^2, disregarding gravity) that keyboard acceleration "
3117 "must meet or exceed for a power button event to be considered spurious.";
3118
3119const char kSpuriousPowerButtonLidAngleChangeName[] =
3120 "Spurious power button lid angle change threshold";
3121const char kSpuriousPowerButtonLidAngleChangeDescription[] =
3122 "Change in lid angle (i.e. hinge between keyboard and screen) that must be "
3123 "met or exceeded for a power button event to be considered spurious.";
3124
vabr0215a8e2017-03-28 12:47:343125#endif // #if defined(OS_CHROMEOS)
3126
wychen2212fe72017-04-10 10:23:323127#if defined(OS_ANDROID)
3128
3129const char kEnableCopylessPasteName[] = "App Indexing (Copyless Paste)";
3130
3131const char kEnableCopylessPasteDescription[] =
3132 "Provide suggestions for text input, based on your recent context. For "
3133 "example, if you looked at a restaurant website and switched to the Maps "
3134 "app, the keyboard would offer the name of that restaurant as a suggestion "
3135 "to enter into the search bar. The data is indexed locally, and never sent "
3136 "to the server. It's disabled in incognito mode.";
3137
alexander.shalamov588eca42017-04-20 13:32:423138const char kEnableWebNfcName[] = "WebNFC";
3139
3140const char kEnableWebNfcDescription[] = "Enable WebNFC support.";
3141
wychen2212fe72017-04-10 10:23:323142#endif // defined(OS_ANDROID)
3143
xiaochengh91ba4c52017-04-21 03:49:253144const char kEnableIdleTimeSpellCheckingName[] =
3145 "Enable idle time spell checker";
3146
3147const char kEnableIdleTimeSpellCheckingDescription[] =
3148 "Make spell-checking code run only when the browser is idle, so that input "
3149 "latency is reduced, especially when editing long articles, emails, etc.";
3150
mpearson5aed28a2017-04-25 06:01:313151#if defined(OS_ANDROID)
3152
3153const char kEnableOmniboxClipboardProviderName[] =
3154 "Omnibox clipboard URL suggestions";
3155
3156const char kEnableOmniboxClipboardProviderDescription[] =
3157 "Provide a suggestion of the URL stored in the clipboard (if any) upon "
3158 "focus in the omnibox.";
3159
3160#endif // defined(OS_ANDROID)
3161
mlamouri1f264da22017-04-25 22:34:423162const char kAutoplayPolicyName[] = "Autoplay policy";
3163
3164const char kAutoplayPolicyDescription[] =
3165 "Policy used when deciding if audio or video is allowed to autoplay.";
3166
3167const char kAutoplayPolicyNoUserGestureRequired[] =
3168 "No user gesture is required.";
3169
3170const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
3171
mlamouri55a0543c2017-05-11 10:34:073172const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[] =
mlamouri1f264da22017-04-25 22:34:423173 "User gesture is required for cross-origin iframes.";
3174
mlamouri431bb4e2017-06-06 08:54:243175const char kAutoplayPolicyDocumentUserActivation[] =
3176 "Document user activation is required.";
3177
gcomanici8cabc77f2017-04-27 20:04:543178const char kOmniboxDisplayTitleForCurrentUrlName[] =
3179 "Include title for the current URL in the omnibox";
3180
3181const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3182 "In the event that the omnibox provides suggestions on-focus, the URL of "
3183 "the current page is provided as the first suggestion without a title. "
3184 "Enabling this flag causes the title to be displayed.";
3185
tommyclifd4ba2792017-06-14 00:05:393186const char kOmniboxUIHideSuggestionUrlPathName[] =
3187 "Omnibox UI Hide Suggestion URL Path";
3188const char kOmniboxUIHideSuggestionUrlPathDescription[] =
3189 "Elides the paths of suggested URLs in the Omnibox dropdown.";
3190
3191const char kOmniboxUIHideSuggestionUrlSchemeName[] =
3192 "Omnibox UI Hide Suggestion URL Scheme";
3193const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
3194 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
3195
3196const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
3197 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
3198const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
3199 "Elides trivially informative subdomains from suggested URLs in the "
3200 "Omnibox dropdown (e.g. www. and m.).";
3201
tommyclia5a538f92017-05-15 19:09:383202const char kOmniboxUIMaxAutocompleteMatchesName[] =
3203 "Omnibox UI Max Autocomplete Matches";
3204
3205const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
etienneb9a4b5302017-06-08 06:28:463206 "Changes the maximum number of autocomplete matches displayed in the "
tommyclia5a538f92017-05-15 19:09:383207 "Omnibox UI.";
3208
tommycli0695a7242017-06-09 17:32:223209const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown";
3210
3211const char kOmniboxUINarrowDropdownDescription[] =
3212 "Makes the suggestions dropdown width match the omnibox width.";
3213
tommycli26317da2017-05-26 20:50:333214const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout";
3215
3216const char kOmniboxUIVerticalLayoutDescription[] =
3217 "Displays Omnibox sugestions in 2 lines - title over origin.";
3218
tommycli2bb95c42017-05-08 18:07:023219const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
3220
3221const char kOmniboxUIVerticalMarginDescription[] =
3222 "Changes the vertical margin in the Omnibox UI.";
3223
tbansald3e08ca62017-05-04 19:51:093224const char kForceEffectiveConnectionTypeName[] =
3225 "Override effective connection type";
3226
3227const char kForceEffectiveConnectionTypeDescription[] =
3228 "Overrides the effective connection type of the current connection "
3229 "returned by the network quality estimator.";
3230
3231const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown";
3232const char kEffectiveConnectionTypeOfflineDescription[] = "Offline";
3233const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G";
3234const char kEffectiveConnectionType2GDescription[] = "2G";
3235const char kEffectiveConnectionType3GDescription[] = "3G";
3236const char kEffectiveConnectionType4GDescription[] = "4G";
3237
dskibac6376a62017-05-01 22:43:293238const char kEnableHeapProfilingName[] = "Heap profiling";
3239
3240const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
3241
3242const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
3243
3244const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
3245
3246const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
3247
fhorschig122c6652017-05-05 10:21:303248const char kUseSuggestionsEvenIfFewFeatureName[] =
3249 "Disable minimum for server-side tile suggestions on NTP.";
3250
3251const char kUseSuggestionsEvenIfFewFeatureDescription[] =
3252 "Request server-side suggestions even if there are only very few of them "
3253 "and use them for tiles on the New Tab Page.";
3254
treib32d2e422017-05-08 10:00:353255const char kCaptureThumbnailOnLoadFinishedName[] =
3256 "Capture page thumbnail on load finished";
3257
3258const char kCaptureThumbnailOnLoadFinishedDescription[] =
3259 "Capture a page thumbnail (for use on the New Tab page) when the page load "
3260 "finishes, in addition to other times a thumbnail may be captured.";
3261
stanisc14bed0b132017-05-10 17:46:373262#if defined(OS_WIN)
3263
3264// Name and description of the flag that enables D3D v-sync.
3265const char kEnableD3DVsync[] = "D3D v-sync";
3266const char kEnableD3DVsyncDescription[] =
3267 "Produces v-sync signal by having D3D wait for vertical blanking interval "
3268 "to occur.";
3269
3270#endif // defined(OS_WIN)
3271
thestig0c55ee32017-06-20 22:17:513272#if !defined(OS_ANDROID)
treib273e9db2017-05-11 14:02:263273
msarda6d4b3dc2017-06-02 15:39:473274const char kAccountConsistencyName[] =
3275 "Identity consistency between browser and cookie jar";
3276
3277const char kAccountConsistencyDescription[] =
3278 "When enabled, the browser manages signing in and out of Google "
3279 "accounts.";
3280
3281const char kAccountConsistencyChoiceMirror[] = "Mirror";
3282const char kAccountConsistencyChoiceDice[] = "Dice";
3283
treib273e9db2017-05-11 14:02:263284const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP";
3285const char kUseGoogleLocalNtpDescription[] =
3286 "Use the local New Tab page if Google is the default search engine.";
3287
3288const char kOneGoogleBarOnLocalNtpName[] =
3289 "Enable the OneGoogleBar on the local NTP";
3290const char kOneGoogleBarOnLocalNtpDescription[] =
3291 "Show a OneGoogleBar on the local New Tab page if Google is the default "
3292 "search engine.";
3293
thestig0c55ee32017-06-20 22:17:513294#endif // !defined(OS_ANDROID)
treib273e9db2017-05-11 14:02:263295
lgreyc0b638e52017-05-11 19:10:173296#if defined(OS_MACOSX)
3297extern const char kMacRTLName[] = "Enable RTL";
3298extern const char kMacRTLDescription[] =
3299 "Mirrors the UI for RTL language users";
elawrence408bddb2017-06-15 16:07:383300extern const char kMacTouchBarName[] = "Hardware TouchBar";
3301extern const char kMacTouchBarDescription[] =
3302 "Control the use of the TouchBar.";
lgreyc0b638e52017-05-11 19:10:173303#endif
3304
yhanadac5bff5b2017-05-18 06:37:093305#if defined(OS_CHROMEOS)
3306
3307const char kDisableNewVirtualKeyboardBehaviorName[] =
3308 "New window behavior for the accessibility keyboard";
3309const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3310 "Disable new window behavior for the accessibility keyboard "
3311 "in non-sticky mode (do not change work area in non-sticky mode).";
3312
bruthigeafb0c02017-06-09 13:11:533313const char kUiDevToolsName[] = "Enable native UI inspection";
3314const char kUiDevToolsDescription[] =
3315 "Enables inspection of native UI elements. For local inspection use "
3316 "chrome://inspect#other";
3317
orenb21da031c2017-06-30 21:24:203318const char kMultideviceName[] = "Enable multidevice features";
3319const char kMultideviceDescription[] =
3320 "Enables UI for controlling multidevice features.";
3321
yhanadac5bff5b2017-05-18 06:37:093322#endif // defined(OS_CHROMEOS)
3323
vabr0215a8e2017-03-28 12:47:343324} // namespace flag_descriptions