| 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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 SINGLE_VALUE_TYPE(switches::kEnableAutologin) | 655 SINGLE_VALUE_TYPE(switches::kEnableAutologin) |
| 656 }, | 656 }, |
| 657 { | 657 { |
| 658 "enable-spdy31", | 658 "enable-spdy31", |
| 659 IDS_FLAGS_ENABLE_SPDY31_NAME, | 659 IDS_FLAGS_ENABLE_SPDY31_NAME, |
| 660 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, | 660 IDS_FLAGS_ENABLE_SPDY31_DESCRIPTION, |
| 661 kOsAll, | 661 kOsAll, |
| 662 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) | 662 SINGLE_VALUE_TYPE(switches::kEnableSpdy31) |
| 663 }, | 663 }, |
| 664 { | 664 { |
| 665 "enable-spdy4a1", |
| 666 IDS_FLAGS_ENABLE_SPDY4A1_NAME, |
| 667 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION, |
| 668 kOsAll, |
| 669 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1) |
| 670 }, |
| 671 { |
| 665 "enable-async-dns", | 672 "enable-async-dns", |
| 666 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, | 673 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, |
| 667 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, | 674 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, |
| 668 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 675 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
| 669 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, | 676 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, |
| 670 switches::kDisableAsyncDns) | 677 switches::kDisableAsyncDns) |
| 671 }, | 678 }, |
| 672 { | 679 { |
| 673 "disable-media-source", | 680 "disable-media-source", |
| 674 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, | 681 IDS_FLAGS_DISABLE_MEDIA_SOURCE_NAME, |
| (...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 } | 1827 } |
| 1821 | 1828 |
| 1822 const Experiment* GetExperiments(size_t* count) { | 1829 const Experiment* GetExperiments(size_t* count) { |
| 1823 *count = num_experiments; | 1830 *count = num_experiments; |
| 1824 return experiments; | 1831 return experiments; |
| 1825 } | 1832 } |
| 1826 | 1833 |
| 1827 } // namespace testing | 1834 } // namespace testing |
| 1828 | 1835 |
| 1829 } // namespace about_flags | 1836 } // namespace about_flags |
| OLD | NEW |