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 1654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1665 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), | 1665 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeViewing), |
1666 }, | 1666 }, |
1667 { | 1667 { |
1668 "enable-sticky-keys", | 1668 "enable-sticky-keys", |
1669 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1669 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
1670 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1670 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
1671 kOsCrOS, | 1671 kOsCrOS, |
1672 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1672 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
1673 switches::kDisableStickyKeys) | 1673 switches::kDisableStickyKeys) |
1674 }, | 1674 }, |
| 1675 { |
| 1676 "enable-autoclick", |
| 1677 IDS_FLAGS_ENABLE_AUTOCLICK_NAME, |
| 1678 IDS_FLAGS_ENABLE_AUTOCLICK_DESCRIPTION, |
| 1679 kOsCrOS, |
| 1680 SINGLE_VALUE_TYPE(chromeos::switches::kEnableAutoclick) |
| 1681 }, |
1675 #endif | 1682 #endif |
1676 { | 1683 { |
1677 "enable-web-midi", | 1684 "enable-web-midi", |
1678 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1685 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
1679 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1686 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
1680 kOsMac, | 1687 kOsMac, |
1681 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1688 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1682 }, | 1689 }, |
1683 { | 1690 { |
1684 "enable-new-profile-management", | 1691 "enable-new-profile-management", |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2279 } | 2286 } |
2280 | 2287 |
2281 const Experiment* GetExperiments(size_t* count) { | 2288 const Experiment* GetExperiments(size_t* count) { |
2282 *count = num_experiments; | 2289 *count = num_experiments; |
2283 return experiments; | 2290 return experiments; |
2284 } | 2291 } |
2285 | 2292 |
2286 } // namespace testing | 2293 } // namespace testing |
2287 | 2294 |
2288 } // namespace about_flags | 2295 } // namespace about_flags |
OLD | NEW |