| 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 1634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1645 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
| 1646 }, | 1646 }, |
| 1647 { | 1647 { |
| 1648 "enable-sticky-keys", | 1648 "enable-sticky-keys", |
| 1649 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1649 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
| 1650 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1650 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
| 1651 kOsCrOS, | 1651 kOsCrOS, |
| 1652 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1652 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
| 1653 switches::kDisableStickyKeys) | 1653 switches::kDisableStickyKeys) |
| 1654 }, | 1654 }, |
| 1655 { |
| 1656 "ash-enable-autoclick", |
| 1657 IDS_FLAGS_ENABLE_AUTOCLICK_NAME, |
| 1658 IDS_FLAGS_ENABLE_AUTOCLICK_DESCRIPTION, |
| 1659 kOsCrOS, |
| 1660 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAutoclick) |
| 1661 }, |
| 1655 #endif | 1662 #endif |
| 1656 { | 1663 { |
| 1657 "enable-web-midi", | 1664 "enable-web-midi", |
| 1658 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1665 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
| 1659 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1666 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
| 1660 kOsMac, | 1667 kOsMac, |
| 1661 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1668 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
| 1662 }, | 1669 }, |
| 1663 { | 1670 { |
| 1664 "enable-new-profile-management", | 1671 "enable-new-profile-management", |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2289 } | 2296 } |
| 2290 | 2297 |
| 2291 const Experiment* GetExperiments(size_t* count) { | 2298 const Experiment* GetExperiments(size_t* count) { |
| 2292 *count = num_experiments; | 2299 *count = num_experiments; |
| 2293 return experiments; | 2300 return experiments; |
| 2294 } | 2301 } |
| 2295 | 2302 |
| 2296 } // namespace testing | 2303 } // namespace testing |
| 2297 | 2304 |
| 2298 } // namespace about_flags | 2305 } // namespace about_flags |
| OLD | NEW |