| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 // Sets options for MHTML generator to skip no-store resources: | 654 // Sets options for MHTML generator to skip no-store resources: |
| 655 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 655 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
| 656 // "skip-nostore-all" - also skips no-store subresources. | 656 // "skip-nostore-all" - also skips no-store subresources. |
| 657 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 657 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
| 658 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 658 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
| 659 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 659 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
| 660 | 660 |
| 661 // Use a Mojo-based LocalStorage implementation. | 661 // Use a Mojo-based LocalStorage implementation. |
| 662 const char kMojoLocalStorage[] = "mojo-local-storage"; | 662 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 663 | 663 |
| 664 // Disables a Mojo-based ServiceWorker implementation. | |
| 665 const char kDisableMojoServiceWorker[] = "disable-mojo-service-worker"; | |
| 666 | |
| 667 // Mutes audio sent to the audio device so it is not audible during | 664 // Mutes audio sent to the audio device so it is not audible during |
| 668 // automated testing. | 665 // automated testing. |
| 669 const char kMuteAudio[] = "mute-audio"; | 666 const char kMuteAudio[] = "mute-audio"; |
| 670 | 667 |
| 671 // Don't send HTTP-Referer headers. | 668 // Don't send HTTP-Referer headers. |
| 672 const char kNoReferrers[] = "no-referrers"; | 669 const char kNoReferrers[] = "no-referrers"; |
| 673 | 670 |
| 674 // Disables the sandbox for all process types that are normally sandboxed. | 671 // Disables the sandbox for all process types that are normally sandboxed. |
| 675 const char kNoSandbox[] = "no-sandbox"; | 672 const char kNoSandbox[] = "no-sandbox"; |
| 676 | 673 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1089 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1090 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1094 | 1091 |
| 1095 // Specifies the testcase used by the IPC fuzzer. | 1092 // Specifies the testcase used by the IPC fuzzer. |
| 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1093 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1097 #endif | 1094 #endif |
| 1098 | 1095 |
| 1099 // Don't dump stuff here, follow the same order as the header. | 1096 // Don't dump stuff here, follow the same order as the header. |
| 1100 | 1097 |
| 1101 } // namespace switches | 1098 } // namespace switches |
| OLD | NEW |