| 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 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 "debug-packed-apps", | 1063 "debug-packed-apps", |
| 1064 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1064 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
| 1065 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1065 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
| 1066 kOsDesktop, | 1066 kOsDesktop, |
| 1067 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1067 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1068 }, | 1068 }, |
| 1069 { | 1069 { |
| 1070 "enable-password-generation", | 1070 "enable-password-generation", |
| 1071 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1071 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1072 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1072 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1073 kOsWin | kOsLinux | kOsCrOS | kOsMac, | 1073 kOsWin | kOsLinux | kOsCrOS | kOsMac | kOsAndroid, |
| 1074 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1074 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1075 autofill::switches::kDisablePasswordGeneration) | 1075 autofill::switches::kDisablePasswordGeneration) |
| 1076 }, | 1076 }, |
| 1077 { | 1077 { |
| 1078 "enable-automatic-password-saving", | 1078 "enable-automatic-password-saving", |
| 1079 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1079 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1081 kOsDesktop, | 1081 kOsDesktop, |
| 1082 SINGLE_VALUE_TYPE( | 1082 SINGLE_VALUE_TYPE( |
| 1083 password_manager::switches::kEnableAutomaticPasswordSaving) | 1083 password_manager::switches::kEnableAutomaticPasswordSaving) |
| (...skipping 1494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2578 } | 2578 } |
| 2579 | 2579 |
| 2580 const Experiment* GetExperiments(size_t* count) { | 2580 const Experiment* GetExperiments(size_t* count) { |
| 2581 *count = num_experiments; | 2581 *count = num_experiments; |
| 2582 return experiments; | 2582 return experiments; |
| 2583 } | 2583 } |
| 2584 | 2584 |
| 2585 } // namespace testing | 2585 } // namespace testing |
| 2586 | 2586 |
| 2587 } // namespace about_flags | 2587 } // namespace about_flags |
| OLD | NEW |