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/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
6 | 6 |
7 #include <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 MULTI_VALUE_TYPE(kOriginChipChoices) | 1687 MULTI_VALUE_TYPE(kOriginChipChoices) |
1688 }, | 1688 }, |
1689 { | 1689 { |
1690 "search-button-in-omnibox", | 1690 "search-button-in-omnibox", |
1691 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME, | 1691 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME, |
1692 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION, | 1692 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION, |
1693 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1693 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
1694 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices) | 1694 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices) |
1695 }, | 1695 }, |
1696 { | 1696 { |
1697 "disable-ignore-autocomplete-off", | |
1698 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_NAME, | |
1699 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION, | |
1700 kOsAll, | |
1701 SINGLE_VALUE_TYPE(autofill::switches::kDisableIgnoreAutocompleteOff) | |
1702 }, | |
1703 { | |
1704 "ignore-autocomplete-off-autofill", | 1697 "ignore-autocomplete-off-autofill", |
1705 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_NAME, | 1698 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_NAME, |
1706 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_DESCRIPTION, | 1699 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_DESCRIPTION, |
1707 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1700 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
1708 SINGLE_VALUE_TYPE(autofill::switches::kIgnoreAutocompleteOffForAutofill) | 1701 SINGLE_VALUE_TYPE(autofill::switches::kIgnoreAutocompleteOffForAutofill) |
1709 }, | 1702 }, |
1710 { | 1703 { |
1711 "enable-permissions-bubbles", | 1704 "enable-permissions-bubbles", |
1712 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, | 1705 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, |
1713 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, | 1706 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, |
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2597 } | 2590 } |
2598 | 2591 |
2599 const Experiment* GetExperiments(size_t* count) { | 2592 const Experiment* GetExperiments(size_t* count) { |
2600 *count = num_experiments; | 2593 *count = num_experiments; |
2601 return experiments; | 2594 return experiments; |
2602 } | 2595 } |
2603 | 2596 |
2604 } // namespace testing | 2597 } // namespace testing |
2605 | 2598 |
2606 } // namespace about_flags | 2599 } // namespace about_flags |
OLD | NEW |