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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) | 668 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML) |
669 }, | 669 }, |
670 { | 670 { |
671 "enable-autologin", | 671 "enable-autologin", |
672 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, | 672 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, |
673 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, | 673 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, |
674 kOsMac | kOsWin | kOsLinux, | 674 kOsMac | kOsWin | kOsLinux, |
675 SINGLE_VALUE_TYPE(switches::kEnableAutologin) | 675 SINGLE_VALUE_TYPE(switches::kEnableAutologin) |
676 }, | 676 }, |
677 { | 677 { |
678 "enable-spdy4a1", | 678 "enable-spdy4a2", |
679 IDS_FLAGS_ENABLE_SPDY4A1_NAME, | 679 IDS_FLAGS_ENABLE_SPDY4A2_NAME, |
680 IDS_FLAGS_ENABLE_SPDY4A1_DESCRIPTION, | 680 IDS_FLAGS_ENABLE_SPDY4A2_DESCRIPTION, |
681 kOsAll, | 681 kOsAll, |
682 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a1) | 682 SINGLE_VALUE_TYPE(switches::kEnableSpdy4a2) |
683 }, | 683 }, |
684 { | 684 { |
685 "enable-async-dns", | 685 "enable-async-dns", |
686 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, | 686 IDS_FLAGS_ENABLE_ASYNC_DNS_NAME, |
687 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, | 687 IDS_FLAGS_ENABLE_ASYNC_DNS_DESCRIPTION, |
688 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 688 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
689 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, | 689 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAsyncDns, |
690 switches::kDisableAsyncDns) | 690 switches::kDisableAsyncDns) |
691 }, | 691 }, |
692 { | 692 { |
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1953 } | 1953 } |
1954 | 1954 |
1955 const Experiment* GetExperiments(size_t* count) { | 1955 const Experiment* GetExperiments(size_t* count) { |
1956 *count = num_experiments; | 1956 *count = num_experiments; |
1957 return experiments; | 1957 return experiments; |
1958 } | 1958 } |
1959 | 1959 |
1960 } // namespace testing | 1960 } // namespace testing |
1961 | 1961 |
1962 } // namespace about_flags | 1962 } // namespace about_flags |
OLD | NEW |