| 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 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 "password-manager-reauthentication", | 1280 "password-manager-reauthentication", |
| 1281 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1281 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1282 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1282 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1283 kOsMac | kOsWin, | 1283 kOsMac | kOsWin, |
| 1284 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1284 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
| 1285 }, | 1285 }, |
| 1286 { | 1286 { |
| 1287 "password-autofill-public-suffix-domain-matching", | 1287 "password-autofill-public-suffix-domain-matching", |
| 1288 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, | 1288 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1289 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, | 1289 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, |
| 1290 kOsAndroid, | 1290 kOsAndroid | kOsWin, |
| 1291 ENABLE_DISABLE_VALUE_TYPE( | 1291 ENABLE_DISABLE_VALUE_TYPE( |
| 1292 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, | 1292 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, |
| 1293 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) | 1293 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) |
| 1294 }, | 1294 }, |
| 1295 { | 1295 { |
| 1296 "enable-deferred-image-decoding", | 1296 "enable-deferred-image-decoding", |
| 1297 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1297 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1298 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1298 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| 1299 kOsMac | kOsLinux | kOsCrOS, | 1299 kOsMac | kOsLinux | kOsCrOS, |
| 1300 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1300 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
| (...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2462 } | 2462 } |
| 2463 | 2463 |
| 2464 const Experiment* GetExperiments(size_t* count) { | 2464 const Experiment* GetExperiments(size_t* count) { |
| 2465 *count = num_experiments; | 2465 *count = num_experiments; |
| 2466 return experiments; | 2466 return experiments; |
| 2467 } | 2467 } |
| 2468 | 2468 |
| 2469 } // namespace testing | 2469 } // namespace testing |
| 2470 | 2470 |
| 2471 } // namespace about_flags | 2471 } // namespace about_flags |
| OLD | NEW |