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 2591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2602 #if defined(OS_CHROMEOS) | 2602 #if defined(OS_CHROMEOS) |
2603 {"show-arc-files-app", flag_descriptions::kShowArcFilesAppName, | 2603 {"show-arc-files-app", flag_descriptions::kShowArcFilesAppName, |
2604 flag_descriptions::kShowArcFilesAppDescription, kOsCrOS, | 2604 flag_descriptions::kShowArcFilesAppDescription, kOsCrOS, |
2605 FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)}, | 2605 FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)}, |
2606 #endif // defined(OS_CHROMEOS) | 2606 #endif // defined(OS_CHROMEOS) |
2607 | 2607 |
2608 #if defined(OS_CHROMEOS) | 2608 #if defined(OS_CHROMEOS) |
2609 {"force-enable-stylus-tools", | 2609 {"force-enable-stylus-tools", |
2610 flag_descriptions::kForceEnableStylusToolsName, | 2610 flag_descriptions::kForceEnableStylusToolsName, |
2611 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, | 2611 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, |
2612 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnablePalette)}, | 2612 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnableStylusTools)}, |
2613 #endif // defined(OS_CHROMEOS) | 2613 #endif // defined(OS_CHROMEOS) |
2614 | 2614 |
2615 {"enable-midi-manager-dynamic-instantiation", | 2615 {"enable-midi-manager-dynamic-instantiation", |
2616 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, | 2616 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, |
2617 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, | 2617 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, |
2618 kOsAll, | 2618 kOsAll, |
2619 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, | 2619 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, |
2620 | 2620 |
2621 #if defined(OS_WIN) | 2621 #if defined(OS_WIN) |
2622 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, | 2622 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3010 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 3010 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
3011 | 3011 |
3012 const FeatureEntry* GetFeatureEntries(size_t* count) { | 3012 const FeatureEntry* GetFeatureEntries(size_t* count) { |
3013 *count = arraysize(kFeatureEntries); | 3013 *count = arraysize(kFeatureEntries); |
3014 return kFeatureEntries; | 3014 return kFeatureEntries; |
3015 } | 3015 } |
3016 | 3016 |
3017 } // namespace testing | 3017 } // namespace testing |
3018 | 3018 |
3019 } // namespace about_flags | 3019 } // namespace about_flags |
OLD | NEW |