| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 | 656 |
| 657 // Enables save password prompt bubble. | 657 // Enables save password prompt bubble. |
| 658 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 658 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
| 659 | 659 |
| 660 // Controls the support for SDCH filtering (dictionary based expansion of | 660 // Controls the support for SDCH filtering (dictionary based expansion of |
| 661 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 661 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
| 662 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 662 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
| 663 // supported server-side for searches on google.com. | 663 // supported server-side for searches on google.com. |
| 664 const char kEnableSdch[] = "enable-sdch"; | 664 const char kEnableSdch[] = "enable-sdch"; |
| 665 | 665 |
| 666 // Enables support of sticky keys. |
| 667 const char kEnableStickyKeys[] = "enable-sticky-keys"; |
| 668 |
| 666 // Disable SPDY/3.1. This is a temporary testing flag. | 669 // Disable SPDY/3.1. This is a temporary testing flag. |
| 667 const char kDisableSpdy31[] = "disable-spdy31"; | 670 const char kDisableSpdy31[] = "disable-spdy31"; |
| 668 | 671 |
| 669 // Enable SPDY/4 alpha 2. This is a temporary testing flag. | 672 // Enable SPDY/4 alpha 2. This is a temporary testing flag. |
| 670 const char kEnableSpdy4a2[] = "enable-spdy4a2"; | 673 const char kEnableSpdy4a2[] = "enable-spdy4a2"; |
| 671 | 674 |
| 672 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 675 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
| 673 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 676 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
| 674 | 677 |
| 675 // Enables auto correction for misspelled words. | 678 // Enables auto correction for misspelled words. |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1561 | 1564 |
| 1562 // ----------------------------------------------------------------------------- | 1565 // ----------------------------------------------------------------------------- |
| 1563 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1564 // | 1567 // |
| 1565 // You were going to just dump your switches here, weren't you? Instead, please | 1568 // You were going to just dump your switches here, weren't you? Instead, please |
| 1566 // put them in alphabetical order above, or in order inside the appropriate | 1569 // put them in alphabetical order above, or in order inside the appropriate |
| 1567 // ifdef at the bottom. The order should match the header. | 1570 // ifdef at the bottom. The order should match the header. |
| 1568 // ----------------------------------------------------------------------------- | 1571 // ----------------------------------------------------------------------------- |
| 1569 | 1572 |
| 1570 } // namespace switches | 1573 } // namespace switches |
| OLD | NEW |