| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 // experimental feature is auto spell correct, which corrects words which are | 666 // experimental feature is auto spell correct, which corrects words which are |
| 667 // misspelled by typing the word with two consecutive letters swapped. The | 667 // misspelled by typing the word with two consecutive letters swapped. The |
| 668 // features that will be added next are: | 668 // features that will be added next are: |
| 669 // | 669 // |
| 670 // 1 - Allow multiple spellcheckers to work simultaneously. | 670 // 1 - Allow multiple spellcheckers to work simultaneously. |
| 671 // 2 - Allow automatic detection of spell check language. | 671 // 2 - Allow automatic detection of spell check language. |
| 672 // TODO(sidchat): Implement the above features to work under this flag. | 672 // TODO(sidchat): Implement the above features to work under this flag. |
| 673 const char kExperimentalSpellcheckerFeatures[] = | 673 const char kExperimentalSpellcheckerFeatures[] = |
| 674 "experimental-spellchecker-features"; | 674 "experimental-spellchecker-features"; |
| 675 | 675 |
| 676 // If nonempty, fetch experimental zero-suggest suggestions by appending to |
| 677 // this prefix of a URL. |
| 678 const char kExperimentalZeroSuggestURLPrefix[] = |
| 679 "experimental-zero-suggest-url-prefix"; |
| 680 |
| 676 // Explicitly allows additional ports using a comma-separated list of port | 681 // Explicitly allows additional ports using a comma-separated list of port |
| 677 // numbers. | 682 // numbers. |
| 678 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 683 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 679 | 684 |
| 680 // The time in seconds that an extension event page can be idle before it | 685 // The time in seconds that an extension event page can be idle before it |
| 681 // is shut down. | 686 // is shut down. |
| 682 const char kEventPageIdleTime[] = "event-page-idle-time"; | 687 const char kEventPageIdleTime[] = "event-page-idle-time"; |
| 683 | 688 |
| 684 // The time in seconds that an extension event page has between being notified | 689 // The time in seconds that an extension event page has between being notified |
| 685 // of its impending unload and that unload happening. | 690 // of its impending unload and that unload happening. |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1598 | 1603 |
| 1599 // ----------------------------------------------------------------------------- | 1604 // ----------------------------------------------------------------------------- |
| 1600 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1605 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1601 // | 1606 // |
| 1602 // You were going to just dump your switches here, weren't you? Instead, please | 1607 // You were going to just dump your switches here, weren't you? Instead, please |
| 1603 // put them in alphabetical order above, or in order inside the appropriate | 1608 // put them in alphabetical order above, or in order inside the appropriate |
| 1604 // ifdef at the bottom. The order should match the header. | 1609 // ifdef at the bottom. The order should match the header. |
| 1605 // ----------------------------------------------------------------------------- | 1610 // ----------------------------------------------------------------------------- |
| 1606 | 1611 |
| 1607 } // namespace switches | 1612 } // namespace switches |
| OLD | NEW |