| 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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 ash::switches::kHideShelfAlignmentMenu) | 1009 ash::switches::kHideShelfAlignmentMenu) |
| 1010 }, | 1010 }, |
| 1011 { | 1011 { |
| 1012 "disable-minimize-on-second-launcher-item-click", | 1012 "disable-minimize-on-second-launcher-item-click", |
| 1013 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, | 1013 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, |
| 1014 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, | 1014 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, |
| 1015 kOsAll, | 1015 kOsAll, |
| 1016 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) | 1016 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) |
| 1017 }, | 1017 }, |
| 1018 { | 1018 { |
| 1019 "enable-overview-mode", | 1019 "disable-overview-mode", |
| 1020 IDS_FLAGS_OVERVIEW_MODE_NAME, | 1020 IDS_FLAGS_DISABLE_OVERVIEW_MODE_NAME, |
| 1021 IDS_FLAGS_OVERVIEW_MODE_DESCRIPTION, | 1021 IDS_FLAGS_DISABLE_OVERVIEW_MODE_DESCRIPTION, |
| 1022 kOsCrOS, | 1022 kOsCrOS, |
| 1023 SINGLE_VALUE_TYPE(ash::switches::kAshEnableOverviewMode) | 1023 SINGLE_VALUE_TYPE(ash::switches::kAshDisableOverviewMode) |
| 1024 }, | 1024 }, |
| 1025 { | 1025 { |
| 1026 "show-touch-hud", | 1026 "show-touch-hud", |
| 1027 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, | 1027 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, |
| 1028 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, | 1028 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, |
| 1029 kOsAll, | 1029 kOsAll, |
| 1030 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) | 1030 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) |
| 1031 }, | 1031 }, |
| 1032 { | 1032 { |
| 1033 "enable-pinch", | 1033 "enable-pinch", |
| (...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2121 } | 2121 } |
| 2122 | 2122 |
| 2123 const Experiment* GetExperiments(size_t* count) { | 2123 const Experiment* GetExperiments(size_t* count) { |
| 2124 *count = num_experiments; | 2124 *count = num_experiments; |
| 2125 return experiments; | 2125 return experiments; |
| 2126 } | 2126 } |
| 2127 | 2127 |
| 2128 } // namespace testing | 2128 } // namespace testing |
| 2129 | 2129 |
| 2130 } // namespace about_flags | 2130 } // namespace about_flags |
| OLD | NEW |