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