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 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1456 "enable-web-midi", | 1456 "enable-web-midi", |
1457 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1457 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
1458 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1458 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
1459 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, | 1459 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, |
1460 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1460 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1461 }, | 1461 }, |
1462 { | 1462 { |
1463 "enable-new-profile-management", | 1463 "enable-new-profile-management", |
1464 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, | 1464 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, |
1465 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, | 1465 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, |
1466 kOsMac | kOsWin | kOsLinux, | 1466 kOsAndroid | kOsMac | kOsWin | kOsLinux, |
1467 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) | 1467 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) |
1468 }, | 1468 }, |
1469 { | 1469 { |
1470 "enable-fast-user-switching", | 1470 "enable-fast-user-switching", |
1471 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, | 1471 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, |
1472 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, | 1472 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, |
1473 kOsMac | kOsWin | kOsLinux, | 1473 kOsMac | kOsWin | kOsLinux, |
1474 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) | 1474 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) |
1475 }, | 1475 }, |
1476 { | 1476 { |
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2335 } | 2335 } |
2336 | 2336 |
2337 const Experiment* GetExperiments(size_t* count) { | 2337 const Experiment* GetExperiments(size_t* count) { |
2338 *count = num_experiments; | 2338 *count = num_experiments; |
2339 return experiments; | 2339 return experiments; |
2340 } | 2340 } |
2341 | 2341 |
2342 } // namespace testing | 2342 } // namespace testing |
2343 | 2343 |
2344 } // namespace about_flags | 2344 } // namespace about_flags |
OLD | NEW |