| 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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), | 949 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), |
| 950 }, | 950 }, |
| 951 { | 951 { |
| 952 "file-manager-packaged", | 952 "file-manager-packaged", |
| 953 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, | 953 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, |
| 954 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, | 954 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, |
| 955 kOsCrOS, | 955 kOsCrOS, |
| 956 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), | 956 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), |
| 957 }, | 957 }, |
| 958 { | 958 { |
| 959 "enable-chromebook-function-key", | |
| 960 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_NAME, | |
| 961 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_DESCRIPTION, | |
| 962 kOsCrOS, | |
| 963 SINGLE_VALUE_TYPE(switches::kEnableChromebookFunctionKey), | |
| 964 }, | |
| 965 { | |
| 966 "enable-launcher-per-display", | 959 "enable-launcher-per-display", |
| 967 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME, | 960 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME, |
| 968 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, | 961 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, |
| 969 kOsCrOS, | 962 kOsCrOS, |
| 970 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay), | 963 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay), |
| 971 }, | 964 }, |
| 972 #endif // defined(OS_CHROMEOS) | 965 #endif // defined(OS_CHROMEOS) |
| 973 { | 966 { |
| 974 "enable-views-textfield", | 967 "enable-views-textfield", |
| 975 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, | 968 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1624 } | 1617 } |
| 1625 | 1618 |
| 1626 const Experiment* GetExperiments(size_t* count) { | 1619 const Experiment* GetExperiments(size_t* count) { |
| 1627 *count = num_experiments; | 1620 *count = num_experiments; |
| 1628 return experiments; | 1621 return experiments; |
| 1629 } | 1622 } |
| 1630 | 1623 |
| 1631 } // namespace testing | 1624 } // namespace testing |
| 1632 | 1625 |
| 1633 } // namespace about_flags | 1626 } // namespace about_flags |
| OLD | NEW |