| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 "performance-monitor-gathering", | 1118 "performance-monitor-gathering", |
| 1119 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | 1119 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, |
| 1120 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | 1120 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, |
| 1121 kOsAll, | 1121 kOsAll, |
| 1122 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) | 1122 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) |
| 1123 }, | 1123 }, |
| 1124 { | 1124 { |
| 1125 "enable-new-autofill-ui", | 1125 "enable-new-autofill-ui", |
| 1126 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, | 1126 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, |
| 1127 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, | 1127 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, |
| 1128 kOsWin | kOsLinux, | 1128 kOsMac | kOsWin | kOsLinux | kOsCrOS, |
| 1129 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) | 1129 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) |
| 1130 }, | 1130 }, |
| 1131 { | 1131 { |
| 1132 "enable-new-autofill-heuristics", | 1132 "enable-new-autofill-heuristics", |
| 1133 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME, | 1133 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME, |
| 1134 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION, | 1134 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION, |
| 1135 kOsAll, | 1135 kOsAll, |
| 1136 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics) | 1136 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics) |
| 1137 }, | 1137 }, |
| 1138 { | 1138 { |
| (...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1630 } | 1630 } |
| 1631 | 1631 |
| 1632 const Experiment* GetExperiments(size_t* count) { | 1632 const Experiment* GetExperiments(size_t* count) { |
| 1633 *count = num_experiments; | 1633 *count = num_experiments; |
| 1634 return experiments; | 1634 return experiments; |
| 1635 } | 1635 } |
| 1636 | 1636 |
| 1637 } // namespace testing | 1637 } // namespace testing |
| 1638 | 1638 |
| 1639 } // namespace about_flags | 1639 } // namespace about_flags |
| OLD | NEW |