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