| 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 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1218 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1218 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1219 }, | 1219 }, |
| 1220 { | 1220 { |
| 1221 "enable-password-generation", | 1221 "enable-password-generation", |
| 1222 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1222 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1223 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1223 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1224 kOsDesktop, | 1224 kOsDesktop, |
| 1225 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) | 1225 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) |
| 1226 }, | 1226 }, |
| 1227 { | 1227 { |
| 1228 "enable-password-autofill-public-suffix-domain-matching", |
| 1229 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1230 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION
, |
| 1231 kOsAndroid, |
| 1232 SINGLE_VALUE_TYPE( |
| 1233 switches::kEnablePasswordAutofillPublicSuffixDomainMatching) |
| 1234 }, |
| 1235 { |
| 1228 "enable-deferred-image-decoding", | 1236 "enable-deferred-image-decoding", |
| 1229 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1237 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1230 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1238 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| 1231 kOsMac | kOsLinux | kOsCrOS, | 1239 kOsMac | kOsLinux | kOsCrOS, |
| 1232 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1240 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
| 1233 }, | 1241 }, |
| 1234 { | 1242 { |
| 1235 "performance-monitor-gathering", | 1243 "performance-monitor-gathering", |
| 1236 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | 1244 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, |
| 1237 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | 1245 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2037 } | 2045 } |
| 2038 | 2046 |
| 2039 const Experiment* GetExperiments(size_t* count) { | 2047 const Experiment* GetExperiments(size_t* count) { |
| 2040 *count = num_experiments; | 2048 *count = num_experiments; |
| 2041 return experiments; | 2049 return experiments; |
| 2042 } | 2050 } |
| 2043 | 2051 |
| 2044 } // namespace testing | 2052 } // namespace testing |
| 2045 | 2053 |
| 2046 } // namespace about_flags | 2054 } // namespace about_flags |
| OLD | NEW |