| 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 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 const char kUnlimitedStorage[] = "unlimited-storage"; | 1441 const char kUnlimitedStorage[] = "unlimited-storage"; |
| 1442 | 1442 |
| 1443 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1443 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
| 1444 // testing flag. | 1444 // testing flag. |
| 1445 const char kUseSpdy[] = "use-spdy"; | 1445 const char kUseSpdy[] = "use-spdy"; |
| 1446 | 1446 |
| 1447 // Disables use of the spelling web service and only provides suggestions. | 1447 // Disables use of the spelling web service and only provides suggestions. |
| 1448 // This will only work if asynchronous spell checking is not disabled. | 1448 // This will only work if asynchronous spell checking is not disabled. |
| 1449 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | 1449 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
| 1450 | 1450 |
| 1451 // A string used to override the default user agent with a custom one. | |
| 1452 const char kUserAgent[] = "user-agent"; | |
| 1453 | |
| 1454 // Specifies the user data directory, which is where the browser will look for | 1451 // Specifies the user data directory, which is where the browser will look for |
| 1455 // all of its state. | 1452 // all of its state. |
| 1456 const char kUserDataDir[] = "user-data-dir"; | 1453 const char kUserDataDir[] = "user-data-dir"; |
| 1457 | 1454 |
| 1458 // Examines a .crx for validity and prints the result. | 1455 // Examines a .crx for validity and prints the result. |
| 1459 const char kValidateCrx[] = "validate-crx"; | 1456 const char kValidateCrx[] = "validate-crx"; |
| 1460 | 1457 |
| 1461 // Uses experimental simple cache backend if possible. | 1458 // Uses experimental simple cache backend if possible. |
| 1462 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1459 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1463 | 1460 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 | 1633 |
| 1637 // ----------------------------------------------------------------------------- | 1634 // ----------------------------------------------------------------------------- |
| 1638 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1639 // | 1636 // |
| 1640 // You were going to just dump your switches here, weren't you? Instead, please | 1637 // You were going to just dump your switches here, weren't you? Instead, please |
| 1641 // put them in alphabetical order above, or in order inside the appropriate | 1638 // put them in alphabetical order above, or in order inside the appropriate |
| 1642 // ifdef at the bottom. The order should match the header. | 1639 // ifdef at the bottom. The order should match the header. |
| 1643 // ----------------------------------------------------------------------------- | 1640 // ----------------------------------------------------------------------------- |
| 1644 | 1641 |
| 1645 } // namespace switches | 1642 } // namespace switches |
| OLD | NEW |