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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1425 kOsCrOS, | 1425 kOsCrOS, |
1426 MULTI_VALUE_TYPE(kGestureTypingChoices) | 1426 MULTI_VALUE_TYPE(kGestureTypingChoices) |
1427 }, | 1427 }, |
1428 { | 1428 { |
1429 "gesture-editing", | 1429 "gesture-editing", |
1430 IDS_FLAGS_GESTURE_EDITING_NAME, | 1430 IDS_FLAGS_GESTURE_EDITING_NAME, |
1431 IDS_FLAGS_GESTURE_EDITING_DESCRIPTION, | 1431 IDS_FLAGS_GESTURE_EDITING_DESCRIPTION, |
1432 kOsCrOS, | 1432 kOsCrOS, |
1433 MULTI_VALUE_TYPE(kGestureEditingChoices) | 1433 MULTI_VALUE_TYPE(kGestureEditingChoices) |
1434 }, | 1434 }, |
| 1435 { |
| 1436 "enable-fullscreen-app-list", |
| 1437 IDS_FLAGS_FULLSCREEN_APP_LIST_NAME, |
| 1438 IDS_FLAGS_FULLSCREEN_APP_LIST_DESCRIPTION, |
| 1439 kOsCrOS, |
| 1440 SINGLE_VALUE_TYPE(ash::switches::kAshEnableFullscreenAppList) |
| 1441 }, |
1435 #endif | 1442 #endif |
1436 { | 1443 { |
1437 "enable-simple-cache-backend", | 1444 "enable-simple-cache-backend", |
1438 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, | 1445 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, |
1439 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, | 1446 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, |
1440 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 1447 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
1441 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1448 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
1442 }, | 1449 }, |
1443 { | 1450 { |
1444 "enable-tcp-fast-open", | 1451 "enable-tcp-fast-open", |
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3007 } | 3014 } |
3008 | 3015 |
3009 const Experiment* GetExperiments(size_t* count) { | 3016 const Experiment* GetExperiments(size_t* count) { |
3010 *count = num_experiments; | 3017 *count = num_experiments; |
3011 return experiments; | 3018 return experiments; |
3012 } | 3019 } |
3013 | 3020 |
3014 } // namespace testing | 3021 } // namespace testing |
3015 | 3022 |
3016 } // namespace about_flags | 3023 } // namespace about_flags |
OLD | NEW |