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