OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 91 |
92 // Triggers a pletora of diagnostic modes. | 92 // Triggers a pletora of diagnostic modes. |
93 const char kDiagnostics[] = "diagnostics"; | 93 const char kDiagnostics[] = "diagnostics"; |
94 | 94 |
95 // Disables the alternate window station for the renderer. | 95 // Disables the alternate window station for the renderer. |
96 const char kDisableAltWinstation[] = "disable-winsta"; | 96 const char kDisableAltWinstation[] = "disable-winsta"; |
97 | 97 |
98 // Disable the ApplicationCache. | 98 // Disable the ApplicationCache. |
99 const char kDisableApplicationCache[] = "disable-application-cache"; | 99 const char kDisableApplicationCache[] = "disable-application-cache"; |
100 | 100 |
| 101 // Disables the app launcher popup when a new tab is created, directly creates |
| 102 // a tab instead. Takes precedence over kAppLauncherForNewTab. |
| 103 // TODO(jcivelli): http://crbug.com/44089 this flag is required for some tests |
| 104 // to work, as showing the app launcher is the default on |
| 105 // ChromeOS but not on other platforms. Tests should be fixed |
| 106 // once it becomes the default behavior on all platforms. |
| 107 const char kDisableAppsPanel[] = "disable-apps-panel"; |
| 108 |
101 // Replaces the audio IPC layer for <audio> and <video> with a mock audio | 109 // Replaces the audio IPC layer for <audio> and <video> with a mock audio |
102 // device, useful when using remote desktop or machines without sound cards. | 110 // device, useful when using remote desktop or machines without sound cards. |
103 // This is temporary until we fix the underlying problem. | 111 // This is temporary until we fix the underlying problem. |
104 // | 112 // |
105 // TODO(scherkus): remove --disable-audio when we have a proper fallback | 113 // TODO(scherkus): remove --disable-audio when we have a proper fallback |
106 // mechanism. | 114 // mechanism. |
107 const char kDisableAudio[] = "disable-audio"; | 115 const char kDisableAudio[] = "disable-audio"; |
108 | 116 |
109 // Disable CNAME lookup of the host when generating the Kerberos SPN for a | 117 // Disable CNAME lookup of the host when generating the Kerberos SPN for a |
110 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 118 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 | 961 |
954 // ----------------------------------------------------------------------------- | 962 // ----------------------------------------------------------------------------- |
955 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 963 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
956 // | 964 // |
957 // You were going to just dump your switches here, weren't you? Instead, | 965 // You were going to just dump your switches here, weren't you? Instead, |
958 // please put them in alphabetical order above, or in order inside the | 966 // please put them in alphabetical order above, or in order inside the |
959 // appropriate ifdef at the bottom. The order should match the header. | 967 // appropriate ifdef at the bottom. The order should match the header. |
960 // ----------------------------------------------------------------------------- | 968 // ----------------------------------------------------------------------------- |
961 | 969 |
962 } // namespace switches | 970 } // namespace switches |
OLD | NEW |