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 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 password_manager::switches::kEnableAutomaticPasswordSaving) | 1079 password_manager::switches::kEnableAutomaticPasswordSaving) |
1080 }, | 1080 }, |
1081 { | 1081 { |
1082 "password-manager-reauthentication", | 1082 "password-manager-reauthentication", |
1083 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1083 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
1084 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1084 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
1085 kOsMac | kOsWin, | 1085 kOsMac | kOsWin, |
1086 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1086 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
1087 }, | 1087 }, |
1088 { | 1088 { |
1089 "enable-android-password-link", | 1089 "enable-password-link", |
1090 IDS_FLAGS_PASSWORD_MANAGER_ANDROID_LINK_NAME, | 1090 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, |
1091 IDS_FLAGS_PASSWORD_MANAGER_ANDROID_LINK_DESCRIPTION, | 1091 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, |
1092 kOsAndroid, | 1092 kOsAndroid | kOsDesktop, |
1093 ENABLE_DISABLE_VALUE_TYPE( | 1093 ENABLE_DISABLE_VALUE_TYPE( |
1094 password_manager::switches::kEnableAndroidPasswordLink, | 1094 password_manager::switches::kEnablePasswordLink, |
1095 password_manager::switches::kDisableAndroidPasswordLink) | 1095 password_manager::switches::kDisablePasswordLink) |
1096 }, | 1096 }, |
1097 { | 1097 { |
1098 "enable-deferred-image-decoding", | 1098 "enable-deferred-image-decoding", |
1099 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1099 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
1100 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1100 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
1101 kOsMac | kOsLinux | kOsCrOS, | 1101 kOsMac | kOsLinux | kOsCrOS, |
1102 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1102 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
1103 }, | 1103 }, |
1104 { | 1104 { |
1105 "wallet-service-use-sandbox", | 1105 "wallet-service-use-sandbox", |
(...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2601 } | 2601 } |
2602 | 2602 |
2603 const Experiment* GetExperiments(size_t* count) { | 2603 const Experiment* GetExperiments(size_t* count) { |
2604 *count = num_experiments; | 2604 *count = num_experiments; |
2605 return experiments; | 2605 return experiments; |
2606 } | 2606 } |
2607 | 2607 |
2608 } // namespace testing | 2608 } // namespace testing |
2609 | 2609 |
2610 } // namespace about_flags | 2610 } // namespace about_flags |
OLD | NEW |