| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 const char kAppsNoThrob[] = "apps-no-throb"; | 98 const char kAppsNoThrob[] = "apps-no-throb"; |
| 99 | 99 |
| 100 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 100 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
| 101 // for. | 101 // for. |
| 102 const char kAuthNegotiateDelegateWhitelist[] = | 102 const char kAuthNegotiateDelegateWhitelist[] = |
| 103 "auth-negotiate-delegate-whitelist"; | 103 "auth-negotiate-delegate-whitelist"; |
| 104 | 104 |
| 105 // HTTP authentication schemes to enable. This is a comma-separated list of | 105 // HTTP authentication schemes to enable. This is a comma-separated list of |
| 106 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 106 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
| 107 // schemes are enabled. The primary use of this command line flag is to help | 107 // schemes are enabled. The primary use of this command line flag is to help |
| 108 // triage autentication-related issues reported by end-users. | 108 // triage authentication-related issues reported by end-users. |
| 109 const char kAuthSchemes[] = "auth-schemes"; | 109 const char kAuthSchemes[] = "auth-schemes"; |
| 110 | 110 |
| 111 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 111 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
| 112 // with using the default credentials of the currently logged in user. | 112 // with using the default credentials of the currently logged in user. |
| 113 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 113 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
| 114 | 114 |
| 115 // A flag that is used to tell Chrome that it was launched automatically at |
| 116 // computer startup and not by some user action. |
| 117 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
| 118 |
| 115 // The value of this switch tells the app to listen for and broadcast | 119 // The value of this switch tells the app to listen for and broadcast |
| 116 // automation-related messages on IPC channel with the given ID. | 120 // automation-related messages on IPC channel with the given ID. |
| 117 const char kAutomationClientChannelID[] = "automation-channel"; | 121 const char kAutomationClientChannelID[] = "automation-channel"; |
| 118 | 122 |
| 119 // Causes the automation provider to reinitialize its IPC channel instead of | 123 // Causes the automation provider to reinitialize its IPC channel instead of |
| 120 // shutting down when a client disconnects. | 124 // shutting down when a client disconnects. |
| 121 const char kAutomationReinitializeOnChannelError[] = | 125 const char kAutomationReinitializeOnChannelError[] = |
| 122 "automation-reinitialize-on-channel-error"; | 126 "automation-reinitialize-on-channel-error"; |
| 123 | 127 |
| 124 // How often (in seconds) to check for updates. Should only be used for testing | 128 // How often (in seconds) to check for updates. Should only be used for testing |
| (...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 | 1307 |
| 1304 // ----------------------------------------------------------------------------- | 1308 // ----------------------------------------------------------------------------- |
| 1305 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1309 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1306 // | 1310 // |
| 1307 // You were going to just dump your switches here, weren't you? Instead, please | 1311 // You were going to just dump your switches here, weren't you? Instead, please |
| 1308 // put them in alphabetical order above, or in order inside the appropriate | 1312 // put them in alphabetical order above, or in order inside the appropriate |
| 1309 // ifdef at the bottom. The order should match the header. | 1313 // ifdef at the bottom. The order should match the header. |
| 1310 // ----------------------------------------------------------------------------- | 1314 // ----------------------------------------------------------------------------- |
| 1311 | 1315 |
| 1312 } // namespace switches | 1316 } // namespace switches |
| OLD | NEW |