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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 kOsCrOS, | 1118 kOsCrOS, |
1119 SINGLE_VALUE_TYPE(switches::kMultiProfiles), | 1119 SINGLE_VALUE_TYPE(switches::kMultiProfiles), |
1120 }, | 1120 }, |
1121 #endif // defined(OS_CHROMEOS) | 1121 #endif // defined(OS_CHROMEOS) |
1122 { "disable-accelerated-video-decode", | 1122 { "disable-accelerated-video-decode", |
1123 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME, | 1123 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_NAME, |
1124 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, | 1124 IDS_FLAGS_DISABLE_ACCELERATED_VIDEO_DECODE_DESCRIPTION, |
1125 kOsWin | kOsCrOS, | 1125 kOsWin | kOsCrOS, |
1126 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode), | 1126 SINGLE_VALUE_TYPE(switches::kDisableAcceleratedVideoDecode), |
1127 }, | 1127 }, |
1128 { | |
1129 "enable-contacts", | |
1130 IDS_FLAGS_ENABLE_CONTACTS_NAME, | |
1131 IDS_FLAGS_ENABLE_CONTACTS_DESCRIPTION, | |
1132 kOsCrOS, | |
1133 SINGLE_VALUE_TYPE(switches::kEnableContacts) | |
1134 }, | |
1135 #if defined(USE_ASH) | 1128 #if defined(USE_ASH) |
1136 { | 1129 { |
1137 "ash-debug-shortcuts", | 1130 "ash-debug-shortcuts", |
1138 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, | 1131 IDS_FLAGS_DEBUG_SHORTCUTS_NAME, |
1139 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, | 1132 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, |
1140 kOsAll, | 1133 kOsAll, |
1141 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), | 1134 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), |
1142 }, | 1135 }, |
1143 { "ash-enable-advanced-gestures", | 1136 { "ash-enable-advanced-gestures", |
1144 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, | 1137 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_NAME, |
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2420 } | 2413 } |
2421 | 2414 |
2422 const Experiment* GetExperiments(size_t* count) { | 2415 const Experiment* GetExperiments(size_t* count) { |
2423 *count = num_experiments; | 2416 *count = num_experiments; |
2424 return experiments; | 2417 return experiments; |
2425 } | 2418 } |
2426 | 2419 |
2427 } // namespace testing | 2420 } // namespace testing |
2428 | 2421 |
2429 } // namespace about_flags | 2422 } // namespace about_flags |
OLD | NEW |