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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 // Causes the browser to launch directly in incognito mode. | 850 // Causes the browser to launch directly in incognito mode. |
851 const char kIncognito[] = "incognito"; | 851 const char kIncognito[] = "incognito"; |
852 | 852 |
853 // Causes Chrome to attempt to get metadata from the webstore for the | 853 // Causes Chrome to attempt to get metadata from the webstore for the |
854 // app/extension ID given, and then prompt the user to download and install it. | 854 // app/extension ID given, and then prompt the user to download and install it. |
855 const char kInstallFromWebstore[] = "install-from-webstore"; | 855 const char kInstallFromWebstore[] = "install-from-webstore"; |
856 | 856 |
857 // Marks a renderer as an Instant process. | 857 // Marks a renderer as an Instant process. |
858 const char kInstantProcess[] = "instant-process"; | 858 const char kInstantProcess[] = "instant-process"; |
859 | 859 |
| 860 // Executes the IPC fuzzer child process, --type is ignored. |
| 861 const char kIpcFuzzerOverride[] = "ipc-fuzzer-override"; |
| 862 |
| 863 // Specifies the testcase used by the IPC fuzzer. |
| 864 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 865 |
860 // Used for testing - keeps browser alive after last browser window closes. | 866 // Used for testing - keeps browser alive after last browser window closes. |
861 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 867 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
862 | 868 |
863 // Enable Kiosk mode. | 869 // Enable Kiosk mode. |
864 const char kKioskMode[] = "kiosk"; | 870 const char kKioskMode[] = "kiosk"; |
865 | 871 |
866 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 872 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
867 // See http://crbug.com/31395. | 873 // See http://crbug.com/31395. |
868 const char kKioskModePrinting[] = "kiosk-printing"; | 874 const char kKioskModePrinting[] = "kiosk-printing"; |
869 | 875 |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1592 | 1598 |
1593 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1600 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1595 // | 1601 // |
1596 // You were going to just dump your switches here, weren't you? Instead, please | 1602 // You were going to just dump your switches here, weren't you? Instead, please |
1597 // put them in alphabetical order above, or in order inside the appropriate | 1603 // put them in alphabetical order above, or in order inside the appropriate |
1598 // ifdef at the bottom. The order should match the header. | 1604 // ifdef at the bottom. The order should match the header. |
1599 // ----------------------------------------------------------------------------- | 1605 // ----------------------------------------------------------------------------- |
1600 | 1606 |
1601 } // namespace switches | 1607 } // namespace switches |
OLD | NEW |