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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 679 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
680 | 680 |
681 // Alternative feedback server to use when submitting user feedback | 681 // Alternative feedback server to use when submitting user feedback |
682 const char kFeedbackServer[] = "feedback-server"; | 682 const char kFeedbackServer[] = "feedback-server"; |
683 | 683 |
684 // The file descriptor limit is set to the value of this switch, subject to the | 684 // The file descriptor limit is set to the value of this switch, subject to the |
685 // OS hard limits. Useful for testing that file descriptor exhaustion is | 685 // OS hard limits. Useful for testing that file descriptor exhaustion is |
686 // handled gracefully. | 686 // handled gracefully. |
687 const char kFileDescriptorLimit[] = "file-descriptor-limit"; | 687 const char kFileDescriptorLimit[] = "file-descriptor-limit"; |
688 | 688 |
689 // If true opening a url from the omnibox attepts to focus an existing | |
690 // tab. | |
691 const char kFocusExistingTabOnOpen[] = "focus-existing-tab-on-open"; | |
692 | |
693 // Displays the First Run experience when the browser is started, regardless of | 689 // Displays the First Run experience when the browser is started, regardless of |
694 // whether or not it's actually the first run. | 690 // whether or not it's actually the first run. |
695 const char kFirstRun[] = "first-run"; | 691 const char kFirstRun[] = "first-run"; |
696 | 692 |
697 // Forces the apps/webstore promo to be shown, independent of whether it has | 693 // Forces the apps/webstore promo to be shown, independent of whether it has |
698 // timed out, etc. Useful for testing. | 694 // timed out, etc. Useful for testing. |
699 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; | 695 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; |
700 | 696 |
701 // Specifies the backend server used for gaia authentications, like sync or | 697 // Specifies the backend server used for gaia authentications, like sync or |
702 // policies for example. The https:// prefix and the trailing slash should be | 698 // policies for example. The https:// prefix and the trailing slash should be |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 | 1471 |
1476 // ----------------------------------------------------------------------------- | 1472 // ----------------------------------------------------------------------------- |
1477 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1473 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1478 // | 1474 // |
1479 // You were going to just dump your switches here, weren't you? Instead, please | 1475 // You were going to just dump your switches here, weren't you? Instead, please |
1480 // put them in alphabetical order above, or in order inside the appropriate | 1476 // put them in alphabetical order above, or in order inside the appropriate |
1481 // ifdef at the bottom. The order should match the header. | 1477 // ifdef at the bottom. The order should match the header. |
1482 // ----------------------------------------------------------------------------- | 1478 // ----------------------------------------------------------------------------- |
1483 | 1479 |
1484 } // namespace switches | 1480 } // namespace switches |
OLD | NEW |