| 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 const char kIgnoreUrlFetcherCertRequests[] = | 890 const char kIgnoreUrlFetcherCertRequests[] = |
| 891 "ignore-urlfetcher-cert-requests"; | 891 "ignore-urlfetcher-cert-requests"; |
| 892 | 892 |
| 893 // Causes the browser to launch directly in incognito mode. | 893 // Causes the browser to launch directly in incognito mode. |
| 894 const char kIncognito[] = "incognito"; | 894 const char kIncognito[] = "incognito"; |
| 895 | 895 |
| 896 // Causes Chrome to attempt to get metadata from the webstore for the | 896 // Causes Chrome to attempt to get metadata from the webstore for the |
| 897 // app/extension ID given, and then prompt the user to download and install it. | 897 // app/extension ID given, and then prompt the user to download and install it. |
| 898 const char kInstallFromWebstore[] = "install-from-webstore"; | 898 const char kInstallFromWebstore[] = "install-from-webstore"; |
| 899 | 899 |
| 900 // Causes Chrome to load this URL instead of chrome://newtab for New Tab pages. | |
| 901 const char kInstantNewTabURL[] = "instant-new-tab-url"; | |
| 902 | |
| 903 // Marks a renderer as an Instant process. | 900 // Marks a renderer as an Instant process. |
| 904 const char kInstantProcess[] = "instant-process"; | 901 const char kInstantProcess[] = "instant-process"; |
| 905 | 902 |
| 906 // Used for testing - keeps browser alive after last browser window closes. | 903 // Used for testing - keeps browser alive after last browser window closes. |
| 907 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 904 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 908 | 905 |
| 909 // Enable Kiosk mode. | 906 // Enable Kiosk mode. |
| 910 const char kKioskMode[] = "kiosk"; | 907 const char kKioskMode[] = "kiosk"; |
| 911 | 908 |
| 912 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 909 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 | 1599 |
| 1603 // ----------------------------------------------------------------------------- | 1600 // ----------------------------------------------------------------------------- |
| 1604 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1601 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1605 // | 1602 // |
| 1606 // You were going to just dump your switches here, weren't you? Instead, please | 1603 // You were going to just dump your switches here, weren't you? Instead, please |
| 1607 // put them in alphabetical order above, or in order inside the appropriate | 1604 // put them in alphabetical order above, or in order inside the appropriate |
| 1608 // ifdef at the bottom. The order should match the header. | 1605 // ifdef at the bottom. The order should match the header. |
| 1609 // ----------------------------------------------------------------------------- | 1606 // ----------------------------------------------------------------------------- |
| 1610 | 1607 |
| 1611 } // namespace switches | 1608 } // namespace switches |
| OLD | NEW |