Chromium Code Reviews| 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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 733 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 733 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 734 // supported server-side for searches on google.com. | 734 // supported server-side for searches on google.com. |
| 735 const char kEnableSdch[] = "enable-sdch"; | 735 const char kEnableSdch[] = "enable-sdch"; |
| 736 | 736 |
| 737 // Enables support of sticky keys. | 737 // Enables support of sticky keys. |
| 738 const char kEnableStickyKeys[] = "enable-sticky-keys"; | 738 const char kEnableStickyKeys[] = "enable-sticky-keys"; |
| 739 | 739 |
| 740 // Disables support of sticky keys. | 740 // Disables support of sticky keys. |
| 741 const char kDisableStickyKeys[] = "disable-sticky-keys"; | 741 const char kDisableStickyKeys[] = "disable-sticky-keys"; |
| 742 | 742 |
| 743 // Enable SPDY/2. This is a temporary testing flag. See | 743 // Disable SPDY/2. This is a temporary testing flag. See |
| 744 // http://crbug.com/303957 . | 744 // http://crbug.com/303957 . |
| 745 const char kEnableSpdy2[] = "enable-spdy2"; | 745 const char kDisableSpdy2[] = "disable-spdy2"; |
|
jam
2013/11/13 23:19:09
please sort now
akalin
2013/11/13 23:39:13
Done.
| |
| 746 | 746 |
| 747 // Disable SPDY/3.1. This is a temporary testing flag. | 747 // Disable SPDY/3.1. This is a temporary testing flag. |
| 748 const char kDisableSpdy31[] = "disable-spdy31"; | 748 const char kDisableSpdy31[] = "disable-spdy31"; |
| 749 | 749 |
| 750 // Enable SPDY/4 alpha 2. This is a temporary testing flag. | 750 // Enable SPDY/4 alpha 2. This is a temporary testing flag. |
| 751 const char kEnableSpdy4a2[] = "enable-spdy4a2"; | 751 const char kEnableSpdy4a2[] = "enable-spdy4a2"; |
| 752 | 752 |
| 753 // Enables auto correction for misspelled words. | 753 // Enables auto correction for misspelled words. |
| 754 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 754 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 755 | 755 |
| (...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1633 | 1633 |
| 1634 // ----------------------------------------------------------------------------- | 1634 // ----------------------------------------------------------------------------- |
| 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1636 // | 1636 // |
| 1637 // 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 |
| 1638 // 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 |
| 1639 // ifdef at the bottom. The order should match the header. | 1639 // ifdef at the bottom. The order should match the header. |
| 1640 // ----------------------------------------------------------------------------- | 1640 // ----------------------------------------------------------------------------- |
| 1641 | 1641 |
| 1642 } // namespace switches | 1642 } // namespace switches |
| OLD | NEW |