| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) | 665 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) |
| 666 }, | 666 }, |
| 667 { | 667 { |
| 668 "enable-autologin", | 668 "enable-autologin", |
| 669 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, | 669 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, |
| 670 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, | 670 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, |
| 671 kOsMac | kOsWin | kOsLinux, | 671 kOsMac | kOsWin | kOsLinux, |
| 672 SINGLE_VALUE_TYPE(switches::kEnableAutologin) | 672 SINGLE_VALUE_TYPE(switches::kEnableAutologin) |
| 673 }, | 673 }, |
| 674 { | 674 { |
| 675 "enable-spdy4a1", | |
| 676 IDS_FLAGS_ENABLE_SPDY4A1_NAME, | |
| 677 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION, | |
| 678 kOsAll, | |
| 679 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1) | |
| 680 }, | |
| 681 { | |
| 682 "enable-async-dns", | 675 "enable-async-dns", |
| 683 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, | 676 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, |
| 684 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, | 677 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, |
| 685 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 678 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
| 686 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, | 679 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, |
| 687 switches::kDisableAsyncDns) | 680 switches::kDisableAsyncDns) |
| 688 }, | 681 }, |
| 689 { | 682 { |
| 690 "disable-media-source", | 683 "disable-media-source", |
| 691 IDS_FLAGS_DISABLE_WEBKIT_MEDIA_SOURCE_NAME, | 684 IDS_FLAGS_DISABLE_WEBKIT_MEDIA_SOURCE_NAME, |
| (...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1955 } | 1948 } |
| 1956 | 1949 |
| 1957 const Experiment* GetExperiments(size_t* count) { | 1950 const Experiment* GetExperiments(size_t* count) { |
| 1958 *count = num_experiments; | 1951 *count = num_experiments; |
| 1959 return experiments; | 1952 return experiments; |
| 1960 } | 1953 } |
| 1961 | 1954 |
| 1962 } // namespace testing | 1955 } // namespace testing |
| 1963 | 1956 |
| 1964 } // namespace about_flags | 1957 } // namespace about_flags |
| OLD | NEW |