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 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1108 }, | 1108 }, |
| 1109 { | 1109 { |
| 1110 "enable-password-generation", | 1110 "enable-password-generation", |
| 1111 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1111 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1112 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1112 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1113 kOsDesktop, | 1113 kOsDesktop, |
| 1114 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1114 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1115 autofill::switches::kDisablePasswordGeneration) | 1115 autofill::switches::kDisablePasswordGeneration) |
| 1116 }, | 1116 }, |
| 1117 { | 1117 { |
| 1118 "enable-automatic-passwords-saving", | |
|
vabr (Chromium)
2014/04/28 09:13:14
nit: passwords->password (see, e.g., the flag for
rchtara
2014/04/28 11:28:29
Done.
| |
| 1119 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORDS_SAVING_NAME, | |
| 1120 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORDS_SAVING_DESCRIPTION, | |
| 1121 kOsDesktop, | |
| 1122 SINGLE_VALUE_TYPE(autofill::switches::kEnableAutomaticPasswordsSaving) | |
| 1123 }, | |
| 1124 { | |
| 1118 "password-manager-reauthentication", | 1125 "password-manager-reauthentication", |
| 1119 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1126 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1120 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1127 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1121 kOsMac | kOsWin, | 1128 kOsMac | kOsWin, |
| 1122 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1129 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
| 1123 }, | 1130 }, |
| 1124 { | 1131 { |
| 1125 "enable-deferred-image-decoding", | 1132 "enable-deferred-image-decoding", |
| 1126 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1133 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1127 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1134 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2313 } | 2320 } |
| 2314 | 2321 |
| 2315 const Experiment* GetExperiments(size_t* count) { | 2322 const Experiment* GetExperiments(size_t* count) { |
| 2316 *count = num_experiments; | 2323 *count = num_experiments; |
| 2317 return experiments; | 2324 return experiments; |
| 2318 } | 2325 } |
| 2319 | 2326 |
| 2320 } // namespace testing | 2327 } // namespace testing |
| 2321 | 2328 |
| 2322 } // namespace about_flags | 2329 } // namespace about_flags |
| OLD | NEW |