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 1600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 "enterprise-enrollment-initial-modulus"; | 1611 "enterprise-enrollment-initial-modulus"; |
1612 | 1612 |
1613 // Power of the power-of-2 maximum modulus that will be used by the | 1613 // Power of the power-of-2 maximum modulus that will be used by the |
1614 // auto-enrollment client. | 1614 // auto-enrollment client. |
1615 const char kEnterpriseEnrollmentModulusLimit[] = | 1615 const char kEnterpriseEnrollmentModulusLimit[] = |
1616 "enterprise-enrollment-modulus-limit"; | 1616 "enterprise-enrollment-modulus-limit"; |
1617 | 1617 |
1618 // Loads the File Manager as a packaged app. | 1618 // Loads the File Manager as a packaged app. |
1619 const char kFileManagerPackaged[] = "file-manager-packaged"; | 1619 const char kFileManagerPackaged[] = "file-manager-packaged"; |
1620 | 1620 |
| 1621 // Loads the File Manager with the new UI. |
| 1622 const char kFileManagerNewUI[] = "file-manager-new-ui"; |
| 1623 |
1621 #ifndef NDEBUG | 1624 #ifndef NDEBUG |
1622 // Skips all other OOBE pages after user login. | 1625 // Skips all other OOBE pages after user login. |
1623 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1626 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
1624 #endif // NDEBUG | 1627 #endif // NDEBUG |
1625 #endif // OS_CHROMEOS | 1628 #endif // OS_CHROMEOS |
1626 | 1629 |
1627 #if defined(OS_POSIX) | 1630 #if defined(OS_POSIX) |
1628 // A flag, generated internally by Chrome for renderer and other helper process | 1631 // A flag, generated internally by Chrome for renderer and other helper process |
1629 // command lines on Linux and Mac. It tells the helper process to enable crash | 1632 // command lines on Linux and Mac. It tells the helper process to enable crash |
1630 // dumping and reporting, because helpers cannot access the profile or other | 1633 // dumping and reporting, because helpers cannot access the profile or other |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1706 | 1709 |
1707 // ----------------------------------------------------------------------------- | 1710 // ----------------------------------------------------------------------------- |
1708 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1711 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1709 // | 1712 // |
1710 // You were going to just dump your switches here, weren't you? Instead, please | 1713 // You were going to just dump your switches here, weren't you? Instead, please |
1711 // put them in alphabetical order above, or in order inside the appropriate | 1714 // put them in alphabetical order above, or in order inside the appropriate |
1712 // ifdef at the bottom. The order should match the header. | 1715 // ifdef at the bottom. The order should match the header. |
1713 // ----------------------------------------------------------------------------- | 1716 // ----------------------------------------------------------------------------- |
1714 | 1717 |
1715 } // namespace switches | 1718 } // namespace switches |
OLD | NEW |