-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathselenium_switches.json
More file actions
4523 lines (4523 loc) · 231 KB
/
Copy pathselenium_switches.json
File metadata and controls
4523 lines (4523 loc) · 231 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"--accept-lang ": "----------------------------------------------------------------------------- Can't find the switch you are looking for? Try looking in: ash/constants/ash_switches.cc base/base_switches.cc etc. When commenting your switch, please use the same voice as surrounding comments. Imagine \"This switch...\" at the beginning of the phrase, and it'll all work out. ----------------------------------------------------------------------------- Specifies Accept-Language to send to servers and expose to JavaScript via the navigator.language DOM property. language[-country] where language is the 2 letter code from ISO-639. "
},
{
"--accept-resource-provider ": "Flag indicating that a resource provider must be set up to provide cast receiver with resources. Apps cannot start until provided resources. This flag implies --alsa-check-close-timeout=0. "
},
{
"--adaboost ": "No description "
},
{
"--add-gpu-appcontainer-caps[1] ": "Add additional capabilities to the AppContainer sandbox on the GPU process. "
},
{
"--add-xr-appcontainer-caps[1] ": "Add additional capabilities to the AppContainer sandbox used for XR compositing. "
},
{
"--additional-trust-token-key-commitments ": "Manually sets additional Trust Tokens key commitments in the network service to the given value, which should be a JSON dictionary satisfying the requirements of TrustTokenKeyCommitmentParser::ParseMultipleIssuers. These keys are available in addition to keys provided by the most recent call to TrustTokenKeyCommitments::Set. For issuers with keys provided through both the command line and TrustTokenKeyCommitments::Set, the keys provided through the command line take precedence. This is because someone testing manually might want to pass additional keys via the command line to a real Chrome release with the component updater enabled, and it would be surprising if the manually-passed keys were overwritten some time after startup when the component updater runs. "
},
{
"--aggressive-cache-discard ": "No description "
},
{
"--all ": "No description "
},
{
"--all-renderers ": "No description "
},
{
"--allarticles ": "No description "
},
{
"--allow-cross-origin-auth-prompt ": "Allows third-party content included on a page to prompt for a HTTP basic auth username/password pair. "
},
{
"--allow-external-pages ": "Allow access to external pages during web tests. "
},
{
"--allow-failed-policy-fetch-for-test ": "If this flag is passed, failed policy fetches will not cause profile initialization to fail. This is useful for tests because it means that tests don't have to mock out the policy infrastructure. "
},
{
"--allow-file-access-from-files ": "By default, file:// URIs cannot read other file:// URIs. This is an override for developers who need the old behavior for testing. "
},
{
"--allow-future-manifest-version ": "Mute extension errors while working with new manifest version. "
},
{
"--allow-http-background-page ": "Allows non-https URL for background_page for hosted apps. "
},
{
"--allow-http-screen-capture ": "Allow non-secure origins to use the screen capture API and the desktopCapture extension API. "
},
{
"--allow-insecure-localhost ": "Enables TLS/SSL errors on localhost to be ignored (no interstitial, no blocking of requests). "
},
{
"--allow-legacy-extension-manifests ": "Allows the browser to load extensions that lack a modern manifest when that would otherwise be forbidden. "
},
{
"--allow-loopback-in-peer-connection ": "Allows loopback interface to be added in network list for peer connection. "
},
{
"--allow-nacl-crxfs-api[2] ": "Specifies comma-separated list of extension ids or hosts to grant access to CRX file system APIs. "
},
{
"--allow-nacl-file-handle-api[2] ": "Specifies comma-separated list of extension ids or hosts to grant access to file handle APIs. "
},
{
"--allow-nacl-socket-api[2] ": "Specifies comma-separated list of extension ids or hosts to grant access to TCP/UDP socket APIs. "
},
{
"--allow-no-sandbox-job ": "Enables the sandboxed processes to run without a job object assigned to them. This flag is required to allow Chrome to run in RemoteApps or Citrix. This flag can reduce the security of the sandboxed processes and allow them to do certain API calls like shut down Windows or access the clipboard. Also we lose the chance to kill some processes until the outer job that owns them finishes. "
},
{
"--allow-os-install ": "When this flag is set, the OS installation UI can be accessed. This allows the user to install from USB to disk. "
},
{
"--allow-pre-commit-input ": "Allows processing of input before a frame has been committed. TODO(crbug.com/987626): Used by headless. Look for a way not involving a command line switch. "
},
{
"--allow-profiles-outside-user-dir ": "Allows profiles to be created outside of the user data dir. TODO(https://crbug.com/1060366): Various places in Chrome assume that all profiles are within the user data dir. Some tests need to violate that assumption. The switch should be removed after this workaround is no longer needed. "
},
{
"--allow-ra-in-dev-mode ": "Allows remote attestation (RA) in dev mode for testing purpose. Usually RA is disabled in dev mode because it will always fail. However, there are cases in testing where we do want to go through the permission flow even in dev mode. This can be enabled by this flag. "
},
{
"--allow-running-insecure-content[3] ": "No description "
},
{
"--allow-sandbox-debugging ": "Allows debugging of sandboxed processes (see zygote_main_linux.cc). "
},
{
"--allow-silent-push ": "Allows Web Push notifications that do not show a notification. "
},
{
"--allow-third-party-modules[1] ": "Allows third party modules to inject by disabling the BINARY_SIGNATURE mitigation policy on Win10+. Also has other effects in ELF. "
},
{
"--allow-unsecure-dlls[4] ": "Don't allow EnableSecureDllLoading to run when this is set. This is only to be used in tests. "
},
{
"--allowlisted-extension-id ": "Adds the given extension ID to all the permission allowlists. "
},
{
"--almanac-api-url ": "Override for the URL used for the ChromeOS Almanac API. Used for local testing with a non-production server (e.g. \"--almanac-api-url=http://localhost:8000\"). "
},
{
"--alsa-amp-device-name ": "Name of the device the amp mixer should be opened on. If this flag is not specified it will default to the same device as kAlsaVolumeDeviceName. "
},
{
"--alsa-amp-element-name ": "Name of the simple mixer control element that the ALSA-based media library should use to toggle powersave mode on the system. "
},
{
"--alsa-check-close-timeout ": "Time in ms to wait before closing the PCM handle when no more mixer inputs remain. Assumed to be 0 if --accept-resource-provider is present. "
},
{
"--alsa-enable-upsampling ": "Flag that enables resampling audio with sample rate below 32kHz up to 48kHz. Should be set to true for internal audio products. "
},
{
"--alsa-fixed-output-sample-rate ": "Optional flag to set a fixed sample rate for the alsa device. Deprecated: Use --audio-output-sample-rate instead. "
},
{
"--alsa-input-device[5] ": "The Alsa device to use when opening an audio input stream. "
},
{
"--alsa-mute-device-name ": "Name of the device the mute mixer should be opened on. If this flag is not specified it will default to the same device as kAlsaVolumeDeviceName. "
},
{
"--alsa-mute-element-name ": "Name of the simple mixer control element that the ALSA-based media library should use to mute the system. "
},
{
"--alsa-output-avail-min ": "Minimum number of available frames for scheduling a transfer. "
},
{
"--alsa-output-buffer-size ": "Size of the ALSA output buffer in frames. This directly sets the latency of the output device. Latency can be calculated by multiplying the sample rate by the output buffer size. "
},
{
"--alsa-output-device[5] ": "The Alsa device to use when opening an audio stream. "
},
{
"--alsa-output-period-size ": "Size of the ALSA output period in frames. The period of an ALSA output device determines how many frames elapse between hardware interrupts. "
},
{
"--alsa-output-start-threshold ": "How many frames need to be in the output buffer before output starts. "
},
{
"--alsa-volume-device-name ": "Name of the device the volume control mixer should be opened on. Will use the same device as kAlsaOutputDevice and fall back to \"default\" if kAlsaOutputDevice is not supplied. "
},
{
"--alsa-volume-element-name ": "Name of the simple mixer control element that the ALSA-based media library should use to control the volume. "
},
{
"--also-emit-success-logs ": "Also emit full event trace logs for successful tests. "
},
{
"--always-enable-hdcp ": "Causes HDCP of the specified type to always be enabled when an external display is connected. Used for HDCP compliance testing on ChromeOS. "
},
{
"--always-use-complex-text ": "Always use the complex text path for web tests. "
},
{
"--alwaystrue ": "No description "
},
{
"--android-fonts-path ": "Uses the android SkFontManager on linux. The specified directory should include the configuration xml file with the name \"fonts.xml\". This is used in blimp to emulate android fonts on linux. "
},
{
"--angle ": "No description "
},
{
"--animated-image-resume ": "Enables the resume method on animated images. "
},
{
"--animation-duration-scale ": "Scale factor to apply to every animation duration. Must be >= 0.0. This will only apply to LinearAnimation and its subclasses. "
},
{
"--app ": "Specifies that the associated value should be launched in \"application\" mode. "
},
{
"--app-auto-launched ": "Specifies whether an app launched in kiosk mode was auto launched with zero delay. Used in order to properly restore auto-launched state during session restore flow. "
},
{
"--app-id ": "Specifies that the extension-app with the specified id should be launched according to its configuration. "
},
{
"--app-launch-url-for-shortcuts-menu-item ": "Overrides the launch url of an app with the specified url. This is used along with kAppId to launch a given app with the url corresponding to an item in the app's shortcuts menu. "
},
{
"--app-mode-auth-code ": "Value of GAIA auth code for --force-app-mode. "
},
{
"--app-mode-oauth-token ": "Value of OAuth2 refresh token for --force-app-mode. "
},
{
"--app-mode-oem-manifest ": "Path for app's OEM manifest file. "
},
{
"--app-run-on-os-login-mode ": "This is used along with kAppId to indicate an app was launched during OS login, and which mode the app was launched in. "
},
{
"--app-shell-allow-roaming[6] ": "Allow roaming in the cellular network. "
},
{
"--app-shell-host-window-size[6] ": "Size for the host window to create (i.e. \"800x600\"). "
},
{
"--app-shell-preferred-network[6] ": "SSID of the preferred WiFi network. "
},
{
"--apple ": "No description "
},
{
"--apps-gallery-download-url ": "The URL that the webstore APIs download extensions from. Note: the URL must contain one '%s' for the extension ID. "
},
{
"--apps-gallery-update-url ": "The update url used by gallery/webstore extensions. "
},
{
"--apps-gallery-url ": "The URL to use for the gallery link in the app launcher. "
},
{
"--apps-keep-chrome-alive-in-tests[7] ": "Prevents Chrome from quitting when Chrome Apps are open. "
},
{
"--arc-availability ": "Signals ARC support status on this device. This can take one of the following three values. - none: ARC is not installed on this device. (default) - installed: ARC is installed on this device, but not officially supported. Users can enable ARC only when Finch experiment is turned on. - officially-supported: ARC is installed and supported on this device. So users can enable ARC via settings etc. "
},
{
"--arc-available ": "DEPRECATED: Please use --arc-availability=installed. Signals the availability of the ARC instance on this device. "
},
{
"--arc-data-cleanup-on-start ": "Flag that forces ARC data be cleaned on each start. "
},
{
"--arc-disable-app-sync ": "Flag that disables ARC app sync flow that installs some apps silently. Used in autotests to resolve racy conditions. "
},
{
"--arc-disable-download-provider ": "Flag that disables ARC download provider that prevents extra content to be downloaded and installed in context of Play Store and GMS Core. "
},
{
"--arc-disable-gms-core-cache ": "Used in autotest to disable GMS-core caches which is on by default. "
},
{
"--arc-disable-locale-sync ": "Flag that disables ARC locale sync with Android container. Used in autotest to prevent conditions when certain apps, including Play Store may get restarted. Restarting Play Store may cause random test failures. Enabling this flag would also forces ARC container to use 'en-US' as a locale and 'en-US,en' as preferred languages. "
},
{
"--arc-disable-media-store-maintenance ": "Used to disable GMS scheduling of media store periodic indexing and corpora maintenance tasks. Used in performance tests to prevent running during testing which can cause unstable results or CPU not idle pre-test failures. "
},
{
"--arc-disable-play-auto-install ": "Flag that disables ARC Play Auto Install flow that installs set of predefined apps silently. Used in autotests to resolve racy conditions. "
},
{
"--arc-disable-tts-cache ": "Used in autotest to disable TTS cache which is on by default. "
},
{
"--arc-disable-ureadahead ": "Flag that disables ureadahead completely, including host and guest parts. To enable only guest ureadahead, please use --arcvm-ureadahead-mode=readahead in combination with this switch (see |kArcVmUreadaheadMode|). TODO(b/264585671): Refactore this and |kArcHostUreadaheadGeneration| to mode enum. "
},
{
"--arc-force-show-optin-ui ": "Flag that forces the OptIn ui to be shown. Used in tests. "
},
{
"--arc-generate-play-auto-install ": "Flag that enables developer options needed to generate an ARC Play Auto Install roster. Used manually by developers. "
},
{
"--arc-host-ureadahead-generation ": "Flag that indicates host ureadahead generation session. Note, it is still valid even in case of kArcDisableUreadahead is set. TODO(b/264585671): Refactore this and |kArcDisableUreadahead| to mode enum. "
},
{
"--arc-install-event-chrome-log-for-tests ": "Write ARC++ install events to chrome log for integration test. "
},
{
"--arc-packages-cache-mode ": "Used in autotest to specifies how to handle packages cache. Can be copy - copy resulting packages.xml to the temporary directory. skip-copy - skip initial packages cache setup and copy resulting packages.xml to the temporary directory. "
},
{
"--arc-play-store-auto-update ": "Used in autotest to forces Play Store auto-update state. Can be on - auto-update is forced on. off - auto-update is forced off. "
},
{
"--arc-scale ": "Set the scale for ARC apps. This is in DPI. e.g. 280 DPI is ~ 1.75 device scale factor. See https://source.android.com/compatibility/android-cdd#3_7_runtime_compatibility for list of supported DPI values. "
},
{
"--arc-start-mode ": "Defines how to start ARC. This can take one of the following values: - always-start automatically start with Play Store UI support. - always-start-with-no-play-store automatically start without Play Store UI. If it is not set, then ARC is started in default mode. "
},
{
"--arc-tos-host-for-tests ": "Sets ARC Terms Of Service hostname url for testing. "
},
{
"--arcvm-ureadahead-mode ": "Sets the mode of operation for ureadahead during ARCVM boot. If this switch is not set, ARCVM ureadahead will check for the presence and age of pack file and reads ahead files to page cache for improved boot performance. readahead (default) - used during production and is equivalent to no switch being set. This is used in tast test to explicitly turn on guest ureadahead (see |kArcDisableUreadahead|). generate - used during Android PFQ data collector to pre-generate pack file and upload to Google Cloud as build artifact for CrOS build image. disabled - used for test purpose to disable ureadahead during ARCVM boot. note, |kArcDisableUreadahead| also disables both, guest and host parts of ureadahead. "
},
{
"--arcvm-use-hugepages ": "Madvises the kernel to use Huge Pages for guest memory. "
},
{
"--as-browser ": "Flag to launch tests in the browser process. "
},
{
"--ash-clear-fast-ink-buffer ": "Clear the fast ink buffer upon creation. This is needed on some devices that do not zero out new buffers. "
},
{
"--ash-constrain-pointer-to-root ": "Force the pointer (cursor) position to be kept inside root windows. "
},
{
"--ash-contextual-nudges-interval ": "Overrides the minimum time that must pass between showing user contextual nudges. Unit of time is in seconds. "
},
{
"--ash-contextual-nudges-reset-shown-count ": "Reset contextual nudge shown count on login. "
},
{
"--ash-debug-shortcuts ": "Enable keyboard shortcuts useful for debugging. "
},
{
"--ash-dev-shortcuts ": "Enable keyboard shortcuts used by developers only. "
},
{
"--ash-disable-touch-exploration-mode ": "Disable the Touch Exploration Mode. Touch Exploration Mode will no longer be turned on automatically when spoken feedback is enabled when this flag is set. "
},
{
"--ash-enable-cursor-motion-blur ": "Enable cursor motion blur. "
},
{
"--ash-enable-magnifier-key-scroller ": "Enables key bindings to scroll magnified screen. "
},
{
"--ash-enable-palette-on-all-displays ": "Enables the palette on every display, instead of only the internal one. "
},
{
"--ash-enable-software-mirroring ": "Enables software based mirroring. "
},
{
"--ash-enable-unified-desktop[6] ": "Enables unified desktop mode. "
},
{
"--ash-hide-notifications-for-factory ": "Hides notifications that are irrelevant to Chrome OS device factory testing, such as battery level updates. "
},
{
"--ash-host-window-bounds ": "Sets a window size, optional position, and optional scale factor. \"1024x768\" creates a window of size 1024x768. \"100+200-1024x768\" positions the window at 100,200. \"1024x768*2\" sets the scale factor to 2 for a high DPI display. \"800,0+800-800x800\" for two displays at 800x800 resolution. \"800,0+800-800x800,0+1600-800x800\" for three displays at 800x800 resolution. "
},
{
"--ash-no-nudges ": "Hides educational nudges that can interfere with tast integration tests. Somewhat similar to --no-first-run but affects system UI behavior, not browser behavior. "
},
{
"--ash-power-button-position ": "Power button position includes the power button's physical display side and the percentage for power button center position to the display's width/height in landscape_primary screen orientation. The value is a JSON object containing a \"position\" property with the value \"left\", \"right\", \"top\", or \"bottom\". For \"left\" and \"right\", a \"y\" property specifies the button's center position as a fraction of the display's height (in [0.0, 1.0]) relative to the top of the display. For \"top\" and \"bottom\", an \"x\" property gives the position as a fraction of the display's width relative to the left side of the display. "
},
{
"--ash-side-volume-button-position ": "The physical position info of the side volume button while in landscape primary screen orientation. The value is a JSON object containing a \"region\" property with the value \"keyboard\", \"screen\" and a \"side\" property with the value \"left\", \"right\", \"top\", \"bottom\". "
},
{
"--ash-touch-hud ": "Enables the heads-up display for tracking touch points. "
},
{
"--attestation-server ": "Used in AttestationClient to determine which Google Privacy CA to use for attestation. "
},
{
"--attribution-reporting-debug-mode ": "Causes the Attribution Report API to run without delays or noise. "
},
{
"--audio ": "No description "
},
{
"--audio-buffer-size ": "Allow users to specify a custom buffer size for debugging purpose. "
},
{
"--audio-capturer-with-echo-cancellation[8] ": "Forces AudioManagerFuchsia to assume that the AudioCapturer implements echo cancellation. TODO(crbug.com/852834): Remove this once AudioManagerFuchsia is updated to get this information from AudioCapturerFactory. "
},
{
"--audio-codecs-from-edid[9] ": "Audio codecs supported by the HDMI sink is retrieved from the audio service process. EDID contains the Short Audio Descriptors, which list the audio decoders supported, and the information is presented as a bitmask of supported audio codecs. "
},
{
"--audio-output-channels ": "Number of audio output channels. This will be used to send audio buffer with specific number of channels to ALSA and generate loopback audio. Default value is 2. "
},
{
"--audio-output-sample-rate ": "Specify fixed sample rate for audio output stream. If this flag is not specified the StreamMixer will choose sample rate based on the sample rate of the media stream. "
},
{
"--audio-process-high-priority[1] ": "Use high priority for the audio process. "
},
{
"--audio-service-quit-timeout-ms ": "Set a timeout (in milliseconds) for the audio service to quit if there are no client connections to it. If the value is negative the service never quits. "
},
{
"--aue-reached-for-update-required-test ": "If this switch is passed, the device policy DeviceMinimumVersion assumes that the device has reached Auto Update Expiration. This is useful for testing the policy behaviour on the DUT. "
},
{
"--aura-legacy-power-button ": "(Most) Chrome OS hardware reports ACPI power button releases correctly. Standard hardware reports releases immediately after presses. If set, we lock the screen or shutdown the system immediately in response to a press instead of displaying an interactive animation. "
},
{
"--auth-server-allowlist ": "Allowlist for Negotiate Auth servers. "
},
{
"--auth-spnego-account-type[10] ": "Android authentication account type for SPNEGO authentication "
},
{
"--auto ": "No description "
},
{
"--auto-accept-this-tab-capture ": "This flag makes Chrome auto-accept/reject requests to capture the current tab. It should only be used for tests. "
},
{
"--auto-open-devtools-for-tabs ": "This flag makes Chrome auto-open DevTools window for each tab. It is intended to be used by developers and automation to not require user interaction for opening DevTools. "
},
{
"--auto-reject-this-tab-capture ": "No description "
},
{
"--auto-select-desktop-capture-source ": "This flag makes Chrome auto-select the provided choice when an extension asks permission to start desktop capture. Should only be used for tests. For instance, --auto-select-desktop-capture-source=\"Entire screen\" will automatically select sharing the entire screen in English locales. The switch value only needs to be substring of the capture source name, i.e. \"display\" would match \"Built-in display\" and \"External display\", whichever comes first. "
},
{
"--auto-select-tab-capture-source-by-title ": "This flag makes Chrome auto-select a tab with the provided title when the media-picker should otherwise be displayed to the user. This switch is very similar to kAutoSelectDesktopCaptureSource, but limits selection to tabs. This solves the issue of kAutoSelectDesktopCaptureSource being liable to accidentally capturing the Chromium window instead of the tab, as both have the same title if the tab is focused. "
},
{
"--autofill-api-key ": "Sets the API key that will be used when calling Autofill API instead of using Chrome's baked key by default. You can use this to test new versions of the API that are not linked to the Chrome baked key yet. "
},
{
"--autofill-ios-delay-between-fields ": "The delay between filling two fields. "
},
{
"--autofill-server-url ": "Override the default autofill server URL with \"scheme://host[:port]/prefix/\". "
},
{
"--autofill-upload-throttling-period-in-days ": "The number of days after which to reset the registry of autofill events for which an upload has been sent. "
},
{
"--autoplay-policy ": "Command line flag name to set the autoplay policy. "
},
{
"--back-gesture-horizontal-threshold ": "The number of pixels from the start of a left swipe gesture to consider as a 'back' gesture. "
},
{
"--background-tracing-output-file ": "Sets a local file destination for tracing data. This is only used if kEnableBackgroundTracing is also specified. "
},
{
"--bgra ": "No description "
},
{
"--biod-fake ": "Enables BIOD fake behavior. If the switch is set, fake biod D-Bus client is initialized and BIOD events do not reach chrome. "
},
{
"--blink-settings ": "Set blink settings. Format is <name>[=<value],<name>[=<value>],... The names are declared in Settings.json5. For boolean type, use \"true\", \"false\", or omit '=<value>' part to set to true. For enum type, use the int value of the enum value. Applied after other command line flags and prefs. "
},
{
"--block-new-web-contents ": "If true, then all pop-ups and calls to window.open will fail. "
},
{
"--bootstrap ": "Values for the kExtensionContentVerification flag. See ContentVerifierDelegate::Mode for more explanation. "
},
{
"--borealis-launch-options ": "Allows passing a BorealisLaunchOptions string to the chrome process, which will be stored in the kExtraLaunchOptions. For the format, see the documentation in chrome/browser/ash/borealis/borealis_launch_options.h. "
},
{
"--bottom-gesture-start-height ": "The number of pixels up from the bottom of the screen to consider as a valid origin for a bottom swipe gesture. If set, overrides the value of both the above system-gesture-start-height flag and the default value in cast_system_gesture_handler.cc. "
},
{
"--browser ": "No description "
},
{
"--browser-data-backward-migration-for-user ": "Specifies the user that the browser data backward migration should happen for. "
},
{
"--browser-data-backward-migration-mode ": "Backward migration mode. Passed with `kBrowserDataBackwardMigrationForUser`. "
},
{
"--browser-data-migration-for-user ": "Specifies the user that the browser data migration should happen for. "
},
{
"--browser-data-migration-mode ": "Run move migration instead of copy. Passed with `kBrowserDataMigrationForUser`. "
},
{
"--browser-startup-dialog ": "Causes the browser process to display a dialog on launch. "
},
{
"--browser-subprocess-path ": "Path to the exe to run for the renderer and plugin subprocesses. "
},
{
"--browser-test ": "Tells whether the code is running browser tests (this changes the startup URL used by the content shell and also disables features that can make tests flaky [like monitoring of memory pressure]). "
},
{
"--bwsi ": "Indicates that the browser is in \"browse without sign-in\" (Guest session) mode. Should completely disable extensions, sync and bookmarks. "
},
{
"--bypass-app-banner-engagement-checks ": "This flag causes the user engagement checks for showing app banners to be bypassed. It is intended to be used by developers who wish to test that their sites otherwise meet the criteria needed to show app banners. "
},
{
"--canvas-2d-layers ": "Enable in-progress canvas 2d API methods BeginLayer and EndLayer. "
},
{
"--cast-app-background-color ": "Background color used when Chromium hasn't rendered anything yet. "
},
{
"--cast-developer-certificate-path ": "When enabled by build flags, passing this argument allows the Cast authentication utils to use a custom root developer certificate in the trust store instead of the root Google-signed cert. "
},
{
"--cast-initial-screen-height ": "No description "
},
{
"--cast-initial-screen-width ": "Used to pass initial screen resolution to GPU process. This allows us to set screen size correctly (so no need to resize when first window is created). "
},
{
"--cast-mojo-broker-path ": "Command-line arg to change the Unix domain socket path to connect to the Cast Mojo broker. "
},
{
"--cast-streaming-force-disable-hardware-h264 ": "No description "
},
{
"--cast-streaming-force-disable-hardware-vp8 ": "No description "
},
{
"--cast-streaming-force-enable-hardware-h264 ": "No description "
},
{
"--cast-streaming-force-enable-hardware-vp8 ": "No description "
},
{
"--cc-layer-tree-test-long-timeout ": "Increases timeout for memory checkers. "
},
{
"--cc-layer-tree-test-no-timeout ": "Prevents the layer tree unit tests from timing out. "
},
{
"--cc-scroll-animation-duration-in-seconds ": "Controls the duration of the scroll animation curve. "
},
{
"--cdm ": "No description "
},
{
"--cdm-data-directory ": "No description "
},
{
"--cdm-data-quota-bytes ": "No description "
},
{
"--cellular-first ": "If this flag is set, it indicates that this device is a \"Cellular First\" device. Cellular First devices use cellular telephone data networks as their primary means of connecting to the internet. Setting this flag has two consequences: 1. Cellular data roaming will be enabled by default. 2. UpdateEngine will be instructed to allow auto-updating over cellular data connections. "
},
{
"--change-stack-guard-on-fork ": "After a zygote forks a new process, change the stack canary. This switch is useful so not all forked processes use the same canary (a secret value), which can be vulnerable to information leaks and brute force attacks. See https://crbug.com/1206626. This requires that all functions on the stack at the time content::RunZygote() is called be compiled without stack canaries. Valid values are \"enable\" or \"disable\". "
},
{
"--character ": "No description "
},
{
"--check-accessibility-permission[11] ": "No description "
},
{
"--check-damage-early ": "Checks damage early and aborts the frame if no damage, so that clients like Android WebView don't invalidate unnecessarily. "
},
{
"--check-for-update-interval ": "How often (in seconds) to check for updates. Should only be used for testing purposes. "
},
{
"--check-permission[11] ": "No description "
},
{
"--check-screen-recording-permission[11] ": "No description "
},
{
"--child-wallpaper-large ": "Default large wallpaper to use for kids accounts (as path to trusted, non-user-writable JPEG file). "
},
{
"--child-wallpaper-small ": "Default small wallpaper to use for kids accounts (as path to trusted, non-user-writable JPEG file). "
},
{
"--chrome-mojo-pipe-token ": "The Mojo pipe token for IPC communication between the Software Reporter and Chrome. Dropped in M80. "
},
{
"--chromeos-video-decoder-task-runner[12] ": "Set the task runner strategy used for hardware video decoding on ChromeOS. If the option value of --chromeos-decoder-task-runner is * OneThreadPoolSequenceSharedByAllDecoders, then SequencedTaskRunner. * OneThreadPoolThreadSharedByAllDecoders, then SingleThreadTaskRunner (one of the threads in ThreadPool). * OneDedicatedThreadSharedByAllDecoders, then SingleThreadTaskRunner of base::Thread(\"VDdecThread\"), which is unique and only used for video decoders. * OneThreadPoolThreadPerDecoder (default), then SingleThreadTaskRunner of a dedicated thread newly created in ThreadPool per decoder. TODO(b/195769334): Propagate this to Chrome utility process for Out-of-Process video decoding. "
},
{
"--cipher-suite-blacklist ": "Comma-separated list of SSL cipher suites to disable. "
},
{
"--clamshell ": "Values for the kAshUiMode flag. "
},
{
"--class[13] ": "The same as the --class argument in X applications. Overrides the WM_CLASS window property with the given value. "
},
{
"--cleaning-timeout ": "Set the timeout for the cleaning phase, in minutes. 0 disables the timeout entirely. WARNING: this switch is used by internal test systems. Be careful when making changes. "
},
{
"--cleanup-id ": "Identifier used to group all reports generated during the same run of the cleaner, including runs before and after a reboot. The id is generated by the first cleaner process for a run, and propagated to spawned or scheduled cleaner processes. A new id will be generated in the first process for a subsequent cleanup, so cleanups from the same user cannot be tracked over time. "
},
{
"--clear-key-cdm-path-for-testing ": "Specifies the path to the Clear Key CDM for testing, which is necessary to support External Clear Key key system when library CDM is enabled. Note that External Clear Key key system support is also controlled by feature kExternalClearKeyForTesting. "
},
{
"--clear-token-service ": "Clears the token service before using it. This allows simulating the expiration of credentials during testing. "
},
{
"--compensate-for-unstable-pinch-zoom ": "Enable compensation for unstable pinch zoom. Some touch screens display significant amount of wobble when moving a finger in a straight line. This makes two finger scroll trigger an oscillating pinch zoom. See crbug.com/394380 for details. "
},
{
"--compile-shader-always-succeeds ": "Always return success when compiling a shader. Linking will still fail. "
},
{
"--component-updater ": "Comma-separated options to troubleshoot the component updater. Only valid for the browser process. "
},
{
"--component-updater-trust-tokens-component-path ": "Optional testing override of the Trust Tokens key commitment component's path. "
},
{
"--conditional-focus-window-ms ": "Allows overriding the conditional focus window's length. "
},
{
"--connectivity-check-url ": "Url for network connectivity checking. Default is \"https://clients3.google.com/generate_204\". "
},
{
"--conservative[6] ": "No description "
},
{
"--content-shell-devtools-tab-target ": "Let DevTools front-end talk to the target of type \"tab\" rather than \"frame\" when inspecting a WebContents. "
},
{
"--content-shell-hide-toolbar ": "Hides toolbar from content_shell's host window. "
},
{
"--content-shell-host-window-size ": "Size for the content_shell's host window (i.e. \"800x600\"). "
},
{
"--context-provider ": "No description "
},
{
"--controller ": "No description "
},
{
"--cors-exempt-headers ": "No description "
},
{
"--crash ": "Crash flag to force a crash right away. Mainly intended for ensuring crashes are properly recorded by crashpad. "
},
{
"--crash-dumps-dir ": "The directory breakpad should store minidumps in. "
},
{
"--crash-handler ": "Runs as the Crashpad handler. "
},
{
"--crash-loop-before[6] ": "A time_t. Passed by session_manager into the Chrome user session, indicating that if Chrome crashes before the indicated time, session_manager will consider this to be a crash-loop situation and log the user out. Chrome mostly just passes this to crash_reporter if it crashes. "
},
{
"--crash-on-failure ": "When specified to \"enable-leak-detection\" command-line option, causes the leak detector to cause immediate crash when found leak. "
},
{
"--crash-on-hang-threads ": "Comma-separated list of BrowserThreads that cause browser process to crash if the given browser thread is not responsive. UI/IO are the BrowserThreads that are supported. For example: --crash-on-hang-threads=UI:18,IO:18 --> Crash the browser if UI or IO is not responsive for 18 seconds while the other browser thread is responsive. "
},
{
"--crash-server-url ": "Server url to upload crash data to. Default is \"https://clients2.google.com/cr/report\" for prod devices. Default is \"https://clients2.google.com/cr/staging_report\" for non prod. "
},
{
"--crash-test ": "Causes the browser process to crash on startup. "
},
{
"--crashpad-handler ": "A process type (switches::kProcessType) that indicates chrome.exe or setup.exe is being launched as crashpad_handler. This is only used on Windows. We bundle the handler into chrome.exe on Windows because there is high probability of a \"new\" .exe being blocked or interfered with by application firewalls, AV software, etc. On other platforms, crashpad_handler is a standalone executable. "
},
{
"--crashpad-handler-pid[14] ": "The process ID of the Crashpad handler. "
},
{
"--create-browser-on-startup-for-tests ": "Some platforms like ChromeOS default to empty desktop. Browser tests may need to add this switch so that at least one browser instance is created on startup. TODO(nkostylev): Investigate if this switch could be removed. (http://crbug.com/148675) "
},
{
"--credits ": "Prints licensing information (same content as found in about:credits) and quits. "
},
{
"--cros-disks-fake ": "Enables cros disks fake behavior. If the switch is set, fake cros disk D-Bus client is initialized and USB events do not reach chrome. "
},
{
"--cros-postlogin-data-fd ": "FD pointing to an anonymous pipe containing the post-login data. "
},
{
"--cros-postlogin-log-file ": "The path of the log file that Lacros should use post-login. "
},
{
"--cros-region ": "Forces CrOS region value. "
},
{
"--cros-startup-data-fd ": "FD pointing a (memory backed) file containing the startup data. "
},
{
"--crosh-command[6] ": "Custom crosh command. "
},
{
"--cryptauth-http-host ": "Overrides the default URL for Google APIs (https://www.googleapis.com) used by CryptAuth. "
},
{
"--cryptauth-v2-devicesync-http-host ": "Overrides the default URL for CryptAuth v2 DeviceSync: https://cryptauthdevicesync.googleapis.com. "
},
{
"--cryptauth-v2-enrollment-http-host ": "Overrides the default URL for CryptAuth v2 Enrollment: https://cryptauthenrollment.googleapis.com. "
},
{
"--cryptohome-recovery-reauth-url ": "Overrides the url for fetching a reauth request token for Cryptohome recovery flow. "
},
{
"--cryptohome-recovery-use-test-env ": "Forces cryptohome recovery process to use test environment (test keys / URLs). "
},
{
"--cryptohome-use-authsession ": "Controls if AuthSession API should be used when interacting with cryptohomed. "
},
{
"--cryptohome-use-old-encryption-for-testing ": "Forces cryptohome to create new users using old (ecryptfs) encryption. This switch can be used to set up configurations that can be used to test encryption migration scenarios. "
},
{
"--custom-android-messages-domain ": "No description "
},
{
"--custom-devtools-frontend ": "Specifies the http:// endpoint which will be used to serve devtools://devtools/custom/<path> Or a file:// URL to specify a custom file path to load from for devtools://devtools/bundled/<path> "
},
{
"--custom_summary[10] ": "Forces a custom summary to be displayed below the update menu item. "
},
{
"--d3d-support[1] ": "No description "
},
{
"--d3d11 ": "No description "
},
{
"--d3d11-null ": "Special switches for \"NULL\"/stub driver implementations. "
},
{
"--d3d11on12 ": "No description "
},
{
"--d3d9 ": "No description "
},
{
"--daemon ": "No description "
},
{
"--dark-mode-settings ": "Sets dark mode settings. Format is [<param>=<value>],[<param>=<value>],... The params take either int or float values. If params are not specified, the default dark mode settings is used. Valid params are given below. \"InversionAlgorithm\" takes int value of DarkModeInversionAlgorithm enum. \"ImagePolicy\" takes int value of DarkModeImagePolicy enum. \"ForegroundBrightnessThreshold\" takes 0 to 255 int value. \"BackgroundBrightnessThreshold\" takes 0 to 255 int value. \"ContrastPercent\" takes -1.0 to 1.0 float value. Higher the value, more the contrast. "
},
{
"--data-path ": "Makes Content Shell use the given path for its data directory. NOTE: If changing this value, change the corresponding Java-side value in ContentShellBrowserTestActivity.java#getUserDataDirectoryCommandLineSwitch() to match. "
},
{
"--data-quota-bytes ": "No description "
},
{
"--dbus-stub ": "Forces the stub implementation of D-Bus clients. Using stub D-Bus clients is the default for non-Chrome OS environment, to use real D-Bus clients in non-Chrome OS environment, set this flag to \"never\". "
},
{
"--deadline-to-synchronize-surfaces ": "The default number of the BeginFrames to wait to activate a surface with dependencies. "
},
{
"--debug-devtools ": "Run devtools tests in debug mode (not bundled and minified) "
},
{
"--debug-enable-frame-toggle ": "Enables a frame context menu item that toggles the frame in and out of glass mode (Windows Vista and up only). "
},
{
"--debug-packed-apps ": "Adds debugging entries such as Inspect Element to context menus of packed apps. "
},
{
"--debug-print[15] ": "Enables support to debug printing subsystem. "
},
{
"--default ": "No description "
},
{
"--default-background-color ": "The background color to be used if the page doesn't specify one. Provided as RGB or RGBA integer value in hex, e.g. 'ff0000ff' for red or '00000000' for transparent. "
},
{
"--default-country-code[10] ": "Default country code to be used for search engine localization. "
},
{
"--default-tile-height ": "No description "
},
{
"--default-tile-width ": "Sets the tile size used by composited layers. "
},
{
"--default-trace-buffer-size-limit-in-kb ": "This is only used when we did not set buffer size in trace config and will be used for all trace sessions. If not provided, we will use the default value provided in perfetto_config.cc "
},
{
"--default-wallpaper-is-oem ": "Indicates that the wallpaper images specified by kAshDefaultWallpaper{Large,Small} are OEM-specific (i.e. they are not downloadable from Google). "
},
{
"--default-wallpaper-large ": "Default large wallpaper to use (as path to trusted, non-user-writable JPEG file). "
},
{
"--default-wallpaper-small ": "Default small wallpaper to use (as path to trusted, non-user-writable JPEG file). "
},
{
"--defer-feature-list ": "Defer initialization of the base::FeatureList in an external service process, allowing the process to include its own non-default features. "
},
{
"--demo-mode-enrolling-username ": "Test Organization Unit (OU) user to use for demo mode. Only pass the part before \"@cros-demo-mode.com\". "
},
{
"--demo-mode-force-arc-offline-provision ": "Force ARC provision to take code path for offline demo mode. "
},
{
"--demo-mode-highlights-extension ": "App ID to use for highlights app in demo mode. "
},
{
"--demo-mode-screensaver-extension ": "App ID to use for screensaver app in demo mode. "
},
{
"--demo-mode-swa-content-directory ": "Directory from which to fetch the demo mode SWA content (instead of downloading from Omaha). "
},
{
"--deny-elevation-for-testing ": "Instead of showing an elevation prompt, proceed as if the user denied the elevation. (Do this even if the cleaner is already running elevated, so that it behaves the same in unit tests run from elevated command shells.) "
},
{
"--deny-permission-prompts ": "Prevents permission prompts from appearing by denying instead of showing prompts. "
},
{
"--derelict-detection-timeout ": "Time in seconds before a machine at OOBE is considered derelict. "
},
{
"--derelict-idle-timeout ": "Time in seconds before a derelict machines starts demo mode. "
},
{
"--desktop ": "No description "
},
{
"--desktop-window-1080p ": "When present, desktop cast_shell will create 1080p window (provided display resolution is high enough). Otherwise, cast_shell defaults to 720p. "
},
{
"--deterministic-mode ": "A meta flag. This sets a number of flags which put the browser into deterministic mode where begin frames should be issued over DevToolsProtocol (experimental). "
},
{
"--device-management-url ": "Specifies the URL at which to communicate with the device management backend to fetch configuration policies and perform other device tasks. "
},
{
"--device-scale-factor[1] ": "Device scale factor passed to certain processes like renderers, etc. "
},
{
"--devtools-code-coverage ": "Directory to output JavaScript code coverage. When supplied enables coverage in selected browser tests. "
},
{
"--devtools-flags ": "Passes command line parameters to the DevTools front-end. "
},
{
"--diagnostics ": "Triggers a plethora of diagnostic modes. "
},
{
"--diagnostics-format ": "Sets the output format for diagnostic modes enabled by diagnostics flag. "
},
{
"--diagnostics-recovery ": "Tells the diagnostics mode to do the requested recovery step(s). "
},
{
"--direct-composition-video-swap-chain-format ": "Used for overriding the swap chain format for direct composition SDR video overlays. "
},
{
"--direction ": "No description "
},
{
"--disable ": "No description "
},
{
"--disable-2d-canvas-clip-aa ": "Disable antialiasing on 2d canvas clips "
},
{
"--disable-2d-canvas-image-chromium ": "Disables Canvas2D rendering into a scanout buffer for overlay support. "
},
{
"--disable-3d-apis ": "Disables client-visible 3D APIs, in particular WebGL and Pepper 3D. This is controlled by policy and is kept separate from the other enable/disable switches to avoid accidentally regressing the policy support for controlling access to these APIs. "
},
{
"--disable-accelerated-2d-canvas ": "Disable gpu-accelerated 2d canvas. "
},
{
"--disable-accelerated-mjpeg-decode ": "Disable hardware acceleration of mjpeg decode for captured frame, where available. "
},
{
"--disable-accelerated-video-decode ": "Disables hardware acceleration of video decode, where available. "
},
{
"--disable-accelerated-video-encode ": "Disables hardware acceleration of video encode, where available. "
},
{
"--disable-angle-features ": "Disables specified comma separated ANGLE features if found. "
},
{
"--disable-app-content-verification ": "Whether to disable app content verification when testing changes locally on Chromebox for Meetings hardware. "
},
{
"--disable-arc-cpu-restriction ": "Prevents any CPU restrictions being set on ARC[VM]. Only meant to be used by tests as some tests may time out if the ARC container is throttled. "
},
{
"--disable-arc-data-wipe ": "Disables android user data wipe on opt out. "
},
{
"--disable-arc-opt-in-verification ": "Disables ARC Opt-in verification process and ARC is enabled by default. "
},
{
"--disable-audio-input[8] ": "No description "
},
{
"--disable-audio-output ": "No description "
},
{
"--disable-auto-maximize-for-tests[16] ": "Disables the auto maximize feature on ChromeOS so that a browser window always starts in normal state. This is used by tests that do not want this auto maximizing behavior. "
},
{
"--disable-auto-reload ": "Disable auto-reload of error pages. "
},
{
"--disable-auto-wpt-origin-isolation ": "Disables the automatic origin isolation of web platform test domains. We normally origin-isolate them for better test coverage, but tests of opt-in origin isolation need to disable this. "
},
{
"--disable-ax-menu-list ": "Optionally disable AXMenuList, which makes the internal pop-up menu UI for a select element directly accessible. "
},
{
"--disable-back-forward-cache ": "Disables the BackForwardCache feature. "
},
{
"--disable-background-media-suspend ": "Do not immediately suspend media in background tabs. "
},
{
"--disable-background-networking ": "Disable several subsystems which run network requests in the background. This is for use when doing network performance testing to avoid noise in the measurements. "
},
{
"--disable-background-timer-throttling ": "Disable task throttling of timer tasks from background pages. "
},
{
"--disable-backgrounding-occluded-windows ": "Disable backgrounding renders for occluded windows. Done for tests to avoid nondeterministic behavior. "
},
{
"--disable-backing-store-limit ": "Disable limits on the number of backing stores. Can prevent blinking for users with many windows/tabs and lots of memory. "
},
{
"--disable-best-effort-tasks ": "Delays execution of TaskPriority::BEST_EFFORT tasks until shutdown. "
},
{
"--disable-blink-features ": "Disable one or more Blink runtime-enabled features. Use names from runtime_enabled_features.json5, separated by commas. Applied after kEnableBlinkFeatures, and after other flags that change these features. "
},
{
"--disable-breakpad ": "Disables the crash reporting. "
},
{
"--disable-buffer-bw-compression ": "Disable buffer bandwidth compression "
},
{
"--disable-cancel-all-touches[17] ": "Disable CancelAllTouches() function for the implementation on cancel single touches. "
},
{
"--disable-canvas-aa ": "Disable antialiasing on 2d canvas. "
},
{
"--disable-checker-imaging ": "Disabled defering all image decodes to the image decode service, ignoring DecodingMode preferences specified on PaintImage. "
},
{
"--disable-checking-optimization-guide-user-permissions ": "No description "
},
{
"--disable-chrome-tracing-computation ": "Disable the tracing service graph compuation while writing the trace. "
},
{
"--disable-component-extensions-with-background-pages ": "Disable default component extensions with background pages - useful for performance tests where these pages may interfere with perf results. "
},
{
"--disable-component-update[18] ": "No description "
},
{
"--disable-composited-antialiasing ": "Disables layer-edge anti-aliasing in the compositor. "
},
{
"--disable-cookie-encryption ": "Whether cookies stored as part of user profile are encrypted. "
},
{
"--disable-crash-reporter ": "Disable crash reporter for headless. It is enabled by default in official builds. "
},
{
"--disable-d3d11 ": "Disables use of D3D11. "
},
{
"--disable-databases ": "Disables HTML5 DB support. "
},
{
"--disable-dawn-features ": "Set the Dawn features(toggles) disabled on the creation of Dawn devices. "
},
{
"--disable-default-apps ": "Disables installation of default apps on first run. This is used during automated testing. "
},
{
"--disable-demo-mode ": "Disables the Chrome OS demo. "
},
{
"--disable-dev-shm-usage[19] ": "The /dev/shm partition is too small in certain VM environments, causing Chrome to fail or crash (see http://crbug.com/715363). Use this flag to work-around this issue (a temporary directory will always be used to create anonymous shared memory files). "
},
{
"--disable-device-disabling ": "If this switch is set, the device cannot be remotely disabled by its owner. "
},
{
"--disable-dinosaur-easter-egg ": "Disables the dinosaur easter egg on the offline interstitial. "
},
{
"--disable-direct-composition ": "Disables DirectComposition surface. "
},
{
"--disable-direct-composition-video-overlays ": "Disables using DirectComposition video overlays, even if hardware overlays are supported. "
},
{
"--disable-domain-blocking-for-3d-apis ": "Disable the per-domain blocking for 3D APIs after GPU reset. This switch is intended only for tests. "
},
{
"--disable-domain-reliability ": "Disables Domain Reliability Monitoring. "
},
{
"--disable-es3-gl-context ": "Disables use of ES3 backend (use ES2 backend instead). "
},