| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 // Triggers a pletora of diagnostic modes. | 97 // Triggers a pletora of diagnostic modes. |
| 98 const char kDiagnostics[] = "diagnostics"; | 98 const char kDiagnostics[] = "diagnostics"; |
| 99 | 99 |
| 100 // Disables the alternate window station for the renderer. | 100 // Disables the alternate window station for the renderer. |
| 101 const char kDisableAltWinstation[] = "disable-winsta"; | 101 const char kDisableAltWinstation[] = "disable-winsta"; |
| 102 | 102 |
| 103 // Disable the ApplicationCache. | 103 // Disable the ApplicationCache. |
| 104 const char kDisableApplicationCache[] = "disable-application-cache"; | 104 const char kDisableApplicationCache[] = "disable-application-cache"; |
| 105 | 105 |
| 106 // Disables the app launcher popup when a new tab is created, directly creates | |
| 107 // a tab instead. Takes precedence over kAppLauncherForNewTab. | |
| 108 // TODO(jcivelli): http://crbug.com/44089 this flag is required for some tests | |
| 109 // to work, as showing the app launcher is the default on | |
| 110 // ChromeOS but not on other platforms. Tests should be fixed | |
| 111 // once it becomes the default behavior on all platforms. | |
| 112 const char kDisableAppsPanel[] = "disable-apps-panel"; | |
| 113 | |
| 114 // Replaces the audio IPC layer for <audio> and <video> with a mock audio | 106 // Replaces the audio IPC layer for <audio> and <video> with a mock audio |
| 115 // device, useful when using remote desktop or machines without sound cards. | 107 // device, useful when using remote desktop or machines without sound cards. |
| 116 // This is temporary until we fix the underlying problem. | 108 // This is temporary until we fix the underlying problem. |
| 117 // | 109 // |
| 118 // TODO(scherkus): remove --disable-audio when we have a proper fallback | 110 // TODO(scherkus): remove --disable-audio when we have a proper fallback |
| 119 // mechanism. | 111 // mechanism. |
| 120 const char kDisableAudio[] = "disable-audio"; | 112 const char kDisableAudio[] = "disable-audio"; |
| 121 | 113 |
| 122 // Disable CNAME lookup of the host when generating the Kerberos SPN for a | 114 // Disable CNAME lookup of the host when generating the Kerberos SPN for a |
| 123 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 115 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 | 961 |
| 970 // ----------------------------------------------------------------------------- | 962 // ----------------------------------------------------------------------------- |
| 971 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 963 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 972 // | 964 // |
| 973 // 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, |
| 974 // 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 |
| 975 // appropriate ifdef at the bottom. The order should match the header. | 967 // appropriate ifdef at the bottom. The order should match the header. |
| 976 // ----------------------------------------------------------------------------- | 968 // ----------------------------------------------------------------------------- |
| 977 | 969 |
| 978 } // namespace switches | 970 } // namespace switches |
| OLD | NEW |