| 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 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1293 "password-manager-reauthentication", | 1293 "password-manager-reauthentication", |
| 1294 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, | 1294 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, |
| 1295 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, | 1295 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, |
| 1296 kOsMac | kOsWin, | 1296 kOsMac | kOsWin, |
| 1297 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) | 1297 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) |
| 1298 }, | 1298 }, |
| 1299 { | 1299 { |
| 1300 "password-autofill-public-suffix-domain-matching", | 1300 "password-autofill-public-suffix-domain-matching", |
| 1301 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, | 1301 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
| 1302 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, | 1302 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, |
| 1303 kOsAndroid | kOsWin, | 1303 kOsAndroid | kOsWin | kOsLinux, |
| 1304 ENABLE_DISABLE_VALUE_TYPE( | 1304 ENABLE_DISABLE_VALUE_TYPE( |
| 1305 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, | 1305 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, |
| 1306 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) | 1306 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) |
| 1307 }, | 1307 }, |
| 1308 { | 1308 { |
| 1309 "enable-deferred-image-decoding", | 1309 "enable-deferred-image-decoding", |
| 1310 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, | 1310 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, |
| 1311 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, | 1311 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, |
| 1312 kOsMac | kOsLinux | kOsCrOS, | 1312 kOsMac | kOsLinux | kOsCrOS, |
| 1313 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) | 1313 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) |
| (...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2457 } | 2457 } |
| 2458 | 2458 |
| 2459 const Experiment* GetExperiments(size_t* count) { | 2459 const Experiment* GetExperiments(size_t* count) { |
| 2460 *count = num_experiments; | 2460 *count = num_experiments; |
| 2461 return experiments; | 2461 return experiments; |
| 2462 } | 2462 } |
| 2463 | 2463 |
| 2464 } // namespace testing | 2464 } // namespace testing |
| 2465 | 2465 |
| 2466 } // namespace about_flags | 2466 } // namespace about_flags |
| OLD | NEW |