| 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 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1440 // Power of the power-of-2 initial modulus that will be used by the | 1440 // Power of the power-of-2 initial modulus that will be used by the |
| 1441 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. | 1441 // auto-enrollment client. E.g. "4" means the modulus will be 2^4 = 16. |
| 1442 const char kEnterpriseEnrollmentInitialModulus[] = | 1442 const char kEnterpriseEnrollmentInitialModulus[] = |
| 1443 "enterprise-enrollment-initial-modulus"; | 1443 "enterprise-enrollment-initial-modulus"; |
| 1444 | 1444 |
| 1445 // Power of the power-of-2 maximum modulus that will be used by the | 1445 // Power of the power-of-2 maximum modulus that will be used by the |
| 1446 // auto-enrollment client. | 1446 // auto-enrollment client. |
| 1447 const char kEnterpriseEnrollmentModulusLimit[] = | 1447 const char kEnterpriseEnrollmentModulusLimit[] = |
| 1448 "enterprise-enrollment-modulus-limit"; | 1448 "enterprise-enrollment-modulus-limit"; |
| 1449 | 1449 |
| 1450 // Enables overriding the Chrome OS board type when running on Linux. |
| 1451 const char kChromeOSReleaseBoard[] = "chromeos-release-board"; |
| 1452 |
| 1450 #ifndef NDEBUG | 1453 #ifndef NDEBUG |
| 1451 // Skips all other OOBE pages after user login. | 1454 // Skips all other OOBE pages after user login. |
| 1452 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1455 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| 1453 #endif // NDEBUG | 1456 #endif // NDEBUG |
| 1454 #endif // OS_CHROMEOS | 1457 #endif // OS_CHROMEOS |
| 1455 | 1458 |
| 1456 #if defined(OS_POSIX) | 1459 #if defined(OS_POSIX) |
| 1457 // A flag, generated internally by Chrome for renderer and other helper process | 1460 // A flag, generated internally by Chrome for renderer and other helper process |
| 1458 // command lines on Linux and Mac. It tells the helper process to enable crash | 1461 // command lines on Linux and Mac. It tells the helper process to enable crash |
| 1459 // dumping and reporting, because helpers cannot access the profile or other | 1462 // dumping and reporting, because helpers cannot access the profile or other |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1518 | 1521 |
| 1519 // ----------------------------------------------------------------------------- | 1522 // ----------------------------------------------------------------------------- |
| 1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1523 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1521 // | 1524 // |
| 1522 // You were going to just dump your switches here, weren't you? Instead, please | 1525 // You were going to just dump your switches here, weren't you? Instead, please |
| 1523 // put them in alphabetical order above, or in order inside the appropriate | 1526 // put them in alphabetical order above, or in order inside the appropriate |
| 1524 // ifdef at the bottom. The order should match the header. | 1527 // ifdef at the bottom. The order should match the header. |
| 1525 // ----------------------------------------------------------------------------- | 1528 // ----------------------------------------------------------------------------- |
| 1526 | 1529 |
| 1527 } // namespace switches | 1530 } // namespace switches |
| OLD | NEW |