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