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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1095 "debug-packed-apps", | 1095 "debug-packed-apps", |
1096 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1096 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
1097 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1097 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
1098 kOsDesktop, | 1098 kOsDesktop, |
1099 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1099 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
1100 }, | 1100 }, |
1101 { | 1101 { |
1102 "enable-password-generation", | 1102 "enable-password-generation", |
1103 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1103 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1104 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1104 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1105 kOsDesktop, | 1105 kOsWin | kOsLinux | kOsCrOS, |
1106 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1106 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
1107 autofill::switches::kDisablePasswordGeneration) | 1107 autofill::switches::kDisablePasswordGeneration) |
1108 }, | 1108 }, |
1109 { | 1109 { |
1110 "enable-automatic-password-saving", | 1110 "enable-automatic-password-saving", |
1111 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1111 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
1112 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1112 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
1113 kOsDesktop, | 1113 kOsDesktop, |
1114 SINGLE_VALUE_TYPE( | 1114 SINGLE_VALUE_TYPE( |
1115 password_manager::switches::kEnableAutomaticPasswordSaving) | 1115 password_manager::switches::kEnableAutomaticPasswordSaving) |
(...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2461 } | 2461 } |
2462 | 2462 |
2463 const Experiment* GetExperiments(size_t* count) { | 2463 const Experiment* GetExperiments(size_t* count) { |
2464 *count = num_experiments; | 2464 *count = num_experiments; |
2465 return experiments; | 2465 return experiments; |
2466 } | 2466 } |
2467 | 2467 |
2468 } // namespace testing | 2468 } // namespace testing |
2469 | 2469 |
2470 } // namespace about_flags | 2470 } // namespace about_flags |
OLD | NEW |