Chromium Code Reviews| 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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1070 "debug-packed-apps", | 1070 "debug-packed-apps", |
| 1071 IDS_FLAGS_DEBUG_PACKED_APP_NAME, | 1071 IDS_FLAGS_DEBUG_PACKED_APP_NAME, |
| 1072 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, | 1072 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, |
| 1073 kOsDesktop, | 1073 kOsDesktop, |
| 1074 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1074 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1075 }, | 1075 }, |
| 1076 { | 1076 { |
| 1077 "enable-password-generation", | 1077 "enable-password-generation", |
| 1078 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1078 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1079 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1079 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1080 kOsWin | kOsLinux | kOsCrOS, | 1080 kOsWin | kOsLinux | kOsCrOS | kOsMac, |
|
Garrett Casto
2014/08/20 22:48:13
Note you can use kOsDesktop instead.
| |
| 1081 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, | 1081 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, |
| 1082 autofill::switches::kDisablePasswordGeneration) | 1082 autofill::switches::kDisablePasswordGeneration) |
| 1083 }, | 1083 }, |
| 1084 { | 1084 { |
| 1085 "enable-automatic-password-saving", | 1085 "enable-automatic-password-saving", |
| 1086 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, | 1086 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, |
| 1087 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, | 1087 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, |
| 1088 kOsDesktop, | 1088 kOsDesktop, |
| 1089 SINGLE_VALUE_TYPE( | 1089 SINGLE_VALUE_TYPE( |
| 1090 password_manager::switches::kEnableAutomaticPasswordSaving) | 1090 password_manager::switches::kEnableAutomaticPasswordSaving) |
| (...skipping 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2486 } | 2486 } |
| 2487 | 2487 |
| 2488 const Experiment* GetExperiments(size_t* count) { | 2488 const Experiment* GetExperiments(size_t* count) { |
| 2489 *count = num_experiments; | 2489 *count = num_experiments; |
| 2490 return experiments; | 2490 return experiments; |
| 2491 } | 2491 } |
| 2492 | 2492 |
| 2493 } // namespace testing | 2493 } // namespace testing |
| 2494 | 2494 |
| 2495 } // namespace about_flags | 2495 } // namespace about_flags |
| OLD | NEW |