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 2573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2584 #if defined(OS_CHROMEOS) | 2584 #if defined(OS_CHROMEOS) |
2585 {"show-arc-files-app", flag_descriptions::kShowArcFilesAppName, | 2585 {"show-arc-files-app", flag_descriptions::kShowArcFilesAppName, |
2586 flag_descriptions::kShowArcFilesAppDescription, kOsCrOS, | 2586 flag_descriptions::kShowArcFilesAppDescription, kOsCrOS, |
2587 FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)}, | 2587 FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)}, |
2588 #endif // defined(OS_CHROMEOS) | 2588 #endif // defined(OS_CHROMEOS) |
2589 | 2589 |
2590 #if defined(OS_CHROMEOS) | 2590 #if defined(OS_CHROMEOS) |
2591 {"force-enable-stylus-tools", | 2591 {"force-enable-stylus-tools", |
2592 flag_descriptions::kForceEnableStylusToolsName, | 2592 flag_descriptions::kForceEnableStylusToolsName, |
2593 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, | 2593 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, |
2594 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnablePalette)}, | 2594 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnableStylusTools)}, |
2595 #endif // defined(OS_CHROMEOS) | 2595 #endif // defined(OS_CHROMEOS) |
2596 | 2596 |
2597 {"enable-midi-manager-dynamic-instantiation", | 2597 {"enable-midi-manager-dynamic-instantiation", |
2598 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, | 2598 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, |
2599 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, | 2599 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, |
2600 kOsAll, | 2600 kOsAll, |
2601 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, | 2601 FEATURE_VALUE_TYPE(midi::features::kMidiManagerDynamicInstantiation)}, |
2602 | 2602 |
2603 #if defined(OS_WIN) | 2603 #if defined(OS_WIN) |
2604 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, | 2604 {"new-usb-backend", flag_descriptions::kNewUsbBackendName, |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2957 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2957 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
2958 | 2958 |
2959 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2959 const FeatureEntry* GetFeatureEntries(size_t* count) { |
2960 *count = arraysize(kFeatureEntries); | 2960 *count = arraysize(kFeatureEntries); |
2961 return kFeatureEntries; | 2961 return kFeatureEntries; |
2962 } | 2962 } |
2963 | 2963 |
2964 } // namespace testing | 2964 } // namespace testing |
2965 | 2965 |
2966 } // namespace about_flags | 2966 } // namespace about_flags |
OLD | NEW |