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 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1474 // This will only work if asynchronous spell checking is not disabled. | 1474 // This will only work if asynchronous spell checking is not disabled. |
1475 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | 1475 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
1476 | 1476 |
1477 // Sets the maximum concurrent streams over a SPDY session. | 1477 // Sets the maximum concurrent streams over a SPDY session. |
1478 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1478 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
1479 | 1479 |
1480 // Specifies the user data directory, which is where the browser will look for | 1480 // Specifies the user data directory, which is where the browser will look for |
1481 // all of its state. | 1481 // all of its state. |
1482 const char kUserDataDir[] = "user-data-dir"; | 1482 const char kUserDataDir[] = "user-data-dir"; |
1483 | 1483 |
1484 // Use the system-provided title bar and window dressing. Only affects Linux | |
1485 // Aura. Temporarily activated by a switch; eventually to be dynamically | |
1486 // changeable with the kUseCustomChromeFrame preference as with the GTK version. | |
1487 const char kUseSystemTitleBar[] = "use-system-title-bar"; | |
1488 | |
1489 // Examines a .crx for validity and prints the result. | 1484 // Examines a .crx for validity and prints the result. |
1490 const char kValidateCrx[] = "validate-crx"; | 1485 const char kValidateCrx[] = "validate-crx"; |
1491 | 1486 |
1492 // Uses experimental simple cache backend if possible. | 1487 // Uses experimental simple cache backend if possible. |
1493 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1488 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
1494 | 1489 |
1495 // Specifies a custom URL for the server which reports variation data to the | 1490 // Specifies a custom URL for the server which reports variation data to the |
1496 // client. Specifying this switch enables the Variations service on | 1491 // client. Specifying this switch enables the Variations service on |
1497 // unofficial builds. See variations_service.cc. | 1492 // unofficial builds. See variations_service.cc. |
1498 const char kVariationsServerURL[] = "variations-server-url"; | 1493 const char kVariationsServerURL[] = "variations-server-url"; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1674 | 1669 |
1675 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
1676 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1677 // | 1672 // |
1678 // 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 |
1679 // 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 |
1680 // ifdef at the bottom. The order should match the header. | 1675 // ifdef at the bottom. The order should match the header. |
1681 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
1682 | 1677 |
1683 } // namespace switches | 1678 } // namespace switches |
OLD | NEW |