| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1216 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1216 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
| 1217 }, | 1217 }, |
| 1218 { | 1218 { |
| 1219 "enable-password-generation", | 1219 "enable-password-generation", |
| 1220 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1220 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
| 1221 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1221 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
| 1222 kOsDesktop, | 1222 kOsDesktop, |
| 1223 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) | 1223 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) |
| 1224 }, | 1224 }, |
| 1225 { | 1225 { |
| 1226 "enable-password-autofill-public-suffix-domain-matching", |
| 1227 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1228 IDS_FLAGS_ENABLE_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION
, |
| 1229 kOsAndroid, |
| 1230 SINGLE_VALUE_TYPE( |
| 1231 switches::kEnablePasswordAutofillPublicSuffixDomainMatching) |
| 1232 }, |
| 1233 { |
| 1226 "enable-deferred-image-decoding", | 1234 "enable-deferred-image-decoding", |
| 1227 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1235 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1228 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1236 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| 1229 kOsMac | kOsLinux | kOsCrOS, | 1237 kOsMac | kOsLinux | kOsCrOS, |
| 1230 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1238 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
| 1231 }, | 1239 }, |
| 1232 { | 1240 { |
| 1233 "performance-monitor-gathering", | 1241 "performance-monitor-gathering", |
| 1234 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, | 1242 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, |
| 1235 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, | 1243 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, |
| (...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2015 } | 2023 } |
| 2016 | 2024 |
| 2017 const Experiment* GetExperiments(size_t* count) { | 2025 const Experiment* GetExperiments(size_t* count) { |
| 2018 *count = num_experiments; | 2026 *count = num_experiments; |
| 2019 return experiments; | 2027 return experiments; |
| 2020 } | 2028 } |
| 2021 | 2029 |
| 2022 } // namespace testing | 2030 } // namespace testing |
| 2023 | 2031 |
| 2024 } // namespace about_flags | 2032 } // namespace about_flags |
| OLD | NEW |