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 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
986 kOsCrOS, | 986 kOsCrOS, |
987 SINGLE_VALUE_TYPE(switches::kEnableContacts) | 987 SINGLE_VALUE_TYPE(switches::kEnableContacts) |
988 }, | 988 }, |
989 #if defined(USE_ASH) | 989 #if defined(USE_ASH) |
990 { "ash-enable-advanced-gestures", | 990 { "ash-enable-advanced-gestures", |
991 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, | 991 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, |
992 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 992 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
993 kOsCrOS, | 993 kOsCrOS, |
994 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 994 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
995 }, | 995 }, |
996 { "ash-enable-memory-monitor", | |
997 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, | |
998 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, | |
999 kOsCrOS, | |
1000 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMemoryMonitor), | |
1001 }, | |
1002 #endif | 996 #endif |
1003 #if defined(OS_CHROMEOS) | 997 #if defined(OS_CHROMEOS) |
1004 { | 998 { |
1005 "enable-carrier-switching", | 999 "enable-carrier-switching", |
1006 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, | 1000 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, |
1007 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, | 1001 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, |
1008 kOsCrOS, | 1002 kOsCrOS, |
1009 SINGLE_VALUE_TYPE(switches::kEnableCarrierSwitching) | 1003 SINGLE_VALUE_TYPE(switches::kEnableCarrierSwitching) |
1010 }, | 1004 }, |
1011 { | 1005 { |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1505 } | 1499 } |
1506 | 1500 |
1507 const Experiment* GetExperiments(size_t* count) { | 1501 const Experiment* GetExperiments(size_t* count) { |
1508 *count = num_experiments; | 1502 *count = num_experiments; |
1509 return experiments; | 1503 return experiments; |
1510 } | 1504 } |
1511 | 1505 |
1512 } // namespace testing | 1506 } // namespace testing |
1513 | 1507 |
1514 } // namespace about_flags | 1508 } // namespace about_flags |
OLD | NEW |