| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 // Renderer.Memory histogram. Used in memory tests. | 625 // Renderer.Memory histogram. Used in memory tests. |
| 626 const char kMemoryMetrics[] = "memory-metrics"; | 626 const char kMemoryMetrics[] = "memory-metrics"; |
| 627 | 627 |
| 628 // Sets options for MHTML generator to skip no-store resources: | 628 // Sets options for MHTML generator to skip no-store resources: |
| 629 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' | 629 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' |
| 630 // "skip-nostore-all" - also skips no-store subresources. | 630 // "skip-nostore-all" - also skips no-store subresources. |
| 631 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; | 631 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; |
| 632 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; | 632 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; |
| 633 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; | 633 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; |
| 634 | 634 |
| 635 // Use Mojo-based Input Event routing. |
| 636 const char kMojoInputMessages[] = "mojo-input-messages"; |
| 637 |
| 635 // Use a Mojo-based LocalStorage implementation. | 638 // Use a Mojo-based LocalStorage implementation. |
| 636 const char kMojoLocalStorage[] = "mojo-local-storage"; | 639 const char kMojoLocalStorage[] = "mojo-local-storage"; |
| 637 | 640 |
| 638 // Mutes audio sent to the audio device so it is not audible during | 641 // Mutes audio sent to the audio device so it is not audible during |
| 639 // automated testing. | 642 // automated testing. |
| 640 const char kMuteAudio[] = "mute-audio"; | 643 const char kMuteAudio[] = "mute-audio"; |
| 641 | 644 |
| 642 // Don't send HTTP-Referer headers. | 645 // Don't send HTTP-Referer headers. |
| 643 const char kNoReferrers[] = "no-referrers"; | 646 const char kNoReferrers[] = "no-referrers"; |
| 644 | 647 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1073 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1071 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1074 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1072 | 1075 |
| 1073 // Specifies the testcase used by the IPC fuzzer. | 1076 // Specifies the testcase used by the IPC fuzzer. |
| 1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1077 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1075 #endif | 1078 #endif |
| 1076 | 1079 |
| 1077 // Don't dump stuff here, follow the same order as the header. | 1080 // Don't dump stuff here, follow the same order as the header. |
| 1078 | 1081 |
| 1079 } // namespace switches | 1082 } // namespace switches |
| OLD | NEW |