| 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 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), | 936 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), |
| 937 }, | 937 }, |
| 938 { | 938 { |
| 939 "file-manager-packaged", | 939 "file-manager-packaged", |
| 940 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, | 940 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, |
| 941 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, | 941 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, |
| 942 kOsCrOS, | 942 kOsCrOS, |
| 943 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), | 943 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), |
| 944 }, | 944 }, |
| 945 { | 945 { |
| 946 "enable-chromebook-function-key", | |
| 947 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_NAME, | |
| 948 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_DESCRIPTION, | |
| 949 kOsCrOS, | |
| 950 SINGLE_VALUE_TYPE(switches::kEnableChromebookFunctionKey), | |
| 951 }, | |
| 952 { | |
| 953 "enable-launcher-per-display", | 946 "enable-launcher-per-display", |
| 954 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME, | 947 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME, |
| 955 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, | 948 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, |
| 956 kOsCrOS, | 949 kOsCrOS, |
| 957 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay), | 950 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay), |
| 958 }, | 951 }, |
| 959 #endif // defined(OS_CHROMEOS) | 952 #endif // defined(OS_CHROMEOS) |
| 960 { | 953 { |
| 961 "enable-views-textfield", | 954 "enable-views-textfield", |
| 962 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, | 955 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 } | 1604 } |
| 1612 | 1605 |
| 1613 const Experiment* GetExperiments(size_t* count) { | 1606 const Experiment* GetExperiments(size_t* count) { |
| 1614 *count = num_experiments; | 1607 *count = num_experiments; |
| 1615 return experiments; | 1608 return experiments; |
| 1616 } | 1609 } |
| 1617 | 1610 |
| 1618 } // namespace testing | 1611 } // namespace testing |
| 1619 | 1612 |
| 1620 } // namespace about_flags | 1613 } // namespace about_flags |
| OLD | NEW |