| 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 <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <iterator> | 10 #include <iterator> |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 1111 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
| 1112 kOsCrOS, | 1112 kOsCrOS, |
| 1113 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 1113 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
| 1114 }, | 1114 }, |
| 1115 { "ash-disable-tab-scrubbing", | 1115 { "ash-disable-tab-scrubbing", |
| 1116 IDS_FLAGS_DISABLE_TAB_SCRUBBING_NAME, | 1116 IDS_FLAGS_DISABLE_TAB_SCRUBBING_NAME, |
| 1117 IDS_FLAGS_DISABLE_TAB_SCRUBBING_DESCRIPTION, | 1117 IDS_FLAGS_DISABLE_TAB_SCRUBBING_DESCRIPTION, |
| 1118 kOsCrOS, | 1118 kOsCrOS, |
| 1119 SINGLE_VALUE_TYPE(switches::kAshDisableTabScrubbing), | 1119 SINGLE_VALUE_TYPE(switches::kAshDisableTabScrubbing), |
| 1120 }, | 1120 }, |
| 1121 { "ash-dnd-applist-to-launcher", |
| 1122 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_NAME, |
| 1123 IDS_FLAGS_DND_APPLIST_TO_LAUNCHER_DESCRIPTION, |
| 1124 kOsCrOS, |
| 1125 SINGLE_VALUE_TYPE(ash::switches::kAshDnDAppListToLauncher), |
| 1126 }, |
| 1121 { "ash-enable-workspace-scrubbing", | 1127 { "ash-enable-workspace-scrubbing", |
| 1122 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, | 1128 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, |
| 1123 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, | 1129 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, |
| 1124 kOsCrOS, | 1130 kOsCrOS, |
| 1125 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), | 1131 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), |
| 1126 }, | 1132 }, |
| 1127 { "ash-immersive-fullscreen", | 1133 { "ash-immersive-fullscreen", |
| 1128 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, | 1134 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, |
| 1129 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, | 1135 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, |
| 1130 kOsCrOS, | 1136 kOsCrOS, |
| (...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1844 } | 1850 } |
| 1845 | 1851 |
| 1846 const Experiment* GetExperiments(size_t* count) { | 1852 const Experiment* GetExperiments(size_t* count) { |
| 1847 *count = num_experiments; | 1853 *count = num_experiments; |
| 1848 return experiments; | 1854 return experiments; |
| 1849 } | 1855 } |
| 1850 | 1856 |
| 1851 } // namespace testing | 1857 } // namespace testing |
| 1852 | 1858 |
| 1853 } // namespace about_flags | 1859 } // namespace about_flags |
| OLD | NEW |