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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1142 // be used only by the upgrade process. | 1142 // be used only by the upgrade process. |
1143 const char kTryChromeAgain[] = "try-chrome-again"; | 1143 const char kTryChromeAgain[] = "try-chrome-again"; |
1144 | 1144 |
1145 // Runs un-installation steps that were done by chrome first-run. | 1145 // Runs un-installation steps that were done by chrome first-run. |
1146 const char kUninstall[] = "uninstall"; | 1146 const char kUninstall[] = "uninstall"; |
1147 | 1147 |
1148 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1148 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
1149 // testing flag. | 1149 // testing flag. |
1150 const char kUseSpdy[] = "use-spdy"; | 1150 const char kUseSpdy[] = "use-spdy"; |
1151 | 1151 |
| 1152 // Enable SPDY/3. This is a temporary testing flag. |
| 1153 const char kEnableSPDY3[] = "enable-spdy3"; |
| 1154 |
1152 // Ignores certificate-related errors. | 1155 // Ignores certificate-related errors. |
1153 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 1156 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
1154 | 1157 |
1155 // Sets the maximum SPDY sessions per domain. | 1158 // Sets the maximum SPDY sessions per domain. |
1156 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; | 1159 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; |
1157 | 1160 |
1158 // Sets the maximum concurrent streams over a SPDY session. | 1161 // Sets the maximum concurrent streams over a SPDY session. |
1159 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1162 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
1160 | 1163 |
1161 // Specifies the user data directory, which is where the browser will look for | 1164 // Specifies the user data directory, which is where the browser will look for |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1359 | 1362 |
1360 // ----------------------------------------------------------------------------- | 1363 // ----------------------------------------------------------------------------- |
1361 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1364 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1362 // | 1365 // |
1363 // You were going to just dump your switches here, weren't you? Instead, please | 1366 // You were going to just dump your switches here, weren't you? Instead, please |
1364 // put them in alphabetical order above, or in order inside the appropriate | 1367 // put them in alphabetical order above, or in order inside the appropriate |
1365 // ifdef at the bottom. The order should match the header. | 1368 // ifdef at the bottom. The order should match the header. |
1366 // ----------------------------------------------------------------------------- | 1369 // ----------------------------------------------------------------------------- |
1367 | 1370 |
1368 } // namespace switches | 1371 } // namespace switches |
OLD | NEW |