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 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1646 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1646 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
1647 kOsCrOS, | 1647 kOsCrOS, |
1648 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1648 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
1649 switches::kDisableStickyKeys) | 1649 switches::kDisableStickyKeys) |
1650 }, | 1650 }, |
1651 #endif | 1651 #endif |
1652 { | 1652 { |
1653 "enable-web-midi", | 1653 "enable-web-midi", |
1654 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1654 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
1655 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1655 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
1656 kOsMac, | 1656 kOsMac | kOsWin, |
1657 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1657 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1658 }, | 1658 }, |
1659 { | 1659 { |
1660 "enable-new-profile-management", | 1660 "enable-new-profile-management", |
1661 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, | 1661 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, |
1662 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, | 1662 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, |
1663 kOsMac | kOsWin | kOsLinux, | 1663 kOsMac | kOsWin | kOsLinux, |
1664 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) | 1664 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) |
1665 }, | 1665 }, |
1666 { | 1666 { |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2352 } | 2352 } |
2353 | 2353 |
2354 const Experiment* GetExperiments(size_t* count) { | 2354 const Experiment* GetExperiments(size_t* count) { |
2355 *count = num_experiments; | 2355 *count = num_experiments; |
2356 return experiments; | 2356 return experiments; |
2357 } | 2357 } |
2358 | 2358 |
2359 } // namespace testing | 2359 } // namespace testing |
2360 | 2360 |
2361 } // namespace about_flags | 2361 } // namespace about_flags |
OLD | NEW |