OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 // is to be used only by the upgrade process. | 923 // is to be used only by the upgrade process. |
924 const char kTryChromeAgain[] = "try-chrome-again"; | 924 const char kTryChromeAgain[] = "try-chrome-again"; |
925 | 925 |
926 // Runs un-installation steps that were done by chrome first-run. | 926 // Runs un-installation steps that were done by chrome first-run. |
927 const char kUninstall[] = "uninstall"; | 927 const char kUninstall[] = "uninstall"; |
928 | 928 |
929 // Use Spdy for the transport protocol instead of HTTP. | 929 // Use Spdy for the transport protocol instead of HTTP. |
930 // This is a temporary testing flag. | 930 // This is a temporary testing flag. |
931 const char kUseSpdy[] = "use-spdy"; | 931 const char kUseSpdy[] = "use-spdy"; |
932 | 932 |
933 // These two flags are used to force http and https requests to fixed ports. | |
934 const char kFixedHttpPort[] = "testing-fixed-http-port"; | |
935 const char kFixedHttpsPort[] = "testing-fixed-https-port"; | |
936 | |
937 // Ignore certificate related errors. | 933 // Ignore certificate related errors. |
938 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 934 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
939 | 935 |
940 // Set the maximum SPDY sessions per domain. | 936 // Set the maximum SPDY sessions per domain. |
941 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; | 937 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; |
942 | 938 |
943 // Use the low fragmentation heap for the CRT. | 939 // Use the low fragmentation heap for the CRT. |
944 const char kUseLowFragHeapCrt[] = "use-lf-heap"; | 940 const char kUseLowFragHeapCrt[] = "use-lf-heap"; |
945 | 941 |
946 // A string used to override the default user agent with a custom one. | 942 // A string used to override the default user agent with a custom one. |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 | 1122 |
1127 // ----------------------------------------------------------------------------- | 1123 // ----------------------------------------------------------------------------- |
1128 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1124 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1129 // | 1125 // |
1130 // You were going to just dump your switches here, weren't you? Instead, | 1126 // You were going to just dump your switches here, weren't you? Instead, |
1131 // please put them in alphabetical order above, or in order inside the | 1127 // please put them in alphabetical order above, or in order inside the |
1132 // appropriate ifdef at the bottom. The order should match the header. | 1128 // appropriate ifdef at the bottom. The order should match the header. |
1133 // ----------------------------------------------------------------------------- | 1129 // ----------------------------------------------------------------------------- |
1134 | 1130 |
1135 } // namespace switches | 1131 } // namespace switches |
OLD | NEW |