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 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1259 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1259 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1260 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1260 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1261 kOsDesktop, | 1261 kOsDesktop, |
1262 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1262 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
1263 autofill::switches::kDisablePasswordGeneration) | 1263 autofill::switches::kDisablePasswordGeneration) |
1264 }, | 1264 }, |
1265 { | 1265 { |
1266 "enable-password-manager-reauthentication", | 1266 "enable-password-manager-reauthentication", |
1267 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1267 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
1268 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1268 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
1269 kOsMac, | 1269 kOsMac | kOsWin, |
1270 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) | 1270 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) |
1271 }, | 1271 }, |
1272 { | 1272 { |
1273 "enable-people-search", | 1273 "enable-people-search", |
1274 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, | 1274 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, |
1275 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, | 1275 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, |
1276 kOsMac | kOsWin | kOsCrOS, | 1276 kOsMac | kOsWin | kOsCrOS, |
1277 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) | 1277 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) |
1278 }, | 1278 }, |
1279 { | 1279 { |
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2329 } | 2329 } |
2330 | 2330 |
2331 const Experiment* GetExperiments(size_t* count) { | 2331 const Experiment* GetExperiments(size_t* count) { |
2332 *count = num_experiments; | 2332 *count = num_experiments; |
2333 return experiments; | 2333 return experiments; |
2334 } | 2334 } |
2335 | 2335 |
2336 } // namespace testing | 2336 } // namespace testing |
2337 | 2337 |
2338 } // namespace about_flags | 2338 } // namespace about_flags |
OLD | NEW |