| 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 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1489 // This will only work if asynchronous spell checking is not disabled. | 1489 // This will only work if asynchronous spell checking is not disabled. |
| 1490 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | 1490 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
| 1491 | 1491 |
| 1492 // Sets the maximum concurrent streams over a SPDY session. | 1492 // Sets the maximum concurrent streams over a SPDY session. |
| 1493 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1493 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
| 1494 | 1494 |
| 1495 // Specifies the user data directory, which is where the browser will look for | 1495 // Specifies the user data directory, which is where the browser will look for |
| 1496 // all of its state. | 1496 // all of its state. |
| 1497 const char kUserDataDir[] = "user-data-dir"; | 1497 const char kUserDataDir[] = "user-data-dir"; |
| 1498 | 1498 |
| 1499 // Use the system-provided title bar and window dressing. Only affects Linux |
| 1500 // Aura. Temporarily activated by a switch; eventually to be dynamically |
| 1501 // changeable with the kUseCustomChromeFrame preference as with the GTK version. |
| 1502 const char kUseSystemTitleBar[] = "use-system-title-bar"; |
| 1503 |
| 1499 // Examines a .crx for validity and prints the result. | 1504 // Examines a .crx for validity and prints the result. |
| 1500 const char kValidateCrx[] = "validate-crx"; | 1505 const char kValidateCrx[] = "validate-crx"; |
| 1501 | 1506 |
| 1502 // Uses experimental simple cache backend if possible. | 1507 // Uses experimental simple cache backend if possible. |
| 1503 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1508 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1504 | 1509 |
| 1505 // Specifies a custom URL for the server which reports variation data to the | 1510 // Specifies a custom URL for the server which reports variation data to the |
| 1506 // client. Specifying this switch enables the Variations service on | 1511 // client. Specifying this switch enables the Variations service on |
| 1507 // unofficial builds. See variations_service.cc. | 1512 // unofficial builds. See variations_service.cc. |
| 1508 const char kVariationsServerURL[] = "variations-server-url"; | 1513 const char kVariationsServerURL[] = "variations-server-url"; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1676 | 1681 |
| 1677 // ----------------------------------------------------------------------------- | 1682 // ----------------------------------------------------------------------------- |
| 1678 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1679 // | 1684 // |
| 1680 // You were going to just dump your switches here, weren't you? Instead, please | 1685 // You were going to just dump your switches here, weren't you? Instead, please |
| 1681 // put them in alphabetical order above, or in order inside the appropriate | 1686 // put them in alphabetical order above, or in order inside the appropriate |
| 1682 // ifdef at the bottom. The order should match the header. | 1687 // ifdef at the bottom. The order should match the header. |
| 1683 // ----------------------------------------------------------------------------- | 1688 // ----------------------------------------------------------------------------- |
| 1684 | 1689 |
| 1685 } // namespace switches | 1690 } // namespace switches |
| OLD | NEW |