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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 // Causes net::URLFetchers to ignore requests for SSL client certificates, | 845 // Causes net::URLFetchers to ignore requests for SSL client certificates, |
846 // causing them to attempt an unauthenticated SSL/TLS session. This is intended | 846 // causing them to attempt an unauthenticated SSL/TLS session. This is intended |
847 // for use when testing various service URLs (eg: kPromoServerURL, kSbURLPrefix, | 847 // for use when testing various service URLs (eg: kPromoServerURL, kSbURLPrefix, |
848 // kSyncServiceURL, etc) | 848 // kSyncServiceURL, etc) |
849 const char kIgnoreUrlFetcherCertRequests[] = | 849 const char kIgnoreUrlFetcherCertRequests[] = |
850 "ignore-urlfetcher-cert-requests"; | 850 "ignore-urlfetcher-cert-requests"; |
851 | 851 |
852 // Causes the browser to launch directly in incognito mode. | 852 // Causes the browser to launch directly in incognito mode. |
853 const char kIncognito[] = "incognito"; | 853 const char kIncognito[] = "incognito"; |
854 | 854 |
| 855 // Invalidation service should use GCM network channel even if experiment is not |
| 856 // enabled. |
| 857 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; |
| 858 |
855 // Causes Chrome to attempt to get metadata from the webstore for the | 859 // Causes Chrome to attempt to get metadata from the webstore for the |
856 // app/extension ID given, and then prompt the user to download and install it. | 860 // app/extension ID given, and then prompt the user to download and install it. |
857 const char kInstallFromWebstore[] = "install-from-webstore"; | 861 const char kInstallFromWebstore[] = "install-from-webstore"; |
858 | 862 |
859 // Marks a renderer as an Instant process. | 863 // Marks a renderer as an Instant process. |
860 const char kInstantProcess[] = "instant-process"; | 864 const char kInstantProcess[] = "instant-process"; |
861 | 865 |
862 // Specifies the testcase used by the IPC fuzzer. | 866 // Specifies the testcase used by the IPC fuzzer. |
863 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 867 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
864 | 868 |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1534 | 1538 |
1535 // ----------------------------------------------------------------------------- | 1539 // ----------------------------------------------------------------------------- |
1536 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1540 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1537 // | 1541 // |
1538 // You were going to just dump your switches here, weren't you? Instead, please | 1542 // You were going to just dump your switches here, weren't you? Instead, please |
1539 // put them in alphabetical order above, or in order inside the appropriate | 1543 // put them in alphabetical order above, or in order inside the appropriate |
1540 // ifdef at the bottom. The order should match the header. | 1544 // ifdef at the bottom. The order should match the header. |
1541 // ----------------------------------------------------------------------------- | 1545 // ----------------------------------------------------------------------------- |
1542 | 1546 |
1543 } // namespace switches | 1547 } // namespace switches |
OLD | NEW |