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 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 "debug-packed-apps", | 1114 "debug-packed-apps", |
1115 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1115 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
1116 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1116 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
1117 kOsDesktop, | 1117 kOsDesktop, |
1118 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1118 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
1119 }, | 1119 }, |
1120 { | 1120 { |
1121 "enable-password-generation", | 1121 "enable-password-generation", |
1122 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1122 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1123 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1123 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1124 kOsDesktop, | 1124 kOsWin | kOsLinux | kOsCrOS, |
1125 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1125 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
1126 autofill::switches::kDisablePasswordGeneration) | 1126 autofill::switches::kDisablePasswordGeneration) |
1127 }, | 1127 }, |
1128 { | 1128 { |
1129 "enable-automatic-password-saving", | 1129 "enable-automatic-password-saving", |
1130 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1130 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
1131 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1131 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
1132 kOsDesktop, | 1132 kOsDesktop, |
1133 SINGLE_VALUE_TYPE( | 1133 SINGLE_VALUE_TYPE( |
1134 password_manager::switches::kEnableAutomaticPasswordSaving) | 1134 password_manager::switches::kEnableAutomaticPasswordSaving) |
(...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2480 } | 2480 } |
2481 | 2481 |
2482 const Experiment* GetExperiments(size_t* count) { | 2482 const Experiment* GetExperiments(size_t* count) { |
2483 *count = num_experiments; | 2483 *count = num_experiments; |
2484 return experiments; | 2484 return experiments; |
2485 } | 2485 } |
2486 | 2486 |
2487 } // namespace testing | 2487 } // namespace testing |
2488 | 2488 |
2489 } // namespace about_flags | 2489 } // namespace about_flags |
OLD | NEW |