| 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 2745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2756 #if defined(OS_WIN) | 2756 #if defined(OS_WIN) |
| 2757 {"gdi-text-printing", flag_descriptions::kGdiTextPrinting, | 2757 {"gdi-text-printing", flag_descriptions::kGdiTextPrinting, |
| 2758 flag_descriptions::kGdiTextPrintingDescription, kOsWin, | 2758 flag_descriptions::kGdiTextPrintingDescription, kOsWin, |
| 2759 FEATURE_VALUE_TYPE(features::kGdiTextPrinting)}, | 2759 FEATURE_VALUE_TYPE(features::kGdiTextPrinting)}, |
| 2760 {"postscript-printing", flag_descriptions::kDisablePostscriptPrinting, | 2760 {"postscript-printing", flag_descriptions::kDisablePostscriptPrinting, |
| 2761 flag_descriptions::kDisablePostscriptPrintingDescription, kOsWin, | 2761 flag_descriptions::kDisablePostscriptPrintingDescription, kOsWin, |
| 2762 FEATURE_VALUE_TYPE(features::kDisablePostScriptPrinting)}, | 2762 FEATURE_VALUE_TYPE(features::kDisablePostScriptPrinting)}, |
| 2763 #endif // defined(OS_WIN) | 2763 #endif // defined(OS_WIN) |
| 2764 | 2764 |
| 2765 #if defined(OS_CHROMEOS) | 2765 #if defined(OS_CHROMEOS) |
| 2766 {"show-arc-files-app", flag_descriptions::kShowArcFilesAppName, | |
| 2767 flag_descriptions::kShowArcFilesAppDescription, kOsCrOS, | |
| 2768 FEATURE_VALUE_TYPE(arc::kShowArcFilesAppFeature)}, | |
| 2769 #endif // defined(OS_CHROMEOS) | |
| 2770 | |
| 2771 #if defined(OS_CHROMEOS) | |
| 2772 {"force-enable-stylus-tools", | 2766 {"force-enable-stylus-tools", |
| 2773 flag_descriptions::kForceEnableStylusToolsName, | 2767 flag_descriptions::kForceEnableStylusToolsName, |
| 2774 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, | 2768 flag_descriptions::kForceEnableStylusToolsDescription, kOsCrOS, |
| 2775 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnableStylusTools)}, | 2769 SINGLE_VALUE_TYPE(ash::switches::kAshForceEnableStylusTools)}, |
| 2776 #endif // defined(OS_CHROMEOS) | 2770 #endif // defined(OS_CHROMEOS) |
| 2777 | 2771 |
| 2778 {"enable-midi-manager-dynamic-instantiation", | 2772 {"enable-midi-manager-dynamic-instantiation", |
| 2779 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, | 2773 flag_descriptions::kEnableMidiManagerDynamicInstantiationName, |
| 2780 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, | 2774 flag_descriptions::kEnableMidiManagerDynamicInstantiationDescription, |
| 2781 kOsAll, | 2775 kOsAll, |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3258 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 3252 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 3259 | 3253 |
| 3260 const FeatureEntry* GetFeatureEntries(size_t* count) { | 3254 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 3261 *count = arraysize(kFeatureEntries); | 3255 *count = arraysize(kFeatureEntries); |
| 3262 return kFeatureEntries; | 3256 return kFeatureEntries; |
| 3263 } | 3257 } |
| 3264 | 3258 |
| 3265 } // namespace testing | 3259 } // namespace testing |
| 3266 | 3260 |
| 3267 } // namespace about_flags | 3261 } // namespace about_flags |
| OLD | NEW |