Chromium Code Reviews| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 680 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 680 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
| 681 | 681 |
| 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 // Forces application mode. This hides certain system UI elements and forces | |
| 691 // the app to be installed if it hasn't been already. | |
| 692 const char kForceAppMode[] = "force-app-mode"; | |
|
oshima
2013/01/30 01:17:15
is this only for chromeos? if so, add comment.
zel
2013/01/30 01:46:32
not 100% sure that this is going to be CrOS-only f
| |
| 693 | |
| 690 // Displays the First Run experience when the browser is started, regardless of | 694 // 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). | 695 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
| 692 const char kForceFirstRun[] = "force-first-run"; | 696 const char kForceFirstRun[] = "force-first-run"; |
| 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 |