| 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 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 }, | 1082 }, |
| 1083 { | 1083 { |
| 1084 "enable-password-generation", | 1084 "enable-password-generation", |
| 1085 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1085 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1086 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1086 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1087 kOsDesktop, | 1087 kOsDesktop, |
| 1088 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1088 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1089 autofill::switches::kDisablePasswordGeneration) | 1089 autofill::switches::kDisablePasswordGeneration) |
| 1090 }, | 1090 }, |
| 1091 { | 1091 { |
| 1092 "enable-automatic-password-saving", |
| 1093 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1094 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1095 kOsDesktop, |
| 1096 SINGLE_VALUE_TYPE( |
| 1097 password_manager::switches::kEnableAutomaticPasswordSaving) |
| 1098 }, |
| 1099 { |
| 1092 "password-manager-reauthentication", | 1100 "password-manager-reauthentication", |
| 1093 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1101 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1094 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1102 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1095 kOsMac | kOsWin, | 1103 kOsMac | kOsWin, |
| 1096 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1104 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
| 1097 }, | 1105 }, |
| 1098 { | 1106 { |
| 1099 "enable-deferred-image-decoding", | 1107 "enable-deferred-image-decoding", |
| 1100 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1108 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1101 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1109 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| (...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2322 } | 2330 } |
| 2323 | 2331 |
| 2324 const Experiment* GetExperiments(size_t* count) { | 2332 const Experiment* GetExperiments(size_t* count) { |
| 2325 *count = num_experiments; | 2333 *count = num_experiments; |
| 2326 return experiments; | 2334 return experiments; |
| 2327 } | 2335 } |
| 2328 | 2336 |
| 2329 } // namespace testing | 2337 } // namespace testing |
| 2330 | 2338 |
| 2331 } // namespace about_flags | 2339 } // namespace about_flags |
| OLD | NEW |