| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 // preferences. | 651 // preferences. |
| 652 const char kEnableResourceContentSettings[] = | 652 const char kEnableResourceContentSettings[] = |
| 653 "enable-resource-content-settings"; | 653 "enable-resource-content-settings"; |
| 654 | 654 |
| 655 // Controls the support for SDCH filtering (dictionary based expansion of | 655 // Controls the support for SDCH filtering (dictionary based expansion of |
| 656 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 656 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 657 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 657 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 658 // supported server-side for searches on google.com. | 658 // supported server-side for searches on google.com. |
| 659 const char kEnableSdch[] = "enable-sdch"; | 659 const char kEnableSdch[] = "enable-sdch"; |
| 660 | 660 |
| 661 // Enables support of sticky keys. |
| 662 // TODO(nona): Remove this switch and make this as default. |
| 663 const char kEnableStickyKeys[] = "enable-sticky-keys"; |
| 664 |
| 661 // Disable SPDY/3.1. This is a temporary testing flag. | 665 // Disable SPDY/3.1. This is a temporary testing flag. |
| 662 const char kDisableSpdy31[] = "disable-spdy31"; | 666 const char kDisableSpdy31[] = "disable-spdy31"; |
| 663 | 667 |
| 664 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 668 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
| 665 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 669 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
| 666 | 670 |
| 667 // Enables auto correction for misspelled words. | 671 // Enables auto correction for misspelled words. |
| 668 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 672 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 669 | 673 |
| 670 // Enables sending user feedback to spelling service. | 674 // Enables sending user feedback to spelling service. |
| (...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1606 | 1610 |
| 1607 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- |
| 1608 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1612 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1609 // | 1613 // |
| 1610 // You were going to just dump your switches here, weren't you? Instead, please | 1614 // You were going to just dump your switches here, weren't you? Instead, please |
| 1611 // put them in alphabetical order above, or in order inside the appropriate | 1615 // put them in alphabetical order above, or in order inside the appropriate |
| 1612 // ifdef at the bottom. The order should match the header. | 1616 // ifdef at the bottom. The order should match the header. |
| 1613 // ----------------------------------------------------------------------------- | 1617 // ----------------------------------------------------------------------------- |
| 1614 | 1618 |
| 1615 } // namespace switches | 1619 } // namespace switches |
| OLD | NEW |