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 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1570 { | 1570 { |
1571 "enable-sticky-keys", | 1571 "enable-sticky-keys", |
1572 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, | 1572 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME, |
1573 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, | 1573 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION, |
1574 kOsCrOS, | 1574 kOsCrOS, |
1575 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, | 1575 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableStickyKeys, |
1576 switches::kDisableStickyKeys) | 1576 switches::kDisableStickyKeys) |
1577 }, | 1577 }, |
1578 #endif | 1578 #endif |
1579 { | 1579 { |
1580 "enable-translate-settings", | |
1581 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_NAME, | |
1582 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_DESCRIPTION, | |
1583 kOsAll, | |
1584 SINGLE_VALUE_TYPE(switches::kEnableTranslateSettings) | |
1585 }, | |
1586 { | |
1587 "enable-web-midi", | 1580 "enable-web-midi", |
1588 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1581 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
1589 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | 1582 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, |
1590 kOsMac, | 1583 kOsMac, |
1591 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1584 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1592 }, | 1585 }, |
1593 { | 1586 { |
1594 "enable-new-profile-management", | 1587 "enable-new-profile-management", |
1595 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, | 1588 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, |
1596 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, | 1589 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2135 } | 2128 } |
2136 | 2129 |
2137 const Experiment* GetExperiments(size_t* count) { | 2130 const Experiment* GetExperiments(size_t* count) { |
2138 *count = num_experiments; | 2131 *count = num_experiments; |
2139 return experiments; | 2132 return experiments; |
2140 } | 2133 } |
2141 | 2134 |
2142 } // namespace testing | 2135 } // namespace testing |
2143 | 2136 |
2144 } // namespace about_flags | 2137 } // namespace about_flags |
OLD | NEW |