| 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 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 "debug-packed-apps", | 1096 "debug-packed-apps", |
| 1097 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1097 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
| 1098 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1098 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
| 1099 kOsDesktop, | 1099 kOsDesktop, |
| 1100 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1100 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1101 }, | 1101 }, |
| 1102 { | 1102 { |
| 1103 "enable-password-generation", | 1103 "enable-password-generation", |
| 1104 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1104 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1105 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1105 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1106 kOsDesktop, | 1106 kOsWin | kOsLinux | kOsCrOS, |
| 1107 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1107 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1108 autofill::switches::kDisablePasswordGeneration) | 1108 autofill::switches::kDisablePasswordGeneration) |
| 1109 }, | 1109 }, |
| 1110 { | 1110 { |
| 1111 "enable-automatic-password-saving", | 1111 "enable-automatic-password-saving", |
| 1112 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1112 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1113 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1113 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1114 kOsDesktop, | 1114 kOsDesktop, |
| 1115 SINGLE_VALUE_TYPE( | 1115 SINGLE_VALUE_TYPE( |
| 1116 password_manager::switches::kEnableAutomaticPasswordSaving) | 1116 password_manager::switches::kEnableAutomaticPasswordSaving) |
| (...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2451 } | 2451 } |
| 2452 | 2452 |
| 2453 const Experiment* GetExperiments(size_t* count) { | 2453 const Experiment* GetExperiments(size_t* count) { |
| 2454 *count = num_experiments; | 2454 *count = num_experiments; |
| 2455 return experiments; | 2455 return experiments; |
| 2456 } | 2456 } |
| 2457 | 2457 |
| 2458 } // namespace testing | 2458 } // namespace testing |
| 2459 | 2459 |
| 2460 } // namespace about_flags | 2460 } // namespace about_flags |
| OLD | NEW |