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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1739 }, | 1739 }, |
1740 #endif | 1740 #endif |
1741 { | 1741 { |
1742 "num-raster-threads", | 1742 "num-raster-threads", |
1743 IDS_FLAGS_NUM_RASTER_THREADS_NAME, | 1743 IDS_FLAGS_NUM_RASTER_THREADS_NAME, |
1744 IDS_FLAGS_NUM_RASTER_THREADS_DESCRIPTION, | 1744 IDS_FLAGS_NUM_RASTER_THREADS_DESCRIPTION, |
1745 kOsAll, | 1745 kOsAll, |
1746 MULTI_VALUE_TYPE(kNumRasterThreadsChoices) | 1746 MULTI_VALUE_TYPE(kNumRasterThreadsChoices) |
1747 }, | 1747 }, |
1748 { | 1748 { |
1749 "ignore-autocomplete-off-autofill", | |
1750 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_NAME, | |
1751 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_DESCRIPTION, | |
1752 kOsCrOS | kOsMac | kOsWin | kOsLinux, | |
1753 ENABLE_DISABLE_VALUE_TYPE( | |
1754 autofill::switches::kIgnoreAutocompleteOffForAutofill, | |
1755 autofill::switches::kRespectAutocompleteOffForAutofill) | |
1756 }, | |
1757 { | |
1758 "enable-single-click-autofill", | 1749 "enable-single-click-autofill", |
1759 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, | 1750 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, |
1760 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, | 1751 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, |
1761 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid, | 1752 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid, |
1762 ENABLE_DISABLE_VALUE_TYPE( | 1753 ENABLE_DISABLE_VALUE_TYPE( |
1763 autofill::switches::kEnableSingleClickAutofill, | 1754 autofill::switches::kEnableSingleClickAutofill, |
1764 autofill::switches::kDisableSingleClickAutofill) | 1755 autofill::switches::kDisableSingleClickAutofill) |
1765 }, | 1756 }, |
1766 { | 1757 { |
1767 "enable-permissions-bubbles", | 1758 "enable-permissions-bubbles", |
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2909 } | 2900 } |
2910 | 2901 |
2911 const Experiment* GetExperiments(size_t* count) { | 2902 const Experiment* GetExperiments(size_t* count) { |
2912 *count = num_experiments; | 2903 *count = num_experiments; |
2913 return experiments; | 2904 return experiments; |
2914 } | 2905 } |
2915 | 2906 |
2916 } // namespace testing | 2907 } // namespace testing |
2917 | 2908 |
2918 } // namespace about_flags | 2909 } // namespace about_flags |
OLD | NEW |