| 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-password-saving", |
| 1119 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1120 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1121 kOsDesktop, |
| 1122 SINGLE_VALUE_TYPE( |
| 1123 password_manager::switches::kEnableAutomaticPasswordSaving) |
| 1124 }, |
| 1125 { |
| 1118 "password-manager-reauthentication", | 1126 "password-manager-reauthentication", |
| 1119 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1127 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1120 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1128 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1121 kOsMac | kOsWin, | 1129 kOsMac | kOsWin, |
| 1122 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1130 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
| 1123 }, | 1131 }, |
| 1124 { | 1132 { |
| 1125 "enable-deferred-image-decoding", | 1133 "enable-deferred-image-decoding", |
| 1126 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1134 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1127 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1135 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2313 } | 2321 } |
| 2314 | 2322 |
| 2315 const Experiment* GetExperiments(size_t* count) { | 2323 const Experiment* GetExperiments(size_t* count) { |
| 2316 *count = num_experiments; | 2324 *count = num_experiments; |
| 2317 return experiments; | 2325 return experiments; |
| 2318 } | 2326 } |
| 2319 | 2327 |
| 2320 } // namespace testing | 2328 } // namespace testing |
| 2321 | 2329 |
| 2322 } // namespace about_flags | 2330 } // namespace about_flags |
| OLD | NEW |