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 <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <iterator> | 10 #include <iterator> |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 SINGLE_VALUE_TYPE(switches::kEnableAutologin) | 667 SINGLE_VALUE_TYPE(switches::kEnableAutologin) |
668 }, | 668 }, |
669 { | 669 { |
670 "enable-spdy31", | 670 "enable-spdy31", |
671 IDS_FLAGS_ENABLE_SPDY31_NAME, | 671 IDS_FLAGS_ENABLE_SPDY31_NAME, |
672 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, | 672 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, |
673 kOsAll, | 673 kOsAll, |
674 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) | 674 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) |
675 }, | 675 }, |
676 { | 676 { |
| 677 "enable-spdy4a1", |
| 678 IDS_FLAGS_ENABLE_SPDY4A1_NAME, |
| 679 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION, |
| 680 kOsAll, |
| 681 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1) |
| 682 }, |
| 683 { |
677 "enable-async-dns", | 684 "enable-async-dns", |
678 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, | 685 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, |
679 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, | 686 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, |
680 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 687 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
681 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, | 688 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, |
682 switches::kDisableAsyncDns) | 689 switches::kDisableAsyncDns) |
683 }, | 690 }, |
684 { | 691 { |
685 "disable-media-source", | 692 "disable-media-source", |
686 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, | 693 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, |
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 } | 1846 } |
1840 | 1847 |
1841 const Experiment* GetExperiments(size_t* count) { | 1848 const Experiment* GetExperiments(size_t* count) { |
1842 *count = num_experiments; | 1849 *count = num_experiments; |
1843 return experiments; | 1850 return experiments; |
1844 } | 1851 } |
1845 | 1852 |
1846 } // namespace testing | 1853 } // namespace testing |
1847 | 1854 |
1848 } // namespace about_flags | 1855 } // namespace about_flags |
OLD | NEW |