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 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 // A flag that is used to tell Chrome that it was launched automatically at | 121 // A flag that is used to tell Chrome that it was launched automatically at |
122 // computer startup and not by some user action. | 122 // computer startup and not by some user action. |
123 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | 123 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
124 | 124 |
| 125 // This flag makes Chrome auto-select the provided choice when an extension asks |
| 126 // permission to start desktop capture. Should only be used for tests. For |
| 127 // instance, --auto-select-desktop-capture-source="Entire screen" will |
| 128 // automatically select to share the entire screen in English locales. |
| 129 const char kAutoSelectDesktopCaptureSource[] = |
| 130 "auto-select-desktop-capture-source"; |
| 131 |
125 // Certificate Transparency: Uses the provided log(s) for checking Signed | 132 // Certificate Transparency: Uses the provided log(s) for checking Signed |
126 // Certificate Timestamps provided with certificates. | 133 // Certificate Timestamps provided with certificates. |
127 // The switch's value is: | 134 // The switch's value is: |
128 // log_description:log_key,log_description:log_key,... | 135 // log_description:log_key,log_description:log_key,... |
129 // where | 136 // where |
130 // log_description is a textual description of the log. | 137 // log_description is a textual description of the log. |
131 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's | 138 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's |
132 // public key. | 139 // public key. |
133 // Multiple logs can be specified by repeating description:key pairs, | 140 // Multiple logs can be specified by repeating description:key pairs, |
134 // separated by a comma. | 141 // separated by a comma. |
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1413 | 1420 |
1414 // ----------------------------------------------------------------------------- | 1421 // ----------------------------------------------------------------------------- |
1415 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1422 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1416 // | 1423 // |
1417 // You were going to just dump your switches here, weren't you? Instead, please | 1424 // You were going to just dump your switches here, weren't you? Instead, please |
1418 // put them in alphabetical order above, or in order inside the appropriate | 1425 // put them in alphabetical order above, or in order inside the appropriate |
1419 // ifdef at the bottom. The order should match the header. | 1426 // ifdef at the bottom. The order should match the header. |
1420 // ----------------------------------------------------------------------------- | 1427 // ----------------------------------------------------------------------------- |
1421 | 1428 |
1422 } // namespace switches | 1429 } // namespace switches |
OLD | NEW |