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 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1236 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
1237 }, | 1237 }, |
1238 { | 1238 { |
1239 "enable-password-generation", | 1239 "enable-password-generation", |
1240 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1240 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1241 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1241 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1242 kOsDesktop, | 1242 kOsDesktop, |
1243 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) | 1243 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) |
1244 }, | 1244 }, |
1245 { | 1245 { |
| 1246 "enable-password-autofill-public-suffix-domain-matching", |
| 1247 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1248 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION
, |
| 1249 kOsAndroid, |
| 1250 SINGLE_VALUE_TYPE( |
| 1251 switches::kEnablePasswordAutofillPublicSuffixDomainMatching) |
| 1252 }, |
| 1253 { |
1246 "enable-deferred-image-decoding", | 1254 "enable-deferred-image-decoding", |
1247 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1255 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
1248 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1256 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
1249 kOsMac | kOsLinux | kOsCrOS, | 1257 kOsMac | kOsLinux | kOsCrOS, |
1250 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1258 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
1251 }, | 1259 }, |
1252 { | 1260 { |
1253 "performance-monitor-gathering", | 1261 "performance-monitor-gathering", |
1254 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | 1262 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, |
1255 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | 1263 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, |
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2042 } | 2050 } |
2043 | 2051 |
2044 const Experiment* GetExperiments(size_t* count) { | 2052 const Experiment* GetExperiments(size_t* count) { |
2045 *count = num_experiments; | 2053 *count = num_experiments; |
2046 return experiments; | 2054 return experiments; |
2047 } | 2055 } |
2048 | 2056 |
2049 } // namespace testing | 2057 } // namespace testing |
2050 | 2058 |
2051 } // namespace about_flags | 2059 } // namespace about_flags |
OLD | NEW |