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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 // Sets options for MHTML generator to skip no-store resources: | 640 // Sets options for MHTML generator to skip no-store resources: |
641 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 641 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
642 // "skip-nostore-all" - also skips no-store subresources. | 642 // "skip-nostore-all" - also skips no-store subresources. |
643 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 643 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
644 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 644 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
645 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 645 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
646 | 646 |
647 // Use a Mojo-based LocalStorage implementation. | 647 // Use a Mojo-based LocalStorage implementation. |
648 const char kMojoLocalStorage[] = "mojo-local-storage"; | 648 const char kMojoLocalStorage[] = "mojo-local-storage"; |
649 | 649 |
650 // Use a Mojo-based ServiceWorker implementation. | 650 // Disables a Mojo-based ServiceWorker implementation. |
651 const char kMojoServiceWorker[] = "mojo-service-worker"; | 651 const char kDisableMojoServiceWorker[] = "disable-mojo-service-worker"; |
652 | 652 |
653 // Mutes audio sent to the audio device so it is not audible during | 653 // Mutes audio sent to the audio device so it is not audible during |
654 // automated testing. | 654 // automated testing. |
655 const char kMuteAudio[] = "mute-audio"; | 655 const char kMuteAudio[] = "mute-audio"; |
656 | 656 |
657 // Don't send HTTP-Referer headers. | 657 // Don't send HTTP-Referer headers. |
658 const char kNoReferrers[] = "no-referrers"; | 658 const char kNoReferrers[] = "no-referrers"; |
659 | 659 |
660 // Disables the sandbox for all process types that are normally sandboxed. | 660 // Disables the sandbox for all process types that are normally sandboxed. |
661 const char kNoSandbox[] = "no-sandbox"; | 661 const char kNoSandbox[] = "no-sandbox"; |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1066 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1067 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1067 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1068 | 1068 |
1069 // Specifies the testcase used by the IPC fuzzer. | 1069 // Specifies the testcase used by the IPC fuzzer. |
1070 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1070 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1071 #endif | 1071 #endif |
1072 | 1072 |
1073 // Don't dump stuff here, follow the same order as the header. | 1073 // Don't dump stuff here, follow the same order as the header. |
1074 | 1074 |
1075 } // namespace switches | 1075 } // namespace switches |
OLD | NEW |