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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1249 }, | 1249 }, |
1250 { | 1250 { |
1251 "enable-password-generation", | 1251 "enable-password-generation", |
1252 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1252 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1253 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1253 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1254 kOsDesktop, | 1254 kOsDesktop, |
1255 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1255 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
1256 autofill::switches::kDisablePasswordGeneration) | 1256 autofill::switches::kDisablePasswordGeneration) |
1257 }, | 1257 }, |
1258 { | 1258 { |
| 1259 "enable-password-manager-reauthentication", |
| 1260 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1261 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1262 kOsMac, |
| 1263 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) |
| 1264 }, |
| 1265 { |
1259 "enable-people-search", | 1266 "enable-people-search", |
1260 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, | 1267 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, |
1261 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, | 1268 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, |
1262 kOsMac | kOsWin | kOsCrOS, | 1269 kOsMac | kOsWin | kOsCrOS, |
1263 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) | 1270 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) |
1264 }, | 1271 }, |
1265 { | 1272 { |
1266 "password-autofill-public-suffix-domain-matching", | 1273 "password-autofill-public-suffix-domain-matching", |
1267 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, | 1274 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
1268 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, | 1275 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, |
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2301 } | 2308 } |
2302 | 2309 |
2303 const Experiment* GetExperiments(size_t* count) { | 2310 const Experiment* GetExperiments(size_t* count) { |
2304 *count = num_experiments; | 2311 *count = num_experiments; |
2305 return experiments; | 2312 return experiments; |
2306 } | 2313 } |
2307 | 2314 |
2308 } // namespace testing | 2315 } // namespace testing |
2309 | 2316 |
2310 } // namespace about_flags | 2317 } // namespace about_flags |
OLD | NEW |