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