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 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1037 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 1037 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) |
1038 }, | 1038 }, |
1039 { | 1039 { |
1040 "disable-minimize-on-second-launcher-item-click", | 1040 "disable-minimize-on-second-launcher-item-click", |
1041 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, | 1041 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, |
1042 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, | 1042 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, |
1043 kOsAll, | 1043 kOsAll, |
1044 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) | 1044 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) |
1045 }, | 1045 }, |
1046 { | 1046 { |
| 1047 "enable-overview-mode", |
| 1048 IDS_FLAGS_OVERVIEW_MODE_NAME, |
| 1049 IDS_FLAGS_OVERVIEW_MODE_DESCRIPTION, |
| 1050 kOsCrOS, |
| 1051 SINGLE_VALUE_TYPE(ash::switches::kAshEnableOverviewMode) |
| 1052 }, |
| 1053 { |
1047 "show-touch-hud", | 1054 "show-touch-hud", |
1048 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, | 1055 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, |
1049 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, | 1056 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, |
1050 kOsAll, | 1057 kOsAll, |
1051 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) | 1058 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) |
1052 }, | 1059 }, |
1053 { | 1060 { |
1054 "enable-pinch", | 1061 "enable-pinch", |
1055 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, | 1062 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, |
1056 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, | 1063 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, |
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2121 } | 2128 } |
2122 | 2129 |
2123 const Experiment* GetExperiments(size_t* count) { | 2130 const Experiment* GetExperiments(size_t* count) { |
2124 *count = num_experiments; | 2131 *count = num_experiments; |
2125 return experiments; | 2132 return experiments; |
2126 } | 2133 } |
2127 | 2134 |
2128 } // namespace testing | 2135 } // namespace testing |
2129 | 2136 |
2130 } // namespace about_flags | 2137 } // namespace about_flags |
OLD | NEW |