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