| 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 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1675 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, | 1675 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, |
| 1676 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1676 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
| 1677 ENABLE_DISABLE_VALUE_TYPE( | 1677 ENABLE_DISABLE_VALUE_TYPE( |
| 1678 autofill::switches::kEnableSingleClickAutofill, | 1678 autofill::switches::kEnableSingleClickAutofill, |
| 1679 autofill::switches::kDisableSingleClickAutofill) | 1679 autofill::switches::kDisableSingleClickAutofill) |
| 1680 }, | 1680 }, |
| 1681 { | 1681 { |
| 1682 "enable-wallet-card-import", | 1682 "enable-wallet-card-import", |
| 1683 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME, | 1683 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME, |
| 1684 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION, | 1684 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION, |
| 1685 kOsAndroid, | 1685 kOsAndroid | kOsCrOS | kOsWin | kOsLinux, |
| 1686 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport) | 1686 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport) |
| 1687 }, | 1687 }, |
| 1688 { | 1688 { |
| 1689 "enable-permissions-bubbles", | 1689 "enable-permissions-bubbles", |
| 1690 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, | 1690 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, |
| 1691 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, | 1691 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, |
| 1692 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1692 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
| 1693 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, | 1693 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, |
| 1694 switches::kDisablePermissionsBubbles) | 1694 switches::kDisablePermissionsBubbles) |
| 1695 }, | 1695 }, |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2620 } | 2620 } |
| 2621 | 2621 |
| 2622 const Experiment* GetExperiments(size_t* count) { | 2622 const Experiment* GetExperiments(size_t* count) { |
| 2623 *count = num_experiments; | 2623 *count = num_experiments; |
| 2624 return experiments; | 2624 return experiments; |
| 2625 } | 2625 } |
| 2626 | 2626 |
| 2627 } // namespace testing | 2627 } // namespace testing |
| 2628 | 2628 |
| 2629 } // namespace about_flags | 2629 } // namespace about_flags |
| OLD | NEW |