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 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1134 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 1134 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
1135 kOsCrOS, | 1135 kOsCrOS, |
1136 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 1136 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
1137 }, | 1137 }, |
1138 { "ash-disable-tab-scrubbing", | 1138 { "ash-disable-tab-scrubbing", |
1139 IDS_FLAGS_DISABLE_TAB_SCRUBBING_NAME, | 1139 IDS_FLAGS_DISABLE_TAB_SCRUBBING_NAME, |
1140 IDS_FLAGS_DISABLE_TAB_SCRUBBING_DESCRIPTION, | 1140 IDS_FLAGS_DISABLE_TAB_SCRUBBING_DESCRIPTION, |
1141 kOsCrOS, | 1141 kOsCrOS, |
1142 SINGLE_VALUE_TYPE(switches::kAshDisableTabScrubbing), | 1142 SINGLE_VALUE_TYPE(switches::kAshDisableTabScrubbing), |
1143 }, | 1143 }, |
1144 { "ash-drag-and-drop-applist-to-launcher", | 1144 { "ash-disable-drag-and-drop-applist-to-launcher", |
1145 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_NAME, | 1145 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_NAME, |
1146 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_DESCRIPTION, | 1146 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_DESCRIPTION, |
1147 kOsCrOS, | 1147 kOsCrOS, |
1148 SINGLE_VALUE_TYPE(ash::switches::kAshDragAndDropAppListToLauncher), | 1148 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragAndDropAppListToLauncher), |
1149 }, | 1149 }, |
1150 { "ash-enable-workspace-scrubbing", | 1150 { "ash-enable-workspace-scrubbing", |
1151 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, | 1151 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, |
1152 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, | 1152 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, |
1153 kOsCrOS, | 1153 kOsCrOS, |
1154 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), | 1154 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), |
1155 }, | 1155 }, |
1156 { "ash-immersive-fullscreen-2", | 1156 { "ash-immersive-fullscreen-2", |
1157 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, | 1157 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, |
1158 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, | 1158 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, |
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1969 } | 1969 } |
1970 | 1970 |
1971 const Experiment* GetExperiments(size_t* count) { | 1971 const Experiment* GetExperiments(size_t* count) { |
1972 *count = num_experiments; | 1972 *count = num_experiments; |
1973 return experiments; | 1973 return experiments; |
1974 } | 1974 } |
1975 | 1975 |
1976 } // namespace testing | 1976 } // namespace testing |
1977 | 1977 |
1978 } // namespace about_flags | 1978 } // namespace about_flags |
OLD | NEW |