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 1641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1652 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1652 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
1653 }, | 1653 }, |
1654 { | 1654 { |
1655 "enable-sticky-keys", | 1655 "enable-sticky-keys", |
1656 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1656 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
1657 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1657 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
1658 kOsCrOS, | 1658 kOsCrOS, |
1659 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1659 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
1660 switches::kDisableStickyKeys) | 1660 switches::kDisableStickyKeys) |
1661 }, | 1661 }, |
| 1662 { |
| 1663 "ash-enable-autoclick", |
| 1664 IDS_FLAGS_ENABLE_AUTOCLICK_NAME, |
| 1665 IDS_FLAGS_ENABLE_AUTOCLICK_DESCRIPTION, |
| 1666 kOsCrOS, |
| 1667 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAutoclick) |
| 1668 }, |
1662 #endif | 1669 #endif |
1663 { | 1670 { |
1664 "enable-web-midi", | 1671 "enable-web-midi", |
1665 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1672 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
1666 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1673 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
1667 kOsMac, | 1674 kOsMac, |
1668 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1675 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1669 }, | 1676 }, |
1670 { | 1677 { |
1671 "enable-new-profile-management", | 1678 "enable-new-profile-management", |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2266 } | 2273 } |
2267 | 2274 |
2268 const Experiment* GetExperiments(size_t* count) { | 2275 const Experiment* GetExperiments(size_t* count) { |
2269 *count = num_experiments; | 2276 *count = num_experiments; |
2270 return experiments; | 2277 return experiments; |
2271 } | 2278 } |
2272 | 2279 |
2273 } // namespace testing | 2280 } // namespace testing |
2274 | 2281 |
2275 } // namespace about_flags | 2282 } // namespace about_flags |
OLD | NEW |