| 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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1312 // be used only by the upgrade process. | 1312 // be used only by the upgrade process. |
| 1313 const char kTryChromeAgain[] = "try-chrome-again"; | 1313 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1314 | 1314 |
| 1315 // Runs un-installation steps that were done by chrome first-run. | 1315 // Runs un-installation steps that were done by chrome first-run. |
| 1316 const char kUninstall[] = "uninstall"; | 1316 const char kUninstall[] = "uninstall"; |
| 1317 | 1317 |
| 1318 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1318 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
| 1319 // testing flag. | 1319 // testing flag. |
| 1320 const char kUseSpdy[] = "use-spdy"; | 1320 const char kUseSpdy[] = "use-spdy"; |
| 1321 | 1321 |
| 1322 // Enables use of the spelling web service. This will only work if asynchronous | 1322 // Disables use of the spelling web service and only provides suggestions. |
| 1323 // spell checking is not disabled. | 1323 // This will only work if asynchronous spell checking is not disabled. |
| 1324 const char kUseSpellingService[] = "use-spelling-service"; | 1324 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
| 1325 | 1325 |
| 1326 // Sets the maximum SPDY sessions per domain. | 1326 // Sets the maximum SPDY sessions per domain. |
| 1327 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; | 1327 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; |
| 1328 | 1328 |
| 1329 // Sets the maximum concurrent streams over a SPDY session. | 1329 // Sets the maximum concurrent streams over a SPDY session. |
| 1330 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1330 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
| 1331 | 1331 |
| 1332 // Specifies the user data directory, which is where the browser will look for | 1332 // Specifies the user data directory, which is where the browser will look for |
| 1333 // all of its state. | 1333 // all of its state. |
| 1334 const char kUserDataDir[] = "user-data-dir"; | 1334 const char kUserDataDir[] = "user-data-dir"; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1614 | 1614 |
| 1615 // ----------------------------------------------------------------------------- | 1615 // ----------------------------------------------------------------------------- |
| 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1617 // | 1617 // |
| 1618 // You were going to just dump your switches here, weren't you? Instead, please | 1618 // You were going to just dump your switches here, weren't you? Instead, please |
| 1619 // put them in alphabetical order above, or in order inside the appropriate | 1619 // put them in alphabetical order above, or in order inside the appropriate |
| 1620 // ifdef at the bottom. The order should match the header. | 1620 // ifdef at the bottom. The order should match the header. |
| 1621 // ----------------------------------------------------------------------------- | 1621 // ----------------------------------------------------------------------------- |
| 1622 | 1622 |
| 1623 } // namespace switches | 1623 } // namespace switches |
| OLD | NEW |