| 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 // Sets options for MHTML generator to skip no-store resources: | 664 // Sets options for MHTML generator to skip no-store resources: |
| 665 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 665 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
| 666 // "skip-nostore-all" - also skips no-store subresources. | 666 // "skip-nostore-all" - also skips no-store subresources. |
| 667 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 667 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
| 668 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 668 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
| 669 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 669 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
| 670 | 670 |
| 671 // Use a Mojo-based LocalStorage implementation. | 671 // Use a Mojo-based LocalStorage implementation. |
| 672 const char kMojoLocalStorage[] = "mojo-local-storage"; | 672 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 673 | 673 |
| 674 // Use a Mojo-based ServiceWorker implementation. |
| 675 const char kMojoServiceWorker[] = "mojo-service-worker"; |
| 676 |
| 674 // Mutes audio sent to the audio device so it is not audible during | 677 // Mutes audio sent to the audio device so it is not audible during |
| 675 // automated testing. | 678 // automated testing. |
| 676 const char kMuteAudio[] = "mute-audio"; | 679 const char kMuteAudio[] = "mute-audio"; |
| 677 | 680 |
| 678 // Don't send HTTP-Referer headers. | 681 // Don't send HTTP-Referer headers. |
| 679 const char kNoReferrers[] = "no-referrers"; | 682 const char kNoReferrers[] = "no-referrers"; |
| 680 | 683 |
| 681 // Disables the sandbox for all process types that are normally sandboxed. | 684 // Disables the sandbox for all process types that are normally sandboxed. |
| 682 const char kNoSandbox[] = "no-sandbox"; | 685 const char kNoSandbox[] = "no-sandbox"; |
| 683 | 686 |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1086 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1084 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1087 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1085 | 1088 |
| 1086 // Specifies the testcase used by the IPC fuzzer. | 1089 // Specifies the testcase used by the IPC fuzzer. |
| 1087 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1090 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1088 #endif | 1091 #endif |
| 1089 | 1092 |
| 1090 // Don't dump stuff here, follow the same order as the header. | 1093 // Don't dump stuff here, follow the same order as the header. |
| 1091 | 1094 |
| 1092 } // namespace switches | 1095 } // namespace switches |
| OLD | NEW |