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 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 kOsCrOS, | 1049 kOsCrOS, |
1050 SINGLE_VALUE_TYPE(switches::kEnableContacts) | 1050 SINGLE_VALUE_TYPE(switches::kEnableContacts) |
1051 }, | 1051 }, |
1052 #if defined(USE_ASH) | 1052 #if defined(USE_ASH) |
1053 { "ash-enable-advanced-gestures", | 1053 { "ash-enable-advanced-gestures", |
1054 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, | 1054 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, |
1055 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 1055 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
1056 kOsCrOS, | 1056 kOsCrOS, |
1057 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 1057 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
1058 }, | 1058 }, |
1059 { "ash-enable-tab-scrubbing", | 1059 { "ash-disable-tab-scrubbing", |
1060 IDS_FLAGS_ENABLE_TAB_SCRUBBING_NAME, | 1060 IDS_FLAGS_DISABLE_TAB_SCRUBBING_NAME, |
1061 IDS_FLAGS_ENABLE_TAB_SCRUBBING_DESCRIPTION, | 1061 IDS_FLAGS_DISABLE_TAB_SCRUBBING_DESCRIPTION, |
1062 kOsCrOS, | 1062 kOsCrOS, |
1063 SINGLE_VALUE_TYPE(switches::kAshEnableTabScrubbing), | 1063 SINGLE_VALUE_TYPE(switches::kAshDisableTabScrubbing), |
1064 }, | 1064 }, |
1065 { "ash-enable-workspace-scrubbing", | 1065 { "ash-enable-workspace-scrubbing", |
1066 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, | 1066 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, |
1067 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, | 1067 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, |
1068 kOsCrOS, | 1068 kOsCrOS, |
1069 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), | 1069 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), |
1070 }, | 1070 }, |
1071 { "ash-immersive-mode", | 1071 { "ash-immersive-mode", |
1072 IDS_FLAGS_ASH_IMMERSIVE_MODE_NAME, | 1072 IDS_FLAGS_ASH_IMMERSIVE_MODE_NAME, |
1073 IDS_FLAGS_ASH_IMMERSIVE_MODE_DESCRIPTION, | 1073 IDS_FLAGS_ASH_IMMERSIVE_MODE_DESCRIPTION, |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 } | 1659 } |
1660 | 1660 |
1661 const Experiment* GetExperiments(size_t* count) { | 1661 const Experiment* GetExperiments(size_t* count) { |
1662 *count = num_experiments; | 1662 *count = num_experiments; |
1663 return experiments; | 1663 return experiments; |
1664 } | 1664 } |
1665 | 1665 |
1666 } // namespace testing | 1666 } // namespace testing |
1667 | 1667 |
1668 } // namespace about_flags | 1668 } // namespace about_flags |
OLD | NEW |