| 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 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 | 879 |
| 880 // Forces application mode. This hides certain system UI elements and forces | 880 // Forces application mode. This hides certain system UI elements and forces |
| 881 // the app to be installed if it hasn't been already. | 881 // the app to be installed if it hasn't been already. |
| 882 const char kForceAppMode[] = "force-app-mode"; | 882 const char kForceAppMode[] = "force-app-mode"; |
| 883 | 883 |
| 884 // Displays the First Run experience when the browser is started, regardless of | 884 // Displays the First Run experience when the browser is started, regardless of |
| 885 // whether or not it's actually the First Run (this overrides kNoFirstRun and | 885 // whether or not it's actually the First Run (this overrides kNoFirstRun and |
| 886 // kCancelFirstRun). | 886 // kCancelFirstRun). |
| 887 const char kForceFirstRun[] = "force-first-run"; | 887 const char kForceFirstRun[] = "force-first-run"; |
| 888 | 888 |
| 889 // Forces showing the signin promo on startup. |
| 890 const char kForceSigninPromo[] = "force-signin-promo"; |
| 891 |
| 889 // Forces additional Chrome Variation Ids that will be sent in | 892 // Forces additional Chrome Variation Ids that will be sent in |
| 890 // X-Client-Data header, specified as a 64-bit encoded list of numeric | 893 // X-Client-Data header, specified as a 64-bit encoded list of numeric |
| 891 // experiment ids. | 894 // experiment ids. |
| 892 const char kForceVariationIds[] = "force-variation-ids"; | 895 const char kForceVariationIds[] = "force-variation-ids"; |
| 893 | 896 |
| 894 // Tries to load cloud policy for every signed in user, regardless of whether | 897 // Tries to load cloud policy for every signed in user, regardless of whether |
| 895 // they are a dasher user or not. Used to allow any GAIA account to be used for | 898 // they are a dasher user or not. Used to allow any GAIA account to be used for |
| 896 // testing the cloud policy framework. | 899 // testing the cloud policy framework. |
| 897 const char kForceLoadCloudPolicy[] = "force-load-cloud-policy"; | 900 const char kForceLoadCloudPolicy[] = "force-load-cloud-policy"; |
| 898 | 901 |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1682 | 1685 |
| 1683 // ----------------------------------------------------------------------------- | 1686 // ----------------------------------------------------------------------------- |
| 1684 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1687 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1685 // | 1688 // |
| 1686 // You were going to just dump your switches here, weren't you? Instead, please | 1689 // You were going to just dump your switches here, weren't you? Instead, please |
| 1687 // put them in alphabetical order above, or in order inside the appropriate | 1690 // put them in alphabetical order above, or in order inside the appropriate |
| 1688 // ifdef at the bottom. The order should match the header. | 1691 // ifdef at the bottom. The order should match the header. |
| 1689 // ----------------------------------------------------------------------------- | 1692 // ----------------------------------------------------------------------------- |
| 1690 | 1693 |
| 1691 } // namespace switches | 1694 } // namespace switches |
| OLD | NEW |