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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 kOsCrOS, | 936 kOsCrOS, |
937 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), | 937 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), |
938 }, | 938 }, |
939 { | 939 { |
940 "file-manager-packaged", | 940 "file-manager-packaged", |
941 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, | 941 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, |
942 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, | 942 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, |
943 kOsCrOS, | 943 kOsCrOS, |
944 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), | 944 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), |
945 }, | 945 }, |
| 946 { |
| 947 "enable-chromebook-function-key", |
| 948 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_NAME, |
| 949 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_DESCRIPTION, |
| 950 kOsCrOS, |
| 951 SINGLE_VALUE_TYPE(switches::kEnableChromebookFunctionKey), |
| 952 }, |
946 #endif | 953 #endif |
947 { | 954 { |
948 "enable-views-textfield", | 955 "enable-views-textfield", |
949 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, | 956 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, |
950 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, | 957 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, |
951 kOsWin, | 958 kOsWin, |
952 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), | 959 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), |
953 }, | 960 }, |
954 { | 961 { |
955 "old-checkbox-style", | 962 "old-checkbox-style", |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1570 } | 1577 } |
1571 | 1578 |
1572 const Experiment* GetExperiments(size_t* count) { | 1579 const Experiment* GetExperiments(size_t* count) { |
1573 *count = num_experiments; | 1580 *count = num_experiments; |
1574 return experiments; | 1581 return experiments; |
1575 } | 1582 } |
1576 | 1583 |
1577 } // namespace testing | 1584 } // namespace testing |
1578 | 1585 |
1579 } // namespace about_flags | 1586 } // namespace about_flags |
OLD | NEW |