| 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 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 // Causes the browser to launch directly in incognito mode. | 898 // Causes the browser to launch directly in incognito mode. |
| 899 const char kIncognito[] = "incognito"; | 899 const char kIncognito[] = "incognito"; |
| 900 | 900 |
| 901 // Causes Chrome to attempt to get metadata from the webstore for the | 901 // Causes Chrome to attempt to get metadata from the webstore for the |
| 902 // app/extension ID given, and then prompt the user to download and install it. | 902 // app/extension ID given, and then prompt the user to download and install it. |
| 903 const char kInstallFromWebstore[] = "install-from-webstore"; | 903 const char kInstallFromWebstore[] = "install-from-webstore"; |
| 904 | 904 |
| 905 // Marks a renderer as an Instant process. | 905 // Marks a renderer as an Instant process. |
| 906 const char kInstantProcess[] = "instant-process"; | 906 const char kInstantProcess[] = "instant-process"; |
| 907 | 907 |
| 908 // Specifies the testcase used by the IPC fuzzer. |
| 909 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 910 |
| 908 // Used for testing - keeps browser alive after last browser window closes. | 911 // Used for testing - keeps browser alive after last browser window closes. |
| 909 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 912 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 910 | 913 |
| 911 // Enable Kiosk mode. | 914 // Enable Kiosk mode. |
| 912 const char kKioskMode[] = "kiosk"; | 915 const char kKioskMode[] = "kiosk"; |
| 913 | 916 |
| 914 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 917 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
| 915 // See http://crbug.com/31395. | 918 // See http://crbug.com/31395. |
| 916 const char kKioskModePrinting[] = "kiosk-printing"; | 919 const char kKioskModePrinting[] = "kiosk-printing"; |
| 917 | 920 |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1607 | 1610 |
| 1608 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- |
| 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1612 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1610 // | 1613 // |
| 1611 // You were going to just dump your switches here, weren't you? Instead, please | 1614 // You were going to just dump your switches here, weren't you? Instead, please |
| 1612 // put them in alphabetical order above, or in order inside the appropriate | 1615 // put them in alphabetical order above, or in order inside the appropriate |
| 1613 // ifdef at the bottom. The order should match the header. | 1616 // ifdef at the bottom. The order should match the header. |
| 1614 // ----------------------------------------------------------------------------- | 1617 // ----------------------------------------------------------------------------- |
| 1615 | 1618 |
| 1616 } // namespace switches | 1619 } // namespace switches |
| OLD | NEW |