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 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1654 { | 1654 { |
1655 "ignore-autocomplete-off-autofill", | 1655 "ignore-autocomplete-off-autofill", |
1656 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_NAME, | 1656 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_NAME, |
1657 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_DESCRIPTION, | 1657 IDS_FLAGS_IGNORE_AUTOCOMPLETE_OFF_AUTOFILL_DESCRIPTION, |
1658 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1658 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
1659 ENABLE_DISABLE_VALUE_TYPE( | 1659 ENABLE_DISABLE_VALUE_TYPE( |
1660 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1660 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
1661 autofill::switches::kRespectAutocompleteOffForAutofill) | 1661 autofill::switches::kRespectAutocompleteOffForAutofill) |
1662 }, | 1662 }, |
1663 { | 1663 { |
| 1664 "enable-single-click-autofill", |
| 1665 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_NAME, |
| 1666 IDS_FLAGS_ENABLE_SINGLE_CLICK_AUTOFILL_DESCRIPTION, |
| 1667 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
| 1668 ENABLE_DISABLE_VALUE_TYPE( |
| 1669 autofill::switches::kEnableSingleClickAutofill, |
| 1670 autofill::switches::kDisableSingleClickAutofill) |
| 1671 }, |
| 1672 { |
1664 "enable-permissions-bubbles", | 1673 "enable-permissions-bubbles", |
1665 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, | 1674 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, |
1666 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, | 1675 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, |
1667 kOsCrOS | kOsMac | kOsWin | kOsLinux, | 1676 kOsCrOS | kOsMac | kOsWin | kOsLinux, |
1668 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, | 1677 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePermissionsBubbles, |
1669 switches::kDisablePermissionsBubbles) | 1678 switches::kDisablePermissionsBubbles) |
1670 }, | 1679 }, |
1671 { | 1680 { |
1672 "enable-session-crashed-bubble", | 1681 "enable-session-crashed-bubble", |
1673 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, | 1682 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, |
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2576 } | 2585 } |
2577 | 2586 |
2578 const Experiment* GetExperiments(size_t* count) { | 2587 const Experiment* GetExperiments(size_t* count) { |
2579 *count = num_experiments; | 2588 *count = num_experiments; |
2580 return experiments; | 2589 return experiments; |
2581 } | 2590 } |
2582 | 2591 |
2583 } // namespace testing | 2592 } // namespace testing |
2584 | 2593 |
2585 } // namespace about_flags | 2594 } // namespace about_flags |
OLD | NEW |