| 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 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 "debug-packed-apps", | 1102 "debug-packed-apps", |
| 1103 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1103 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
| 1104 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1104 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
| 1105 kOsDesktop, | 1105 kOsDesktop, |
| 1106 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1106 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1107 }, | 1107 }, |
| 1108 { | 1108 { |
| 1109 "enable-password-generation", | 1109 "enable-password-generation", |
| 1110 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1110 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1111 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1111 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1112 kOsDesktop, | 1112 kOsWin | kOsLinux | kOsCrOS, |
| 1113 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1113 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1114 autofill::switches::kDisablePasswordGeneration) | 1114 autofill::switches::kDisablePasswordGeneration) |
| 1115 }, | 1115 }, |
| 1116 { | 1116 { |
| 1117 "enable-automatic-password-saving", | 1117 "enable-automatic-password-saving", |
| 1118 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1118 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1119 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1119 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1120 kOsDesktop, | 1120 kOsDesktop, |
| 1121 SINGLE_VALUE_TYPE( | 1121 SINGLE_VALUE_TYPE( |
| 1122 password_manager::switches::kEnableAutomaticPasswordSaving) | 1122 password_manager::switches::kEnableAutomaticPasswordSaving) |
| (...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2468 } | 2468 } |
| 2469 | 2469 |
| 2470 const Experiment* GetExperiments(size_t* count) { | 2470 const Experiment* GetExperiments(size_t* count) { |
| 2471 *count = num_experiments; | 2471 *count = num_experiments; |
| 2472 return experiments; | 2472 return experiments; |
| 2473 } | 2473 } |
| 2474 | 2474 |
| 2475 } // namespace testing | 2475 } // namespace testing |
| 2476 | 2476 |
| 2477 } // namespace about_flags | 2477 } // namespace about_flags |
| OLD | NEW |