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 1668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1679 { | 1679 { |
1680 "enable-single-click-autofill", | 1680 "enable-single-click-autofill", |
1681 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, | 1681 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, |
1682 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, | 1682 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, |
1683 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid, | 1683 kOsCrOS | kOsMac | kOsWin | kOsLinux | kOsAndroid, |
1684 ENABLE_DISABLE_VALUE_TYPE( | 1684 ENABLE_DISABLE_VALUE_TYPE( |
1685 autofill::switches::kEnableSingleClickAutofill, | 1685 autofill::switches::kEnableSingleClickAutofill, |
1686 autofill::switches::kDisableSingleClickAutofill) | 1686 autofill::switches::kDisableSingleClickAutofill) |
1687 }, | 1687 }, |
1688 { | 1688 { |
| 1689 "enable-wallet-card-import", |
| 1690 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_NAME, |
| 1691 IDS_FLAGS_ENABLE_WALLET_CARD_IMPORT_DESCRIPTION, |
| 1692 kOsAndroid, |
| 1693 SINGLE_VALUE_TYPE(autofill::switches::kEnableWalletCardImport) |
| 1694 }, |
| 1695 { |
1689 "enable-permissions-bubbles", | 1696 "enable-permissions-bubbles", |
1690 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, | 1697 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, |
1691 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, | 1698 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, |
1692 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1699 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
1693 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, | 1700 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, |
1694 switches::kDisablePermissionsBubbles) | 1701 switches::kDisablePermissionsBubbles) |
1695 }, | 1702 }, |
1696 { | 1703 { |
1697 "enable-session-crashed-bubble", | 1704 "enable-session-crashed-bubble", |
1698 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, | 1705 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2636 } | 2643 } |
2637 | 2644 |
2638 const Experiment* GetExperiments(size_t* count) { | 2645 const Experiment* GetExperiments(size_t* count) { |
2639 *count = num_experiments; | 2646 *count = num_experiments; |
2640 return experiments; | 2647 return experiments; |
2641 } | 2648 } |
2642 | 2649 |
2643 } // namespace testing | 2650 } // namespace testing |
2644 | 2651 |
2645 } // namespace about_flags | 2652 } // namespace about_flags |
OLD | NEW |