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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 // <profile_dir>/Default/TransportSecurity | 815 // <profile_dir>/Default/TransportSecurity |
816 const char kHstsHosts[] = "hsts-hosts"; | 816 const char kHstsHosts[] = "hsts-hosts"; |
817 | 817 |
818 // Causes net::URLFetchers to ignore requests for SSL client certificates, | 818 // Causes net::URLFetchers to ignore requests for SSL client certificates, |
819 // causing them to attempt an unauthenticated SSL/TLS session. This is intended | 819 // causing them to attempt an unauthenticated SSL/TLS session. This is intended |
820 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL, | 820 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL, |
821 // kSbURLPrefix, kSyncServiceURL, etc) | 821 // kSbURLPrefix, kSyncServiceURL, etc) |
822 const char kIgnoreUrlFetcherCertRequests[] = | 822 const char kIgnoreUrlFetcherCertRequests[] = |
823 "ignore-urlfetcher-cert-requests"; | 823 "ignore-urlfetcher-cert-requests"; |
824 | 824 |
825 // Performs importing from another browser. The value associated with this | |
826 // setting encodes the target browser and what items to import. | |
827 const char kImport[] = "import"; | |
828 | |
829 // Performs bookmark importing from an HTML file. The value associated with | |
830 // this setting encodes the file path. It may be used jointly with kImport. | |
831 const char kImportFromFile[] = "import-from-file"; | |
832 | |
833 // Causes the browser to launch directly in incognito mode. | 825 // Causes the browser to launch directly in incognito mode. |
834 const char kIncognito[] = "incognito"; | 826 const char kIncognito[] = "incognito"; |
835 | 827 |
836 // Causes Chrome to attempt to get metadata from the webstore for the | 828 // Causes Chrome to attempt to get metadata from the webstore for the |
837 // app/extension ID given, and then prompt the user to download and install it. | 829 // app/extension ID given, and then prompt the user to download and install it. |
838 const char kInstallFromWebstore[] = "install-from-webstore"; | 830 const char kInstallFromWebstore[] = "install-from-webstore"; |
839 | 831 |
840 // Marks a renderer as an Instant process. | 832 // Marks a renderer as an Instant process. |
841 const char kInstantProcess[] = "instant-process"; | 833 const char kInstantProcess[] = "instant-process"; |
842 | 834 |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1596 | 1588 |
1597 // ----------------------------------------------------------------------------- | 1589 // ----------------------------------------------------------------------------- |
1598 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1599 // | 1591 // |
1600 // You were going to just dump your switches here, weren't you? Instead, please | 1592 // You were going to just dump your switches here, weren't you? Instead, please |
1601 // put them in alphabetical order above, or in order inside the appropriate | 1593 // put them in alphabetical order above, or in order inside the appropriate |
1602 // ifdef at the bottom. The order should match the header. | 1594 // ifdef at the bottom. The order should match the header. |
1603 // ----------------------------------------------------------------------------- | 1595 // ----------------------------------------------------------------------------- |
1604 | 1596 |
1605 } // namespace switches | 1597 } // namespace switches |
OLD | NEW |