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