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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 683 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
684 | 684 |
685 // Alternative feedback server to use when submitting user feedback | 685 // Alternative feedback server to use when submitting user feedback |
686 const char kFeedbackServer[] = "feedback-server"; | 686 const char kFeedbackServer[] = "feedback-server"; |
687 | 687 |
688 // The file descriptor limit is set to the value of this switch, subject to the | 688 // The file descriptor limit is set to the value of this switch, subject to the |
689 // OS hard limits. Useful for testing that file descriptor exhaustion is | 689 // OS hard limits. Useful for testing that file descriptor exhaustion is |
690 // handled gracefully. | 690 // handled gracefully. |
691 const char kFileDescriptorLimit[] = "file-descriptor-limit"; | 691 const char kFileDescriptorLimit[] = "file-descriptor-limit"; |
692 | 692 |
| 693 // Forces application mode. This hides certain system UI elements and forces |
| 694 // the app to be installed if it hasn't been already. |
| 695 const char kForceAppMode[] = "force-app-mode"; |
| 696 |
693 // Displays the First Run experience when the browser is started, regardless of | 697 // Displays the First Run experience when the browser is started, regardless of |
694 // whether or not it's actually the First Run (this overrides kNoFirstRun). | 698 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
695 const char kForceFirstRun[] = "force-first-run"; | 699 const char kForceFirstRun[] = "force-first-run"; |
696 | 700 |
697 // Enables using GAIA information to populate profile name and icon. | 701 // Enables using GAIA information to populate profile name and icon. |
698 const char kGaiaProfileInfo[] = "gaia-profile-info"; | 702 const char kGaiaProfileInfo[] = "gaia-profile-info"; |
699 | 703 |
700 // Specifies an alternate URL to use for retrieving the search domain for | 704 // Specifies an alternate URL to use for retrieving the search domain for |
701 // Google. Useful for testing. | 705 // Google. Useful for testing. |
702 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url"; | 706 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url"; |
703 | 707 |
704 // Specifies a custom name for the GSSAPI library to load. | 708 // Specifies a custom name for the GSSAPI library to load. |
705 const char kGSSAPILibraryName[] = "gssapi-library-name"; | 709 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1631 | 1635 |
1632 // ----------------------------------------------------------------------------- | 1636 // ----------------------------------------------------------------------------- |
1633 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1637 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1634 // | 1638 // |
1635 // You were going to just dump your switches here, weren't you? Instead, please | 1639 // You were going to just dump your switches here, weren't you? Instead, please |
1636 // put them in alphabetical order above, or in order inside the appropriate | 1640 // put them in alphabetical order above, or in order inside the appropriate |
1637 // ifdef at the bottom. The order should match the header. | 1641 // ifdef at the bottom. The order should match the header. |
1638 // ----------------------------------------------------------------------------- | 1642 // ----------------------------------------------------------------------------- |
1639 | 1643 |
1640 } // namespace switches | 1644 } // namespace switches |
OLD | NEW |