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