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