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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 const char kAuthSchemes[] = "auth-schemes"; | 110 const char kAuthSchemes[] = "auth-schemes"; |
111 | 111 |
112 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 112 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
113 // with using the default credentials of the currently logged in user. | 113 // with using the default credentials of the currently logged in user. |
114 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 114 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
115 | 115 |
116 // A flag that is used to tell Chrome that it was launched automatically at | 116 // A flag that is used to tell Chrome that it was launched automatically at |
117 // computer startup and not by some user action. | 117 // computer startup and not by some user action. |
118 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; | 118 const char kAutoLaunchAtStartup[] = "auto-launch-at-startup"; |
119 | 119 |
| 120 // This flag makes Chrome auto-select the provided choice when an extension asks |
| 121 // permission to start desktop capture. Should only be used for tests. For |
| 122 // instance, --auto-select-desktop-capture-source="Entire screen" will |
| 123 // automatically select to share the entire screen in English locales. |
| 124 const char kAutoSelectDesktopCaptureSource[] = |
| 125 "auto-select-desktop-capture-source"; |
| 126 |
120 // Certificate Transparency: Uses the provided log(s) for checking Signed | 127 // Certificate Transparency: Uses the provided log(s) for checking Signed |
121 // Certificate Timestamps provided with certificates. | 128 // Certificate Timestamps provided with certificates. |
122 // The switch's value is: | 129 // The switch's value is: |
123 // log_description:log_key,log_description:log_key,... | 130 // log_description:log_key,log_description:log_key,... |
124 // where | 131 // where |
125 // log_description is a textual description of the log. | 132 // log_description is a textual description of the log. |
126 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's | 133 // log_key is a Base64'd DER-encoded SubjectPublicKeyInfo of the log's |
127 // public key. | 134 // public key. |
128 // Multiple logs can be specified by repeating description:key pairs, | 135 // Multiple logs can be specified by repeating description:key pairs, |
129 // separated by a comma. | 136 // separated by a comma. |
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1373 | 1380 |
1374 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1376 // | 1383 // |
1377 // You were going to just dump your switches here, weren't you? Instead, please | 1384 // You were going to just dump your switches here, weren't you? Instead, please |
1378 // put them in alphabetical order above, or in order inside the appropriate | 1385 // put them in alphabetical order above, or in order inside the appropriate |
1379 // ifdef at the bottom. The order should match the header. | 1386 // ifdef at the bottom. The order should match the header. |
1380 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
1381 | 1388 |
1382 } // namespace switches | 1389 } // namespace switches |
OLD | NEW |