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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 // associated with this feature server-side from the FieldTrial (the complete | 745 // associated with this feature server-side from the FieldTrial (the complete |
746 // experience includes other flag changes as well). It is not currently possible | 746 // experience includes other flag changes as well). It is not currently possible |
747 // to do that with "flag=value" flags. | 747 // to do that with "flag=value" flags. |
748 const char kEnableSearchButtonInOmniboxAlways[] = | 748 const char kEnableSearchButtonInOmniboxAlways[] = |
749 "enable-search-button-in-omnibox-always"; | 749 "enable-search-button-in-omnibox-always"; |
750 const char kEnableSearchButtonInOmniboxForStr[] = | 750 const char kEnableSearchButtonInOmniboxForStr[] = |
751 "enable-search-button-in-omnibox-for-str"; | 751 "enable-search-button-in-omnibox-for-str"; |
752 const char kEnableSearchButtonInOmniboxForStrOrIip[] = | 752 const char kEnableSearchButtonInOmniboxForStrOrIip[] = |
753 "enable-search-button-in-omnibox-for-str-or-iip"; | 753 "enable-search-button-in-omnibox-for-str-or-iip"; |
754 | 754 |
| 755 // Enable settings in a separate browser window per profile. |
| 756 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 757 |
755 // Enable SPDY/2. This is a temporary testing flag. See | 758 // Enable SPDY/2. This is a temporary testing flag. See |
756 // http://crbug.com/303957 . | 759 // http://crbug.com/303957 . |
757 const char kEnableSpdy2[] = "enable-spdy2"; | 760 const char kEnableSpdy2[] = "enable-spdy2"; |
758 | 761 |
759 // Enable SPDY/4 alpha 2. This is a temporary testing flag. | 762 // Enable SPDY/4 alpha 2. This is a temporary testing flag. |
760 const char kEnableSpdy4a2[] = "enable-spdy4a2"; | 763 const char kEnableSpdy4a2[] = "enable-spdy4a2"; |
761 | 764 |
762 // Enables auto correction for misspelled words. | 765 // Enables auto correction for misspelled words. |
763 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 766 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
764 | 767 |
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 | 1662 |
1660 // ----------------------------------------------------------------------------- | 1663 // ----------------------------------------------------------------------------- |
1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1662 // | 1665 // |
1663 // You were going to just dump your switches here, weren't you? Instead, please | 1666 // You were going to just dump your switches here, weren't you? Instead, please |
1664 // put them in alphabetical order above, or in order inside the appropriate | 1667 // put them in alphabetical order above, or in order inside the appropriate |
1665 // ifdef at the bottom. The order should match the header. | 1668 // ifdef at the bottom. The order should match the header. |
1666 // ----------------------------------------------------------------------------- | 1669 // ----------------------------------------------------------------------------- |
1667 | 1670 |
1668 } // namespace switches | 1671 } // namespace switches |
OLD | NEW |