| 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 // Renderer.Memory histogram. Used in memory tests. | 639 // Renderer.Memory histogram. Used in memory tests. |
| 640 const char kMemoryMetrics[] = "memory-metrics"; | 640 const char kMemoryMetrics[] = "memory-metrics"; |
| 641 | 641 |
| 642 // Sets options for MHTML generator to skip no-store resources: | 642 // Sets options for MHTML generator to skip no-store resources: |
| 643 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 643 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
| 644 // "skip-nostore-all" - also skips no-store subresources. | 644 // "skip-nostore-all" - also skips no-store subresources. |
| 645 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 645 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
| 646 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 646 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
| 647 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 647 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
| 648 | 648 |
| 649 // Use Mojo-based Input Event routing. |
| 650 const char kMojoInputMessages[] = "mojo-input-messages"; |
| 651 |
| 649 // Use a Mojo-based LocalStorage implementation. | 652 // Use a Mojo-based LocalStorage implementation. |
| 650 const char kMojoLocalStorage[] = "mojo-local-storage"; | 653 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 651 | 654 |
| 652 // Mutes audio sent to the audio device so it is not audible during | 655 // Mutes audio sent to the audio device so it is not audible during |
| 653 // automated testing. | 656 // automated testing. |
| 654 const char kMuteAudio[] = "mute-audio"; | 657 const char kMuteAudio[] = "mute-audio"; |
| 655 | 658 |
| 656 // Don't send HTTP-Referer headers. | 659 // Don't send HTTP-Referer headers. |
| 657 const char kNoReferrers[] = "no-referrers"; | 660 const char kNoReferrers[] = "no-referrers"; |
| 658 | 661 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1087 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1088 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1086 | 1089 |
| 1087 // Specifies the testcase used by the IPC fuzzer. | 1090 // Specifies the testcase used by the IPC fuzzer. |
| 1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1091 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1089 #endif | 1092 #endif |
| 1090 | 1093 |
| 1091 // Don't dump stuff here, follow the same order as the header. | 1094 // Don't dump stuff here, follow the same order as the header. |
| 1092 | 1095 |
| 1093 } // namespace switches | 1096 } // namespace switches |
| OLD | NEW |