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 "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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
115 // HTTP authentication schemes to enable. This is a comma-separated list of | 115 // HTTP authentication schemes to enable. This is a comma-separated list of |
116 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 116 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
117 // schemes are enabled. The primary use of this command line flag is to help | 117 // schemes are enabled. The primary use of this command line flag is to help |
118 // triage authentication-related issues reported by end-users. | 118 // triage authentication-related issues reported by end-users. |
119 const char kAuthSchemes[] = "auth-schemes"; | 119 const char kAuthSchemes[] = "auth-schemes"; |
120 | 120 |
121 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 121 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
122 // with using the default credentials of the currently logged in user. | 122 // with using the default credentials of the currently logged in user. |
123 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 123 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
124 | 124 |
125 // Flag used to tell Chrome where to download autocheckout whitelist. | |
ahutter
2013/01/19 02:07:16
Maybe more like "Flag to specify the URL Chrome sh
benquan
2013/01/23 23:50:53
Done.
| |
126 const char kAutocheckoutWhitelistUrl[] = "autocheckout-whitelist-url"; | |
127 | |
125 // A flag that is used to tell Chrome that it was launched automatically at | 128 // A flag that is used to tell Chrome that it was launched automatically at |
126 // computer startup and not by some user action. | 129 // computer startup and not by some user action. |
127 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | 130 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
128 | 131 |
129 // Flag used to tell Chrome the base url of the Autofill service. | 132 // Flag used to tell Chrome the base url of the Autofill service. |
130 const char kAutofillServiceUrl[] = "autofill-service-url"; | 133 const char kAutofillServiceUrl[] = "autofill-service-url"; |
131 | 134 |
132 // The value of this switch tells the app to listen for and broadcast | 135 // The value of this switch tells the app to listen for and broadcast |
133 // automation-related messages on IPC channel with the given ID. | 136 // automation-related messages on IPC channel with the given ID. |
134 const char kAutomationClientChannelID[] = "automation-channel"; | 137 const char kAutomationClientChannelID[] = "automation-channel"; |
(...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1621 | 1624 |
1622 // ----------------------------------------------------------------------------- | 1625 // ----------------------------------------------------------------------------- |
1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1626 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1624 // | 1627 // |
1625 // You were going to just dump your switches here, weren't you? Instead, please | 1628 // You were going to just dump your switches here, weren't you? Instead, please |
1626 // put them in alphabetical order above, or in order inside the appropriate | 1629 // put them in alphabetical order above, or in order inside the appropriate |
1627 // ifdef at the bottom. The order should match the header. | 1630 // ifdef at the bottom. The order should match the header. |
1628 // ----------------------------------------------------------------------------- | 1631 // ----------------------------------------------------------------------------- |
1629 | 1632 |
1630 } // namespace switches | 1633 } // namespace switches |
OLD | NEW |