| 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 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1206 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1207 }, | 1207 }, |
| 1208 { | 1208 { |
| 1209 "enable-password-generation", | 1209 "enable-password-generation", |
| 1210 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1210 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1211 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1211 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1212 kOsDesktop, | 1212 kOsDesktop, |
| 1213 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) | 1213 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) |
| 1214 }, | 1214 }, |
| 1215 { | 1215 { |
| 1216 "enable-people-search", |
| 1217 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, |
| 1218 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, |
| 1219 kOsMac | kOsWin | kOsCrOS, |
| 1220 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) |
| 1221 }, |
| 1222 { |
| 1216 "password-autofill-public-suffix-domain-matching", | 1223 "password-autofill-public-suffix-domain-matching", |
| 1217 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, | 1224 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1218 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, | 1225 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, |
| 1219 kOsAndroid, | 1226 kOsAndroid, |
| 1220 ENABLE_DISABLE_VALUE_TYPE( | 1227 ENABLE_DISABLE_VALUE_TYPE( |
| 1221 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, | 1228 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, |
| 1222 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) | 1229 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) |
| 1223 }, | 1230 }, |
| 1224 { | 1231 { |
| 1225 "enable-deferred-image-decoding", | 1232 "enable-deferred-image-decoding", |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2121 } | 2128 } |
| 2122 | 2129 |
| 2123 const Experiment* GetExperiments(size_t* count) { | 2130 const Experiment* GetExperiments(size_t* count) { |
| 2124 *count = num_experiments; | 2131 *count = num_experiments; |
| 2125 return experiments; | 2132 return experiments; |
| 2126 } | 2133 } |
| 2127 | 2134 |
| 2128 } // namespace testing | 2135 } // namespace testing |
| 2129 | 2136 |
| 2130 } // namespace about_flags | 2137 } // namespace about_flags |
| OLD | NEW |