Chromium Code Reviews| 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 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1266 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1266 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1267 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1267 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1268 kOsDesktop, | 1268 kOsDesktop, |
| 1269 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1269 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1270 autofill::switches::kDisablePasswordGeneration) | 1270 autofill::switches::kDisablePasswordGeneration) |
| 1271 }, | 1271 }, |
| 1272 { | 1272 { |
| 1273 "enable-password-manager-reauthentication", | 1273 "enable-password-manager-reauthentication", |
| 1274 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1274 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1275 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1275 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1276 kOsMac, | 1276 kOsMac | kOsWin, |
|
cpu_(ooo_6.6-7.5)
2013/10/23 19:54:43
Is this feature only available via about:flags ?
| |
| 1277 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) | 1277 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) |
| 1278 }, | 1278 }, |
| 1279 { | 1279 { |
| 1280 "enable-people-search", | 1280 "enable-people-search", |
| 1281 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, | 1281 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, |
| 1282 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, | 1282 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, |
| 1283 kOsMac | kOsWin | kOsCrOS, | 1283 kOsMac | kOsWin | kOsCrOS, |
| 1284 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) | 1284 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) |
| 1285 }, | 1285 }, |
| 1286 { | 1286 { |
| (...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2312 } | 2312 } |
| 2313 | 2313 |
| 2314 const Experiment* GetExperiments(size_t* count) { | 2314 const Experiment* GetExperiments(size_t* count) { |
| 2315 *count = num_experiments; | 2315 *count = num_experiments; |
| 2316 return experiments; | 2316 return experiments; |
| 2317 } | 2317 } |
| 2318 | 2318 |
| 2319 } // namespace testing | 2319 } // namespace testing |
| 2320 | 2320 |
| 2321 } // namespace about_flags | 2321 } // namespace about_flags |
| OLD | NEW |