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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 kOsCrOS, | 1237 kOsCrOS, |
1238 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragAndDropAppListToLauncher), | 1238 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDragAndDropAppListToLauncher), |
1239 }, | 1239 }, |
1240 { "ash-immersive-fullscreen-2", | 1240 { "ash-immersive-fullscreen-2", |
1241 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, | 1241 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_NAME, |
1242 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, | 1242 IDS_FLAGS_ASH_IMMERSIVE_FULLSCREEN_DESCRIPTION, |
1243 kOsCrOS, | 1243 kOsCrOS, |
1244 ENABLE_DISABLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreen, | 1244 ENABLE_DISABLE_VALUE_TYPE(ash::switches::kAshEnableImmersiveFullscreen, |
1245 ash::switches::kAshDisableImmersiveFullscreen), | 1245 ash::switches::kAshDisableImmersiveFullscreen), |
1246 }, | 1246 }, |
| 1247 { "ash-use-same-frame-for-v1-and-v2-apps", |
| 1248 IDS_FLAGS_ASH_USE_SAME_FRAME_FOR_V1_AND_V2_APPS_NAME, |
| 1249 IDS_FLAGS_ASH_USE_SAME_FRAME_FOR_V1_AND_V2_APPS_DESCRIPTION, |
| 1250 kOsCrOS, |
| 1251 SINGLE_VALUE_TYPE(ash::switches::kAshUseSameFrameForV1AndV2Apps), |
| 1252 }, |
1247 #if defined(OS_LINUX) | 1253 #if defined(OS_LINUX) |
1248 { "ash-enable-memory-monitor", | 1254 { "ash-enable-memory-monitor", |
1249 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, | 1255 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, |
1250 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, | 1256 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, |
1251 kOsCrOS, | 1257 kOsCrOS, |
1252 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMemoryMonitor), | 1258 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMemoryMonitor), |
1253 }, | 1259 }, |
1254 #endif | 1260 #endif |
1255 #if defined(OS_CHROMEOS) | 1261 #if defined(OS_CHROMEOS) |
1256 { "ash-enable-multi-profile-shelf", | 1262 { "ash-enable-multi-profile-shelf", |
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2275 } | 2281 } |
2276 | 2282 |
2277 const Experiment* GetExperiments(size_t* count) { | 2283 const Experiment* GetExperiments(size_t* count) { |
2278 *count = num_experiments; | 2284 *count = num_experiments; |
2279 return experiments; | 2285 return experiments; |
2280 } | 2286 } |
2281 | 2287 |
2282 } // namespace testing | 2288 } // namespace testing |
2283 | 2289 |
2284 } // namespace about_flags | 2290 } // namespace about_flags |
OLD | NEW |