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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 // Causes the browser to launch directly in incognito mode. | 928 // Causes the browser to launch directly in incognito mode. |
929 const char kIncognito[] = "incognito"; | 929 const char kIncognito[] = "incognito"; |
930 | 930 |
931 // Causes Chrome to attempt to get metadata from the webstore for the | 931 // Causes Chrome to attempt to get metadata from the webstore for the |
932 // app/extension ID given, and then prompt the user to download and install it. | 932 // app/extension ID given, and then prompt the user to download and install it. |
933 const char kInstallFromWebstore[] = "install-from-webstore"; | 933 const char kInstallFromWebstore[] = "install-from-webstore"; |
934 | 934 |
935 // Marks a renderer as an Instant process. | 935 // Marks a renderer as an Instant process. |
936 const char kInstantProcess[] = "instant-process"; | 936 const char kInstantProcess[] = "instant-process"; |
937 | 937 |
| 938 // Specifies the testcase used by the IPC fuzzer. |
| 939 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 940 |
938 // Used for testing - keeps browser alive after last browser window closes. | 941 // Used for testing - keeps browser alive after last browser window closes. |
939 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 942 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
940 | 943 |
941 // Enable Kiosk mode. | 944 // Enable Kiosk mode. |
942 const char kKioskMode[] = "kiosk"; | 945 const char kKioskMode[] = "kiosk"; |
943 | 946 |
944 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 947 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
945 // See http://crbug.com/31395. | 948 // See http://crbug.com/31395. |
946 const char kKioskModePrinting[] = "kiosk-printing"; | 949 const char kKioskModePrinting[] = "kiosk-printing"; |
947 | 950 |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1624 | 1627 |
1625 // ----------------------------------------------------------------------------- | 1628 // ----------------------------------------------------------------------------- |
1626 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1629 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1627 // | 1630 // |
1628 // You were going to just dump your switches here, weren't you? Instead, please | 1631 // You were going to just dump your switches here, weren't you? Instead, please |
1629 // put them in alphabetical order above, or in order inside the appropriate | 1632 // put them in alphabetical order above, or in order inside the appropriate |
1630 // ifdef at the bottom. The order should match the header. | 1633 // ifdef at the bottom. The order should match the header. |
1631 // ----------------------------------------------------------------------------- | 1634 // ----------------------------------------------------------------------------- |
1632 | 1635 |
1633 } // namespace switches | 1636 } // namespace switches |
OLD | NEW |