| 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 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1636 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
| 1637 }, | 1637 }, |
| 1638 { | 1638 { |
| 1639 "enable-sticky-keys", | 1639 "enable-sticky-keys", |
| 1640 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1640 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
| 1641 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1641 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
| 1642 kOsCrOS, | 1642 kOsCrOS, |
| 1643 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1643 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
| 1644 switches::kDisableStickyKeys) | 1644 switches::kDisableStickyKeys) |
| 1645 }, | 1645 }, |
| 1646 { |
| 1647 "ash-enable-autoclick", |
| 1648 IDS_FLAGS_ENABLE_AUTOCLICK_NAME, |
| 1649 IDS_FLAGS_ENABLE_AUTOCLICK_DESCRIPTION, |
| 1650 kOsCrOS, |
| 1651 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAutoclick) |
| 1652 }, |
| 1646 #endif | 1653 #endif |
| 1647 { | 1654 { |
| 1648 "enable-web-midi", | 1655 "enable-web-midi", |
| 1649 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1656 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
| 1650 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1657 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
| 1651 kOsMac, | 1658 kOsMac, |
| 1652 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1659 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
| 1653 }, | 1660 }, |
| 1654 { | 1661 { |
| 1655 "enable-new-profile-management", | 1662 "enable-new-profile-management", |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2257 } | 2264 } |
| 2258 | 2265 |
| 2259 const Experiment* GetExperiments(size_t* count) { | 2266 const Experiment* GetExperiments(size_t* count) { |
| 2260 *count = num_experiments; | 2267 *count = num_experiments; |
| 2261 return experiments; | 2268 return experiments; |
| 2262 } | 2269 } |
| 2263 | 2270 |
| 2264 } // namespace testing | 2271 } // namespace testing |
| 2265 | 2272 |
| 2266 } // namespace about_flags | 2273 } // namespace about_flags |
| OLD | NEW |