| 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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 // User should set breakpoints on Alarm() to examine problematic thread. | 802 // User should set breakpoints on Alarm() to examine problematic thread. |
| 803 // | 803 // |
| 804 // Usage: -enable-watchdog=[ui][io] | 804 // Usage: -enable-watchdog=[ui][io] |
| 805 // | 805 // |
| 806 // Order of the listed sub-arguments does not matter. | 806 // Order of the listed sub-arguments does not matter. |
| 807 const char kEnableWatchdog[] = "enable-watchdog"; | 807 const char kEnableWatchdog[] = "enable-watchdog"; |
| 808 | 808 |
| 809 // Uses WebSocket over SPDY. | 809 // Uses WebSocket over SPDY. |
| 810 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; | 810 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; |
| 811 | 811 |
| 812 #if defined(OS_CHROMEOS) |
| 813 // Don't create robot account on enrollment. Used when testing device |
| 814 // enrollment against YAPS or the Python test server. |
| 815 const char kEnrollmentSkipRobotAuth[] = "enrollment-skip-robot-auth"; |
| 816 #endif |
| 817 |
| 812 // Explicitly allows additional ports using a comma-separated list of port | 818 // Explicitly allows additional ports using a comma-separated list of port |
| 813 // numbers. | 819 // numbers. |
| 814 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 820 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 815 | 821 |
| 816 // Marks a renderer as extension process. | 822 // Marks a renderer as extension process. |
| 817 const char kExtensionProcess[] = "extension-process"; | 823 const char kExtensionProcess[] = "extension-process"; |
| 818 | 824 |
| 819 // Frequency in seconds for Extensions auto-update. | 825 // Frequency in seconds for Extensions auto-update. |
| 820 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 826 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
| 821 | 827 |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 | 1665 |
| 1660 // ----------------------------------------------------------------------------- | 1666 // ----------------------------------------------------------------------------- |
| 1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1667 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1662 // | 1668 // |
| 1663 // You were going to just dump your switches here, weren't you? Instead, please | 1669 // You were going to just dump your switches here, weren't you? Instead, please |
| 1664 // put them in alphabetical order above, or in order inside the appropriate | 1670 // put them in alphabetical order above, or in order inside the appropriate |
| 1665 // ifdef at the bottom. The order should match the header. | 1671 // ifdef at the bottom. The order should match the header. |
| 1666 // ----------------------------------------------------------------------------- | 1672 // ----------------------------------------------------------------------------- |
| 1667 | 1673 |
| 1668 } // namespace switches | 1674 } // namespace switches |
| OLD | NEW |