| 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 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 // be used only by the upgrade process. | 1343 // be used only by the upgrade process. |
| 1344 const char kTryChromeAgain[] = "try-chrome-again"; | 1344 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1345 | 1345 |
| 1346 // Runs un-installation steps that were done by chrome first-run. | 1346 // Runs un-installation steps that were done by chrome first-run. |
| 1347 const char kUninstall[] = "uninstall"; | 1347 const char kUninstall[] = "uninstall"; |
| 1348 | 1348 |
| 1349 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1349 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
| 1350 // testing flag. | 1350 // testing flag. |
| 1351 const char kUseSpdy[] = "use-spdy"; | 1351 const char kUseSpdy[] = "use-spdy"; |
| 1352 | 1352 |
| 1353 // Uses Spdy for encoding QUIC requests instead of HTTP. This is a temporary | |
| 1354 // testing flag. | |
| 1355 const char kUseSpdyOverQuic[] = "use-spdy-over-quic"; | |
| 1356 | |
| 1357 // Disables use of the spelling web service and only provides suggestions. | 1353 // Disables use of the spelling web service and only provides suggestions. |
| 1358 // This will only work if asynchronous spell checking is not disabled. | 1354 // This will only work if asynchronous spell checking is not disabled. |
| 1359 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | 1355 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
| 1360 | 1356 |
| 1361 // Sets the maximum SPDY sessions per domain. | 1357 // Sets the maximum SPDY sessions per domain. |
| 1362 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; | 1358 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; |
| 1363 | 1359 |
| 1364 // Sets the maximum concurrent streams over a SPDY session. | 1360 // Sets the maximum concurrent streams over a SPDY session. |
| 1365 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1361 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
| 1366 | 1362 |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1673 | 1669 |
| 1674 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
| 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1676 // | 1672 // |
| 1677 // You were going to just dump your switches here, weren't you? Instead, please | 1673 // You were going to just dump your switches here, weren't you? Instead, please |
| 1678 // put them in alphabetical order above, or in order inside the appropriate | 1674 // put them in alphabetical order above, or in order inside the appropriate |
| 1679 // ifdef at the bottom. The order should match the header. | 1675 // ifdef at the bottom. The order should match the header. |
| 1680 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
| 1681 | 1677 |
| 1682 } // namespace switches | 1678 } // namespace switches |
| OLD | NEW |