| 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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 // Comma-separated list of directories with component extensions to load. | 844 // Comma-separated list of directories with component extensions to load. |
| 845 const char kLoadComponentExtension[] = "load-component-extension"; | 845 const char kLoadComponentExtension[] = "load-component-extension"; |
| 846 | 846 |
| 847 // If present, disables the loading and application of cloud policy for | 847 // If present, disables the loading and application of cloud policy for |
| 848 // signed-in users. | 848 // signed-in users. |
| 849 const char kDisableCloudPolicyOnSignin[] = "disable-cloud-policy-on-signin"; | 849 const char kDisableCloudPolicyOnSignin[] = "disable-cloud-policy-on-signin"; |
| 850 | 850 |
| 851 // Loads an extension from the specified directory. | 851 // Loads an extension from the specified directory. |
| 852 const char kLoadExtension[] = "load-extension"; | 852 const char kLoadExtension[] = "load-extension"; |
| 853 | 853 |
| 854 // Loads the opencryptoki library into NSS at startup. This is only needed | |
| 855 // temporarily for developers who need to work on WiFi/VPN certificate code. | |
| 856 // | |
| 857 // TODO(gspencer): Remove this switch once cryptohomed work is finished: | |
| 858 // http://crosbug.com/12295 and http://crosbug.com/12304 | |
| 859 const char kLoadOpencryptoki[] = "load-opencryptoki"; | |
| 860 | |
| 861 // Enables displaying net log events on the command line, or writing the events | 854 // Enables displaying net log events on the command line, or writing the events |
| 862 // to a separate file if a file name is given. | 855 // to a separate file if a file name is given. |
| 863 const char kLogNetLog[] = "log-net-log"; | 856 const char kLogNetLog[] = "log-net-log"; |
| 864 | 857 |
| 865 // Uninstalls an extension with the specified extension id. | 858 // Uninstalls an extension with the specified extension id. |
| 866 const char kUninstallExtension[] = "uninstall-extension"; | 859 const char kUninstallExtension[] = "uninstall-extension"; |
| 867 | 860 |
| 868 // Starts the browser in managed mode. | 861 // Starts the browser in managed mode. |
| 869 const char kManaged[] = "managed"; | 862 const char kManaged[] = "managed"; |
| 870 | 863 |
| (...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 | 1679 |
| 1687 // ----------------------------------------------------------------------------- | 1680 // ----------------------------------------------------------------------------- |
| 1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1681 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1689 // | 1682 // |
| 1690 // You were going to just dump your switches here, weren't you? Instead, please | 1683 // You were going to just dump your switches here, weren't you? Instead, please |
| 1691 // put them in alphabetical order above, or in order inside the appropriate | 1684 // put them in alphabetical order above, or in order inside the appropriate |
| 1692 // ifdef at the bottom. The order should match the header. | 1685 // ifdef at the bottom. The order should match the header. |
| 1693 // ----------------------------------------------------------------------------- | 1686 // ----------------------------------------------------------------------------- |
| 1694 | 1687 |
| 1695 } // namespace switches | 1688 } // namespace switches |
| OLD | NEW |