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 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1669 "disable-ignore-autocomplete-off", | 1669 "disable-ignore-autocomplete-off", |
1670 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_NAME, | 1670 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_NAME, |
1671 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION, | 1671 IDS_FLAGS_DISABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION, |
1672 kOsAll, | 1672 kOsAll, |
1673 SINGLE_VALUE_TYPE(autofill::switches::kDisableIgnoreAutocompleteOff) | 1673 SINGLE_VALUE_TYPE(autofill::switches::kDisableIgnoreAutocompleteOff) |
1674 }, | 1674 }, |
1675 { | 1675 { |
1676 "enable-permissions-bubbles", | 1676 "enable-permissions-bubbles", |
1677 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, | 1677 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_NAME, |
1678 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, | 1678 IDS_FLAGS_ENABLE_PERMISSIONS_BUBBLES_DESCRIPTION, |
1679 kOsCrOS | kOsMac | kOsWin, | 1679 kOsAll, |
1680 SINGLE_VALUE_TYPE(switches::kEnablePermissionsBubbles) | 1680 SINGLE_VALUE_TYPE(switches::kEnablePermissionsBubbles) |
1681 }, | 1681 }, |
1682 { | 1682 { |
1683 "enable-session-crashed-bubble", | 1683 "enable-session-crashed-bubble", |
1684 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, | 1684 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, |
1685 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, | 1685 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, |
1686 kOsWin | kOsLinux, | 1686 kOsWin | kOsLinux, |
1687 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, | 1687 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, |
1688 switches::kDisableSessionCrashedBubble) | 1688 switches::kDisableSessionCrashedBubble) |
1689 }, | 1689 }, |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2412 } | 2412 } |
2413 | 2413 |
2414 const Experiment* GetExperiments(size_t* count) { | 2414 const Experiment* GetExperiments(size_t* count) { |
2415 *count = num_experiments; | 2415 *count = num_experiments; |
2416 return experiments; | 2416 return experiments; |
2417 } | 2417 } |
2418 | 2418 |
2419 } // namespace testing | 2419 } // namespace testing |
2420 | 2420 |
2421 } // namespace about_flags | 2421 } // namespace about_flags |
OLD | NEW |