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 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
1081 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1081 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
1082 kOsDesktop, | 1082 kOsDesktop, |
1083 SINGLE_VALUE_TYPE( | 1083 SINGLE_VALUE_TYPE( |
1084 password_manager::switches::kEnableAutomaticPasswordSaving)}, | 1084 password_manager::switches::kEnableAutomaticPasswordSaving)}, |
1085 {"password-manager-reauthentication", | 1085 {"password-manager-reauthentication", |
1086 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1086 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
1087 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1087 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
1088 kOsMac | kOsWin, | 1088 kOsMac | kOsWin, |
1089 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, | 1089 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, |
1090 {"enable-password-change-support", | |
1091 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME, | |
1092 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION, | |
1093 kOsAll, | |
vasilii
2015/07/23 15:15:13
Mac and Android too?
vabr (Chromium)
2015/07/24 08:24:28
This depends on enable-save-password-bubble, which
dvadym
2015/07/24 16:42:39
Thanks, sure now it's only Windows, Linux and Crom
| |
1094 SINGLE_VALUE_TYPE( | |
1095 password_manager::switches::kEnablePasswordChangeSupport)}, | |
1090 {"enable-password-force-saving", | 1096 {"enable-password-force-saving", |
1091 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, | 1097 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, |
1092 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, | 1098 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, |
1093 kOsAll, | 1099 kOsAll, |
1094 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, | 1100 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, |
1095 {"enable-password-link", | 1101 {"enable-password-link", |
1096 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, | 1102 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, |
1097 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, | 1103 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, |
1098 kOsAndroid | kOsDesktop, | 1104 kOsAndroid | kOsDesktop, |
1099 ENABLE_DISABLE_VALUE_TYPE( | 1105 ENABLE_DISABLE_VALUE_TYPE( |
(...skipping 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2712 } | 2718 } |
2713 | 2719 |
2714 const Experiment* GetExperiments(size_t* count) { | 2720 const Experiment* GetExperiments(size_t* count) { |
2715 *count = num_experiments; | 2721 *count = num_experiments; |
2716 return experiments; | 2722 return experiments; |
2717 } | 2723 } |
2718 | 2724 |
2719 } // namespace testing | 2725 } // namespace testing |
2720 | 2726 |
2721 } // namespace about_flags | 2727 } // namespace about_flags |
OLD | NEW |