| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 2585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2596 #if defined(OS_ANDROID) | 2596 #if defined(OS_ANDROID) |
| 2597 {"aia-fetching", flag_descriptions::kAiaFetchingName, | 2597 {"aia-fetching", flag_descriptions::kAiaFetchingName, |
| 2598 flag_descriptions::kAiaFetchingDescription, kOsAndroid, | 2598 flag_descriptions::kAiaFetchingDescription, kOsAndroid, |
| 2599 FEATURE_VALUE_TYPE(net::CertVerifyProcAndroid::kAIAFetchingFeature)}, | 2599 FEATURE_VALUE_TYPE(net::CertVerifyProcAndroid::kAIAFetchingFeature)}, |
| 2600 #endif | 2600 #endif |
| 2601 | 2601 |
| 2602 #if defined(OS_CHROMEOS) | 2602 #if defined(OS_CHROMEOS) |
| 2603 {"force-enable-stylus-tools", | 2603 {"force-enable-stylus-tools", |
| 2604 flag_descriptions::kForceEnableStylusToolsName, | 2604 flag_descriptions::kForceEnableStylusToolsName, |
| 2605 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, | 2605 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, |
| 2606 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnablePalette)}, | 2606 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnableStylusTools)}, |
| 2607 #endif // defined(OS_CHROMEOS) | 2607 #endif // defined(OS_CHROMEOS) |
| 2608 | 2608 |
| 2609 {"enable-midi-manager-dynamic-instantiation", | 2609 {"enable-midi-manager-dynamic-instantiation", |
| 2610 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, | 2610 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, |
| 2611 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, | 2611 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, |
| 2612 kOsAll, | 2612 kOsAll, |
| 2613 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, | 2613 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, |
| 2614 | 2614 |
| 2615 #if defined(OS_WIN) | 2615 #if defined(OS_WIN) |
| 2616 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, | 2616 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2956 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2956 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2957 | 2957 |
| 2958 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2958 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2959 *count = arraysize(kFeatureEntries); | 2959 *count = arraysize(kFeatureEntries); |
| 2960 return kFeatureEntries; | 2960 return kFeatureEntries; |
| 2961 } | 2961 } |
| 2962 | 2962 |
| 2963 } // namespace testing | 2963 } // namespace testing |
| 2964 | 2964 |
| 2965 } // namespace about_flags | 2965 } // namespace about_flags |
| OLD | NEW |