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 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1157 password_manager::switches::kEnableAutomaticPasswordSaving) | 1157 password_manager::switches::kEnableAutomaticPasswordSaving) |
1158 }, | 1158 }, |
1159 { | 1159 { |
1160 "password-manager-reauthentication", | 1160 "password-manager-reauthentication", |
1161 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1161 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
1162 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1162 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
1163 kOsMac | kOsWin, | 1163 kOsMac | kOsWin, |
1164 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1164 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
1165 }, | 1165 }, |
1166 { | 1166 { |
| 1167 "enable-password-change-support", |
| 1168 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME, |
| 1169 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION, |
| 1170 kOsAll, |
| 1171 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordChangeSupport) |
| 1172 }, |
| 1173 { |
1167 "enable-password-force-saving", | 1174 "enable-password-force-saving", |
1168 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, | 1175 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, |
1169 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, | 1176 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, |
1170 kOsAll, | 1177 kOsAll, |
1171 SINGLE_VALUE_TYPE( | 1178 SINGLE_VALUE_TYPE( |
1172 password_manager::switches::kEnablePasswordForceSaving) | 1179 password_manager::switches::kEnablePasswordForceSaving) |
1173 }, | 1180 }, |
1174 { | 1181 { |
1175 "enable-password-link", | 1182 "enable-password-link", |
1176 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, | 1183 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, |
(...skipping 1856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3033 } | 3040 } |
3034 | 3041 |
3035 const Experiment* GetExperiments(size_t* count) { | 3042 const Experiment* GetExperiments(size_t* count) { |
3036 *count = num_experiments; | 3043 *count = num_experiments; |
3037 return experiments; | 3044 return experiments; |
3038 } | 3045 } |
3039 | 3046 |
3040 } // namespace testing | 3047 } // namespace testing |
3041 | 3048 |
3042 } // namespace about_flags | 3049 } // namespace about_flags |
OLD | NEW |