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 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1250 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1250 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
1251 }, | 1251 }, |
1252 { | 1252 { |
1253 "performance-monitor-gathering", | 1253 "performance-monitor-gathering", |
1254 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | 1254 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, |
1255 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | 1255 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, |
1256 kOsAll, | 1256 kOsAll, |
1257 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) | 1257 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) |
1258 }, | 1258 }, |
1259 { | 1259 { |
1260 "disable-native-autofill-ui", | |
1261 IDS_FLAGS_DISABLE_NATIVE_AUTOFILL_UI_NAME, | |
1262 IDS_FLAGS_DISABLE_NATIVE_AUTOFILL_UI_DESCRIPTION, | |
1263 kOsDesktop, | |
1264 SINGLE_VALUE_TYPE(switches::kDisableNativeAutofillUi) | |
1265 }, | |
1266 { | |
1267 "enable-experimental-form-filling", | 1260 "enable-experimental-form-filling", |
1268 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, | 1261 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, |
1269 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, | 1262 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, |
1270 kOsWin | kOsCrOS, | 1263 kOsWin | kOsCrOS, |
1271 SINGLE_VALUE_TYPE(autofill::switches::kEnableExperimentalFormFilling) | 1264 SINGLE_VALUE_TYPE(autofill::switches::kEnableExperimentalFormFilling) |
1272 }, | 1265 }, |
1273 { | 1266 { |
1274 "wallet-service-use-prod", | 1267 "wallet-service-use-prod", |
1275 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, | 1268 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, |
1276 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, | 1269 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2049 } | 2042 } |
2050 | 2043 |
2051 const Experiment* GetExperiments(size_t* count) { | 2044 const Experiment* GetExperiments(size_t* count) { |
2052 *count = num_experiments; | 2045 *count = num_experiments; |
2053 return experiments; | 2046 return experiments; |
2054 } | 2047 } |
2055 | 2048 |
2056 } // namespace testing | 2049 } // namespace testing |
2057 | 2050 |
2058 } // namespace about_flags | 2051 } // namespace about_flags |
OLD | NEW |