OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 // Sets options for MHTML generator to skip no-store resources: | 637 // Sets options for MHTML generator to skip no-store resources: |
638 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 638 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
639 // "skip-nostore-all" - also skips no-store subresources. | 639 // "skip-nostore-all" - also skips no-store subresources. |
640 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 640 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
641 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 641 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
642 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 642 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
643 | 643 |
644 // Use a Mojo-based LocalStorage implementation. | 644 // Use a Mojo-based LocalStorage implementation. |
645 const char kMojoLocalStorage[] = "mojo-local-storage"; | 645 const char kMojoLocalStorage[] = "mojo-local-storage"; |
646 | 646 |
647 // Use a Mojo-based ServiceWorker implementation. | 647 // Disables a Mojo-based ServiceWorker implementation. |
648 const char kMojoServiceWorker[] = "mojo-service-worker"; | 648 const char kDisableMojoServiceWorker[] = "disable-mojo-service-worker"; |
649 | 649 |
650 // Mutes audio sent to the audio device so it is not audible during | 650 // Mutes audio sent to the audio device so it is not audible during |
651 // automated testing. | 651 // automated testing. |
652 const char kMuteAudio[] = "mute-audio"; | 652 const char kMuteAudio[] = "mute-audio"; |
653 | 653 |
654 // Don't send HTTP-Referer headers. | 654 // Don't send HTTP-Referer headers. |
655 const char kNoReferrers[] = "no-referrers"; | 655 const char kNoReferrers[] = "no-referrers"; |
656 | 656 |
657 // Disables the sandbox for all process types that are normally sandboxed. | 657 // Disables the sandbox for all process types that are normally sandboxed. |
658 const char kNoSandbox[] = "no-sandbox"; | 658 const char kNoSandbox[] = "no-sandbox"; |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1070 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1070 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1071 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1071 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1072 | 1072 |
1073 // Specifies the testcase used by the IPC fuzzer. | 1073 // Specifies the testcase used by the IPC fuzzer. |
1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1075 #endif | 1075 #endif |
1076 | 1076 |
1077 // Don't dump stuff here, follow the same order as the header. | 1077 // Don't dump stuff here, follow the same order as the header. |
1078 | 1078 |
1079 } // namespace switches | 1079 } // namespace switches |
OLD | NEW |