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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 // Value of GAIA auth code for --force-app-mode. | 94 // Value of GAIA auth code for --force-app-mode. |
95 const char kAppModeAuthCode[] = "app-mode-auth-code"; | 95 const char kAppModeAuthCode[] = "app-mode-auth-code"; |
96 | 96 |
97 // Value of OAuth2 refresh token for --force-app-mode. | 97 // Value of OAuth2 refresh token for --force-app-mode. |
98 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; | 98 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; |
99 | 99 |
100 // Enables overriding the path for the default authentication extension. | 100 // Enables overriding the path for the default authentication extension. |
101 const char kAuthExtensionPath[] = "auth-ext-path"; | 101 const char kAuthExtensionPath[] = "auth-ext-path"; |
102 | 102 |
103 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | |
104 // for. | |
105 const char kAuthNegotiateDelegateWhitelist[] = | |
106 "auth-negotiate-delegate-whitelist"; | |
107 | |
108 // HTTP authentication schemes to enable. This is a comma-separated list of | 103 // HTTP authentication schemes to enable. This is a comma-separated list of |
109 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 104 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
110 // schemes are enabled. The primary use of this command line flag is to help | 105 // schemes are enabled. The primary use of this command line flag is to help |
111 // triage authentication-related issues reported by end-users. | 106 // triage authentication-related issues reported by end-users. |
112 const char kAuthSchemes[] = "auth-schemes"; | 107 const char kAuthSchemes[] = "auth-schemes"; |
113 | 108 |
114 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 109 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
115 // with using the default credentials of the currently logged in user. | 110 // with using the default credentials of the currently logged in user. |
116 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 111 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
117 | 112 |
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1409 | 1404 |
1410 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
1411 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1406 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1412 // | 1407 // |
1413 // You were going to just dump your switches here, weren't you? Instead, please | 1408 // You were going to just dump your switches here, weren't you? Instead, please |
1414 // put them in alphabetical order above, or in order inside the appropriate | 1409 // put them in alphabetical order above, or in order inside the appropriate |
1415 // ifdef at the bottom. The order should match the header. | 1410 // ifdef at the bottom. The order should match the header. |
1416 // ----------------------------------------------------------------------------- | 1411 // ----------------------------------------------------------------------------- |
1417 | 1412 |
1418 } // namespace switches | 1413 } // namespace switches |
OLD | NEW |