| 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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 | 701 |
| 702 // The file descriptor limit is set to the value of this switch, subject to the | 702 // The file descriptor limit is set to the value of this switch, subject to the |
| 703 // OS hard limits. Useful for testing that file descriptor exhaustion is | 703 // OS hard limits. Useful for testing that file descriptor exhaustion is |
| 704 // handled gracefully. | 704 // handled gracefully. |
| 705 const char kFileDescriptorLimit[] = "file-descriptor-limit"; | 705 const char kFileDescriptorLimit[] = "file-descriptor-limit"; |
| 706 | 706 |
| 707 // Displays the First Run experience when the browser is started, regardless of | 707 // Displays the First Run experience when the browser is started, regardless of |
| 708 // whether or not it's actually the first run. | 708 // whether or not it's actually the first run. |
| 709 const char kFirstRun[] = "first-run"; | 709 const char kFirstRun[] = "first-run"; |
| 710 | 710 |
| 711 // Forces the apps/webstore promo to be shown, independent of whether it has | |
| 712 // timed out, etc. Useful for testing. | |
| 713 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; | |
| 714 | |
| 715 // Specifies the backend server used for gaia authentications, like sync or | 711 // Specifies the backend server used for gaia authentications, like sync or |
| 716 // policies for example. The https:// prefix and the trailing slash should be | 712 // policies for example. The https:// prefix and the trailing slash should be |
| 717 // omitted. The default value is "www.google.com". | 713 // omitted. The default value is "www.google.com". |
| 718 const char kGaiaHost[] = "gaia-host"; | 714 const char kGaiaHost[] = "gaia-host"; |
| 719 | 715 |
| 720 // Specifies the backend server used for OAuth authentication requests. | 716 // Specifies the backend server used for OAuth authentication requests. |
| 721 // The https:// prefix and the trailing slash should be | 717 // The https:// prefix and the trailing slash should be |
| 722 // omitted. The default value is "www.google.com". | 718 // omitted. The default value is "www.google.com". |
| 723 const char kGaiaOAuthHost[] = "gaia-oauth-host"; | 719 const char kGaiaOAuthHost[] = "gaia-oauth-host"; |
| 724 | 720 |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1547 | 1543 |
| 1548 // ----------------------------------------------------------------------------- | 1544 // ----------------------------------------------------------------------------- |
| 1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1545 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1550 // | 1546 // |
| 1551 // You were going to just dump your switches here, weren't you? Instead, please | 1547 // You were going to just dump your switches here, weren't you? Instead, please |
| 1552 // put them in alphabetical order above, or in order inside the appropriate | 1548 // put them in alphabetical order above, or in order inside the appropriate |
| 1553 // ifdef at the bottom. The order should match the header. | 1549 // ifdef at the bottom. The order should match the header. |
| 1554 // ----------------------------------------------------------------------------- | 1550 // ----------------------------------------------------------------------------- |
| 1555 | 1551 |
| 1556 } // namespace switches | 1552 } // namespace switches |
| OLD | NEW |