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