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