| 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 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1643 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1643 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
| 1644 }, | 1644 }, |
| 1645 { | 1645 { |
| 1646 "enable-sticky-keys", | 1646 "enable-sticky-keys", |
| 1647 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1647 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
| 1648 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1648 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
| 1649 kOsCrOS, | 1649 kOsCrOS, |
| 1650 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1650 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
| 1651 switches::kDisableStickyKeys) | 1651 switches::kDisableStickyKeys) |
| 1652 }, | 1652 }, |
| 1653 { |
| 1654 "ash-enable-autoclick", |
| 1655 IDS_FLAGS_ENABLE_AUTOCLICK_NAME, |
| 1656 IDS_FLAGS_ENABLE_AUTOCLICK_DESCRIPTION, |
| 1657 kOsCrOS, |
| 1658 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAutoclick) |
| 1659 }, |
| 1653 #endif | 1660 #endif |
| 1654 { | 1661 { |
| 1655 "enable-web-midi", | 1662 "enable-web-midi", |
| 1656 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1663 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
| 1657 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1664 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
| 1658 kOsMac, | 1665 kOsMac, |
| 1659 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1666 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
| 1660 }, | 1667 }, |
| 1661 { | 1668 { |
| 1662 "enable-new-profile-management", | 1669 "enable-new-profile-management", |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2264 } | 2271 } |
| 2265 | 2272 |
| 2266 const Experiment* GetExperiments(size_t* count) { | 2273 const Experiment* GetExperiments(size_t* count) { |
| 2267 *count = num_experiments; | 2274 *count = num_experiments; |
| 2268 return experiments; | 2275 return experiments; |
| 2269 } | 2276 } |
| 2270 | 2277 |
| 2271 } // namespace testing | 2278 } // namespace testing |
| 2272 | 2279 |
| 2273 } // namespace about_flags | 2280 } // namespace about_flags |
| OLD | NEW |