| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 | 678 |
| 679 // The file descriptor limit is set to the value of this switch, subject to the | 679 // The file descriptor limit is set to the value of this switch, subject to the |
| 680 // OS hard limits. Useful for testing that file descriptor exhaustion is | 680 // OS hard limits. Useful for testing that file descriptor exhaustion is |
| 681 // handled gracefully. | 681 // handled gracefully. |
| 682 const char kFileDescriptorLimit[] = "file-descriptor-limit"; | 682 const char kFileDescriptorLimit[] = "file-descriptor-limit"; |
| 683 | 683 |
| 684 // Displays the First Run experience when the browser is started, regardless of | 684 // Displays the First Run experience when the browser is started, regardless of |
| 685 // whether or not it's actually the first run. | 685 // whether or not it's actually the first run. |
| 686 const char kFirstRun[] = "first-run"; | 686 const char kFirstRun[] = "first-run"; |
| 687 | 687 |
| 688 // Forces the apps/webstore promo to be shown, independent of whether it has | |
| 689 // timed out, etc. Useful for testing. | |
| 690 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; | |
| 691 | |
| 692 // Specifies the backend server used for gaia authentications, like sync or | 688 // Specifies the backend server used for gaia authentications, like sync or |
| 693 // policies for example. The https:// prefix and the trailing slash should be | 689 // policies for example. The https:// prefix and the trailing slash should be |
| 694 // omitted. The default value is "www.google.com". | 690 // omitted. The default value is "www.google.com". |
| 695 const char kGaiaHost[] = "gaia-host"; | 691 const char kGaiaHost[] = "gaia-host"; |
| 696 | 692 |
| 697 // Specifies the backend server used for OAuth authentication requests. | 693 // Specifies the backend server used for OAuth authentication requests. |
| 698 // The https:// prefix and the trailing slash should be | 694 // The https:// prefix and the trailing slash should be |
| 699 // omitted. The default value is "www.google.com". | 695 // omitted. The default value is "www.google.com". |
| 700 const char kGaiaOAuthHost[] = "gaia-oauth-host"; | 696 const char kGaiaOAuthHost[] = "gaia-oauth-host"; |
| 701 | 697 |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 | 1469 |
| 1474 // ----------------------------------------------------------------------------- | 1470 // ----------------------------------------------------------------------------- |
| 1475 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1471 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1476 // | 1472 // |
| 1477 // You were going to just dump your switches here, weren't you? Instead, please | 1473 // You were going to just dump your switches here, weren't you? Instead, please |
| 1478 // put them in alphabetical order above, or in order inside the appropriate | 1474 // put them in alphabetical order above, or in order inside the appropriate |
| 1479 // ifdef at the bottom. The order should match the header. | 1475 // ifdef at the bottom. The order should match the header. |
| 1480 // ----------------------------------------------------------------------------- | 1476 // ----------------------------------------------------------------------------- |
| 1481 | 1477 |
| 1482 } // namespace switches | 1478 } // namespace switches |
| OLD | NEW |