| 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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 // Order of the listed sub-arguments does not matter. | 834 // Order of the listed sub-arguments does not matter. |
| 835 const char kEnableWatchdog[] = "enable-watchdog"; | 835 const char kEnableWatchdog[] = "enable-watchdog"; |
| 836 | 836 |
| 837 // Uses WebSocket over SPDY. | 837 // Uses WebSocket over SPDY. |
| 838 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; | 838 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; |
| 839 | 839 |
| 840 // Explicitly allows additional ports using a comma-separated list of port | 840 // Explicitly allows additional ports using a comma-separated list of port |
| 841 // numbers. | 841 // numbers. |
| 842 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 842 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 843 | 843 |
| 844 // Marks a renderer as extension process. | |
| 845 const char kExtensionProcess[] = "extension-process"; | |
| 846 | |
| 847 // Turns on extension install verification if it would not otherwise have been | 844 // Turns on extension install verification if it would not otherwise have been |
| 848 // turned on. | 845 // turned on. |
| 849 const char kExtensionsInstallVerification[] = "extensions-install-verification"; | 846 const char kExtensionsInstallVerification[] = "extensions-install-verification"; |
| 850 | 847 |
| 851 // Specifies a comma-separated list of extension ids that should be forced to | 848 // Specifies a comma-separated list of extension ids that should be forced to |
| 852 // be treated as not from the webstore when doing install verification. | 849 // be treated as not from the webstore when doing install verification. |
| 853 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; | 850 const char kExtensionsNotWebstore[] = "extensions-not-webstore"; |
| 854 | 851 |
| 855 // Frequency in seconds for Extensions auto-update. | 852 // Frequency in seconds for Extensions auto-update. |
| 856 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 853 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 | 1678 |
| 1682 // ----------------------------------------------------------------------------- | 1679 // ----------------------------------------------------------------------------- |
| 1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1680 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1684 // | 1681 // |
| 1685 // You were going to just dump your switches here, weren't you? Instead, please | 1682 // You were going to just dump your switches here, weren't you? Instead, please |
| 1686 // put them in alphabetical order above, or in order inside the appropriate | 1683 // put them in alphabetical order above, or in order inside the appropriate |
| 1687 // ifdef at the bottom. The order should match the header. | 1684 // ifdef at the bottom. The order should match the header. |
| 1688 // ----------------------------------------------------------------------------- | 1685 // ----------------------------------------------------------------------------- |
| 1689 | 1686 |
| 1690 } // namespace switches | 1687 } // namespace switches |
| OLD | NEW |