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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 // HTTP authentication schemes to enable. This is a comma-separated list of | 111 // HTTP authentication schemes to enable. This is a comma-separated list of |
112 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 112 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
113 // schemes are enabled. The primary use of this command line flag is to help | 113 // schemes are enabled. The primary use of this command line flag is to help |
114 // triage authentication-related issues reported by end-users. | 114 // triage authentication-related issues reported by end-users. |
115 const char kAuthSchemes[] = "auth-schemes"; | 115 const char kAuthSchemes[] = "auth-schemes"; |
116 | 116 |
117 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 117 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
118 // with using the default credentials of the currently logged in user. | 118 // with using the default credentials of the currently logged in user. |
119 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 119 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
120 | 120 |
121 // Flag to specify the URL Chrome should download the Autocheckout whitelist | |
122 // from. | |
123 const char kAutocheckoutWhitelistUrl[] = "autocheckout-whitelist-url"; | |
Ilya Sherman
2013/01/24 22:01:55
Is this actually something that's useful to overri
benquan
2013/01/25 00:55:31
No, it is not. Do you mean define a constant rathe
Ilya Sherman
2013/01/25 01:22:40
Yes, my question is whether you really need this s
benquan
2013/01/26 02:05:53
Done.
| |
124 | |
121 // A flag that is used to tell Chrome that it was launched automatically at | 125 // A flag that is used to tell Chrome that it was launched automatically at |
122 // computer startup and not by some user action. | 126 // computer startup and not by some user action. |
123 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | 127 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
124 | 128 |
125 // Flag used to tell Chrome the base url of the Autofill service. | 129 // Flag used to tell Chrome the base url of the Autofill service. |
126 const char kAutofillServiceUrl[] = "autofill-service-url"; | 130 const char kAutofillServiceUrl[] = "autofill-service-url"; |
127 | 131 |
128 // The value of this switch tells the app to listen for and broadcast | 132 // The value of this switch tells the app to listen for and broadcast |
129 // automation-related messages on IPC channel with the given ID. | 133 // automation-related messages on IPC channel with the given ID. |
130 const char kAutomationClientChannelID[] = "automation-channel"; | 134 const char kAutomationClientChannelID[] = "automation-channel"; |
(...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1626 | 1630 |
1627 // ----------------------------------------------------------------------------- | 1631 // ----------------------------------------------------------------------------- |
1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1629 // | 1633 // |
1630 // You were going to just dump your switches here, weren't you? Instead, please | 1634 // You were going to just dump your switches here, weren't you? Instead, please |
1631 // put them in alphabetical order above, or in order inside the appropriate | 1635 // put them in alphabetical order above, or in order inside the appropriate |
1632 // ifdef at the bottom. The order should match the header. | 1636 // ifdef at the bottom. The order should match the header. |
1633 // ----------------------------------------------------------------------------- | 1637 // ----------------------------------------------------------------------------- |
1634 | 1638 |
1635 } // namespace switches | 1639 } // namespace switches |
OLD | NEW |