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