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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 "allow-touchpad-three-finger-click", | 1007 "allow-touchpad-three-finger-click", |
1008 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, | 1008 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, |
1009 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, | 1009 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, |
1010 kOsCrOS, | 1010 kOsCrOS, |
1011 SINGLE_VALUE_TYPE(chromeos::switches::kEnableTouchpadThreeFingerClick) | 1011 SINGLE_VALUE_TYPE(chromeos::switches::kEnableTouchpadThreeFingerClick) |
1012 }, | 1012 }, |
1013 #endif | 1013 #endif |
1014 #if defined(USE_ASH) | 1014 #if defined(USE_ASH) |
1015 { | 1015 { |
1016 "show-launcher-alignment-menu", | 1016 "show-launcher-alignment-menu", |
1017 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, | 1017 IDS_FLAGS_SHOW_SHELF_ALIGNMENT_MENU_NAME, |
1018 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, | 1018 IDS_FLAGS_SHOW_SHELF_ALIGNMENT_MENU_DESCRIPTION, |
1019 kOsAll, | 1019 kOsAll, |
1020 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 1020 SINGLE_VALUE_TYPE(switches::kShowShelfAlignmentMenu) |
1021 }, | 1021 }, |
1022 { | 1022 { |
1023 "disable-minimize-on-second-launcher-item-click", | 1023 "disable-minimize-on-second-launcher-item-click", |
1024 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, | 1024 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_NAME, |
1025 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, | 1025 IDS_FLAGS_DISABLE_MINIMIZE_ON_SECOND_LAUNCHER_ITEM_CLICK_DESCRIPTION, |
1026 kOsAll, | 1026 kOsAll, |
1027 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) | 1027 SINGLE_VALUE_TYPE(switches::kDisableMinimizeOnSecondLauncherItemClick) |
1028 }, | 1028 }, |
1029 { | 1029 { |
1030 "enable-overview-mode", | 1030 "enable-overview-mode", |
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2114 } | 2114 } |
2115 | 2115 |
2116 const Experiment* GetExperiments(size_t* count) { | 2116 const Experiment* GetExperiments(size_t* count) { |
2117 *count = num_experiments; | 2117 *count = num_experiments; |
2118 return experiments; | 2118 return experiments; |
2119 } | 2119 } |
2120 | 2120 |
2121 } // namespace testing | 2121 } // namespace testing |
2122 | 2122 |
2123 } // namespace about_flags | 2123 } // namespace about_flags |
OLD | NEW |