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