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 93 matching lines...) Loading... |
104 // for. | 104 // for. |
105 const char kAuthNegotiateDelegateWhitelist[] = | 105 const char kAuthNegotiateDelegateWhitelist[] = |
106 "auth-negotiate-delegate-whitelist"; | 106 "auth-negotiate-delegate-whitelist"; |
107 | 107 |
108 // HTTP authentication schemes to enable. This is a comma-separated list of | 108 // HTTP authentication schemes to enable. This is a comma-separated list of |
109 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 109 // 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 | 110 // schemes are enabled. The primary use of this command line flag is to help |
111 // triage authentication-related issues reported by end-users. | 111 // triage authentication-related issues reported by end-users. |
112 const char kAuthSchemes[] = "auth-schemes"; | 112 const char kAuthSchemes[] = "auth-schemes"; |
113 | 113 |
114 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | |
115 // with using the default credentials of the currently logged in user. | |
116 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | |
117 | |
118 // A flag that is used to tell Chrome that it was launched automatically at | 114 // A flag that is used to tell Chrome that it was launched automatically at |
119 // computer startup and not by some user action. | 115 // computer startup and not by some user action. |
120 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | 116 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
121 | 117 |
122 // This flag makes Chrome auto-select the provided choice when an extension asks | 118 // This flag makes Chrome auto-select the provided choice when an extension asks |
123 // permission to start desktop capture. Should only be used for tests. For | 119 // permission to start desktop capture. Should only be used for tests. For |
124 // instance, --auto-select-desktop-capture-source="Entire screen" will | 120 // instance, --auto-select-desktop-capture-source="Entire screen" will |
125 // automatically select to share the entire screen in English locales. | 121 // automatically select to share the entire screen in English locales. |
126 const char kAutoSelectDesktopCaptureSource[] = | 122 const char kAutoSelectDesktopCaptureSource[] = |
127 "auto-select-desktop-capture-source"; | 123 "auto-select-desktop-capture-source"; |
(...skipping 1298 matching lines...) Loading... |
1426 | 1422 |
1427 // ----------------------------------------------------------------------------- | 1423 // ----------------------------------------------------------------------------- |
1428 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1424 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1429 // | 1425 // |
1430 // You were going to just dump your switches here, weren't you? Instead, please | 1426 // You were going to just dump your switches here, weren't you? Instead, please |
1431 // put them in alphabetical order above, or in order inside the appropriate | 1427 // put them in alphabetical order above, or in order inside the appropriate |
1432 // ifdef at the bottom. The order should match the header. | 1428 // ifdef at the bottom. The order should match the header. |
1433 // ----------------------------------------------------------------------------- | 1429 // ----------------------------------------------------------------------------- |
1434 | 1430 |
1435 } // namespace switches | 1431 } // namespace switches |
OLD | NEW |