Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1197 | 1197 |
| 1198 // URL of the html page for Screen Saver. | 1198 // URL of the html page for Screen Saver. |
| 1199 const char kScreenSaverUrl[] = "screen-saver-url"; | 1199 const char kScreenSaverUrl[] = "screen-saver-url"; |
| 1200 | 1200 |
| 1201 // Triggers ChromeOS system log compression during feedback submit. | 1201 // Triggers ChromeOS system log compression during feedback submit. |
| 1202 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1202 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
| 1203 | 1203 |
| 1204 // Enables overriding the path for the default authentication extension. | 1204 // Enables overriding the path for the default authentication extension. |
| 1205 const char kAuthExtensionPath[] = "auth-ext-path"; | 1205 const char kAuthExtensionPath[] = "auth-ext-path"; |
| 1206 | 1206 |
| 1207 // Power of the power-of-2 initial modulus that will be used by the | |
| 1208 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | |
|
Mattias Nissler (ping if slow)
2011/12/09 15:40:52
Might be useful to mention "enterprise" somewhere
Joao da Silva
2011/12/09 17:26:06
Done.
Mattias Nissler (ping if slow)
2011/12/12 10:20:31
I intended to say that mentioning in the comment i
| |
| 1209 const char kAutoEnrollmentInitialModulus[] = "auto-enrollment-initial-modulus"; | |
| 1210 | |
| 1211 // Power of the power-of-2 maximum modulus that will be used by the | |
| 1212 // auto-enrollment client. | |
| 1213 const char kAutoEnrollmentModulusLimit[] = "auto-enrollment-modulus-limit"; | |
| 1214 | |
| 1207 #ifndef NDEBUG | 1215 #ifndef NDEBUG |
| 1208 // Skips all other OOBE pages after user login. | 1216 // Skips all other OOBE pages after user login. |
| 1209 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1217 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| 1210 #endif // NDEBUG | 1218 #endif // NDEBUG |
| 1211 #endif // OS_CHROMEOS | 1219 #endif // OS_CHROMEOS |
| 1212 | 1220 |
| 1213 #if defined(OS_POSIX) | 1221 #if defined(OS_POSIX) |
| 1214 // A flag, generated internally by Chrome for renderer and other helper process | 1222 // A flag, generated internally by Chrome for renderer and other helper process |
| 1215 // command lines on Linux and Mac. It tells the helper process to enable crash | 1223 // command lines on Linux and Mac. It tells the helper process to enable crash |
| 1216 // dumping and reporting, because helpers cannot access the profile or other | 1224 // dumping and reporting, because helpers cannot access the profile or other |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1299 | 1307 |
| 1300 // ----------------------------------------------------------------------------- | 1308 // ----------------------------------------------------------------------------- |
| 1301 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1309 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1302 // | 1310 // |
| 1303 // You were going to just dump your switches here, weren't you? Instead, please | 1311 // You were going to just dump your switches here, weren't you? Instead, please |
| 1304 // put them in alphabetical order above, or in order inside the appropriate | 1312 // put them in alphabetical order above, or in order inside the appropriate |
| 1305 // ifdef at the bottom. The order should match the header. | 1313 // ifdef at the bottom. The order should match the header. |
| 1306 // ----------------------------------------------------------------------------- | 1314 // ----------------------------------------------------------------------------- |
| 1307 | 1315 |
| 1308 } // namespace switches | 1316 } // namespace switches |
| OLD | NEW |