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 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 }, | 1670 }, |
1671 { | 1671 { |
1672 "enable-session-crashed-bubble", | 1672 "enable-session-crashed-bubble", |
1673 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, | 1673 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, |
1674 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, | 1674 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, |
1675 kOsWin | kOsLinux, | 1675 kOsWin | kOsLinux, |
1676 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, | 1676 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, |
1677 switches::kDisableSessionCrashedBubble) | 1677 switches::kDisableSessionCrashedBubble) |
1678 }, | 1678 }, |
1679 { | 1679 { |
1680 "out-of-process-pdf", | 1680 "enable-out-of-process-pdf", |
1681 IDS_FLAGS_OUT_OF_PROCESS_PDF_NAME, | 1681 IDS_FLAGS_OUT_OF_PROCESS_PDF_NAME, |
1682 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, | 1682 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, |
1683 kOsDesktop, | 1683 kOsDesktop, |
1684 SINGLE_VALUE_TYPE(switches::kOutOfProcessPdf) | 1684 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableOutOfProcessPdf, |
| 1685 switches::kDisableOutOfProcessPdf) |
1685 }, | 1686 }, |
1686 { | 1687 { |
1687 "disable-cast-streaming-hw-encoding", | 1688 "disable-cast-streaming-hw-encoding", |
1688 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_NAME, | 1689 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_NAME, |
1689 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_DESCRIPTION, | 1690 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_DESCRIPTION, |
1690 kOsAll, | 1691 kOsAll, |
1691 SINGLE_VALUE_TYPE(switches::kDisableCastStreamingHWEncoding) | 1692 SINGLE_VALUE_TYPE(switches::kDisableCastStreamingHWEncoding) |
1692 }, | 1693 }, |
1693 #if defined(OS_ANDROID) | 1694 #if defined(OS_ANDROID) |
1694 { | 1695 { |
(...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2576 } | 2577 } |
2577 | 2578 |
2578 const Experiment* GetExperiments(size_t* count) { | 2579 const Experiment* GetExperiments(size_t* count) { |
2579 *count = num_experiments; | 2580 *count = num_experiments; |
2580 return experiments; | 2581 return experiments; |
2581 } | 2582 } |
2582 | 2583 |
2583 } // namespace testing | 2584 } // namespace testing |
2584 | 2585 |
2585 } // namespace about_flags | 2586 } // namespace about_flags |
OLD | NEW |